/*
style.css: "simple icons" CSS file
author: Nacho Llopis <lloptor@hotmail.com>
date: 04/10/06
license: you may use & modify this work.
please keep it in www.oswd.org.
*/
body {
	font-family: sans-serif;
	font-size: 85%; 
	text-align: center;
	background-color: #ddd;
	padding: 0;
	color: #000;
}
#container {
	background-color: #fff;
	width: 1200px; /*控制整体宽度*/
	padding: 20px 0 5px 20px;
	text-align: left;
	margin: 0 auto;
}
img { border: 0; }

#header {
	background-color: #fff;
	}
#header h1 { 	
	margin: 0;
	color: #000;
	font-size: 1.8em;
	font-weight: normal;
	cursor: default;
	}	
#header h2 { 	
	margin: 0;
	color: #696969;
	font-size: 1.1em;
	padding-left: 1px;
	cursor: default;
	}	
#header .sidebar {
	position: relative;
	clear:left;
	float: left;
	margin: 0 15px 0 0;
	padding: 0 0 0 0 ;
}
#chinese font
{
	font-size: 17px;color:black;display: block;
	line-height: 1.5;
	letter-spacing: 0.5px;
}





#navbar{
	width: 100%;
	padding-left: 100px; 
	padding-right: 100px;
	box-sizing: border-box;
}
#buttons {
	width:  100%;
	display: flex;
    justify-content: space-around; /* 或者使用 space-between */
    align-items: center;
}
/*
buttons div 管理导航栏
其中width 表示导航栏每一个选项的间距
margin 表示的是一个button距离边界的距离
 */
#buttons div {
	width: 150px;
	float: right;
	height: 40px;
	text-align: center;
	margin:2px;
	}
/*
#buttons #s1 {
	no-repeat 10% 10%;
	border-right:2px dashed #ccc;
	}

#buttons #s2 {
	no-repeat 50% 0%;
	border-right:2px dashed #ccc;
	}
#buttons #s3 {
	no-repeat 50% 0%;
	border-right:2px dashed #ccc;
	}
#buttons #s4 {
	no-repeat 50% 0%;
	border-right:2px dashed #ccc;
	}
#buttons #s5 {
	no-repeat 50% 0%;
	}
#buttons #s6 {
	no-repeat 50% 0%;
	}
*/
#buttons div a{
	color: #332288;
	font-size: 1.4em;
	display: block;
	padding: 10px 0px 0px 0px;
	text-decoration:none;
	}

#buttons div a:hover{
	color: #ba0303;
	text-decoration: none;
	}

#buttons .selected{
	text-decoration:underline;
}

#rcontent {
	display:block;
	text-align: right;
	clear:left;
	float:left;
	width: 100%;
	background-color:#FFFFFF;
	padding:15px  0px 0px 0px;
}

#content {
	display:block;
	clear:left;
	background-color:#FFFFFF;
	margin-bottom:10px;
}

#content h1 {
	color: #8D8E90;
	font-size: 1.2em;
	cursor: default;
	display: block;
	margin: 10px 0 15px 0px;
	padding: 0;
	border-color: #ddd;
	border-style: solid;
	border-width: 0 0 1px 0;
	border-bottom: 1px dashed #fff;
}
#content h2 {
	color: #8D8E90;
	font-size: 1.0em;
	cursor: default;
	display: block;
	margin: 10px 0 10px 0;
	padding: 0;
	border-color: #ddd;
	border-style: dashed;
	border-width: 0 0 1px 0;
	border-bottom: 1px dashed #fff;
}

#content a {
	color: #8D8E90;
	text-decoration: none;
}

#content a:hover {
	color: #8D8Eff;
}

#content .sidebar {
	position: relative;
	clear:right;
	float: right;
	margin: .5em 0 0 .5em;
	padding: 0 .7em .7em .7em;
	width: 200px;
	font-size: .9em;
	border: 0px solid #ddd;
	background-color:#FFFFFF;
}

#content ul li{
   list-style-image: url(./img/icon_jiantou_12.png);

}

.content_block {
	display:block;
	clear:left;
	float:left;
	width: 100%;
	background-color:#FFFFFF;
	margin-bottom:1px;
	padding:1px 10px 0px 0px;
	margin-bottom: 30px;
}

#content_intro {
	text-justify: inter-word;
	letter-spacing: 0.1px;
	line-height: 1.5;
	display:block;
	clear:left;
	float:left;
	width: 100%;
	background-color:#FFFFFF;
	margin-bottom:10px;
	padding:5px 15px 0px 0px;
}

#content_intro div a{
	color: #8D8E90;
	font-size: 1.2em;
	display: block;
	padding: 50px 0px 0px 0px;
	text-decoration:none;
	}

#content_intro div a:hover{
	color: #8D8Eff;
	text-decoration: none;
	}

#content_intro .selected{
	text-decoration:underline;
}

#content_intro ul li{
   list-style-image: url(./img/icon_jiantou_8.png);

}



.content_block h2{
	display: flex; /* 使用Flexbox布局 */
	align-items: center; /* 确保内容在垂直方向上居中 */
	margin-bottom: 8px;
}
.content_block div a{
	color: #8D8E90;
	font-size: 1.2em;
	display: block;
	padding: 50px 0px 0px 0px;
	text-decoration:none;
	}
.content_block li{
	line-height: 1.5; /*li内行距*/
	margin-top: 10px;/*li间行距*/
	text-align: justify;
	text-justify: inter-word;
	letter-spacing: 0.1px;
}
.content_block ol {
	list-style: none; /* 去除默认的数字样式 */
    counter-reset: item; /* 初始化计数器 */
    padding-left: 2em; /* 给整体列表增加左边距，避免文本贴边 */
}
.content_block ol li{
	counter-increment: item; /* 计数器递增 */
    position: relative;
    padding-left: 2em; /* 每个项设置左侧缩进，使得编号不至于靠左边*/
    text-indent: -2em; /* 首行缩进负值，移动到编号左侧 */
}
.content_block ol li::before {
	
	content: "[" counter(item) "] "; /* 设置编号格式 */
    font-weight: bolder; /* 可选：加粗编号 */
	font-size: larger;
    
}

.content_block div a:hover{
	color: #8D8Eff;
	text-decoration: none;
}

#journal{
	color: #ba0303;
	font-weight: bolder; /* 可选：加粗编号 */
	font-size: large;

}
#name{
	font-weight: bolder;
}
#divider {
	height: 2px; /* 分割线的高度 */
	width: 90%;
	background: linear-gradient(to right, #ba0303, rgba(0, 0, 0, 0)); /* 从左到右逐渐透明 */
	border: none; /* 确保没有边框 */
  }

button {
	background : #ffffff;
	border : 1px solid #ddd;

}
input {
	border : 1px solid #ddd;
	margin : 2px 0px 2px 0px;
	padding : 4px 4px 4px 0px;
	font-family: "Trebuchet MS", Verdana, Tahoma, sans-serif;
}
textarea {
	border : 1px solid #ddd;
	height : 6em;
}

#footer {
	display: block;
	clear: left;
	width: 100%;
	background-color:#FFFFFF;
	border-color:#8D8E90;
	border-style:solid;
	border-width:1px 0 0 0;
	padding-top:10px;
	margin:10px 10px 10px 0px;
}
#footer a {
	text-decoration: none;
	color: #8D8E90;
	border-bottom: 1px dashed #A2AFBF;
}
#footer a:hover {
	border-bottom: 1px dashed #fff;
	color: #000;
}


/*paper data code 链接部分*/
#link{
	font-weight: bolder;
}
#code_data a,#publications a{
	color:#0004fd;
    text-decoration: underline; /* 添加下划线 */
} 
#code_data a,#publications a:visited{
	color:#632d71;
    text-decoration: underline; /* 添加下划线 */
}