/* CSS变量定义 */
:root {
  --primary-color: #2E4780;
  --primary-light: #3f568a;
  --text-primary: #2F2F2F;
  --text-secondary: #666;
  --text-muted: #9A9A9A;
  --text-light: #ABABAB;
  --text-gray: #8F8F8F;
  --price-color: #D96201;
  --bg-light: #F2f4f7;
  --bg-gray: #E7E9ED;
  --bg-extra-light: #e9eaec;
  --border-color: #ededed;
  --font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
	padding: 0;
	margin: 0;
  box-sizing: border-box;
}

a {
	text-decoration: none;
  transition: all 0.3s ease;
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.top {
	width: 1920px;
	background: url('../img/topbg.png') no-repeat;
	background-position: 0 0;
	background-size: 1920px 716px;
	height: 830px;
	margin: 0 auto;
	padding-top: 46px;
	position: relative;
}

.header {
	width: 100%;
	max-width: 1259px;
	height: 42px;
	display: flex;
	align-items: center;
	margin: 0 auto;
	justify-content: space-between;
	padding: 0 20px;
}

@media (max-width: 1440px) {
  .header {
    max-width: 1200px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
}

.logo {
	width: 230px;
	height: 39px;
}

.nav-box {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-item {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Heavy;
	font-size: 22px;
	leading-trim: NONE;
	line-height: 39px;
	letter-spacing: 0%;
	text-align: center;
	color: #2E4780;
	width: fit-content;
	margin: 0 30px;
}

.cur {
	border-bottom: 2px solid #2E4780;
}

.slogan {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Heavy;
	font-size: 64px;
	color: #26314B;
	width: 1259px;
	margin: 193px auto 0;
	padding-left: 75px;

}

.search-container {
	width: 1328px;
	height: 244px;
	background: #FFF;
	border-radius: 14px;
	margin: 211px auto 0;
	padding: 42px 46px;
}

/* 搜索区域 */
.search-box {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/* 输入框 */
.search-box input {
	width: 750px;
	height: 88px;
	border: none;
	padding: 0 16px 0 70px;
	font-size: 24px;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;
	background: #e9eaec url('../img/s.png') no-repeat;
	background-size: 28px 28px;
	background-position: 30px 30px;
}

/* 按钮 */
.btn {
	height: 88px;
	padding: 0 26px;
	font-size: 26px;
	border-radius: 4px;
	cursor: pointer;
	width: 228px;
}

.mr {
	margin-right: 30px;
}

/* 主按钮 */
.btn.primary {
	background: var(--primary-light);
	color: #fff;
	border: none;
}

.btn.primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 86, 138, 0.3);
}

.btn.primary:active {
  transform: translateY(0);
}

/* 描边按钮 */
.btn.outline {
	background: #fff;
	color: var(--primary-light);
	border: 1px solid var(--primary-light);
}

.btn.outline:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 86, 138, 0.2);
}

.btn.outline:active {
  transform: translateY(0);
}

/* 热搜 */
.hot-keywords {
	margin-top: 30px;
	font-size: 18px;
	color: #666;
}

.hot-keywords .label {
	margin-right: 10px;
}

.hot-keywords span {
	margin-right: 18px;
	cursor: pointer;
}


.service {
	background: rgba(215, 219, 230, 0.43);
	width: 1920px;
	height: 572px;
	margin: -114px auto 0;
	padding-top: 191px;
}

.service-title {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Heavy;
	font-size: 36px;
	color: #2F2F2F;
	width: 1328px;
	margin: 0 auto;
	padding-left: 30px;
}

.service-title span {
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 22px;
	color: #9A9A9A;
	margin-left: 20px;
}

.service-list {
	width: 1279px;
	margin: 30px auto 0;
	height: 211px;
	display: flex;
	justify-content: space-between;
}

.service-item {
	width: 411px;
	height: 211px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	display: flex;

}

.si-left {
	background-color: rgba(238, 244, 255, 0.44);
	width: 160px;
	height: 211px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.si-left img {
	width: 88px;
	height: auto;
}

.si-right {
	width: 251px;
	height: 211px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 55px;
}

.si-right h1 {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Heavy;
	font-size: 30px;
	color: #515151;

}

.si-right h2 {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Heavy;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 39px;
	height: 39px;
	color: #ABABAB;
}

.si-right a,
.si-right button {
	width: 131px;
	height: 41px;
	border-radius: 4px;
	background-color: #2E4780;
	box-shadow: 5px 4px 14px 0px #639ACD1C;
	color: #FFf;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 9px;
	border: none;
	outline: none;
	padding: 0;
	font-size: inherit;
	cursor: pointer;
}

.book-box {
	width: 1328px;
	margin: 0 auto;
	padding-top: 78px;
}

.book-block {
	width: 1253px;
	height: 429px;
	margin: 46px auto 76px;
	display: flex;
	align-items: center;
}

.book-left {
	width: 330px;
	height: 429px;
	background-color: #2E4780;
	box-shadow: 5px 4px 14px 0px #639ACD1C;
	padding: 53px 34px 20px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	margin-right: 36px;
}

.book-left h1 {
	height: 39px;
	line-height: 39px;
	background: url('../img/pre.png') no-repeat;
	background-size: 10px 32px;
	background-position: 0 2px;
	padding-left: 20px;
	color: #FFF;
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 26px;

}

.book-cate {
	margin-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 25px;
	padding-bottom: 25px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;

}

.book-cate a {
	display: inline-block;
	width: 50%;
	text-align: left;
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	color: #FFF;
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;

}

.book-cate-foot {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	height: 39px;
	line-height: 39px;
	position: relative;
	margin-top: auto;
	color: #FFF;
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 15px;
	padding-top: 8px;
}

.book-cate-foot a {
	color: #FFF;
}

.right-ico {
	position: absolute;
	width: 9px;
	height: 17px;
	right: 0;
	top: 20px;
}

.book-right {
	width: 887px;
	height: 429px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.book-right > a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-item {
	width: 433px;
	height: 204px;
	border-radius: 4px;
	border: 1px solid rgba(237, 237, 237, 1);
	box-shadow: 2px 2px 7.5px 0px rgba(0, 0, 0, 0.1);
	padding: 19px 34px;
	display: flex;
	flex-direction: row;
}

.book-item-img {
	width: 130px;
	height: 165px;
	border-right: #DFDFDF solid 4px;
	border-radius: 4px 8px 4px 4px;
	margin-right: 18px;
	border-left: 1px solid #D3D3D3;
	border-top: 1px solid #D3D3D3;
	border-bottom: 1px solid #D3D3D3;
}

.book-item-img img {
	width: 124px;
	height: 163px;
}

.book-item-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-around;
	padding: 10px 0;
}

.book-item-right h3 {
	font-family: PingFang SC;
	font-weight: 600;
	font-style: Semibold;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 39px;
	letter-spacing: 0%;
	color: #000000;
}

.book-item-right h4 {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 15px;
	color: #000000;
}

.book-price {
	font-family: PingFang SC;
	font-weight: 600;
	font-style: Semibold;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 39px;
	letter-spacing: 0%;
	color: #D96201;
}

footer {
	width: 100%;
	background-color: #E7E9ED;
	height: 179px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer p {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 34px;
	letter-spacing: 0%;
	text-align: center;
	color: #8F8F8F;
}

footer a {
	color: #8F8F8F;
}


.top-next {
	width: 100%;
	max-width: 1920px;
	height: 132px;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.top-next .header {
  padding: 0 20px;
  height: auto;
}

@media (max-width: 1440px) {
  .top-next {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .top-next {
    height: auto;
    padding: 20px 0;
  }
}

.body {
	min-height: 700px;
	background: #F2f4f7;
	padding-top: 30px;
	padding-bottom: 30px;
}

/* 容器 */
.search-box-container {
	width: 1330px;
	margin: 40px auto;
	background: #fff;
	border-radius: 4px;
	padding: 30px 40px;
}

/* 搜索区域 */
.search-box-inner {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.search-title {
	font-size: 18px;
	color: #2E2E2E;
	margin-right: 30px;
	font-weight: 600;
}

.search-input {
	flex: 1;
	position: relative;
}

.search-input input {
	width: 529px;
	height: 60px;
	border-radius: 71px;
	border: none;
	background: rgba(244, 245, 248, 1);
	padding: 0 50px 0 20px;
	font-size: 16px;
	outline: none;
	box-sizing: border-box;
}

.search-input .search-icon-right img {
	position: absolute;
	left: 470px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #999;
	cursor: pointer;

}

.search-icon-right img {
	width: 34px;
	height: 28px;
}

/* 筛选区域 */
.filter-row {
	display: flex;
	align-items: flex-start;
	padding: 18px 0;
	border-top: 1px solid #eee;
}

.filter-row:first-of-type {
	border-top: none;
}

.filter-title {
	width: 100px;
	color: #2E2E2E;
	font-weight: 600;
	font-size: 18px;
	height: 37px;
	line-height: 37px;
}

.filter-content {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 18px;
}

.book-cate-list {
	width: 1000px;
	flex-direction: row;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	flex-wrap: wrap;
	max-height: 37px;
}

.expanded {
	max-height: 337px !important;
}

.no-right-margin {
	margin-right: 0 !important;
}

/* 标签 */
.tag {
	font-size: 18px;
	color: #5E5E5E;
	cursor: pointer;
	width: fit-content;
	margin-right: 8px;
	line-height: 37px;
	height: 37px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	/*margin-bottom: 4px;*/
	/*margin-top: 4px;*/
}

/* 选中 */
.tag.active {
	background: #2E4780;
	color: #fff;
	border-radius: 4px;
}

/* 展开 */
.expand {
	margin-left: auto;
	color: #2E4780;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.expand::after {
	content: "";
	font-size: 12px;
	margin-left: 4px;
	background: url('../img/downico.png') no-repeat;
	width: 16px;
	height: 8px;
	background-size: cover;
}


/* 展开/收起按钮样式 */
.expand {
	cursor: pointer;
	color: #2E4780;
	font-size: 14px;
	height: 37px;
	line-height: 37px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}

.expand:hover {
	text-decoration: underline;
}

.expand .arrow {
	transition: transform 0.3s;
}

.expand.expanded .arrow {
	transform: rotate(180deg);
}

/* 子分类样式 */
.sub-tags {
	display: none;
	margin-top: 10px;
	padding-left: 10px;
}

.sub-tags.show {
	display: block;
}

.sub-tags .tag {
	margin: 5px 5px 5px 0;
	display: inline-block;
}


.book-list {
	display: flex;
	gap: 74px;
	flex-wrap: wrap;
	width: 1113px;
	margin: 76px auto 38px;
}

.book-list-item {
	width: 222px;
	height: 377px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.book-list-item a {
	width: 222px;
	height: 377px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bk-img-box {
	width: 222px;
	height: 280px;
	border-right: #DFDFDF solid 12px;
	border-radius: 4px 8px 4px 4px;
	margin-right: 18px;
	border-left: 1px solid #D3D3D3;
	border-top: 1px solid #D3D3D3;
	border-bottom: 1px solid #D3D3D3;
}

.bk-img-box img {
	width: 210px;
	height: 276px;
}

.bk-img-box-big {
	width: 299px;
	height: 377px;
	border-right: #DFDFDF solid 12px;
	border-radius: 4px 8px 4px 4px;
	margin-right: 18px;
	border-left: 1px solid #D3D3D3;
	border-top: 1px solid #D3D3D3;
	border-bottom: 1px solid #D3D3D3;
}

.bk-img-box-big img {
	width: 281px;
	height: 371px;
}

.book-list-item a h3 {
	font-family: PingFang SC;
	font-weight: 600;
	font-style: Semibold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0px;
	text-align: center;
	color: #2C2B2B;
}

.book-list-item a h4 {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0px;
	text-align: center;
	color: #2C2B2B;
}

.bk-price {
	color: #D96201;
}


.pagination {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-family: Arial, sans-serif;
	margin: 0 auto;
	width: fit-content;
	padding-bottom: 57px;
}

.pagination .total {
	color: #666;
	margin-right: 10px;
}

.pagination a {
	text-decoration: none;
	color: #242424;
	border: 1px solid #dcdcdc;
	padding: 6px 10px;
	border-radius: 2px;
	background: #fff;
	transition: all 0.2s;
}

/* 按钮样式：首页、上一页等 */
.pagination .pbtn {
	color: #2E4780;
}

/* 数字页 */
.pagination .page {
	min-width: 28px;
	text-align: center;
}

/* 当前页 */
.pagination .active {
	background: #2E4780;
	color: #fff;
	border-color: #2E4780;
}

/* hover效果 */
.pagination a:hover {
	border-color: #2E4780;
	color: #2E4780;
}


.pub-list {
	width: 1330px;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 30px;
	margin: 76px auto 38px;
}

.pub-item {
	width: calc(50% - 15px);
	padding: 24px 26px;
	border: 1px solid #E0E0E0;
	border-radius: 6px;
	background-color: #fff;
	transition: all 0.2s ease;

}

.pub-item:hover {
	background-color: #ffffff;
	border-color: #d5d5d5;
}

.pub-item__title {
	font-size: 20px;
	font-weight: 600;
	color: #242424;
	margin-bottom: 14px;
}

.pub-item__desc {
	font-size: 14px;
	color: #666666;
	line-height: 1.8;
}

.about-banner {
	width: 1920px;
	height: 556px;
	margin: 0 auto;
	position: relative;
}



.about-banner-img {
	width: 1920px;
	height: 556px;
}

.about-box {
	position: relative;
	width: 1328px;
	min-height: 806px;
	background-color: #FFF;
	border-radius: 8px;
	margin: -75px auto 30px;
	box-sizing: border-box;
	padding: 30px 67px;
}

.about-box h2 {
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 32px;
	color: #000000;
	border-bottom: 1px solid #ECECEC;
	padding-bottom: 30px;

}

.pic-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}

.content {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	color: #5E5E5E;
	margin-top: 50px;
	line-height: 200%;
}

.mapnav {
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 26px;
	color: #000;
	width: 1328px;
	margin: 76px auto 38px;
}

.map {
	width: 1328px;
	margin: 0 auto;
}

.map img {
	width: 1328px;
	height: 442px;
}

.contact-box {
	width: 825px;
	height: 503px;
	position: absolute;
	left: 800px;
	top: 140px;
	background-color: #FFF;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 50px 67px 10px;
}

.contact-box h2 {
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 32px;
	color: #000000;
	border-bottom: 1px solid #ECECEC;
	padding-bottom: 20px;
}

.contact-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 350px;
}

.contact-left {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
}

.contact-right {
	width: 270px;
	height: 260px;
	padding-left: 10px;
	box-sizing: border-box;
	border-left: 1px solid #EBEBEB;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.code-img {
	width: 168px;
	height: 168px;
}

.code-span {
	color: #828282;
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
}

.c-line {
	width: 100%;
	height: 71px;
	align-items: center;
	justify-content: space-between;
	display: flex;

}

.c-line img {
	width: 71px;
	height: 71px;
	margin-right: 30px;
}

.c-line-word {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: left;
}

.c-line-word span {
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0px;
	color: #8C8C8C;

}

.c-line-word h3 {
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 24px;
	color: #444444;
	margin-top: 10px;
}

.location {
	width: 1300px;
	height: 100px;
	margin: 0 auto;
	font-family: PingFang SC;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	color: #000000;
	display: flex;
	align-items: center;
}

.location a {
	color: #2E4780;
}

.book-detail-top {
	background-color: #FFFFFF;
	width: 1328px;
	height: 499px;
	border-radius: 4px;
	margin: 0 auto;
	border: 1px solid #E0E0E0;
	padding: 70px 86px 52px;
	display: flex;
	align-items: center;
}


.journal-info-card {
	width: 830px;
	height: 365px;
	background-color: #ffffff;
	padding: 10px 40px;
	box-sizing: border-box;
	font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
	color: #242424;
	display: flex;
	flex-direction: column;
}

.journal-info-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.journal-info-title {
	font-family: PingFang SC;
	font-weight: 600;
	font-style: Semibold;
	font-size: 46px;
	leading-trim: NONE;
	line-height: 39px;
	letter-spacing: 0%;
	color: #454545;

}

.journal-info-badge {
	background: linear-gradient(90deg, #1C9EC9 0%, #07718E 100%);
	color: #fff;
	padding: 4px 12px;
	border-radius: 8px 2px 8px 2px;
	font-size: 14px;
	margin-left: 20px;
	margin-top: 10px;
}

.journal-info-meta {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
}

.journal-info-grid {
	border-top: 1px solid #f0f0f0;
	margin-bottom: 25px;
}

.journal-info-row {
	display: flex;
	border-bottom: 1px solid #f0f0f0;
	padding: 12px 0;
}

.journal-info-col {
	flex: 1;
	display: flex;
	align-items: center;
	padding-left: 10px;
	position: relative;
}

/* 垂直分割线 */
.journal-info-col:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #e0e0e0;
}

.journal-info-col .label {
	color: #999;
	font-size: 16px;
	width: 90px;
}

.journal-info-col .value {
	color: #242424;
	font-size: 16px;
	font-weight: 500;
}

.journal-info-price-box {
	margin-bottom: 25px;
	display: flex;
	align-items: baseline;
}

.price-label {
	font-size: 22px;
	color: #242424;
	margin-right: 15px;
}

.price-value {
	font-size: 28px;
	color: #d46b08;
	font-weight: bold;
}

.journal-info-footer {
	display: flex;
	gap: 15px;
}

.d-btn {
	height: 52px;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	box-sizing: border-box;
	font-weight: 500;
}

.btn-primary {
	width: 180px;
	background-color: #2e4e8e;
	color: white;
	border: none;
}

.btn-primary:hover {
	background-color: #243d70;
}

.btn-outline {
	width: 180px;
	background-color: white;
	color: #2E4780;
	border: 1px solid #2E4780;
}

.btn-outline:hover {
	background-color: #f0f7ff;
}

.journal-content {
	width: 1328px;
	background-color: #FFF;
	margin: 40px auto;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	padding: 40px;
	line-height: 200%;
}

.journal-content b {
	font-family: Arial, sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 16px;
}



.online-submission-card {
	width: 550px;
	height: 580px;
	border: 1px solid #6588D7;
	border-radius: 4px;
	background-color: #fff;
	font-family: Arial, sans-serif;
	color: #333;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 遮罩层 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.online-submission-header {
	background-color: #f9f9f9;
	padding: 20px 30px;
	border-bottom: 1px solid #f0f0f0;
}

.online-submission-title {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	color: #000;
}

.online-submission-divider {
	border: 0;
	border-top: 1px solid #f0f0f0;
	margin: 15px 0;
}

.online-submission-declaration {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.declaration-item {
	margin-bottom: 10px;
}

.online-submission-body {
	padding: 40px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.online-submission-form {
	display: flex;
	flex-direction: column;
}

.online-submission-form-group {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.online-submission-form-label {
	width: 80px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	color: #303030;
}

.online-submission-form-input {
	flex-grow: 1;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.online-submission-form-input::placeholder {
	color: #999;
}

.online-submission-file-controls {
	flex-grow: 1;
	display: flex;
	align-items: center;
	height: 38px;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
}

.online-submission-file-button {
	background-color: #e6e6e6;
	color: #333;
	font-size: 13px;
	padding: 0 15px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-right: 1px solid #dcdcdc;
	margin: 0;
}

.online-submission-file-input-hidden {
	display: none;
}

.online-submission-file-status {
	color: #666;
	font-size: 13px;
	padding-left: 12px;
}

.online-submission-submit-container {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.online-submission-submit-btn {
	background-color: #3b5182;
	color: #fff;
	border: none;
	padding: 12px 60px;
	width: 247px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.online-submission-submit-btn:hover {
	background-color: #2e3d61;
}


.float-service {
	width: 134px;
	height: 163px;
	background-color: #6588D7;
	border-radius: 4px;
	box-shadow: 2px 4px 4px 0px #00000040;
	position: fixed;
	right: 10px;
	top: 50%;
	flex-direction: column;
	justify-content: space-between;
	display: flex;

}

.float-top {
	width: 134px;
	height: 41px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	padding-top: 10px;
}

.float-body {
	width: 134px;
	height: 112px;
	background-color: #FFF;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #2E4780;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: PingFang SC;
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	flex-direction: column;
}

.float-body img {
	width: 32px;
	height: 32px;
}

/* 分页样式 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.pagination .total {
    font-size: 14px;
    color: #666;
    margin-right: 20px;
    font-family: PingFang SC;
}

.pagination a.first_page,
.pagination a.last_page,
.pagination ul.pagination li a,
.pagination ul.pagination li span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #e4e7ed;
    padding: 0 10px;
    transition: all 0.2s ease;
    font-family: PingFang SC;
}

.pagination a.first_page:hover,
.pagination a.last_page:hover,
.pagination ul.pagination li a:hover {
    color: #2E4780;
    border-color: #2E4780;
    background: #f5f7fa;
}

.pagination ul.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.pagination ul.pagination li {
    list-style: none;
}

.pagination ul.pagination li.active span {
    background: #2E4780;
    color: #fff;
    border-color: #2E4780;
}

.pagination ul.pagination li.disabled span {
    color: #c0c4cc;
    background: #f5f7fa;
    border-color: #e4e7ed;
    cursor: not-allowed;
}

.pagination ul.pagination li.disabled span:hover {
    color: #c0c4cc;
    border-color: #e4e7ed;
    background: #f5f7fa;
}