/* journalcontainer */

.journalcontainer {
	padding: 50px 0  80px 0;
}
.journalcontainer .container {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}
.journal-cover {
	width: 380px;
	height: auto;
}
/* 右侧内容容器 */
.content-wrapper {
	flex: 1;
}
/* 期刊标题 */
.journal-title {
	font-size: 36px;
	color: #080707;
	line-height: 45px;
	margin-bottom: 20px;
	font-weight: bold;
}
/* 期刊描述 */
.journal-desc {
	color: #000000;
	line-height: 24px;
	margin-bottom: 50px;
}
/* 按钮组 */
.btn-group {
	display: flex;
	gap: 20px;
	margin-bottom: 50px;
}
.journal-btn {
	background: #2a6eb9;
	padding: 0 30px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	border-radius: 30px;
	color: #fff;
}
.journal-btn:hover {
	color: #fff;
}
.fast-facts {
	background-color: white;
	display: flex;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.facts-title {
	font-size: 36px;
	color: #080707;
	line-height: 45px;
	font-weight: bold;
	padding-right: 30px;
	margin-top: 0;
	padding-top: 20px;
}
.facts-list {
	list-style: none;
	padding-left: 30px;
	border-left: 1px solid #DCDCDC;
	padding-top: 20px;
	padding-bottom: 20px;
}
.facts-list li {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.facts-list li::before {
	content: "•";
	color: #cc0000;
	font-size: 20px;
	position: absolute;
	left: 0;
	top: -2px;
}

/* 响应式适配 */

/* "Editorial-Board */
.Editorial-Board {
	background: #fff;
	padding: 70px 0 50px 0
}
.Editorial-Board-title {
	font-size: 36px;
	color: #080707;
	line-height: 45px;
	font-weight: bold;
	margin-bottom: 10px;
}
.board-section {
	display: flex;
}
.board-section, .board-section1 {
	border-top: #E8E8E8 1px solid;
}
.board-section-left {
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.board-section-right {
	padding-left: 20px;
	border-left: #E8E8E8 1px solid;
	padding-top: 20px;
}
.board-section h2, .board-section1 h2 {
	font-size: 24px;
	color: #080707;
	line-height: 45px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
}
.board-section1 h2 {
	padding: 20px 0 0 0;
}
/* 多列布局容器 */
.editor-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.editor-column {
	flex: 1;
	min-width: 280px; /* 保证小屏幕下列不会过窄 */
}
/* 人员信息样式 */
.person {
	margin-bottom: 25px;
}
.board-section .person-name, .board-section1 .person-name {
	display: block;
	font-size: 16px;
	margin-bottom: 3px;
}
.person-affiliation {
	text-align: left;
	line-height: 20px;
}
/* 容器样式 - 控制整体宽度和居中 */
.authors-container {
	padding: 80px 0;
}
/* 标题样式 */
.authors-title {
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	color: #080707;
	line-height: 45px;
	margin-bottom: 15px;
}
/* 副标题样式 */
.authors-subtitle {
	text-align: center;
	font-size: 18px;
	color: #000000;
	line-height: 24px;
	margin-bottom: 50px;
}
/* 卡片容器 - 网格布局 */
.authors-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	justify-items: center;
}
/* 单个卡片样式 */
.author-card {
	background-color: #ffffff;
	width: 100%;
	padding: 30px 20px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	transition: transform 0.3s ease;
}
/* 卡片 hover 效果 */
.author-card:hover {
	transform: translateY(-5px);
}
/* 图标容器样式 */
.card-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background-color: #2563eb;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 图标样式（使用 Font Awesome 图标，也可替换为图片） */
.card-icon i {
	font-size: 24px;
	color: #ffffff;
}
/* 卡片标题样式 */
.card-title {
	font-weight: bold;
	font-size: 20px;
	color: #000000;
	line-height: 24px;
	margin: 0;
}
/* 卡片按钮/链接样式 */
.card-link {
	margin-top: 5px;
	font-size: 14px;
	color: #2563eb;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}
/* 按钮箭头样式 */
.card-link span {
	font-size: 12px;
}
.card-link {
	color: #000;
}

@media (max-width: 768px) {
 
}


.about-ahs-container {
	padding: 50px 0 80px 0;
}
.about-ahs-container .container {
	display: flex;
	gap: 40px;
	 
}
.about-ahs-title {
	font-size: 36px;
	color: #080707;
	font-weight: bold;
	margin: 0;
	line-height: 40px; margin-bottom: 20px;
}
/* 图片容器样式 */
.ahs-image-wrapper {
 width: 40%;
}
.ahs-image-wrapper img {
	width: 100%;
	height: auto;
	display: block; padding-top: 60px;
}
.ahs-content-wrapper{  width: 56%;}
/* 响应式适配 - 小屏幕下改为单列 */
@media (max-width: 750px) {
.about-ahs-container {
	 
}
 
}
.membership {
	padding: 80px 0;
	background: #fff;
}
.membership .container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 40px;
	flex-wrap: wrap;
}
/* 卡片通用样式 */
.membership-card {
	flex: 1; padding: 30px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	text-align: center;
}
/* 卡片标题样式 */
.membership-card h2 {
	font-size: 30px;
	color: #080707;
	font-weight: bold;
	margin-bottom: 30px;
}
.membership-card-box-title{ font-size: 30px;
	color: #080707;
	font-weight: bold;
	margin-bottom: 30px; }
.membership-card-icon {
	margin-bottom: 30px; text-align: center;
}
 
.ahs-info-container {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(to bottom, #004B88 50%, #f0f7fc 50%);
	padding: 80px 0;
}
.ahs-info-container .container{	display: flex;
	 }
/* 左侧文字区域 */
.ahs-info {
 
	color: white; padding-right: 50px; width: 30%; padding-right: 50px;
 
}
.ahs-info p{ text-align: left;}
.ahs-info-title{
	font-size: 36px;
color: #F3F9FF; font-weight: bold; margin-bottom: 30px; 
}
 
 
.membership-cards {
	flex: 2;
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
 
.membership-card-box {
	background: white;
 box-shadow: -1px 5px 40px 0px rgba(76,76,76,0.2); text-align: center;
	padding: 50px 30px 100px 30px; 
	flex: 1; position: relative;
 
	 
}
 
 
.card-header h2 {
	font-size: 30px;
color: #080707;
	font-weight: bold;
}
 
.benefits-list {
	list-style: none;
	margin-bottom: 30px;
}
.benefits-list li {
	margin-bottom: 10px; text-align: left;
	 
	display: flex;
	align-items: flex-start;
}
.benefits-list li::before {
	content: "✓";
	color: #000;
	font-weight: bold;
	margin-right: 8px;
}
 
.membership-fee {
	margin: 15px 0 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.membership-card-box .discover-more {
	color: #004B88;
	text-decoration: none;
	font-size: 14px;
	display: block;
	text-align: center;
	margin-bottom: 10px;
}
 
.join-btn {
	background: #C10A0A; display: inline-block;
    width: 158px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 30px;
    color: #fff;  position: absolute; bottom: 50px; left: 50%; margin-left: -79px;
}
 .join-btn:hover{ color: #fff;     background-color: #be404e; }
/* 响应式适配：小屏幕下调整布局 */
@media (max-width: 750px) {
.content {
	flex-direction: column;
}
.ahs-info {
	text-align: center;
	margin-bottom: 30px;
}
.ahs-info p {
	max-width: 100%;
}
}
 