html,
body {
	min-height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body > .page-main,
body > main {
	flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a:focus-visible,
a:hover ,
a:active {
    outline: none;
}
a:focus:not(:focus-visible) {
  outline: none;
}

/*******************************
	-------[页面公用样式]--------
********************************/
/* 二级页面banner样式 */
.list-banner {
	position: relative;
	overflow: hidden;
	height: 350px;
}
.list-banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list-banner .banner-con{
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	display:flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.list-banner .new-list-banner{
	bottom: 20px;
	height:auto;
	top: initial;
}
.list-banner .banner-con h5{
	font-weight: bold;
	font-size: 56px;
	color: #FFFFFF;
	margin:0 0 30px;
	line-height:1.0;
}
.list-banner .banner-con p{
	line-height:1.0;
	font-weight: 400;
	font-size: 22px;
	color: #FFFFFF;
}
.new-list-page .new-list-banner__inner {
	width: min(1040px, calc(100% - 48px));
}
.new-banner-search {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr) 176px;
	width: 100%;
	height: 78px;
	margin: 46px auto 0;
	padding: 5px;
	border-radius: 9999px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(31, 78, 159, .15);
}
.new-banner-search select,
.new-banner-search input,
.new-banner-search button {
	min-width: 0;
	border: 0;
	outline: 0;
	font-family: inherit;
}
.new-banner-search__select {
	height: 68px;
	padding: 0 20px 0 28px;
	color: #1d2b42;
	font-size: 18px;
	font-weight: 700;
	background: transparent;
	border-right: 1px solid #eef1f6;
	cursor: pointer;
}
.new-banner-search input {
	height: 68px;
	padding: 0 34px;
	color: #1d2b42;
	background: transparent;
	font-size: 18px;
}
.new-banner-search input::placeholder {
	color: #c7ccd6;
}
.new-banner-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 68px;
	border-radius: 9999px;
	color: #fff;
	background: #5570ff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}
.new-banner-search button img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}
/*******************************
	-------[头部]--------
********************************/
.header {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100px;
	padding: 0 clamp(24px, 3.2vw, 64px);
	gap: 0;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.site-logo {
	flex: 0 0 auto;
	min-width: 0;
}

.site-logo a,
.site-logo__image {
	display: block;
}

.site-logo__image {
	width: clamp(210px, 15vw, 284px);
	max-height: 58px;
	object-fit: contain;
}

/*******************************
	-------[导航]--------
********************************/

.header .site-nav {
	flex: 0 1 auto;
	min-width: 0;
	margin-left: auto;
}

.header .site-nav__list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: clamp(18px, 2.4vw, 60px);
	margin: 0;
	border: 0;
	white-space: nowrap;
}

.header .site-nav__list > li + li {
	margin-left: 0;
}

.header .site-nav__list::before,
.header .site-nav__list::after {
	display: none;
	content: none;
}

.header .site-nav__list > li {
	float: none;
	position: relative;
}

.header .site-nav__list > li > a {
	position: relative;
	padding:0;
	height: 100px;
	font-weight: 400;
	font-size: 18px;
	color: #343434;
	line-height: 100px;
	text-align: center;
	border-radius: 0;
	background: transparent;
}

.header .site-nav__list > li > a:hover,
.header .site-nav__list > li.active > a {
	color: #1F72F2;
	font-weight: 500;
	background: transparent;
}

.header .site-nav__list > li.active > a::before {
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	height: 2px;
	content: "";
	background: #1f73ff;
}

.header .site-nav__dropdown {
	position: absolute;
	top: calc(100% - 8px);
	left: 50%;
	z-index: 20;
	min-width: 136px;
	padding: 10px 0;
	background: rgba(0, 48, 110, .82);
	box-shadow: 0 12px 28px rgba(0, 31, 86, .22);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header .site-nav__dropdown a {
	display: block;
	height: auto;
	padding: 0 22px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 44px;
	text-align: center;
}

.header .site-nav__dropdown a:hover,
.header .site-nav__dropdown a:focus-visible {
	color: #fff;
	background: rgba(26, 116, 242, .62);
	text-decoration: none;
}

.header .site-nav__item--has-dropdown:hover .site-nav__dropdown,
.header .site-nav__item--has-dropdown:focus-within .site-nav__dropdown,
.header .site-nav__list > li:hover > .site-nav__dropdown,
.header .site-nav__list > li:focus-within > .site-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.header .site-search {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	margin-left: clamp(32px, 2.5vw, 52px);
	font-size: 22px;
	cursor: pointer;
}

/*******************************
	--------[底部]-------
********************************/

.site-footer {
	flex-shrink: 0;
	color: #d6deef;
	background: #121d3a;
	padding: 42px 0 22px;
}

.site-footer .site-footer__content {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(140px, .8fr) minmax(220px, 1.3fr) minmax(150px, auto) minmax(220px, auto);
	align-items: start;
	gap: clamp(24px, 3vw, 56px);
}

.site-footer .site-footer__group {
	min-width: 0;
}

.site-footer .site-footer__title {
	margin-bottom: 14px;
	color: #fff;
	font-size: 20px;
	font-weight: 100;
}

.site-footer .site-footer__links a{
	display: inline-block;
	max-width: 100%;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	white-space: nowrap;
}
.site-footer .site-footer__qrcode-text {
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	line-height: 24px;
}
.site-footer .site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	padding-top: 8px;
}

.site-footer .site-footer__brand-logo {
	width: 82px;
	margin: 0 auto 23px;
}

.site-footer .site-footer__brand-name {
	width: 216px;
}

.site-footer .site-footer__qrcode {
	text-align: center;
	min-width: 0;
}

.site-footer .site-footer__qrcode-img {
	width: 146px;
	height: 146px;
	margin: 0 auto 10px;
	object-fit: cover;
	background: #fff;
}

.site-footer .site-footer__copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 16px;
	color: rgba(255, 255, 255, .56);
	font-size: 12px;
}

.site-footer .site-footer__copyright p {
	margin: 0;
}

.site-footer .site-footer__copyright a {
	color: rgba(255, 255, 255, .72);
}

.site-footer .site-footer__copyright a:hover {
	color: #fff;
}

.site-footer .wrap {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
}

.footer-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 280px 390px;
	gap: 54px;
	align-items: start;
}

.footer-links {
	grid-column: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 42px;
}

.footer-links h3 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 20px;
	font-weight: 100;
	opacity: 0.4;
}

.footer-links a {
	display: block;
	margin: 12px 0;
	color: #fff;
	font-size: 16px;
}

.footer-logo {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	gap: 16px;
}

.footer-logo .top-logo {
	width: 78px;
}

.footer-logo .bottom-logo {
	width: 216px;
}

.qrs {
	grid-column: 3;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	text-align: center;
	color: #fff;
	font-size: 16px;
}

.qrs img {
	width: 136px;
	height: 136px;
	margin: 0 auto 12px;
	background: #fff;
	padding: 4px;
}

.qrs p {
	white-space: nowrap;
}

.copyright {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
	margin-top: 42px;
	padding-top: 26px;
	border-top: 1px solid rgba(255,255,255,.08);
	color: #fff;
	font-size: 14px;
}

/*******************************
	--------[分页条]-------
********************************/

.pagebar {
	display: flex;
	justify-content: center;
	padding: 52px 0 74px;
}

.pagebar__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #555;
	font-size: 16px;
	line-height: 1;
}

.pagebar__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	color: #6a6a6a;
	font-weight: 500;
	border: 1px solid #dcdcdc;
	background: #fff;
	transition: all .2s ease;
}

.pagebar__item:hover,
.pagebar__item:focus {
	color: #1f72f2;
	border-color: #1f72f2;
	text-decoration: none;
}

.pagebar__item--active,
.pagebar__item--active:hover,
.pagebar__item--active:focus {
	color: #fff;
	border-color: #1f72f2;
	background: #1f72f2;
}

.pagebar__item--next {
	min-width: 74px;
}

.pagebar__text {
	color: #555;
	white-space: nowrap;
}

.pagebar__input {
	width: 56px;
	height: 44px;
	padding: 0 8px;
	color: #303030;
	text-align: center;
	border: 1px solid #dcdcdc;
	outline: none;
	background: #fff;
}

.pagebar__input:focus {
	border-color: #1f72f2;
	box-shadow: 0 0 0 2px rgba(31, 114, 242, .12);
}

.pagebar__button {
	height: 44px;
	padding: 0 18px;
	color: #fff;
	font-weight: 500;
	border: 1px solid #1f72f2;
	background: #1f72f2;
	outline: none;
	transition: all .2s ease;
}

.pagebar__button:hover,
.pagebar__button:focus {
	background: #155fd0;
	border-color: #155fd0;
}

/*******************************
	--------[新闻列表]-------
********************************/

.news-list-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 52px 0 74px;
	color: #555;
	font-size: 16px;
}

.news-list-pagination .pageBtnWrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.news-list-pagination a,
.news-list-pagination .curr,
.news-list-pagination .disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	color: #6a6a6a;
	font-weight: 500;
	border: 1px solid #dcdcdc;
	background: #fff;
	transition: all .2s ease;
}

.news-list-pagination a:hover,
.news-list-pagination a:focus {
	color: #1f72f2;
	border-color: #1f72f2;
	text-decoration: none;
}

.news-list-pagination .curr {
	color: #fff;
	border-color: #1f72f2;
	background: #1f72f2;
}

.news-list-pagination .disabled {
	color: #bbb;
	cursor: not-allowed;
}

.news-list-pagination .goPageBox {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.news-list-pagination #page-input {
	width: 56px;
	height: 44px;
	padding: 0 8px;
	color: #303030;
	text-align: center;
	border: 1px solid #dcdcdc;
	outline: none;
	background: #fff;
}

.news-list-page .page-main {
	background: #fff;
}

.news-list-page .news-tabs {
	height: 72px;
	background: #fff;
	box-shadow: 0 5px 16px rgba(31, 115, 255, .08);
}

.news-list-page .news-tabs .container {
	height: 100%;
}

.news-list-page .news-tabs__list {
	display: flex;
	justify-content: center;
	height: 100%;
	margin: 0;
	border: 0;
}

.news-list-page .news-tabs__list > li {
	flex: 1;
	float: none;
	margin: 0;
}

.news-list-page .news-tabs__list > li > a {
	height: 72px;
	margin: 0;
	padding: 0 24px;
	color: #656565;
	font-size: 22px;
	line-height: 72px;
	text-align: center;
	border: 0;
	border-radius: 0;
	background: #fff;
}

.news-list-page .news-tabs__list > li.active > a,
.news-list-page .news-tabs__list > li.active > a:hover,
.news-list-page .news-tabs__list > li.active > a:focus,
.news-list-page .news-tabs__list > li > a:hover {
	color: #1f73ff;
	border:none;
}

.news-list-page .news-list {
	max-width: 100%;
	margin: 5px auto;
}

.news-list-page .news-list__item {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: 31px 0;
	border-bottom: 1px solid #EDEDED;
	position: relative;
}
.news-list-page .news-list__item::before{
	content: "";
    width: 0;
    z-index: 2;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: 0;
    display: block;
    background-size: cover;
    transition: all .6s ease;
    background-color: #1F72F2;
    position: absolute;
}
.news-list-page .news-list__item:hover::before{
	width: 100%;
}
.news-list-page .news-list__content {
	display: flex;
	align-items: flex-start;
	flex: 1 1 auto;
	min-width: 0;
}

.news-list-page .news-list__date {
	flex: 0 0 83px;
	width: 83px;
	height: 87px;
	margin-right: 22px;
	color: #303030;
	text-align: center;
	border: 1px solid #DCDCDC;
	border-bottom: 2px solid #1F72F2;
	padding-top: 10px;
	position: relative;
}
.news-list-page .news-list__date::before{
	content: "";
	background-color: #1F72F2;
	width: 100%;
	height: 0;
	position: absolute;
    transition: all .6s ease;
	left:0;
	bottom:0;
	z-index: 0;
}
.news-list-page .news-list__item:hover .news-list__date::before{
	height:100%;
}
.news-list-page .news-list__day {
	position: relative;
	z-index: 1;
	display: block;
	color: #303030;
	font-size: 26px;
	font-weight: 500;
}
.news-list-page .news-list__item:hover .news-list__day {
	color:#fff;
}
.news-list-page .news-list__month {
	position: relative;
	z-index: 1;
	color: #303030;
	font-size: 16px;
}
.news-list-page .news-list__item:hover .news-list__month {
	color:#fff;
}
.news-list-page .news-list__body {
	min-width: 0;
	padding-top: 1px;
}

.news-list-page .news-list__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
}
.news-list-page .news-list__title a {
	display: block;
	overflow: hidden;
	color: #303030;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-list-page .news-list__title a:focus,
.news-list-page .news-list__title a:active {
	outline: none;
	box-shadow: none;
}
.news-list-page .news-list__item:hover .news-list__title a{
	color: #1F72F2;
}

.news-list-page .news-list__summary {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #858585;
	font-size: 14px;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.news-list-page .news-list__summary a,
.news-list-page .news-list__summary a:hover,
.news-list-page .news-list__summary a:focus,
.news-list-page .news-list__summary a:active,
.news-list-page .news-list__summary a:visited {
	color: inherit;
	text-decoration: none;
}

.news-list-page .news-list__cover {
	flex: 0 0 212px;
	width: 212px;
	height: 120px;
	overflow: hidden;
	background: #eef3fb;
}

.news-list-page .news-list__cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.news-list-page .news-list__item:hover .news-list__cover img {
	transform: scale(1.04);
}

/*******************************
	--------[图书中心]-------
********************************/

.book-center-page {
	background: #fff;
}

.book-center-page .list-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.book-search {
	position: relative;
	z-index: 2;
	margin: -31px auto 34px;
	max-width: 1004px;
}

.book-search__form {
	display: flex;
	align-items: center;
	height: 62px;
	padding: 6px;
	border-radius: 31px;
	background: #fff;
	box-shadow: 0 9px 24px rgba(27, 55, 111, .14);
}

.book-search__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 50px;
	padding: 0 32px;
	color: #303a45;
	font-size: 15px;
	border: 0;
	border-radius: 25px;
	outline: none;
	background: transparent;
}

.book-search__input::placeholder,
.book-title-search input::placeholder {
	color: #b6bfca;
}

.book-search__button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 150px;
	height: 50px;
	padding: 0 28px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	border: 0;
	border-radius: 25px;
	background: linear-gradient(90deg, #2c7bf4 0%, #5b6df7 100%);
	outline: none;
	box-shadow: 0 6px 13px rgba(47, 105, 244, .24);
}

.book-filters {
	margin-bottom: 34px;
}

.book-category {
	display: grid;
	grid-template-columns: repeat(11, minmax(0, 1fr));
	align-items: center;
	gap: 10px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	overflow: visible;
}

.book-category::-webkit-scrollbar {
	display: none;
}

.book-category-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	align-items: start;
	gap: 8px;
	margin-bottom: 26px;
}

.book-category-panel .book-category {
	display: grid;
	grid-template-columns: repeat(11, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 0;
	overflow: visible;
}

.book-category-panel .book-category li {
	min-width: 0;
}

.book-category-panel .book-category a {
	padding: 0 8px;
}

.book-category.is-collapsed .book-category__extra {
	display: none;
}

.book-category-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 56px;
	padding: 0;
	color: #8e98a6;
	font-size: 14px;
	background: #F4F3F2;
	border:none;
	border-radius: 4px;
	outline: none;
	transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.book-category-toggle:hover,
.book-category-toggle:focus,
.book-category-toggle.is-open {
	color: #1F72F2;
	border-color: #1F72F2;
	box-shadow: 0 4px 12px rgba(31, 114, 242, .16);
}

.book-category-toggle i {
	transition: transform .2s ease;
}

.book-category-toggle.is-open i {
	transform: rotate(180deg);
}

.book-category li {
	flex: 0 0 96px;
	min-width: 0;
}

.book-category a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	overflow: hidden;
	color: #28384c;
	font-size: 14px;
	font-weight: 700;
	border-radius: 8px;
	background: #f6faff;
	text-decoration: none;
}

.book-category a::after {
	content: "";
	position: absolute;
	right: -15px;
	bottom: -15px;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: rgba(42, 126, 245, .22);
}

.book-category li a {
	background: var(--book-category-bg, #f6faff);
}

.book-category li a::after {
	background: var(--book-category-after, rgba(42, 126, 245, .22));
}

.book-category li.active a,
.book-category a:hover,
.book-category a:focus {
	color: #fff;
	background: #1F72F2;
	text-decoration: none;
	outline: none;
}

.book-category li.active a::after,
.book-category a:hover::after,
.book-category a:focus::after {
	background: #F3F8FF;
}

.book-filter-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 20px;
	min-height: 46px;
	color: #666f7c;
	font-size: 14px;
}

.book-filter-row + .book-filter-row {
	margin-top: 12px;
}

.book-filter-row__label {
	color: #8c96a3;
	font-size: 16px;
	white-space: nowrap;
}

.book-filter-row__options {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 28px;
	min-width: 0;
}

.book-filter-row__options a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 70px;
	height: 34px;
	color: #697481;
	text-decoration: none;
	white-space: nowrap;
}

.book-filter-row__options a.active {
	color: #fff;
	font-weight: 700;
	border-radius: 17px;
	background: #2676f2;
	outline: none;
	padding: 0 8px;
}

.book-filter-row__options a.is-desc::after {
	content: "\2193";
	margin-left: 4px;
	font-weight: 700;
}

.book-filter-row__options a.is-asc::after {
	content: "\2191";
	margin-left: 4px;
	font-weight: 700;
}

.book-filter-row--sort .book-filter-row__options a.active {
	color: #2676f2;
	background: transparent;
	outline: none;
}

.book-price-range,
.book-title-search {
	display: flex;
	align-items: center;
}

.book-price-range {
	gap: 10px;
}

.book-price-range input {
	width: 78px;
	height: 34px;
	padding: 0 10px;
	color: #303a45;
	border: 1px solid #e3e8f0;
	border-radius: 6px;
	outline: none;
	background: #fff;
}

.book-price-range span {
	color: #c4cbd5;
}

.book-price-range button {
	width: 72px;
	height: 34px;
	color: #fff;
	font-weight: 700;
	border: 0;
	border-radius: 6px;
	background: #2676f2;
	outline: none;
}

.book-title-search {
	width: 394px;
	height: 46px;
}

.book-title-search input {
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	padding: 0 24px;
	color: #303a45;
	border: 1px solid #e3e8f0;
	border-right: 0;
	border-radius: 4px 0 0 4px;
	outline: none;
	background: #fff;
}

.book-title-search button {
	flex: 0 0 72px;
	width: 72px;
	height: 100%;
	color: #fff;
	font-size: 20px;
	border: 0;
	border-radius: 0 4px 4px 0;
	background: #2676f2;
	outline: none;
}

.book-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 18px;
}

.book-list-state {
	grid-column: 1 / -1;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	margin: 0;
	padding: 40px 24px;
	color: #8a96a6;
	font-size: 16px;
	line-height: 1.7;
	text-align: center;
	border: 1px dashed #dce5f2;
	border-radius: 8px;
	background: #fbfcff;
}

.book-list-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	color: #7fa0d0;
	font-size: 25px;
	border-radius: 50%;
	background: #edf4ff;
}

.book-list-state--error .book-list-state__icon {
	color: #d58b83;
	background: #fff1ef;
}

.book-list-state__spinner {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-bottom: 18px;
	border: 3px solid #dce8ff;
	border-top-color: #2676f2;
	border-radius: 50%;
	animation: book-list-spin .8s linear infinite;
}

@keyframes book-list-spin {
	to {
		transform: rotate(360deg);
	}
}

.book-card {
	cursor: pointer;
	min-width: 0;
	padding: 30px 26px 25px;
	text-align: center;
	border-radius: 8px;
	background: #f3f7ff;
	transition: transform .2s ease, box-shadow .2s ease;
}

.book-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(35, 75, 130, .14);
}

.book-card__cover {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 252px;
	margin-bottom: 22px;
}

.book-card__cover img {
	display: block;
	max-width: 168px;
	max-height: 240px;
	width: auto;
	height: auto;
	object-fit: contain;
	/* box-shadow: 0 8px 18px rgba(26, 50, 84, .12); */
	transition: transform .2s ease;
}

.book-card:hover .book-card__cover img {
	transform: scale(1.03);
}

.book-card__title {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
	line-height: 24px;
}

.book-card__title a {
	display: block;
	overflow: hidden;
	color: #3f4651;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
}

.book-card__title a:hover {
	color: #2676f2;
}

.book-card__price {
	color: #f00;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
}

.book-center-page .pagebar {
	padding-top: 46px;
}

/*******************************
	--------[新闻详情]-------
********************************/

.news-detail-page {
	background: #fff;
}

.news-detail__breadcrumb {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px 0 12px;
	color: #a4a4a4;
	font-size: 14px;
	line-height: 22px;
}

.news-detail__breadcrumb a,
.news-detail__breadcrumb strong {
	color: #a4a4a4;
	font-weight: 400;
}

.news-detail__breadcrumb a:hover {
	color: #1f72f2;
	text-decoration: none;
}

.news-detail__header {
	border-bottom: 1px solid #f0f0f0;
}

.news-detail__title {
	margin: 0;
	color: #303030;
	font-size: 30px;
	font-weight: 700;
	line-height: 42px;
}

.news-detail__meta {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	padding: 20px 0 24px;
	color: #a2a2a2;
	font-size: 14px;
	line-height: 24px;
}

.news-detail__meta > span:nth-child(2) {
	text-align: center;
}

.news-detail__font-size {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.news-detail__font-size button {
	width: 22px;
	height: 22px;
	padding: 0;
	color: #fff;
	font-size: 12px;
	line-height: 22px;
	text-align: center;
	border: 0;
	border-radius: 50%;
	background: #cfcfcf;
}

.news-detail__font-size .is-active {
	background: #e60012;
}

.news-detail__layout {
	position: relative;
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr);
	align-items: start;
	gap: 72px;
	padding: 30px 0 70px;
}

.news-detail__share {
	align-self: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 66px;
	padding: 27px 0 32px;
	background: #f3f7fd;
}

.news-detail__share span {
	margin-bottom: 18px;
	color: #7d8490;
	font-size: 13px;
	line-height: 20px;
}

.news-detail__share a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-top: 12px;
	color: #fff;
	font-size: 17px;
	border-radius: 50%;
	text-decoration: none;
}

.news-detail__share .is-qq {
	background: #4e73ff;
}

.news-detail__share .is-wechat {
	background: #31c989;
}

.news-detail__share .is-weibo {
	background: #fa3d48;
}

.wechat-share-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .45);
}

.wechat-share-modal.is-open {
	display: flex;
}

.wechat-share-modal__dialog {
	position: relative;
	width: 300px;
	max-width: 100%;
	padding: 28px 30px 30px;
	text-align: center;
	background: #fff;
	box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.wechat-share-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	padding: 0;
	color: #888;
	font-size: 22px;
	line-height: 28px;
	border: 0;
	background: transparent;
}

.wechat-share-modal__title {
	margin: 0 0 18px;
	color: #303030;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
}

.wechat-share-modal__qrcode {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	margin: 0 auto;
	overflow: hidden;
}

.wechat-share-modal__qrcode iframe,
.wechat-share-modal__qrcode canvas,
.wechat-share-modal__qrcode table {
	display: block;
}

.wechat-share-modal__tip {
	margin: 16px 0 0;
	color: #777;
	font-size: 14px;
	line-height: 22px;
}

.news-detail__content {
	max-width: 100%;
	color: #696969;
	font-size: 16px;
	line-height: 2.15;
}

.news-detail__content p,
.news-detail__content span,
.news-detail__content font,
.news-detail__content a,
.news-detail__content li,
.news-detail__content th,
.news-detail__content td,
.news-detail__content blockquote,
.news-detail__content pre,
.news-detail__content code,
.news-detail__content h1,
.news-detail__content h2,
.news-detail__content h3,
.news-detail__content h4,
.news-detail__content h5,
.news-detail__content h6 {
	font-size: inherit !important;
}

.news-detail__content p {
	margin: 0 0 14px;
	text-indent: 2em;
}

.news-detail__figure {
	margin: 24px auto 30px;
	text-align: center;
}

.news-detail__figure img {
	display: block;
	width: min(610px, 100%);
	margin: 0 auto;
}

.news-detail__figure figcaption {
	margin-top: 12px;
	color: #7d7d7d;
	font-size: 13px;
	line-height: 24px;
	text-align: center;
}

/*******************************
	--------[关于我们]-------
********************************/
.about-us-page{
	padding-bottom: 57px;
}
.aboutUs-tabs {
	margin: 42px auto;
}

.aboutUs-tabs__list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: center;
	min-height: 60px;
	padding: 5px;
	margin: 0;
	list-style: none;
	border-radius: 30px;
	background: #f5f6f8;
}

.aboutUs-tabs__list li {
	min-width: 0;
}

.aboutUs-tabs__list a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 14px;
	color: #7d8794;
	font-size: 15px;
	line-height: 1;
	text-align: center;
	border-radius: 25px;
	text-decoration: none;
	transition: all .2s ease;
}

.aboutUs-tabs__list li.active a,
.aboutUs-tabs__list a:hover,
.aboutUs-tabs__list a:focus {
	color: #fff;
	background: #2f7df5;
	box-shadow: 0 8px 18px rgba(47, 125, 245, .24);
	outline: none;
}

.aboutUs-section {
	text-align: center;
}

.aboutUs-title {
	margin: 0 0 30px;
	color: #303a45;
	font-size: 28px;
	font-weight: 700;
	line-height: 38px;
}

.aboutUs-content {
	max-width: 1160px;
	margin: 0 auto 54px;
	color: #7a8490;
	font-size: 14px;
	line-height: 2.1;
	text-align: left;
}

.aboutUs-content p {
	margin: 0 0 14px;
	text-indent: 2em;
}

.aboutUs-figure {
	margin: 0;
}

.aboutUs-figure img {
	display: block;
	width: 100%;
	min-height: 420px;
	object-fit: cover;
	background: #edf5ff;
}

.aboutUs-figure figcaption {
	margin-top: 22px;
	color: #8d99a8;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
}

.recruitment-section {
	padding-bottom: 6px;
}

.recruitment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 18px;
}

.recruitment-card {
	display: block;
	overflow: hidden;
	min-height: 210px;
	color: inherit;
	border: 1px solid #dbe5f1;
	border-radius: 4px;
	background: #fff;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.recruitment-card:hover,
.recruitment-card:focus {
	color: inherit;
	border-color: #b8cef0;
	box-shadow: 0 10px 24px rgba(35, 75, 130, .12);
	text-decoration: none;
	transform: translateY(-2px);
}

.recruitment-card__head {
	overflow: hidden;
	height: 88px;
	padding: 0 40px;
	background: url(../../images/aboutUs-title-bg.png) no-repeat;
	background-size: cover;
}

.recruitment-card__title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #23436f;
	font-size: 21px;
	font-weight: 700;
	line-height: 88px;
}

.recruitment-card__body {
	position: relative;
	min-height: 300px;
	padding: 24px 36px;
}

.recruitment-card__subtitle {
	margin: 0 0 8px;
	color: #2C4165;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}

.recruitment-card__list {
	margin: 0;
	padding-left: 0;
	color: #2C4165;
	font-size: 14px;
	line-height: 28px;
	list-style-position: inside;
}

.recruitment-card__list li {
	margin: 0;
}

.recruitment-card__more {
	position:absolute;
	right: 40px;
	bottom: 37px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 104px;
	height: 36px;
	padding: 0 22px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border-radius: 18px;
	background: #347df5;
	text-decoration: none;
}

.recruitment-card__more:hover,
.recruitment-card__more:focus {
	color: #fff;
	background: #246ce1;
	text-decoration: none;
	outline: none;
}

.pagination {
	display: none;
}

/*Common For Max 960*/
@media only screen and (min-width: 993px) and (max-width: 1199px) {
	.header .site-nav {
		display: none;
	}

	.header .site-search {
		margin-left: auto;
	}
}

@media only screen and (max-width: 1199px) {
	.header {
		padding-left: 28px;
		padding-right: 28px;
		gap: 0;
	}

	.header .site-nav__list {
		gap: clamp(14px, 2.2vw, 48px);
	}

	.site-footer .site-footer__content {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.site-footer .site-footer__brand {
		grid-column: span 2;
	}

	.footer-grid,
	.footer-links {
		grid-template-columns: 1fr;
	}

	.news-list-page .news-list {
		width: 860px;
	}

	.news-list-page .news-tabs__list > li > a {
		font-size: 20px;
	}

	.news-list-page .news-list__item {
		gap: 22px;
	}

	.news-list-page .news-list__cover {
		flex-basis: 190px;
		width: 190px;
		height: 108px;
	}

	.news-detail__title {
		font-size: 28px;
		line-height: 40px;
	}

	.news-detail__layout {
		gap: 48px;
	}

	.aboutUs-tabs__list a {
		font-size: 14px;
	}

	.aboutUs-figure img {
		min-height: 360px;
	}

	.recruitment-card__head {
		padding-right: 28px;
		padding-left: 28px;
	}

	.recruitment-card__body {
		padding-right: 28px;
		padding-left: 28px;
	}

	.recruitment-card__more {
		right: 28px;
	}

	.book-category li {
		flex-basis: 88px;
	}

	.book-category-panel .book-category {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.book-filter-row__options {
		gap: 10px 18px;
	}

	.book-title-search {
		width: 340px;
	}

	.book-card {
		padding-right: 18px;
		padding-left: 18px;
	}

	.book-card__cover {
		height: 226px;
	}

	.book-card__cover img {
		max-width: 150px;
		max-height: 218px;
	}

}

/*Common For Max 768*/
@media only screen and (max-width: 992px) {
	.header {
		flex-wrap: wrap;
		align-items: center;
		min-height: auto;
		padding: 16px 24px 0;
		gap: 12px 18px;
	}

	.site-logo {
		flex: 1 1 auto;
	}

	.site-logo__image {
		width: 240px;
	}

	.header .site-search {
		order: 2;
	}

	.header .site-nav {
		order: 3;
		flex: 0 0 100%;
		margin: 4px -24px 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		border-top: 1px solid #f0f2f6;
	}

	.header .site-nav__list {
		justify-content: flex-start;
		gap: 0;
		min-width: max-content;
		padding: 0 18px;
	}

	.header .site-nav__list > li > a {
		height: 54px;
		padding: 0 16px;
		font-size: 16px;
		line-height: 54px;
	}

	.site-footer {
		padding-top: 36px;
	}

	.site-footer .site-footer__content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.site-footer .site-footer__brand {
		grid-column: 1 / -1;
	}

	.site-footer .site-footer__copyright {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}

	.news-list-page .news-tabs {
		height: 60px;
	}

	.list-banner .banner-con h5{
		font-size: 36px;
		margin:0 0 20px;
	}
	.list-banner .banner-con p{
		font-size: 18px;
	}

	.new-list-page .new-list-banner__inner {
		width: min(860px, calc(100% - 40px));
	}

	.new-banner-search {
		grid-template-columns: 112px minmax(0, 1fr) 140px;
		height: 62px;
		margin-top: 34px;
	}

	.new-banner-search__select,
	.new-banner-search input {
		height: 52px;
		font-size: 16px;
	}

	.new-banner-search__select {
		padding: 0 16px 0 22px;
	}

	.new-banner-search input {
		padding: 0 24px;
	}

	.new-banner-search button {
		height: 52px;
		font-size: 16px;
	}

	.news-list-page .news-tabs__list > li > a {
		height: 60px;
		padding: 0 16px;
		font-size: 18px;
		line-height: 60px;
	}

	.news-list-page .news-list {
		width: 100%;
		margin-top: 0;
	}

	.news-list-page .news-list__item {
		gap: 18px;
		padding: 24px 0;
	}

	.news-list-page .news-list__date {
		flex-basis: 72px;
		width: 72px;
		height: 76px;
		margin-right: 16px;
		padding-top: 8px;
	}

	.news-list-page .news-list__day {
		font-size: 23px;
	}

	.news-list-page .news-list__month {
		font-size: 14px;
	}

	.news-list-page .news-list__title {
		font-size: 17px;
	}

	.news-list-page .news-list__cover {
		flex-basis: 170px;
		width: 170px;
		height: 96px;
	}

	.news-list-page .pagebar {
		padding: 42px 0 60px;
	}

	.news-list-page .pagebar__nav {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.news-detail__meta {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.news-detail__meta > span:nth-child(2) {
		text-align: left;
	}

	.news-detail__font-size {
		justify-content: flex-start;
	}

	.news-detail__layout {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 28px;
	}

	.news-detail__share {
		width: 54px;
	}

	.aboutUs-tabs {
		margin-bottom: 34px;
	}

	.aboutUs-tabs .container {
		width: 100%;
		padding-right: 16px;
		padding-left: 16px;
	}

	.aboutUs-tabs__list {
		display: flex;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.aboutUs-tabs__list::-webkit-scrollbar {
		display: none;
	}

	.aboutUs-tabs__list li {
		flex: 0 0 128px;
	}

	.aboutUs-title {
		margin-bottom: 24px;
		font-size: 24px;
		line-height: 34px;
	}

	.aboutUs-content {
		margin-bottom: 40px;
	}

	.aboutUs-figure img {
		min-height: 300px;
	}

	.recruitment-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.recruitment-card {
		min-height: 0;
	}

	.book-search {
		margin-bottom: 28px;
	}

	.book-category {
		display: flex;
		margin-bottom: 22px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.book-category-panel {
		margin-bottom: 22px;
	}

	.book-category-panel .book-category {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		overflow: visible;
	}

	.book-filter-row {
		grid-template-columns: auto minmax(0, 1fr);
		row-gap: 12px;
	}

	.book-price-range,
	.book-title-search {
		grid-column: 2;
		justify-self: start;
	}

	.book-title-search {
		width: min(100%, 394px);
	}

	.book-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.book-card__cover {
		height: 240px;
	}

	.book-card__cover img {
		max-width: 160px;
		max-height: 230px;
	}

}
 
@media only screen and (max-width: 767px) {
	.new-list-page .list-banner {
		height: 160px;
	}

	.header {
		padding: 14px 16px 0;
	}

	.site-logo__image {
		width: 220px;
		max-height: 48px;
	}

	.header .site-search {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}

	.header .site-nav {
		margin-left: -16px;
		margin-right: -16px;
	}

	.header .site-nav__list {
		padding: 0 10px;
	}

	.header .site-nav__list > li > a {
		height: 48px;
		padding: 0 12px;
		font-size: 15px;
		line-height: 48px;
	}

	.site-footer {
		padding: 30px 0 20px;
	}

	.site-footer .site-footer__content {
		gap: 26px 20px;
	}

	.site-footer .site-footer__title {
		margin-bottom: 10px;
		font-size: 18px;
	}

	.site-footer .site-footer__links a {
		font-size: 14px;
		line-height: 30px;
	}

	.site-footer .site-footer__brand-logo {
		width: 64px;
		margin-bottom: 14px;
	}

	.site-footer .site-footer__brand-name {
		width: 170px;
	}

	.site-footer .site-footer__qrcode-img {
		width: 112px;
		height: 112px;
	}

	.footer-grid {
		gap: 28px;
	}

	.footer-logo {
		position: static;
		transform: none;
		justify-self: center;
	}

	.qrs {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	.footer-links {
		gap: 14px;
		text-align: left;
	}

	.footer-links h3 {
		margin-bottom: 8px;
	}

	.footer-links a {
		margin: 7px 0;
		font-size: 12px;
	}

	.qrs img {
		width: 112px;
		height: 112px;
	}
  
  .list-banner{
		height: 180px;
	}


	.list-banner .banner-con h5{
		font-size: 24px;
		margin:0 0 15px;
	}
	.list-banner .banner-con p{
		font-size: 14px;
	}

	.new-list-page .new-list-banner__inner {
		width: calc(100% - 28px);
	}

	.new-banner-search {
		grid-template-columns: 84px minmax(0, 1fr) 94px;
		height: 50px;
		margin-top: 26px;
		padding: 5px;
	}

	.new-banner-search__select,
	.new-banner-search input {
		height: 40px;
		font-size: 14px;
	}

	.new-banner-search__select {
		padding: 0 8px 0 14px;
	}

	.new-banner-search input {
		padding: 0 16px;
	}

	.new-banner-search button {
		height: 40px;
		gap: 6px;
		font-size: 14px;
	}

	.new-banner-search button img {
		width: 14px;
		height: 14px;
	}

	.news-list-page .news-tabs {
		height: auto;
	}

	.news-list-page .news-tabs__list {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.news-list-page .news-tabs__list > li {
		flex: 0 0 auto;
	}

	.news-list-page .news-tabs__list > li > a {
		min-width: 118px;
		height: 50px;
		padding: 0 18px;
		font-size: 16px;
		line-height: 50px;
	}

	.news-list-page .news-list__item {
		align-items: flex-start;
		gap: 14px;
		padding: 20px 0;
	}

	.news-list-page .news-list__content {
		align-items: flex-start;
	}

	.news-list-page .news-list__date {
		flex-basis: 60px;
		width: 60px;
		height: 64px;
		margin-right: 12px;
		padding-top: 6px;
	}

	.news-list-page .news-list__day {
		font-size: 20px;
	}

	.news-list-page .news-list__month {
		font-size: 12px;
	}

	.news-list-page .news-list__title {
		margin-bottom: 7px;
		font-size: 16px;
		line-height: 22px;
	}

	.news-list-page .news-list__summary {
		font-size: 13px;
		line-height: 22px;
	}

	.news-list-page .news-list__cover {
		flex-basis: 132px;
		width: 132px;
		height: 78px;
	}

	.news-list-page .pagebar {
		padding: 34px 0 48px;
	}

	.news-list-page .pagebar__nav {
		gap: 7px;
		width: 100%;
	}

	.news-list-page .pagebar__item {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 14px;
	}

	.news-list-page .pagebar__item--next {
		min-width: 66px;
	}

	.news-list-page .pagebar__input {
		width: 48px;
		height: 38px;
	}

	.news-list-page .pagebar__button {
		height: 38px;
		padding: 0 14px;
		font-size: 14px;
	}

	.news-detail__breadcrumb {
		gap: 8px;
		padding-top: 14px;
		font-size: 13px;
	}

	.news-detail__title {
		font-size: 22px;
		line-height: 32px;
	}

	.news-detail__meta {
		padding: 14px 0 18px;
		font-size: 13px;
	}

	.news-detail__layout {
		display: block;
		padding: 22px 0 46px;
	}

	.news-detail__share {
		flex-direction: row;
		width: 100%;
		padding: 12px 14px;
		margin-bottom: 20px;
	}

	.news-detail__share span {
		margin: 0 12px 0 0;
	}

	.news-detail__share a {
		width: 32px;
		height: 32px;
		margin: 0 8px 0 0;
		font-size: 15px;
	}

	.news-detail__content {
		max-width: none;
		font-size: 15px;
		line-height: 2;
	}

	.news-detail__figure {
		margin: 18px auto 24px;
	}

	.about-us-page {
		padding-bottom: 52px;
	}

	.aboutUs-tabs {
		margin-bottom: 28px;
	}

	.aboutUs-tabs__list {
		min-height: 52px;
		border-radius: 26px;
	}

	.aboutUs-tabs__list li {
		flex-basis: 112px;
	}

	.aboutUs-tabs__list a {
		height: 42px;
		font-size: 13px;
		border-radius: 21px;
	}

	.aboutUs-title {
		font-size: 22px;
		line-height: 32px;
	}

	.aboutUs-content {
		font-size: 13px;
		line-height: 2;
	}

	.aboutUs-figure img {
		min-height: 220px;
	}

	.aboutUs-figure figcaption {
		margin-top: 14px;
	}

	.recruitment-grid {
		gap: 16px;
	}

	.recruitment-card__head {
		height: 62px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.recruitment-card__head::before {
		right: 34px;
	}

	.recruitment-card__head::after {
		right: 210px;
	}

	.recruitment-card__title {
		font-size: 18px;
		line-height: 62px;
	}

	.recruitment-card__body {
		padding: 18px 20px 58px;
	}

	.recruitment-card__more {
		right: 20px;
		bottom: 20px;
	}

	.book-search {
		margin-top: -24px;
		margin-bottom: 24px;
	}

	.book-search__form {
		height: 54px;
		border-radius: 27px;
	}

	.book-search__input {
		height: 42px;
		padding: 0 18px;
		font-size: 14px;
	}

	.book-search__button {
		min-width: 104px;
		height: 42px;
		padding: 0 18px;
		font-size: 15px;
	}

	.book-category {
		gap: 8px;
		margin-bottom: 18px;
	}

	.book-category li {
		flex-basis: 76px;
	}

	.book-category a {
		height: 46px;
		font-size: 13px;
	}

	.book-category-panel {
		grid-template-columns: minmax(0, 1fr) 30px;
		gap: 6px;
		margin-bottom: 18px;
	}

	.book-category-panel .book-category {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.book-category-panel .book-category a {
		padding: 0 6px;
	}

	.book-category-toggle {
		width: 30px;
		height: 46px;
	}

	.book-filter-row {
		display: block;
		min-height: 0;
	}

	.book-filter-row + .book-filter-row {
		margin-top: 18px;
	}

	.book-filter-row__label {
		margin-bottom: 8px;
		font-size: 14px;
	}

	.book-filter-row__options {
		gap: 8px 12px;
		margin-bottom: 10px;
	}

	.book-filter-row__options a {
		min-width: 62px;
		height: 30px;
		font-size: 13px;
	}

	.book-price-range,
	.book-title-search {
		width: 100%;
	}

	.book-title-search {
		height: 42px;
	}

	.book-title-search button {
		flex-basis: 58px;
		width: 58px;
	}

	.book-grid {
		gap: 16px;
	}

	.book-card {
		padding: 22px 16px 20px;
	}

	.book-card__cover {
		height: 220px;
		margin-bottom: 18px;
	}

	.book-card__title {
		font-size: 15px;
		line-height: 22px;
	}

	.book-center-page .pagebar {
		padding: 34px 0 48px;
	}

	.book-center-page .pagebar__nav {
		flex-wrap: wrap;
		gap: 7px;
		width: 100%;
	}

	.book-center-page .pagebar__item {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 14px;
	}

	.book-center-page .pagebar__item--next {
		min-width: 66px;
	}

	.book-center-page .pagebar__input {
		width: 48px;
		height: 38px;
	}

	.book-center-page .pagebar__button {
		height: 38px;
		padding: 0 14px;
		font-size: 14px;
	}

}

/*Common For Max 414*/
@media only screen and (max-width: 479px) {
	.header {
		padding-top: 12px;
	}

	.site-logo__image {
		width: min(200px, calc(100vw - 82px));
	}

	.header .site-nav__list > li > a {
		height: 44px;
		padding: 0 10px;
		font-size: 14px;
		line-height: 44px;
	}

	.site-footer .site-footer__content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-footer .site-footer__brand {
		grid-column: auto;
	}

	.site-footer .site-footer__links a {
		white-space: normal;
	}

	.site-footer .site-footer__copyright {
		display: block;
		line-height: 24px;
	}

	.list-banner .banner-con h5{
		font-size: 24px;
		margin:0 0 12px;
	}
	.list-banner .banner-con p{
		display:none;
	}

	.new-banner-search {
		margin-top: 20px;
	}
	.news-list-page .news-list__item {
		display: block;
		padding: 18px 0;
	}

	.news-list-page .news-list__content {
		margin-bottom: 12px;
	}

	.news-list-page .news-list__date {
		flex-basis: 54px;
		width: 54px;
		height: 58px;
		margin-right: 10px;
		padding-top: 5px;
	}

	.news-list-page .news-list__day {
		font-size: 18px;
	}

	.news-list-page .news-list__title a {
		white-space: normal;
	}

	.news-list-page .news-list__summary {
		-webkit-line-clamp: 3;
	}

	.news-list-page .news-list__cover {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.news-list-page .pagebar {
		padding: 28px 0 40px;
	}

	.news-list-page .pagebar__nav {
		justify-content: center;
		gap: 6px;
	}

	.news-list-page .pagebar__item {
		min-width: 34px;
		height: 34px;
		padding: 0 8px;
		font-size: 13px;
	}

	.news-list-page .pagebar__item--next {
		min-width: 58px;
	}

	.news-list-page .pagebar__text {
		font-size: 13px;
	}

	.news-list-page .pagebar__input {
		width: 44px;
		height: 34px;
		font-size: 13px;
	}

	.news-list-page .pagebar__button {
		height: 34px;
		padding: 0 12px;
		font-size: 13px;
	}

	.news-detail__breadcrumb {
		flex-wrap: wrap;
	}

	.news-detail__title {
		font-size: 20px;
		line-height: 30px;
	}

	.news-detail__content {
		font-size: 14px;
	}

	.news-detail__figure figcaption {
		font-size: 12px;
		line-height: 22px;
	}

	.aboutUs-tabs .container {
		padding-right: 10px;
		padding-left: 10px;
	}

	.aboutUs-content p {
		text-indent: 0;
	}

	.aboutUs-figure img {
		min-height: 180px;
	}

	.recruitment-card__head::after {
		display: none;
	}

	.recruitment-card__body {
		padding-bottom: 66px;
	}

	.recruitment-card__list {
		line-height: 23px;
		list-style-position: outside;
		padding-left: 18px;
	}

	.book-search {
		margin-top: -20px;
	}

	.book-search__input {
		padding-right: 12px;
		padding-left: 14px;
	}

	.book-search__button {
		min-width: 88px;
		padding: 0 14px;
	}

	.book-category-panel .book-category {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.book-price-range {
		gap: 7px;
	}

	.book-price-range input {
		flex: 1 1 0;
		width: 0;
		min-width: 0;
	}

	.book-price-range button {
		width: 62px;
	}

	.book-grid {
		grid-template-columns: 1fr;
	}

	.book-card__cover {
		height: 240px;
	}

	.book-card__title a {
		display: -webkit-box;
		white-space: normal;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.book-center-page .pagebar {
		padding: 28px 0 40px;
	}

	.book-center-page .pagebar__nav {
		justify-content: center;
		gap: 6px;
	}

	.book-center-page .pagebar__item {
		min-width: 34px;
		height: 34px;
		padding: 0 8px;
		font-size: 13px;
	}

	.book-center-page .pagebar__item--next {
		min-width: 58px;
	}

	.book-center-page .pagebar__text {
		font-size: 13px;
	}

	.book-center-page .pagebar__input {
		width: 44px;
		height: 34px;
		font-size: 13px;
	}

	.book-center-page .pagebar__button {
		height: 34px;
		padding: 0 12px;
		font-size: 13px;
	}
	
}

/*Common For Max 375*/
@media only screen and (max-width: 413px) {
	.news-list-page .pagebar__nav {
		row-gap: 8px;
	}

	.news-list-page .pagebar__text,
	.news-list-page .pagebar__input,
	.news-list-page .pagebar__button {
		margin-top: 4px;
	}
}

/*Common For Max 320*/
@media only screen and (max-width: 320px) {
	.news-list-page .pagebar__item {
		min-width: 32px;
		padding: 0 7px;
	}

}

.party-list-page .party-subtabs {
	height: auto;
	padding: 14px 0;
	background: #fff7f5;
	border-top: 1px solid #ffe5df;
	border-bottom: 1px solid #f4d2c9;
	box-shadow: none;
}

.party-list-page .party-subtabs .container,
.party-list-page .party-subtabs .news-tabs__list {
	height: auto;
}

.party-list-page .party-subtabs .news-tabs__list {
	justify-content: center;
	gap: 14px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.party-list-page .party-subtabs .news-tabs__list > li {
	flex: 0 0 auto;
}

.party-list-page .party-subtabs .news-tabs__list > li > a {
	min-width: 116px;
	height: 38px;
	padding: 0 24px;
	color: #595959;
	font-size: 16px;
	line-height: 36px;
	border: 1px solid transparent;
	border-radius: 19px;
	background: transparent;
}

.party-list-page .party-subtabs .news-tabs__list > li.active > a,
.party-list-page .party-subtabs .news-tabs__list > li.active > a:hover,
.party-list-page .party-subtabs .news-tabs__list > li.active > a:focus,
.party-list-page .party-subtabs .news-tabs__list > li > a:hover {
	color: #d71918;
	border-color: #efb0a7;
	background: #fff;
	box-shadow: 0 6px 16px rgba(215, 25, 24, .08);
}

@media only screen and (max-width: 767px) {
	.party-list-page .party-subtabs {
		padding: 10px 0;
	}

	.party-list-page .party-subtabs .news-tabs__list {
		justify-content: flex-start;
		gap: 10px;
	}

	.party-list-page .party-subtabs .news-tabs__list > li > a {
		min-width: 94px;
		height: 34px;
		padding: 0 18px;
		font-size: 14px;
		line-height: 32px;
	}
}

/* --------------------------- 固定屏幕样式 ---------------------------------------- */

/*960*/
@media only screen and (min-width: 960px) and (max-width: 1199px) {

}

/*768*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
}

/*480*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
		
}

/*320*/
@media only screen and (min-width: 320px) and (max-width: 479px) {
	
}

/*240*/
@media only screen and (max-width: 319px) {
	
}
