:root {
  --blue: #2278f2;
  --red: #CA3E43;
  --ink: #1e2d4f;
  --shadow: 0 18px 45px rgba(44, 106, 190, .13);
  --wrap: 1440px;
  --header-nav-gap: clamp(18px, 2.4vw, 60px);
  --header-height: 100px;
  --header-nav-actions-gap: clamp(32px, 2.5vw, 52px);
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td
{
	margin:0; padding:0;
  font-weight: normal;
}
table{
	border-collapse:collapse; border-spacing:0;
}
fieldset,img{
	border:0;
}
ol,ul{
	list-style:none;
}
caption,th{
	text-align:left;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}
.slick-vertical .slick-slide{
	border: none !important;
}
.dn{display:none; }
.clear{
	clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #fff;
}

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;
}
img {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  --wrap: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}

.brand img {
  width: clamp(210px, 15vw, 284px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.brand-logo--plain {
  display: none;
}

.header .site-nav {
  flex: 0 1 auto;
  min-width: 0;
  margin-left: auto;
}

.header .site-search {
  margin-left: var(--header-nav-actions-gap);
}

.site-header .nav::before,
.site-header .nav::after,
.header .site-nav__list::before,
.header .site-nav__list::after {
  display: none;
  content: none;
}

.nav {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--header-nav-gap);
  min-width: 0;
  margin-left: auto;
  font-size: 18px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.nav a {
  position: relative;
  height: var(--header-height);
  padding: 0;
  line-height: var(--header-height);
  opacity: .95;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transform: translateX(-50%);
}

.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;
}

.nav-dropdown a,
.product-page .nav .nav-dropdown a {
  display: block;
  height: auto;
  padding: 0 22px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
  opacity: 1;
}

.nav-dropdown a::after {
  content: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.product-page .nav .nav-dropdown a:hover,
.product-page .nav .nav-dropdown a:focus-visible {
  color: #fff;
  background: rgba(26, 116, 242, .62);
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-toggle,
.nav-submenu-toggle {
  display: none;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: var(--header-nav-actions-gap);
  gap: 22px;
}

.header-auth {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.header-auth__guest {
  display: inline-flex;
  align-items: center;
}

.header-auth__user {
  position: relative;
  display: none;
  align-items: center;
  gap: 9px;
}

.header-auth__profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
}

.header-auth__profile.is-disabled {
  cursor: default;
}

.header-auth__menu .member-switch-user {
  display: none;
}

.header-auth__logout {
  display: block;
  padding: 9px 14px;
  border-radius: 3px;
  color: #4e5968;
  font-size: 14px;
  line-height: 1.3;
}

.header-auth__logout:hover,
.header-auth__logout:focus-visible {
  color: #1f72f2;
  background: #f2f6fd;
}

.header-auth__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 108px;
  padding: 5px;
  border: 1px solid #e6ebf3;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(32, 65, 120, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.header-auth__menu::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  height: 9px;
}

.header-auth__user:hover .header-auth__menu,
.header-auth__user:focus-within .header-auth__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-logined .header-auth__guest {
  display: none;
}

body.is-logined .header-auth__user {
  display: inline-flex;
}

.header-auth__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
}

.header-auth__link:hover,
.header-auth__link:focus-visible {
  opacity: 1;
}

.header-auth__divider {
  margin: 0 17px;
  opacity: .72;
}

.header-auth__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header-auth__avatar {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.header-auth__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-auth__name {
  display: inline-block;
  max-width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  vertical-align: middle;
}

.search-btn {
  width: 90px;
  height: 100px;
  margin-right: -24px;
  border: 0;
  background: url("../../images/header-search-bg.png") center / 100% 100% no-repeat;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-btn img {
  width: 29px;
  height: 29px;
}

.header-search-panel {
  position: fixed;
  z-index: 12;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(8, 25, 48, .68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.header-search-open {
  overflow: hidden;
}

.header-search-open .site-header {
  z-index: auto;
}

.product-page.header-search-open .site-header,
.index-page.header-search-open .site-header.is-fixed {
  z-index: 13;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.product-page.header-search-open .site-header .search-btn,
.index-page.header-search-open .site-header.is-fixed .search-btn {
  pointer-events: auto;
}

.header-search-open .header-actions,
.product-page.header-search-open .header-actions {
  z-index: auto;
}

.header-search-open .brand,
.header-search-open .nav,
.header-search-open .header-auth {
  opacity: .36;
}

.header-search-open .search-btn {
  position: relative;
  z-index: 15;
}

.header-search-open .search-btn img {
  opacity: 0;
}

.header-search-open .search-btn::before,
.header-search-open .search-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
  transform-origin: center;
}

.header-search-open .search-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-search-open .search-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-search-open .header-search-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-search-form {
  width: min(1120px, calc(100% - 48px));
  height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  padding: 8px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(4, 24, 53, .18);
  transform: translateY(18px);
  transition: transform .22s ease;
}

.header-search-form:has(> select),
.header-search-form:has(> .header-search-select) {
  grid-template-columns: 178px minmax(0, 1fr) 190px;
}

.header-search-form > select,
.header-search-form > .header-search-select {
  min-width: 0;
  width: 100%;
  height: 64px;
  padding: 0 42px 0 28px;
  border: 0;
  outline: 0;
  color: #1e2d4f;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, #8791a3 50%), linear-gradient(135deg, #8791a3 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  font: inherit;
  font-size: 18px;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.header-search-open .header-search-form {
  transform: translateY(0);
}

.header-search-select {
  width: 100%;
  height: 100%;
  padding: 0 36px 0 24px;
  border: 1px solid #e7ebf1;
  border-radius: 9999px;
  outline: 0;
  color: #1e2d4f;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7d8798 50%), linear-gradient(135deg, #7d8798 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.header-search-input {
  min-width: 0;
  height: 100%;
  padding: 0 32px;
  border: 0;
  outline: 0;
  color: #1e2d4f;
  font-size: 18px;
  background: transparent;
}

.header-search-input::placeholder {
  color: #c1c8d4;
}

.header-search-submit {
  height: 68px;
  border: 0;
  border-radius: 34px;
  color: #fff;
  background: #5368f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
}

.header-search-submit-icon {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.hero {
  height: 958px;
  overflow: hidden;
  background: #0d5fbe;
}

.hero .rslides-inner,
.hero .rslides-item,
.hero-slide {
  height: 100%;
}

.hero .rslides-item::before {
  display: none;
}

.hero-slide {
  display: block;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero.rslides-1 .rslides-tabs {
  counter-reset: hero-slide;
  right: 100px;
  bottom: 125px;
  left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: visible;
  text-align: right;
}

.hero.rslides-1 .rslides-tabs li {
  counter-increment: hero-slide;
}

.hero.rslides-1 .rslides-tabs a {
  width: 35px;
  height: 35px;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  color: transparent;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero.rslides-1 .rslides-tabs a::before {
  content: counter(hero-slide, decimal-leading-zero);
  display: block;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(5px);
}

.hero.rslides-1 .rslides-tabs .rslides-here a {
  width: 35px;
  height: 35px;
  margin: 0;
  border-color: #fff;
  background: #fff;
}

.hero.rslides-1 .rslides-tabs .rslides-here a::before {
  color: #ee293d;
}

.notice-wrap {
  margin-top: -55px;
  position: relative;
  z-index: 3;
}

.notice {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
  min-height: 124px;
  background: #fff;
  border-radius: 3px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 112px 1fr;
  overflow: hidden;
}

.notice-label {
  position: relative;
  background: linear-gradient(180deg, #2b86ff, #1264db);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.55;
}

.notice-arrow {
  flex: 0 0 auto;
}

.notice-label .notice-arrow {
  width: 24px;
  height: 16px;
  opacity: 1;
}

.notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 16px 38px;
  padding: 22px 34px;
  color: #4a5672;
  font-size: 14px;
}

.notice-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.notice-list a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.notice-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d7fff;
  flex: 0 0 auto;
}

.notice-list span {
  color: #9aa5b8;
  margin-left: auto;
  flex: 0 0 auto;
}

.section {
  padding: 82px 0;
}
.section.books {
  padding-top: 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-title {
  margin: 0;
  color: #1B2B4F;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .5px;
}

.news .section-head {
  margin-bottom: 46px;
}

.news .wrap {
  width: min(var(--wrap), calc(100% - 148px));
}

.tabs a {
  font-size: 24px;
}

.news .tabs {
  gap: 54px;
}

.tabs,
.more-link {
  display: flex;
  align-items: center;
  gap: 46px;
  color: #7d8798;
  font-size: 15px;
}

.tabs a.active {
  color: var(--red);
  font-weight: 700;
}

.arrow {
  width: 46px;
  height: 34px;
  background: url("../../images/arrow-right.png") center / contain no-repeat;
  opacity: .75;
}

.section-head .arrow {
  width: 35px;
  height: 25px;
  background: #BCBCBC;
  opacity: 1;
  -webkit-mask: url("../../images/arrow-right.png") center / contain no-repeat;
  mask: url("../../images/arrow-right.png") center / contain no-repeat;
}

.news-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding-left: 0;
}

.news-layout.news-panel {
  display: none;
}

.news-layout.news-panel.active {
  display: grid;
}

.news-cats {
  position: fixed;
  top: 50%;
  left: 10px;
  width: 86px;
  z-index: 6;
  display: grid;
  gap: 10px;
  align-content: start;
  transform: translateY(-50%);
  
}

.news-cats a {
  height: 39px;
  border: 1px solid #e7eef9;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #68748a;
  background: #fff;
  font-size: 16px;
  width: 86px;
}

.news-cats a:hover,
.news-cats a:focus-visible,
.news-cats a.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.feature-news {
  position: relative;
  min-height: 520px;
  border-radius: 4px;
  overflow: hidden;
  background: #eaf3ff;
  box-shadow: var(--shadow);
}

.feature-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-news::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(8, 60, 139, 0), rgba(8, 44, 116, .88));
}

.feature-text {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.feature-text strong {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(30, 126, 255, .92);
  font-size: 16px;
  font-weight: 600;
}

.feature-text h3 {
  margin: 0 0 11px;
  font-size: 30px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-text time {
  font-size: 16px;
  opacity: .9;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 30px;
}

.news-card {
  --news-thumb-height: 216px;
  min-width: 0;
  position: relative;
  display: block;
  border-radius: 4px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-6px);
  /* box-shadow: 0 16px 30px rgba(35, 112, 226, .16); */
}

.news-thumb {
  height: var(--news-thumb-height);
  border-radius: 4px;
  overflow: hidden;
  background-color: #eaf3ff;
  background-image: url("../../images/xinwenzixun.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 82, 170, .08);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.news-thumb::before {
  content: none;
}

.news-card:hover .news-thumb img,
.news-card:focus-visible .news-thumb img {
  transform: scale(1.05);
}

.news-card:hover .news-thumb::after,
.news-card:focus-visible .news-thumb::after {
  opacity: 1;
}

.news-thumb.meeting {
  background-color: #d4e4fb;
}

.news-thumb.trade {
  background-color: #ffe0c6;
}

.news-thumb.party {
  background-color: #d9282d;
}

.news-thumb.forum {
  background-color: #d9e1ef;
}

.news-card .tag {
  position: absolute;
  top: calc(var(--news-thumb-height) - 32px);
  left: 0;
  display: inline-block;
  margin: 0;
  padding: 8px 10px;
  color: #fff;
  background: rgba(34, 120, 242, .92);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.news-card h3 {
  min-height: 46px;
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.45;
  color: #1f2c4b;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color .2s ease;
}

.news-card.highlight h3,
.news-card:hover h3,
.news-card:focus-visible h3 {
  color: #e54242;
}

.news-card time,
.book-date,
.audio-date {
  color: #9aa5b8;
  font-size: 16px;
}

.books-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 20px;
  align-items: stretch;
}

.books > .wrap > .section-head {
  width: calc(100% - 380px);
  margin-bottom: 34px;
}

.selected-book {
  min-height: 602px;
  background: #fbfdff;
  border: 1px solid #dce6f2;
  border-radius: 2px;
  padding: 30px 34px 24px;
}

.books-area .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-radius: 8px;
}

.books-area .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;
}

.selected-book.empty .book-main {
  display: flex;
  min-height: 520px;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
}

.selected-book.empty .book-row {
  display: none;
}

.book-main {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr) 230px;
  gap: 50px;
  align-items: start;
  min-height: 284px;
  margin-bottom: 28px;
}

.book-cover,
.mini-cover,
.rank-cover,
.mag-cover {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(38, 95, 164, .14);
  border: 1px solid #edf2fb;
  overflow: hidden;
}

.book-cover {
  width: 230px;
  height: 342px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: none;
}

.selected-book-cover-link {
  display: block;
  width: max-content;
  max-width: 100%;
}

.selected-book-cover-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 114, 242, .28);
}

.fake-book {
  width: 100%;
  height: 100%;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: transparent;
  background: #fff url("../../images/default-book.png") center / contain no-repeat;
  border: 0;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.book-cover .fake-book {
  padding: 0;
  background-size: cover;
}

.fake-book i {
  display: none;
  height: 50px;
  background: linear-gradient(90deg, transparent, rgba(84, 160, 238, .28), transparent);
  transform: skewY(-10deg);
}

.fake-book span,
.fake-book small {
  display: none !important;
}

.book-info h3 {
  margin: 0 0 20px;
  font-size: 30px;
  color: #1d2e52;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.selected-book-title-link:hover,
.selected-book-title-link:focus-visible {
  color: #1f72f2;
  /* text-decoration: underline; */
}

.book-info p {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  column-gap: 20px;
  margin: 20px 0 0;
  color: #657088;
  font-size: 18px;
}

.book-info p span:last-child {
  min-width: 0;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.book-info p:nth-of-type(3) span:last-child {
  white-space: nowrap;
}

.book-info p:first-of-type {
  margin-top: 0;
}

.book-label {
  display: block;
  width: 90px;
}

.detail-card {
  width: 230px;
  height: 230px;
  align-self: center;
  justify-self: end;
  margin-right: -34px;
  color: transparent;
  background: url("../../images/go-detail.png") center / contain no-repeat;
  overflow: hidden;
}

.book-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.mini-cover {
  --mini-book-width: 138px;
  --mini-book-height: 196px;
  --mini-side: 25px;
  position: relative;
  width: 188px;
  height: calc(var(--mini-book-height) + 16px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  overflow: visible;
}

.mini-cover::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 170px;
  height: 150px;
  border-radius: 8px 8px 8px 0;
  background: linear-gradient(to top left, #e1f2ff 0%, #f8fcff 100%);
  box-shadow: 0 12px 24px rgba(38, 95, 164, .08);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
}

.mini-cover .fake-book {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: var(--mini-book-width);
  height: var(--mini-book-height);
  margin: 0;
  padding: 0;
  font-size: 12px;
  transform: translateX(-50%);
  z-index: 1;
}

.mini-book p {
  margin: 20px 0 8px;
  color: #35425d;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-book span {
  display: -webkit-box;
  min-height: 40px;
  line-height: 20px;
  color: #9aa5b8;
  font-size: 14px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking {
  position: relative;
  min-height: 602px;
  border-radius: 2px;
  background: #fbfdff;
  border: 1px solid #dce6f2;
  padding: 38px 20px 28px;
}

.ranking .section-head {
  position: absolute;
  left: 0;
  right: 0;
  top: -81px;
  margin: 0;
}

.ranking-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.ranking-top > div:last-child {
  width: 100%;
  min-width: 0;
}

.rank-cover {
  position: relative;
  width: 124px;
  height: 178px;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.ranking-top .rank-cover::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -90px;
  width: 30px;
  height: 34px;
  background: url("../../images/newbook-badge.png") center / contain no-repeat;
  z-index: 2;
}

.rank-cover .fake-book {
  padding: 12px 8px;
  font-size: 11px;
}

.ranking h3 {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking h3 a,
.ranking li a {
  color: inherit;
}

.ranking ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: rank 1;
}

.ranking li {
  counter-increment: rank;
  position: relative;
  min-height: 42px;
  padding-left: 34px;
  border-top: 0;
  color: #58647d;
  font-size: 16px;
  line-height: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking li::before {
  content: counter(rank);
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #f8b233;
  display: grid;
  place-items: center;
  font-size: 10px;
  transform: translateY(-50%);
}

.ranking li:nth-child(2)::before {
  background: #6aa9ff;
}

.ranking li:nth-child(n+3)::before {
  background: #c9c9c9;
}

.ranking--book-list {
  padding-top: 30px;
  min-height: 730px;
}

.ranking--book-list .ranking-top {
  display: none;
}

.ranking--book-list .ranking-list {
  padding: 0;
  counter-reset: none;
}

.ranking--book-list .ranking-list li {
  min-height: 40px;
  padding-left: 0;
  color: #58647d;
  line-height: normal;
  white-space: normal;
  overflow: visible;
}

.ranking--book-list .ranking-list .ranking-item-link {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 40px;
  color: inherit;
  text-decoration: none;
}

.ranking--book-list.empty {
  min-height: 602px;
}

.ranking--book-list .ranking-list li.ranking-list__empty {
  display: block;
  min-height: 500px;
  cursor: default;
}

.ranking--book-list .ranking-list li.ranking-list__empty::before {
  display: none;
}

.ranking--book-list .ranking-list li::before {
  display: none;
}

.ranking-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c9c9c9;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.ranking-rank--one {
  width: 30px;
  height: 34px;
  margin-left: 0;
  overflow: hidden;
  border-radius: 0;
  background: none;
}

.ranking-rank--two {
  background: #f8b233;
}

.ranking-rank--three {
  background: #6aa9ff;
}

.ranking--book-list .ranking-list img {
  display: none;
  width: 42px;
  height: 60px;
  object-fit: cover;
  box-shadow: 0 4px 9px rgba(35, 57, 95, .12);
}

.ranking--book-list .ranking-list .ranking-rank {
  display: inline-flex;
}

.ranking--book-list .ranking-list img.ranking-rank--one {
  display: block;
  object-fit: contain;
  box-shadow: none;
}

.ranking--book-list .ranking-list .ranking-title {
  display: -webkit-box;
  overflow: hidden;
  color: #252b36;
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.ranking--book-list .ranking-list .ranking-title {
  font-weight: 500;
  font-size: 16px;
  color: #666666;
}

.ranking--book-list .ranking-list .ranking-cover {
  display: none;
}

.ranking--book-list .ranking-list em {
  display: none;
}

.ranking--book-list .ranking-list li.is-active {
  min-height: 226px;
}

.ranking--book-list .ranking-list li.is-active .ranking-item-link {
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  min-height: 226px;
  padding-top: 4px;
}

.ranking--book-list .ranking-list li.is-active img {
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 116px;
  height: 166px;
  margin: 0 auto 10px;
  box-shadow: 0 8px 14px rgba(35, 57, 95, .16);
}

.ranking--book-list .ranking-list li.is-active img.ranking-rank--one {
  grid-column: 1;
  width: 30px;
  height: 34px;
  margin: 0;
  box-shadow: none;
}

.ranking--book-list .ranking-list li.is-active .ranking-title {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: 18px;
  color: #1B2B4F;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
}

.ranking--book-list .ranking-list li.is-active .ranking-cover {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 116px;
  height: 166px;
  margin: 0 auto 10px;
  overflow: visible;
}

.ranking--book-list .ranking-list li.is-active em {
  grid-column: 2;
  grid-row: 3;
  display: block;
  overflow: hidden;
  margin-top: 0;
  font-weight: 400;
  font-size: 16px;
  color: #6C6C6C;
  font-style: normal;
  line-height: 1.4;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}

.ranking--book-list .ranking-list .ranking-item-link:hover .ranking-title,
.ranking--book-list .ranking-list .ranking-item-link:focus-visible .ranking-title {
  color: #0d65d9;
}

.ranking--book-list .ranking-list li.is-active:hover .ranking-title,
.ranking--book-list .ranking-list li.is-active:focus-within .ranking-title {
  color: #0d65d9;
}

.expert-detail-hero {
  height: 180px;
  background: url("../../images/expert-list-banner.png") center / cover no-repeat;
}

.expert-detail-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.expert-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 61px;
  color: #aeb4bd;
  font-size: 16px;
}

.expert-detail-info {
  padding: 12px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 32px;
}

.expert-detail-avatar {
  width: 158px;
  flex-shrink: 0;
}
.expert-detail-body{
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  background: url(/images/expert-detail-bg.png) no-repeat center;
  background-size: 100% 100%;
  padding: 24px;
  border-radius: 8px;
}

.expert-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expert-detail-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  color: #333;
  margin-bottom: 16px;
}

.expert-detail-desc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.expert-detail-item {
  font-size: 14px;
  font-weight: 350;
  color: #959595;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#expertDetailAbstract {
  display: -webkit-box;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#expertDetailAbstract p {
  margin: 0;
}

.expert-detail-content {
  margin-bottom: 24px;
}

.expert-detail-work-name {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
}

.expert-detail-work-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.expert-detail-work-logo {
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}

.expert-detail-work-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-info-work-name {
  font-size: 16px;
  font-weight: 500;
  color: #1B1B1B;
}

@media screen and (max-width: 768px) {
  .expert-detail-info {
    flex-direction: column;
  }

  .expert-detail-name {
    margin-bottom: 20px;
  }

  .expert-detail-desc {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .expert-detail-work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.experts {
    position: relative;
    min-height: 630px;
    margin-top: 0;
    padding: 0;
    /* background: #eef7ff; */
    overflow: hidden;
}

.experts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 883px;
  background: url("../../images/expert-bg.png") center bottom / cover no-repeat;
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

.experts .wrap {
  position: relative;
  z-index: 1;
}

.expert-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
  min-height: 382px;
}

.expert-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 50px 20px 40px;
  border: 1px solid rgba(92, 145, 224, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(72, 129, 205, .12);
  text-align: center;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.expert-card.featured,
.expert-card:hover,
.expert-card:focus-visible {
  height: auto;
  color: #fff;
  background: linear-gradient(180deg, #3489ff, #236fe2);
  box-shadow: 0 20px 40px rgba(36, 112, 226, .25);
}

.expert-card:hover,
.expert-card:focus-visible {
  transform: translateY(-6px);
}

.expert-card:nth-child(2),
.expert-card:nth-child(4) {
  margin-top: 52px;
}

.avatar {
  width: 177px;
  height: 177px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 0;
  background: none;
  display: block;
  overflow: hidden;
}

.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured .avatar {
  width: 177px;
  height: 177px;
  margin-top: 0;
}

.expert-card h3 {
  width: 155px;
  min-width: 155px;
  height: auto;
  margin: 0 auto 18px;
  padding: 5px;
  border-radius: 9999px;
  color: #fff;
  background: #3b86f2;
  box-shadow: 0 5px 12px rgba(44, 118, 226, .24);
  display: inline-grid;
  place-items: center;
  font-size: 24px;
}

.expert-card.featured h3,
.expert-card:hover h3,
.expert-card:focus-visible h3 {
  color: #2f7df1;
  background: #fff;
}

.expert-card p {
  margin: 0;
  color: #4f5c73;
  opacity: 1;
  font-size: 16px;
}

.expert-card.featured p,
.expert-card:hover p,
.expert-card:focus-visible p {
  color: rgba(255,255,255,.92);
}

.magazines {
  padding-bottom: 72px;
  overflow: hidden;
}

.mag-row {
  --mag-active-scale: 1.28;
  --mag-active-offset: 44px;
  position: relative;
  width: min(1920px, 100vw);
  margin-left: calc((100% - min(1920px, 100vw)) / 2);
  padding: 60px 0 54px;
  overflow: visible;
  margin-top: 140px;
}

.mag-item {
  display: block;
  width: 348px;
  padding: 0 18px;
  text-align: center;
  color: #1f2c4b;
  font-size: 24px;
  outline: none;
  transition: opacity .35s ease, transform .35s ease;
}

.mag-item span {
  position: relative;
  display: inline-block;
  padding-bottom: 28px;
  line-height: 1.35;
}

.mag-item span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 6px;
  border-radius: 6px;
  background: rgba(47, 125, 241, .28);
  transform: translateX(-50%);
  transition: width .35s ease, background-color .35s ease;
}

.mag-cover {
  aspect-ratio: 0.74;
  margin-bottom: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(32, 61, 112, .12);
  transform-origin: center bottom;
  transition: transform .35s ease, box-shadow .35s ease;
}

.mag-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mag-cover.alt {
  padding: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(160deg, #e83131, #172f80);
}

.mag-cover.yellow {
  color: #111;
  background: #f4e226;
}

.mag-cover.dark {
  color: #fff;
  background: linear-gradient(160deg, #101a3c, #183c76);
}

.mag-row .slick-list {
  overflow: visible;
  clip-path: inset(-140px 0 -40px 0);
}

.mag-row .slick-track {
  display: flex;
  align-items: flex-end;
}

.mag-row .slick-slide {
  height: auto;
}

.mag-row .slick-slide.mag-item {
  opacity: .86;
}

.mag-row .mag-active {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.mag-row .mag-before-active {
  transform: translateX(calc(-1 * var(--mag-active-offset)));
}

.mag-row .mag-after-active {
  transform: translateX(var(--mag-active-offset));
}

.mag-row .mag-active .mag-cover {
  transform: scale(var(--mag-active-scale));
  box-shadow: 0 18px 36px rgba(35, 83, 155, .18);
}

.mag-row .mag-active span::after {
  width: 84px;
  background: #2f7df1;
}

.mag-row .slick-dots,
.mag-pager {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mag-pager {
  position: static;
  /* margin-top: -28px; */
}

.mag-row .slick-dots li,
.mag-pager li {
  width: 7px;
  height: 7px;
  margin: 0;
}

.mag-row .slick-dots button,
.mag-pager button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: #d6dee9;
  cursor: pointer;
}

.mag-row .slick-dots .slick-active button,
.mag-pager .active button {
  background: #e43d3d;
}

.mag-arrow {
  position: absolute;
  z-index: 3;
  top: 48%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 18px rgba(44, 96, 160, .18);
  cursor: pointer;
}

.mag-arrow::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-top: 2px solid #2f7df1;
  border-right: 2px solid #2f7df1;
}

.mag-prev {
  left: 4px;
}

.mag-prev::before {
  transform: rotate(-135deg);
}

.mag-next {
  right: 4px;
}

@media only screen and (min-width: 1200px) {
  .mag-prev {
    /* Clear the fixed navigation's 10px gutter and 86px width, plus a 12px gap. */
    left: max(4px, calc(108px - max(0px, (100vw - 1920px) / 2)));
  }

  .mag-next {
    /* Clear the fixed side tools' 14px gutter and 90px width, plus a 12px gap. */
    right: max(4px, calc(116px - max(0px, (100vw - 1920px) / 2)));
  }
}

.mag-next::before {
  transform: rotate(45deg);
}

.banners {
  padding: 34px 0 96px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.promo {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(57, 112, 190, .08);
}

.audio {
  padding: 86px 0 88px;
  background: #eaf8ff url("../../images/digit-bg.png") center / cover no-repeat;
}

.audio-layout {
  --audio-visual-height: 466px;
  --audio-meta-height: 85px;
  --audio-meta-overlap: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 34px;
  align-items: start;
}

.audio-feature {
  position: relative;
  padding-bottom: var(--audio-meta-overlap);
  overflow: visible;
}

.audio-feature[data-detail-link] {
  cursor: pointer;
}

.audio-visual {
  height: var(--audio-visual-height);
  background: #172033;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.audio-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-visual--audio:not(.audio-visual--has-image) {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 18px, transparent 19px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 58px, transparent 59px),
    radial-gradient(circle at 68% 66%, rgba(255,255,255,.82) 0 40px, transparent 41px),
    linear-gradient(135deg, #d8e3ff 0%, #f6f1ff 54%, #bfc9ff 100%);
}

.audio-visual--audio:not(.audio-visual--has-image)::before {
  content: "";
  position: absolute;
  left: 44%;
  top: 42%;
  width: 144px;
  height: 144px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.2));
  box-shadow: 0 18px 34px rgba(66, 93, 180, .22);
  transform: translate(-50%, -50%);
}

.audio-card-cover {
  display: block;
  position: relative;
  width: 154px;
  height: 100%;
  min-height: 76px;
  border-radius: 3px;
  overflow: hidden;
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 29px, transparent 30px),
    radial-gradient(circle at 68% 66%, rgba(255,255,255,.82) 0 20px, transparent 21px),
    linear-gradient(135deg, #d8e3ff 0%, #f6f1ff 54%, #bfc9ff 100%);
}

.audio-card-cover::before {
  content: "";
  position: absolute;
  left: 44%;
  top: 42%;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.2));
  box-shadow: 0 18px 34px rgba(66, 93, 180, .22);
  transform: translate(-50%, -50%);
}

.audio-card-cover--blue {
  background: linear-gradient(135deg, #cde9ff 0%, #eef9ff 54%, #9ed8ff 100%);
}

.audio-card-cover--orange {
  background: linear-gradient(135deg, #ffe4c7 0%, #fff4df 52%, #ffc7a1 100%);
}

.audio-card-cover--green {
  background: linear-gradient(135deg, #ccf9d7 0%, #fbffd8 52%, #9ee984 100%);
}

.audio-card-cover--mint {
  background: linear-gradient(135deg, #c7fff0 0%, #e1fff9 52%, #93eed9 100%);
}

.audio-copy {
  position: absolute;
  left: 70px;
  top: 86px;
  max-width: 420px;
}

.badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 19px;
  border-radius: 99px;
  color: #fff;
  background: #ffce38;
  font-weight: 700;
}

.audio-copy h3 {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.35;
  color: #2b3348;
}

.audio-copy .line {
  width: 54px;
  height: 2px;
  background: #2c7df4;
}

.audio-meta {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--audio-meta-height);
  padding: 0 28px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 28px rgba(57, 112, 190, .12);
  color: #35425d;
  text-decoration: none;
}

.audio-meta span {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.4;
}

.audio-meta .audio-date {
  flex: 0 0 auto;
  font-size: 18px;
}

.audio-meta .audio-duration {
  flex: 0 0 auto;
  margin: 0;
  color: #526987;
  background: #eef4fb;
}

.audio-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: var(--audio-visual-height);
}

.audio-layout.audio-layout--audio {
  display: block;
}

.audio-layout.audio-layout--audio .audio-feature {
  display: none;
}

.audio-layout.audio-layout--audio .audio-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 28px 14px;
  height: auto;
}

.audio-grid-card {
  display: block;
  min-width: 0;
  color: #242936;
}

.audio-grid-card .media-card__cover {
  aspect-ratio: 287 / 162;
  border: 1px dashed rgba(71, 87, 116, .55);
}

.audio-grid-card h3 {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: #222733;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.audio-grid-card__duration {
  display: block;
  margin-top: 4px;
  color: #69758a;
  font-size: 13px;
  line-height: 1.4;
}

.audio-card {
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  /* background: rgba(255, 255, 255, .75); */
  color: #35425d;
  min-height: 0;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

@media only screen and (min-width: 1200px) {
  .audio .audio-layout:not(.audio-layout--audio) .audio-card {
    grid-template-columns: 224px minmax(0, 1fr);
  }
}

.audio-card.active,
.audio-card:hover,
.audio-card:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, #297fff, #4b9fff);
  box-shadow: 0 12px 28px rgba(35, 117, 236, .2);
}

.audio-card__cover {
  display: block;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 3px;
}

.audio-card__cover > img {
  display: block;
  height: 100%;
  width: 100%;
  min-height: 0;
  object-fit: cover;
}

.audio-card__cover > .audio-card-cover {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.audio-card h3 {
  margin: 0 0 10px;
  min-height: 56px;
  font-size: 20px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.audio-duration {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 9px;
  border-radius: 3px;
  color: #fff;
  background: rgba(113, 128, 149, .45);
  font-size: 16px;
  line-height: 1.25;
}

.audio-card .audio-date {
  display: block;
  font-size: 16px;
}

.audio-card.active .audio-duration,
.audio-card:hover .audio-duration,
.audio-card:focus-visible .audio-duration {
  background: rgba(255, 255, 255, .24);
}

.audio-card.active .audio-date,
.audio-card:hover .audio-date,
.audio-card:focus-visible .audio-date {
  color: rgba(255, 255, 255, .78);
}

.float-tools {
  position: fixed;
  z-index: 6;
  right: 14px;
  top: 52%;
  transform: translateY(-50%);
  width: 90px;
  padding: 34px 8px 38px;
  border: 3px solid #7db2ff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 15px rgba(38, 124, 255, .35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.float-tools a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #8a8f9b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.float-tools a:hover {
  color: #2f7ff3;
  transform: translateY(-2px);
}

.float-tools img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.back-top {
  position: fixed;
  z-index: 6;
  right: 32px;
  bottom: 32px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url("../../images/go-top.png") center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(44, 106, 190, .2);
}

.site-footer {
  flex-shrink: 0;
  color: #d8e3fb;
  background: #111e3d;
  padding: 56px 0 34px;
}

.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 {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright__filings,
.copyright__police {
  display: inline-flex;
  align-items: center;
}

.copyright__filings {
  flex-wrap: wrap;
  gap: 8px 14px;
}

.copyright__filings a {
  color: inherit;
}

.copyright__filings a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright__police {
  gap: 6px;
}

.copyright__police img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 1441px) and (max-width: 1600px) {
  :root {
    --wrap: 1200px;
  }

  .hero {
    height: 860px;
  }

  .book-main {
    grid-template-columns: 230px minmax(280px, 1fr) clamp(110px, 8.5vw, 128px);
    gap: 16px;
  }

  .detail-card {
    width: clamp(110px, 8.5vw, 128px);
    height: clamp(110px, 8.5vw, 128px);
    margin-right: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .index-page .section-title {
    font-size: 32px;
  }

  .index-page .tabs a {
    font-size: 20px;
  }

  .index-page .feature-text strong,
  .index-page .feature-text time,
  .index-page .news-card .tag,
  .index-page .news-card time {
    font-size: 14px;
  }

  .index-page .feature-text h3 {
    font-size: 20px;
  }
  .book-info h3 {
    font-size: 24px;
  }
  .index-page .news-card .tag {
    top: calc(var(--news-thumb-height) - 30px);
  }
  .footer-links {
    grid-template-columns: repeat(2, max-content);
    gap: 72px;
  }
  .index-page .news-card h3 {
    min-height: 52px;
    font-size: 18px;
  }
   .news-card {
    --news-thumb-height: 186px;
  }
   .feature-news {
    min-height: 475px;
   }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  :root {
    --wrap: 1200px;
  }

  .header-inner {
    gap: 0;
  }

  .brand {
    min-width: 220px;
  }

  .brand img {
    width: clamp(210px, 15vw, 284px);
  }

  .nav {
    gap: var(--header-nav-gap);
    font-size: 18px;
  }

  .search-btn {
    width: 78px;
  }

  .hero {
    height: 820px;
  }

  .news .wrap {
    width: min(var(--wrap), calc(100% - 48px));
  }

  .feature-news {
    width: 100%;
    min-width: 0;
    /* height: clamp(340px, 27vw, 390px); */
    aspect-ratio: auto;
    min-height: 0;
  }

  .news-card {
    --news-thumb-height: clamp(150px, 11.7vw, 160px);
  }

  .book-main {
    grid-template-columns: 230px minmax(280px, 1fr) clamp(110px, 8.5vw, 128px);
    gap: 16px;
  }

  .detail-card {
    width: clamp(110px, 8.5vw, 128px);
    height: clamp(110px, 8.5vw, 128px);
    margin-right: 0;
  }

  .mini-cover {
    --mini-book-width: clamp(118px, 9.6vw, 138px);
    --mini-book-height: clamp(168px, 13.6vw, 196px);
    width: min(188px, 100%);
  }

  .mini-cover::before {
    right: 5%;
    width: min(170px, 90%);
    height: clamp(128px, 10.5vw, 150px);
  }

  .footer-grid {
    grid-template-columns: minmax(430px, 1fr) 120px 390px;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    gap: 72px;
  }

  .footer-links a {
    white-space: nowrap;
  }

  .qrs {
    gap: 30px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1360px) {
  .mini-cover {
    --mini-book-width: clamp(97px, 7.9vw, 113px);
    --mini-book-height: clamp(138px, 11.2vw, 161px);
  }
}

@media only screen and (max-width: 1199px) {
  .hero {
    height: 720px;
  }

  .wrap {
    width: auto;
    max-width: none;
    padding: 0 10px;
  }

  .news .wrap {
    width: auto;
  }

  .news .section-head {
    padding-left: 0;
  }

  .nav {
    gap: var(--header-nav-gap);
  }

  .news-layout,
  .books-area,
  .audio-layout {
    grid-template-columns: 1fr;
  }

  .books > .wrap > .section-head {
    width: auto;
  }

  .news-layout {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
    column-gap: 24px;
  }

  .news-cats {
    position: fixed;
    left: 24px;
    top: 120px;
    width: 86px;
  }

  .news-grid {
    grid-column: 2;
  }

  .ranking {
    max-width: none;
  }

  .ranking .section-head {
    position: static;
    margin-bottom: 34px;
  }

  .float-tools,
  .back-top {
    display: none;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .site-header .nav,
  .header .site-nav {
    display: none;
  }

  .header-actions,
  .site-header .site-search,
  .header .site-search {
    margin-left: auto;
  }
}

@media only screen and (max-width: 992px) {
  .wrap {
    padding: 0 10px;
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    height: auto;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 180px;
    height: auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    margin-left: 0;
    gap: 14px;
  }

  .header-auth {
    font-size: 15px;
  }

  .header-auth__divider {
    margin: 0 10px;
  }

  .header-auth__icon {
    width: 18px;
    height: 18px;
  }

  .header-auth__avatar {
    width: 18px;
    height: 18px;
  }

  .header-auth__name {
    max-width: 7em;
  }

  .search-btn {
    width: 56px;
    height: 56px;
    margin-right: 0;
    border-radius: 50%;
  }

  .header-search-form {
    height: 64px;
    grid-template-columns: minmax(0, 1fr) 128px;
    padding: 6px;
  }

  .header-search-form:has(> select),
  .header-search-form:has(> .header-search-select) {
    grid-template-columns: 128px minmax(0, 1fr) 128px;
  }

  .header-search-form > select,
  .header-search-form > .header-search-select {
    height: 52px;
    padding: 0 30px 0 18px;
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    font-size: 16px;
  }

  .header-search-input {
    padding: 0 18px;
    font-size: 16px;
  }

  .header-search-submit {
    height: 52px;
    gap: 10px;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .header-search-open .search-btn::before,
  .header-search-open .search-btn::after {
    width: 30px;
    height: 3px;
  }

  .hero {
    height: 430px;
  }

  .notice {
    width: calc(100% - 28px);
    grid-template-columns: 74px 1fr;
  }

  .notice-label {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .notice-list {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .tabs {
    gap: 18px;
  }

  .news .tabs {
    gap: 24px;
  }

  .book-main,
  .banner-grid,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .book-main {
    justify-items: start;
  }

  .expert-list {
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 8px;
  }

  .expert-card,
  .expert-card.featured {
    flex: 0 0 180px;
    width: 180px;
    height: 236px;
  }

  .audio-layout {
    --audio-visual-height: 460px;
  }

  .audio-feature,
  .audio-list,
  .audio-card,
  .audio-card > div {
    min-width: 0;
  }

  .audio-meta {
    min-width: 0;
  }

  .audio-meta span {
    max-width: 100%;
  }

  .audio-visual {
    height: var(--audio-visual-height);
  }

  .audio-book {
    right: 24px;
    top: auto;
    bottom: 34px;
    width: 150px;
    opacity: .55;
  }

  .audio-copy {
    left: 28px;
    right: 28px;
    top: 44px;
  }

  .audio-copy h3 {
    font-size: 24px;
  }

  .audio-card {
    grid-template-columns: 120px 1fr;
  }

  .audio-layout.audio-layout--audio .audio-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .site-header {
    background: rgba(20, 116, 226, .1);
  }

  .header-inner {
    padding: 8px 0;
  }

  .brand img {
    width: 128px;
    height: auto;
  }

  .header-actions {
    gap: 8px;
  }

  .header-auth {
    font-size: 13px;
  }

  .header-auth__link {
    gap: 5px;
  }

  .header-auth__divider {
    margin: 0 7px;
  }

  .header-auth__name {
    max-width: 5.5em;
  }

  .search-btn {
    width: 36px;
    height: 36px;
  }

  .search-btn img {
    width: 18px;
    height: 18px;
  }

  .header-search-form {
    width: calc(100% - 28px);
    height: 54px;
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 5px;
  }

  .header-search-form:has(> select),
  .header-search-form:has(> .header-search-select) {
    grid-template-columns: 92px minmax(0, 1fr) 92px;
  }

  .header-search-form > select,
  .header-search-form > .header-search-select {
    height: 44px;
    padding: 0 24px 0 14px;
    background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
    background-size: 5px 5px, 5px 5px;
    font-size: 14px;
  }

  .header-search-input {
    padding: 0 14px;
    font-size: 14px;
  }

  .header-search-submit {
    height: 44px;
    gap: 7px;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .header-search-submit-icon {
    width: 14px;
    height: 14px;
  }

  .header-search-open .search-btn::before,
  .header-search-open .search-btn::after {
    width: 22px;
    height: 2px;
  }

  .hero {
    height: 330px;
  }

  .hero.rslides-1 .rslides-tabs {
    right: 24px;
    bottom: 36px;
    gap: 8px;
  }

  .hero.rslides-1 .rslides-tabs a {
    width: 35px;
    height: 35px;
    margin: 0;
    border-width: 1px;
  }

  .hero.rslides-1 .rslides-tabs a::before {
    font-size: 14px;
  }

  .hero.rslides-1 .rslides-tabs .rslides-here a {
    width: 35px;
    height: 35px;
    margin: 0;
  }

  .notice-wrap {
    margin-top: -28px;
  }

  .notice {
    width: calc(100% - 20px);
    min-height: 0;
    grid-template-columns: 58px 1fr;
  }

  .notice-label {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .notice-list {
    gap: 8px;
    padding: 12px;
    font-size: 12px;
  }

  .notice-list li:nth-child(n+5) {
    display: none;
  }

  .notice-list span {
    margin-left: 8px;
  }

  .section {
    padding: 34px 0;
  }
  .section.books{
    padding-top: 0;
  }
  .section-head {
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-title {
    font-size: 18px;
  }

  .news .section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .news .section-title {
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .tabs,
  .more-link {
    gap: 14px;
    font-size: 12px;
  }

  .news .tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 30px;
    gap: 8px;
    align-items: center;
  }

  .news .tabs a:not(.arrow) {
    font-size: 17px;
    line-height: 1.25;
    text-align: left;
    white-space: nowrap;
  }

  .news .tabs .arrow {
    justify-self: end;
  }

  .arrow {
    width: 30px;
    height: 22px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
  }

  .news-cats {
    position: fixed;
    top: 50%;
    left: 8px;
    width: 68px;
    grid-template-columns: 1fr;
    gap: 6px;
    transform: translateY(-50%);
    display: none;
  }

  .news-cats a {
    width: 68px;
    height: 30px;
    font-size: 12px;
  }

  .feature-news,
  .news-grid {
    grid-column: auto;
  }

  .feature-news {
    height: 292px;
    min-height: 0;
  }

  .feature-text {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .feature-text strong {
    margin-bottom: 10px;
    padding: 5px 8px;
    font-size: 12px;
  }

  .feature-text h3 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.34;
  }

  .feature-text time {
    font-size: 13px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card {
    --news-thumb-height: 86px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: start;
  }

  .news-thumb {
    grid-row: 1 / 4;
    height: var(--news-thumb-height);
  }

  .news-card .tag {
    position: static;
    justify-self: start;
    padding: 5px 8px;
    font-size: 12px;
  }

  .news-card h3 {
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .news-card time {
    font-size: 12px;
  }

  .selected-book {
    padding: 18px 14px;
  }

  .book-main {
    grid-template-columns: 118px 1fr;
    gap: 16px;
  }

  .book-cover {
    width: 118px;
    height: 168px;
    padding: 10px;
  }

  .book-info h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .book-info p {
    margin: 6px 0;
    font-size: 12px;
  }

  .detail-card {
    grid-column: 1 / -1;
    width: 100%;
    height: 42px;
    justify-self: stretch;
    margin-right: 0;
  }

  .book-main{
        min-height: 200px;
  }
  .detail-card{display: none;}

  .book-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mini-cover {
    --mini-book-width: min(124px, 74%);
    --mini-book-height: 96px;
    width: 100%;
    height: 112px;
    overflow: visible;
  }

  .mini-cover::before {
    right: 0;
    width: 100%;
    height: 92px;
  }

  .mini-cover .fake-book {
    bottom: 10px;
  }

  .ranking {
    min-height: 0;
    padding: 20px 14px 22px;
    background: rgba(255, 255, 255, .92);
  }

  .ranking-top {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    justify-items: start;
    text-align: left;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8f0fb;
  }

  .rank-cover {
    width: 82px;
    height: 116px;
    overflow: visible;
  }

  .ranking-top .rank-cover::before {
    top: -2px;
    left: -10px;
    width: 24px;
    height: 28px;
  }

  .rank-cover .fake-book {
    padding: 0;
    background-size: cover;
  }

  .ranking h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ranking .book-date {
    font-size: 13px;
  }

  .ranking li {
    min-height: 40px;
    padding-left: 34px;
    border-top: 1px solid rgba(223, 232, 246, .72);
    font-size: 14px;
    line-height: 40px;
  }

  .ranking li:first-child {
    border-top: 0;
  }

  .ranking li::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }

  .experts {
    min-height: 0;
    margin-top: 0;
    padding: 34px 0 42px;
    background: #eef7ff;
  }

  .experts::before {
    height: 100%;
    background-position: center bottom;
    background-size: cover;
    opacity: .42;
  }

  .experts .section-head {
    margin-bottom: 18px;
  }

  .expert-list {
    min-height: 0;
    gap: 12px;
    margin: 0;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .expert-list::-webkit-scrollbar {
    display: none;
  }

  .expert-card,
  .expert-card.featured {
    position: relative;
    flex: 0 0 156px;
    width: 156px;
    height: 178px;
    margin-top: 0;
    padding: 22px 12px 18px;
    border-color: rgba(75, 139, 225, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(58, 122, 205, .12);
    scroll-snap-align: start;
  }

  .expert-card.featured {
    color: #1d2e52;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 34px rgba(47, 125, 241, .16);
  }

  .expert-card:nth-child(2),
  .expert-card:nth-child(4) {
    margin-top: 30px;
  }

  .avatar,
  .featured .avatar {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    background-color: #d9e9ff;
  }

  .expert-card h3 {
    width: min(118px, 82%);
    min-width: 0;
    min-height: 32px;
    margin: 0 auto 10px;
    padding: 6px 12px;
    border-radius: 9999px;
    color: #fff;
    background: linear-gradient(90deg, #2f82ff, #3f90ff);
    box-shadow: 0 10px 18px rgba(47, 125, 241, .26);
    font-size: 14px;
    line-height: 1.25;
  }

  .expert-card.featured h3 {
    color: #fff;
    background: linear-gradient(90deg, #2f82ff, #3f90ff);
  }

  .expert-card p {
    color: #526176;
    font-size: 11px;
    line-height: 1.45;
  }

  .expert-card.featured p {
    color: #526176;
  }

  .magazines {
    padding: 34px 0 46px;
  }

  .magazines .section-head {
    margin-bottom: 14px;
  }

  .mag-row {
    --mag-active-scale: 1.06;
    --mag-active-offset: 0px;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 18px 0 38px;
  }

  .mag-row,
  .mag-row .slick-list {
    overflow: hidden;
  }

  .mag-row .slick-list {
    padding: 0 58px !important;
    clip-path: none;
  }

  .mag-item {
    width: 248px;
    padding: 0 8px;
    font-size: 18px;
  }

  .mag-cover {
    margin-bottom: 12px;
    box-shadow: 0 10px 22px rgba(35, 83, 155, .14);
  }

  .mag-cover.alt {
    padding: 18px;
    font-size: 24px;
  }

  .mag-row .mag-before-active,
  .mag-row .mag-after-active {
    transform: none;
  }

  .mag-item span {
    padding-bottom: 16px;
    opacity: 0;
    visibility: hidden;
  }

  .mag-item span::after {
    width: 34px;
    height: 5px;
  }

  .mag-row .slick-center span,
  .mag-row .mag-active span {
    opacity: 1;
    visibility: visible;
  }

  .mag-row .slick-center span::after,
  .mag-row .mag-active span::after {
    width: 42px;
  }

  .mag-arrow {
    top: 42%;
    width: 44px;
    height: 44px;
  }

  .mag-arrow::before {
    inset: 17px;
  }

  .mag-prev {
    /* The wrap starts at 10px; place the control 12px past the 76px nav edge. */
    left: 6px;
  }

  .mag-next {
    right: 6px;
  }

  .mag-pager {
    margin-top: -10px;
  }

  .mag-pager li,
  .mag-pager button {
    width: 6px;
    height: 6px;
  }

  .banners {
    padding: 12px 0 42px;
  }

  .audio {
    padding: 34px 0 40px;
  }

  .audio .section-head {
    gap: 8px;
  }

  .audio .tabs {
    gap: 10px;
  }

  .audio .tabs a:not(.arrow) {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .audio .tabs .arrow {
    width: 26px;
    height: 19px;
  }

  .product-media .section-head {
    gap: 8px;
  }

  .product-media .tabs {
    gap: 10px;
  }

  .product-media .tabs a:not(.arrow) {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .product-media .tabs .arrow {
    width: 26px;
    height: 19px;
  }

  .audio-feature {
    padding-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }

  .audio-meta {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px 14px 16px;
    min-height: 0;
    box-shadow: none;
  }

  .audio-meta span {
    display: -webkit-box;
    white-space: normal;
    font-size: 17px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .audio-meta .audio-date {
    font-size: 14px;
  }

  .audio-meta .audio-duration {
    display: inline-block;
  }

  .audio-list {
    grid-template-rows: none;
    gap: 10px;
    height: auto;
    margin-top: 14px;
  }

  .audio-layout.audio-layout--audio .audio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
    margin-top: 0;
  }

  .audio-grid-card h3 {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.45;
  }

  .audio-grid-card__duration {
    font-size: 12px;
  }

  .audio-visual {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px 4px 0 0;
  }

  .audio-visual > img {
    height: 100%;
  }

  .audio-copy {
    top: 34px;
  }

  .audio-copy h3 {
    font-size: 21px;
    line-height: 1.42;
  }

  .audio-book {
    width: 118px;
    right: 16px;
    bottom: 22px;
    opacity: .42;
  }

  .audio-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    min-height: 94px;
    padding: 8px;
    background: rgba(255, 255, 255, .72);
  }

  .audio-card__cover {
    height: 76px;
  }

  .audio-card-cover {
    width: 112px;
    height: 76px;
    min-height: 0;
  }

  .audio-card h3 {
    min-height: 0;
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.42;
  }

  .audio-duration {
    margin-bottom: 7px;
    padding: 2px 7px;
    font-size: 13px;
  }

  .audio-card .audio-date {
    font-size: 13px;
  }

  .site-footer {
    padding: 18px 0 14px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-logo {
    position: static;
    transform: none;
    order: 1;
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 12px;
  }

  .footer-logo .top-logo {
    width: 52px;
  }

  .footer-logo .bottom-logo {
    width: 170px;
  }

  .qrs {
    grid-column: auto;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 340px;
    justify-self: center;
  }

  .qrs > div {
    min-width: 0;
  }

  .qrs p {
    margin: 0;
    font-size: 10px;
    line-height: 1.5;
    white-space: normal;
  }

  .footer-links {
    order: 3;
    gap: 16px;
    text-align: left;
  }

  .footer-links > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 6px;
  }

  .footer-links h3 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: 16px;
  }

  .footer-links a {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .qrs img {
    width: 96px;
    height: 96px;
    margin-bottom: 7px;
  }

  .copyright {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
    font-size: 10px;
    line-height: 1.6;
    text-align: center;
  }

  .copyright__filings {
    justify-content: center;
    gap: 4px 10px;
  }

  .copyright__police {
    gap: 4px;
  }

  .copyright__police img {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .hero {
    height: 286px;
  }

  .feature-news {
    height: 292px;
  }

  .audio-visual {
    height: auto;
  }

  .audio-copy {
    left: 20px;
    right: 20px;
  }

  .audio-copy h3 {
    font-size: 19px;
  }
}

@media only screen and (max-width: 413px) {
  .hero {
    height: 260px;
  }

  .book-main {
    grid-template-columns: 104px 1fr;
  }

  .book-cover {
    width: 104px;
    height: 148px;
  }

  .mini-cover {
    --mini-book-height: 82px;
    height: 98px;
  }

  .mini-cover::before {
    height: 80px;
  }

  .mini-cover .fake-book {
    bottom: 8px;
  }
}

@media only screen and (max-width: 350px) {
  .notice {
    grid-template-columns: 48px 1fr;
  }

  .news-cats,
  .book-row {
    grid-template-columns: 1fr;
  }

  .book-main {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-page {
  background: #fff;
}

.product-page .site-header {
  position: sticky;
  z-index: 10;
  color: #343434;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  top: 0;
}

.index-page .site-header.is-fixed {
  position: fixed;
  z-index: 10;
  color: #343434;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  animation: home-fixed-header-in .18s ease-out;
}

@keyframes home-fixed-header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.product-page .header-inner,
.index-page .site-header.is-fixed .header-inner {
  --wrap: 100%;
  min-height: 100px;
  height: auto;
  gap: 0;
}

.product-page .brand,
.index-page .site-header.is-fixed .brand {
  flex: 0 0 auto;
  min-width: 0;
}

.product-page .brand-logo--home,
.index-page .site-header.is-fixed .brand-logo--home {
  display: none;
}

.product-page .brand-logo--plain,
.index-page .site-header.is-fixed .brand-logo--plain {
  display: block;
}

.product-page .brand img,
.index-page .site-header.is-fixed .brand img {
  width: clamp(210px, 15vw, 284px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.product-page .nav,
.index-page .site-header.is-fixed .nav {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: var(--header-nav-gap);
  margin-left: auto;
  min-width: 0;
  font-size: 18px;
}

.product-page .nav a,
.index-page .site-header.is-fixed .nav a {
  height: var(--header-height);
  padding: 0;
  color: #343434;
  font-weight: 400;
  line-height: var(--header-height);
}

.product-page .nav-item,
.index-page .site-header.is-fixed .nav-item {
  height: var(--header-height);
}

.product-page .nav a:hover,
.product-page .nav a.active,
.index-page .site-header.is-fixed .nav a:hover,
.index-page .site-header.is-fixed .nav a.active {
  color: #1F72F2;
  font-weight: 500;
}

.product-page .nav a.active::after,
.index-page .site-header.is-fixed .nav a.active::after {
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: #1f73ff;
}

@media only screen and (min-width: 768px) {
  .index-page .site-header.is-fixed .nav-dropdown {
    padding: 6px 0;
    background: #234f86;
  }

  .index-page .site-header.is-fixed .nav .nav-dropdown a {
    height: 44px;
    padding: 0 22px;
    color: #fff;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    opacity: 1;
  }

  .index-page .site-header.is-fixed .nav .nav-dropdown a:hover,
  .index-page .site-header.is-fixed .nav .nav-dropdown a:focus-visible {
    color: #fff;
    background: rgba(26, 116, 242, .62);
  }
}

.product-page .header-actions,
.index-page .site-header.is-fixed .header-actions {
  gap: 22px;
}

.product-page .header-auth,
.index-page .site-header.is-fixed .header-auth {
  color: #343434;
  font-size: 16px;
}

.product-page .header-auth__link:hover,
.product-page .header-auth__link:focus-visible,
.product-page .header-auth__name:hover,
.index-page .site-header.is-fixed .header-auth__link:hover,
.index-page .site-header.is-fixed .header-auth__link:focus-visible,
.index-page .site-header.is-fixed .header-auth__name:hover {
  color: #1F72F2;
}

.product-page .header-auth__divider,
.index-page .site-header.is-fixed .header-auth__divider {
  margin: 0 17px;
  color: #b9c0cb;
}

.product-page .header-auth__icon,
.index-page .site-header.is-fixed .header-auth__icon {
  width: 18px;
  height: 18px;
  filter: none;
}

.product-page .header-auth__avatar,
.index-page .site-header.is-fixed .header-auth__avatar {
  width: 22px;
  height: 22px;
  background: #f5f7fb;
}

.product-page .search-btn,
.index-page .site-header.is-fixed .search-btn {
  width: 42px;
  height: 42px;
  margin-right: 0;
  background: transparent;
}

.product-page .search-btn img,
.index-page .site-header.is-fixed .search-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(747%) hue-rotate(183deg) brightness(93%) contrast(90%);
  object-fit: contain;
}

.product-page.header-search-open .search-btn::before,
.product-page.header-search-open .search-btn::after,
.index-page.header-search-open .site-header.is-fixed .search-btn::before,
.index-page.header-search-open .site-header.is-fixed .search-btn::after {
  width: 30px;
  height: 3px;
  background: #1e2d4f;
}

@media (prefers-reduced-motion: reduce) {
  .index-page .site-header.is-fixed {
    animation: none;
  }
}

.product-page .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);
}

.product-page .site-logo {
  flex: 0 0 auto;
  min-width: 0;
}

.product-page .site-logo a,
.product-page .site-logo__image {
  display: block;
}

.product-page .site-logo__image {
  width: clamp(210px, 15vw, 284px);
  max-height: 58px;
  object-fit: contain;
}

.product-page .header .site-nav {
  flex: 0 1 auto;
  min-width: 0;
  margin-left: auto;
}

.product-page .header .site-nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--header-nav-gap);
  margin: 0;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.product-page .header .site-nav__list > li + li {
  margin-left: 0;
}

.product-page .header .site-nav__list > li {
  float: none;
  position: relative;
}

.product-page .header .site-nav__list > li > a {
  position: relative;
  display: block;
  height: var(--header-height);
  padding: 0;
  border-radius: 0;
  color: #343434;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  line-height: var(--header-height);
  text-align: center;
}

.product-page .header .site-nav__list > li > a:hover,
.product-page .header .site-nav__list > li.active > a {
  color: #1F72F2;
  font-weight: 500;
}

.product-page .header .site-nav__list > li.active > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: #1f73ff;
}

.product-page .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;
}

.product-page .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;
}

.product-page .header .site-nav__dropdown a:hover,
.product-page .header .site-nav__dropdown a:focus-visible {
  color: #fff;
  background: rgba(26, 116, 242, .62);
}

.product-page .header .site-nav__item--has-dropdown:hover .site-nav__dropdown,
.product-page .header .site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.product-page .site-search {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-page .site-search img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(747%) hue-rotate(183deg) brightness(93%) contrast(90%);
  object-fit: contain;
}

.product-hero {
  position: relative;
  height: 452px;
  background: #2f73ff url("../../images/product-banner.png") center / 100% 100% no-repeat;
  overflow: hidden;
}

.product-hero__content {
  width: min(1320px, calc(100% - 220px));
  height: 100%;
  margin: 0 auto;
  padding-top: 96px;
  color: #fff;
  text-align: center;
}

.product-hero__content h1 {
  margin: 0 0 32px;
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.product-hero__content p {
  margin: 0 0 70px;
  color: rgba(255, 255, 255, .94);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.product-hero__search {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 80px;
  width: 70%;
  height: 64px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 67, 167, .18);
  text-align: left;
}

.product-hero__select,
.product-hero__search input,
.product-hero__submit {
  border: 0;
  outline: 0;
  font-family: inherit;
}

.product-hero__select {
  position: relative;
  align-self: stretch;
  height: auto;
  margin: 5px;
  padding: 0;
  color: #8b8f98;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.product-hero__select select {
  width: 100%;
  height: 100%;
  padding: 0 38px;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.product-hero__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  border-top: 5px solid #b7bbc4;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transform: translateY(-35%);
  pointer-events: none;
}

.product-hero__search input {
  min-width: 0;
  height: 64px;
  padding: 0 34px;
  color: #263553;
  background: #fff;
  font-size: 20px;
}

.product-hero__search input::placeholder {
  color: #d2d5dc;
}

.product-hero__submit {
  width: 80px;
  height: 70px;
  background: transparent url("../../images/product-search-btn-bg.png") center / 80px 70px no-repeat;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-top: -6px;
}

.product-hero__submit img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.product-section {
  padding: 62px 0 0;
}

.product-section .wrap {
  width: min(1200px, calc(100% - 48px));
}

.product-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.product-title-row h2,
.catalog-title {
  margin: 0;
  color: #1b2b4f;
  font-size: 32px;
  font-weight: 800;
}

.product-title-row a,
.product-media .tabs .arrow-a,
.media-tabs a {
  color: #55647c;
  font-size: 18px;
}

.product-latest {
  padding: 54px 0 76px;
  background: #eef8ff url("../../images/product-newbook-bg.png") center / cover no-repeat;
}

.product-latest .product-title-row {
  position: relative;
  justify-content: center;
  margin-bottom: 44px;
}

.product-latest .product-title-row h2 {
  font-size: 40px;
  line-height: 1;
}

.product-latest .product-title-row > a {
  position: absolute;
  right: 0;
  bottom: 0px;
  color: #2c3852;
  font-size: 18px;
}

.latest-book {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 66px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto 58px;
}

.latest-cover {
  width: 286px;
  height: 415px;
  justify-self: start;
  filter: drop-shadow(0 20px 24px rgba(45, 102, 164, .12));
}

.latest-cover img,
.latest-mini img,
.product-book-card img,
.textbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-info h3 {
  margin: 30px 0 18px;
  color: #181f2c;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
}

.latest-info .book-subtitle {
  margin: 0 0 28px;
  color: #7a8394;
  font-size: 16px;
}

.latest-info p:not(.book-subtitle) {
  max-width: 850px;
  max-height: 120px;
  margin: 0 0 34px;
  padding: 24px 24px;
  border-radius: 4px;
  color: #7b8495;
  background: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 2;
  overflow-y: auto;
}

.latest-info .book-subtitle:empty::before,
.latest-info p:not(.book-subtitle):empty::before {
  content: "\00a0";
  visibility: hidden;
}

.latest-info p[aria-hidden="true"] {
  visibility: hidden;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 144px;
  height: 48px;
  padding: 0 26px;
  border-radius: 4px;
  color: #fff;
  background: #1f7bff;
  font-size: 14px;
  font-weight: 700;
}

.primary-link::after {
  content: "";
  width: 8px;
  height: 12px;
  background: url("../../images/knowmore-arrow.png") center / contain no-repeat;
}

.latest-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  max-width: 1120px;
  margin: 0 auto;
}

.latest-mini {
  display: grid;
  grid-template-columns: 128px 1fr;
  grid-template-rows: auto auto auto 1fr;
  grid-template-areas:
    "cover title"
    "cover author"
    "cover more"
    "cover .";
  row-gap: 0;
  column-gap: 30px;
  align-items: start;
  min-width: 0;
}

.latest-mini img {
  grid-area: cover;
  width: 128px;
  height: 180px;
  object-fit: cover;
  filter: drop-shadow(0 10px 14px rgba(45, 102, 164, .13));
}

.latest-mini strong {
  grid-area: title;
  min-width: 0;
  height: 3em;
  margin: 20px 0 15px;
  color: #25324c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-mini span {
  grid-area: author;
  display: block;
  min-width: 0;
  min-height: 1.2em;
  overflow: hidden;
  margin-bottom: 30px;
  color: #8a93a3;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.latest-mini em {
  grid-area: more;
  width: 72px;
  height: 36px;
  margin-left: 0;
  border: 1px solid #aab8cd;
  color: #536079;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-style: normal;
}

.product-catalog {
  padding-top: 38px;
}

.catalog-title {
  margin-bottom: 22px;
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.catalog-tabs a {
  position: relative;
  min-height: 58px;
  /* border: 1px dashed #b9c0c7; */
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #222;
  background: #f5fffb;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0px 0px 11px 2px rgba(228,217,248,0.23);
}

.catalog-tabs a::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 30px;
  height: 30px;
  border-radius: 30px 0 0 0;
  background: #d7f1ee;
  opacity: .9;
}

.catalog-tabs a:nth-child(1) { background: #f3f9ff; }
.catalog-tabs a:nth-child(1)::after { background: #97bbf5; }
.catalog-tabs a:nth-child(2) { background: #f5fffb; }
.catalog-tabs a:nth-child(2)::after { background: #d7f1ee; }
.catalog-tabs a:nth-child(3) { background: #fffaf0; }
.catalog-tabs a:nth-child(3)::after { background: #efd27f; }
.catalog-tabs a:nth-child(4) { background: #f3fbff; }
.catalog-tabs a:nth-child(4)::after { background: #aebfe7; }
.catalog-tabs a:nth-child(5) { background: #FDF3F2; }
.catalog-tabs a:nth-child(5)::after { background: #f3ccd8; }
.catalog-tabs a:nth-child(6) { background: #f8fffc; }
.catalog-tabs a:nth-child(6)::after { background: #9ee7cf; }
.catalog-tabs a:nth-child(7) { background: #F4F8FF; }
.catalog-tabs a:nth-child(7)::after { background: #B6BAE2; }
.catalog-tabs a:nth-child(8) { background: #F4F3F2; }
.catalog-tabs a:nth-child(8)::after { background: #E2D8CE; }

.catalog-tabs a:hover,
.catalog-tabs a:focus-visible {
  border-color: transparent;
  color: #fff;
  background: #2876ee;
}

.catalog-tabs a:hover::after,
.catalog-tabs a:focus-visible::after {
  background: #97bbf5;
}

.product-books {
  padding-top: 52px;
}

.product-book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.product-book-card {
  position: relative;
  /* min-height: 286px; */
  padding: 42px 190px 34px 20px;
  border-radius: 8px;
  background: linear-gradient(to top left, #e1f2ff 0%, #edf8ff 48%, #f8fcff 100%);
  color: #333b4d;
  overflow: hidden;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.product-book-card:nth-child(2),
.product-book-card:nth-child(6) {
  background: linear-gradient(to top left, #e1f2ff 0%, #edf8ff 48%, #f8fcff 100%);
}

.product-book-card:nth-child(4) {
  background: linear-gradient(to top left, #e1f2ff 0%, #edf8ff 48%, #f8fcff 100%);
}

.product-book-card:nth-child(5) {
  background: linear-gradient(to top left, #e1f2ff 0%, #edf8ff 48%, #f8fcff 100%);
}

.product-book-card.active,
.product-book-card:hover,
.product-book-card:focus-visible {
  color: #fff;
  background: #2378ed;
  box-shadow: 0 18px 32px rgba(35, 120, 237, .18);
}

.product-book-card::before {
    position: absolute;
    right: 18px;
    bottom: 30px;
    width: 160px;
    height: 106px;
    border-radius: 8px 8px 8px 0;
    background: rgba(255, 255, 255, .86);
    clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
    content: "";
}

.product-book-card h3 {
  min-height: 60px;
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-book-card p,
.product-book-card time {
  display: block;
  color: inherit;
  opacity: .64;
  font-size: 14px;
  line-height: 1.7;
}

.product-book-card p {
  min-height: 28px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-book-card img {
  position: absolute;
  right: 34px;
  top: 26px;
  z-index: 1;
  width: 126px;
  height: 185px;
  border-radius: 2px;
  filter: drop-shadow(0 18px 18px rgba(38, 74, 126, .2));
}

.round-arrow {
  width: 40px;
  height: 40px;
  margin-top: 15px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: url("../../images/more-icon-round.png") center / contain no-repeat;
}

.product-book-card.active .round-arrow,
.product-book-card:hover .round-arrow,
.product-book-card:focus-visible .round-arrow {
  background-image: url("../../images/more-icon-round-active.png");
}

.product-textbooks {
  padding-top: 62px;
}

.textbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.textbook-grid__state {
  grid-column: 1 / -1;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #7d8798;
  background: #f5f7fa;
  font-size: 16px;
}

.textbook-grid a {
  min-height: 400px;
  padding: 44px 28px 14px;
  border-radius: 6px;
  background: #f0f7ff;
  color: #24324f;
  text-align: center;
}

.textbook-grid a:nth-child(2) { background: #effbfb; }
.textbook-grid a:nth-child(3) { background: #fff7ec; }
.textbook-grid a:nth-child(4) { background: #f3f1ff; }

.textbook-grid img {
  width: 170px;
  height: 256px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 13px 18px rgba(45, 102, 164, .13));
}

.textbook-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.textbook-grid span {
  display: block;
  min-height: 21px;
  color: #7d8798;
  font-size: 14px;
  line-height: 1.5;
}

.product-journals {
  padding: 70px 0 74px;
  overflow: hidden;
}

.journal-strip {
  width: min(1580px, 112vw);
  margin: 42px auto 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 54px;
}

.journal-strip a {
  flex: 0 0 188px;
  color: #263553;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.journal-strip img,
.journal-cover {
  width: 188px;
  height: 258px;
  margin-bottom: 20px;
  border-radius: 3px;
  box-shadow: 0 12px 24px rgba(30, 62, 112, .16);
  object-fit: cover;
}

.journal-strip .featured {
  flex-basis: 350px;
}

.journal-strip .featured .journal-cover {
  width: 350px;
  height: 480px;
}

.journal-cover {
  color: #fff;
  display: grid;
  place-items: center;
  padding: 24px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.journal-cover.red { background: linear-gradient(145deg, #d51f2c, #f6f6f6); }
.journal-cover.art { background: linear-gradient(160deg, #f6f6f6 0%, #1d2d55 100%); }
.journal-cover.yellow { color: #111; background: #fae833; }
.journal-cover.navy { background: linear-gradient(160deg, #172a5c, #0d1836); }

.journal-strip span {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.journal-strip span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: #b8cdf0;
  transform: translateX(-50%);
}

.journal-strip .featured span::after {
  width: 54px;
  background: #1f7bff;
}

.journal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.journal-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5deea;
}

.journal-dots i.active {
  background: #e43d3d;
}

.product-media {
  padding: 74px 0 84px;
  background: #eaf8ff url("../../images/digit-bg.png") center / cover no-repeat;
}
.product-media .section-title {
  font-size: 32px;
}
.product-media .tabs a {
  font-size: 20px;
}

@media only screen and (min-width: 1200px) {
  .product-media .audio-layout:not(.audio-layout--audio) .audio-list {
    height: calc(var(--audio-visual-height) + var(--audio-meta-overlap));
  }

  .product-media .audio-layout:not(.audio-layout--audio) .audio-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

.media-tabs {
  display: flex;
  align-items: center;
  gap: 34px;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.media-feature {
  position: relative;
  min-height: 364px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 30px rgba(34, 91, 155, .12);
}

.media-feature > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-feature strong {
  position: absolute;
  left: 26px;
  right: 150px;
  bottom: 18px;
  padding: 18px 22px;
  color: #263553;
  background: rgba(255, 255, 255, .96);
  font-size: 16px;
  line-height: 1.45;
}

.media-feature time {
  position: absolute;
  right: 30px;
  bottom: 36px;
  color: #56627a;
  font-size: 13px;
}

.media-list {
  display: grid;
  gap: 12px;
}

.media-list a {
  display: grid;
  grid-template-columns: 146px 1fr;
  grid-template-areas:
    "thumb title"
    "thumb date";
  gap: 8px 16px;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.78);
  color: #263553;
}

.media-list a.active {
  color: #fff;
  background: #1f7bff;
  box-shadow: 0 12px 24px rgba(34, 112, 226, .18);
}

.media-list img {
  grid-area: thumb;
  width: 146px;
  height: 88px;
  object-fit: cover;
  border-radius: 3px;
}

.media-list span {
  grid-area: title;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-list time {
  grid-area: date;
  color: inherit;
  opacity: .72;
  font-size: 13px;
}

.product-creative {
  padding: 58px 0 72px;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 288px);
  justify-content: space-between;
  gap: 24px 16px;
}

.creative-grid a {
  width: 288px;
  padding-bottom: 26px;
  border: 1px solid #eef2f8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(30, 62, 112, .07);
  overflow: hidden;
}

.creative-photo {
  width: 288px;
  height: 200px;
  margin-bottom: 18px;
  background-position: center;
  background-size: cover;
}

.photo-1 {
  background-image: linear-gradient(145deg, rgba(20,32,50,.2), rgba(20,32,50,.1)), url("../../images/xinwenzixun.png");
}

.photo-2 {
  background-image: linear-gradient(145deg, rgba(255,255,255,.2), rgba(184,120,56,.2)), url("../../images/digital-left-pic.png");
}

.photo-3 {
  background-image: linear-gradient(145deg, rgba(47,58,79,.2), rgba(95,70,44,.2)), url("../../images/digit-bg.png");
}

.photo-4 {
  background-image: linear-gradient(145deg, rgba(255,255,255,.18), rgba(197,117,57,.18)), url("../../images/block-2.png");
}

.creative-grid strong,
.creative-grid span {
  display: block;
  padding: 0 18px;
}

.creative-grid strong {
  margin-bottom: 12px;
  color: #263553;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
}

.creative-grid span {
  color: #aeb5c1;
  font-size: 14px;
  line-height: 1.4;
}

@media only screen and (max-width: 1199px) {
  .product-page .header-inner {
    gap: 0;
  }

  .product-page .nav {
    gap: var(--header-nav-gap);
  }

  .product-page .header {
    padding: 0 24px;
    gap: 0;
  }

  .product-page .header .site-nav__list {
    gap: var(--header-nav-gap);
  }

  .product-section .wrap {
    width: auto;
  }

  .product-hero__content {
    width: calc(100% - 56px);
  }

  .product-hero__content h1 {
    font-size: 58px;
  }

  .product-hero__content p {
    font-size: 24px;
  }

  .product-book-card {
    padding-right: 162px;
  }

  .product-book-card img {
    right: 24px;
    width: 122px;
    height: 176px;
  }
  
  .journal-strip {
    width: calc(100% - 20px);
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
  }
}

@media only screen and (max-width: 992px) {
  .product-page .header-inner {
    flex-wrap: wrap;
    min-height: 0;
    padding: 14px 18px 0;
  }

  .product-page .header-auth {
    font-size: 15px;
  }

  .product-page .brand img {
    width: 180px;
  }

  .product-page .header-actions {
    margin-left: auto;
  }

  .product-page .search-btn {
    margin-left: 0;
  }

  .product-page .nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: flex-start;
    gap: 0;
    margin: 0 -18px;
    border-top: 1px solid #f0f2f6;
    overflow-x: auto;
  }

  .product-page .nav a {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 14px;
    font-size: 15px;
    line-height: 48px;
  }

  .product-page .header {
    flex-wrap: wrap;
    min-height: 0;
    padding: 14px 18px 0;
  }

  .product-page .site-logo__image {
    width: 180px;
  }

  .product-page .site-search {
    margin-left: auto;
  }

  .product-page .header .site-nav {
    flex: 0 0 100%;
    order: 3;
    margin: 0 -18px;
    border-top: 1px solid #f0f2f6;
    overflow-x: auto;
  }

  .product-page .header .site-nav__list {
    justify-content: flex-start;
    gap: 0;
    min-width: 690px;
  }

  .product-page .header .site-nav__list > li > a {
    height: 48px;
    padding: 0 14px;
    font-size: 15px;
    line-height: 48px;
  }

  .product-hero {
    height: 330px;
  }

  .product-hero__content {
    padding-top: 72px;
  }

  .product-hero__content h1 {
    margin-bottom: 22px;
    font-size: 44px;
  }

  .product-hero__content p {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .product-hero__search {
    grid-template-columns: 132px minmax(0, 1fr) 64px;
    height: 56px;
  }

  .product-hero__select {
    font-size: 16px;
  }

  .product-hero__search input {
    height: 56px;
    font-size: 16px;
  }

  .product-hero__select select {
    padding: 0 28px 0 24px;
  }

  .product-hero__select::after {
    right: 16px;
  }

  .product-hero__search input {
    padding: 0 22px;
  }

  .product-hero__submit {
    width: 64px;
    height: 56px;
    background-size: 64px 56px;
  }

  .latest-book,
  .media-layout {
    grid-template-columns: 1fr;
  }

  .latest-cover {
    justify-self: center;
  }

  .latest-info {
    text-align: center;
  }

  .latest-info h3 {
    margin-top: 0;
  }

  .latest-info p:not(.book-subtitle) {
    padding: 22px 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .latest-mini-list,
  .product-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-tabs,
  .textbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creative-grid {
    grid-template-columns: repeat(auto-fill, 288px);
    justify-content: center;
    gap: 24px 20px;
  }

  .media-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-list a {
    grid-template-columns: 1fr;
    grid-template-areas:
      "thumb"
      "title"
      "date";
  }

  .media-list img {
    width: 100%;
    height: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .product-page .site-header {
    width: 100vw;
    max-width: 100vw;
    overflow: visible;
  }

  .product-page .header-inner {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 8px 14px 0;
    gap: 8px;
  }

  .product-page .brand {
    grid-column: 1;
  }

  .product-page .brand img {
    width: 128px;
  }

  .product-page .nav {
    display: flex;
    justify-content: space-between;
  }

  .product-page .header-actions {
    position: absolute;
    left: calc(100vw - 150px);
    right: auto;
    top: 8px;
    grid-column: 2;
    justify-self: end;
    flex: 0 0 136px;
    width: 136px !important;
    justify-content: flex-end;
    gap: 6px;
    z-index: 6;
  }

  .product-page .header-auth {
    font-size: 13px;
  }

  .product-page .header-auth__link {
    gap: 4px;
  }

  .product-page .header-auth__divider {
    margin: 0 5px;
  }

  .product-page .header-auth__icon {
    display: none;
  }

  .product-page .header-auth__avatar {
    width: 16px;
    height: 16px;
  }

  .product-page .header-auth__name {
    max-width: 5em;
  }

  .product-page .header {
    padding-top: 10px;
  }

  .product-page .site-logo__image {
    width: 142px;
  }

  .product-hero {
    height: 230px;
    background-size: cover;
  }

  .product-hero__content {
    width: calc(100% - 20px);
    padding-top: 38px;
  }

  .product-hero__content h1 {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .product-hero__content p {
    max-width: 360px;
    margin: 0 auto 26px;
    font-size: 14px;
  }

  .product-hero__search {
    grid-template-columns: 104px minmax(0, 1fr) 50px;
    height: 42px;
    width: 100%;
  }

  .product-hero__select {
    font-size: 13px;
  }

  .product-hero__search input {
    height: 42px;
    font-size: 13px;
  }

  .product-hero__select select {
    padding: 0 22px 0 14px;
  }

  .product-hero__select::after {
    right: 12px;
    border-top-width: 4px;
    border-left-width: 3px;
    border-right-width: 3px;
  }

  .product-hero__search input {
    padding: 0 14px;
  }

  .product-hero__submit {
    width: 50px;
    height: 42px;
    background-size: 50px 42px;
    margin-top: 0;
  }

  .product-section {
    padding-top: 38px;
  }

  .product-latest {
    padding: 34px 0 44px;
  }

  .product-latest .product-title-row {
    margin-bottom: 18px;
  }

  .product-latest .product-title-row h2 {
    font-size: 24px;
  }

  .product-latest .product-title-row > a {
    bottom: 0px;
    font-size: 13px;
  }

  .product-title-row h2,
  .catalog-title {
    font-size: 21px;
  }

  .latest-book {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .latest-cover {
    width: 150px;
    height: 214px;
  }

  .latest-info h3 {
    margin-top: 0;
    font-size: 21px;
  }

  .latest-info .book-subtitle {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .latest-info p:not(.book-subtitle) {
    padding: 16px;
    font-size: 13px;
  }

  .latest-mini-list,
  .product-book-grid,
  .creative-grid,
  .media-list {
    grid-template-columns: 1fr;
  }

  .textbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .textbook-grid a {
    min-height: 0;
    padding: 22px 10px 16px;
  }

  .latest-mini {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto auto 1fr;
    row-gap: 0;
    column-gap: 14px;
  }

  .latest-mini img {
    width: 120px;
    height: auto;
    object-fit: contain;
  }

  .latest-mini strong {
    margin: 0 0 20px;
    font-size: 15px;
  }

  .latest-mini span {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .latest-mini em {
    width: 56px;
    height: 28px;
    margin-left: 0;
    font-size: 12px;
  }

  .catalog-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-tabs a {
    height: 36px;
    font-size: 12px;
  }

  .product-book-card {
    min-height: 220px;
    padding: 28px 142px 24px 22px;
  }

  .product-book-card h3 {
    min-height: 58px;
    margin-bottom: 14px;
    font-size: 20px;
  }

  .product-book-card p,
  .product-book-card time {
    font-size: 14px;
  }

  .round-arrow {
    width: 40px;
    height: 40px;
    margin-top: 18px;
    font-size: 20px;
  }

  .product-book-card img {
    right: 20px;
    top: 50px;
    width: 96px;
    height: 138px;
  }

  .product-book-card::before {
    width: 116px;
    right: 10px;
  }

  .textbook-grid img {
    width: 112px;
    height: 169px;
    margin-bottom: 14px;
  }

  .textbook-grid strong {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .textbook-grid span {
    min-height: 18px;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .journal-strip {
    gap: 18px;
    margin-top: 22px;
  }

  .journal-strip a,
  .journal-strip .featured {
    flex-basis: 150px;
  }

  .journal-strip img,
  .journal-cover,
  .journal-strip .featured .journal-cover {
    width: 150px;
    height: 206px;
  }

  .product-media {
    padding: 44px 0 52px;
  }

  .media-tabs {
    gap: 16px;
  }

  .media-feature {
    min-height: 260px;
  }

  .media-feature strong {
    left: 14px;
    right: 14px;
    bottom: 48px;
    padding: 14px;
    font-size: 14px;
  }

  .media-feature time {
    left: 28px;
    right: auto;
    bottom: 18px;
  }

  .creative-grid {
    grid-template-columns: minmax(0, 288px);
  }

  .creative-grid a {
    width: 100%;
  }

  .creative-photo {
    width: min(288px, calc(100% + 2px));
    height: auto;
    aspect-ratio: 36 / 25;
  }
}

@media only screen and (max-width: 413px) {
  .product-hero {
    height: 190px;
  }

  .product-hero__content {
    padding-top: 28px;
  }

  .product-hero__content h1 {
    font-size: 28px;
  }

  .product-hero__content p {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .catalog-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-book-card {
    min-height: 202px;
    padding-right: 112px;
  }

  .product-book-card img {
    right: 16px;
    top: 42px;
    width: 78px;
    height: 112px;
  }
}

.party-page {
  --party-red: #d51d1d;
  --party-light-red: #ffe6e6;
  --party-text: #2c2f38;
  background: #fff;
  color: var(--party-text);
}

.party-page .header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.party-main {
  overflow: hidden;
}

.party-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  overflow: hidden;
  color: #fff;
  background: #d71918 url("../../images/party/party-banner.png") center / cover no-repeat;
}

.party-hero-content {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 2px;
  text-align: center;
}

.party-hero h1 {
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.party-hero p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.party-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.party-section {
  background: #fff;
}

.party-activity {
  padding: 56px 0 8px;
}

.party-news {
  padding: 54px 0 72px;
}

.party-titlebar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 46px;
}

.party-titlebar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 34px;
  background: url("../../images/party/party-block-title-bg.png") center / 100% 34px no-repeat;
}

.party-titlebar h2 {
  position: relative;
  z-index: 1;
  min-width: 228px;
  padding: 0 42px 10px;
  color: #d11e1e;
  background: transparent;
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  text-align: center;
  text-shadow: 0 3px 7px rgba(209, 30, 30, .16);
}

.party-titlebar a {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  color: #d64646;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  display: block;
  min-width: 0;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 389 / 198;
  object-fit: cover;
  border-radius: 4px;
}

.activity-card h3 {
  margin-top: 18px;
  color: #2f3036;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card p {
  display: -webkit-box;
  min-height: 46px;
  margin-top: 12px;
  color: #9196a1;
  font-size: 14px;
  line-height: 23px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.activity-card time {
  display: block;
  margin-top: 13px;
  color: #999fa9;
  font-size: 14px;
  line-height: 1;
}

.party-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
}

.party-news-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  min-height: 190px;
  padding: 34px 20px 28px;
  border: 1px solid #ededed;
  background: #fff;
}

.party-news-card time {
  display: block;
  color: #737883;
  line-height: 1;
}

.party-news-card time strong {
  display: block;
  margin-bottom: 11px;
  color: #626874;
  font-size: 20px;
  font-weight: 800;
}

.party-news-card time span {
  display: block;
  color: #a9adb5;
  font-size: 16px;
}

.party-news-card time::after {
  content: "";
  display: block;
  width: 49px;
  height: 2px;
  margin-top: 40px;
  background: #d8d8d8;
}

.party-news-card h3 {
  display: -webkit-box;
  min-height: 48px;
  color: #2e3038;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.party-news-card p {
  display: -webkit-box;
  margin-top: 14px;
  color: #a1a5ad;
  font-size: 14px;
  line-height: 23px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.party-study {
  position: relative;
  padding-bottom: 62px;
  background: #fff;
}

.party-study-bg {
  position: relative;
  height: 450px;
  padding-top: 71px;
  background: #df3030 url("../../images/party/party-study-block-banner-bg.png") center top / cover no-repeat;
}

.party-titlebar-light {
  margin-bottom: 0;
}

.party-titlebar-light::before {
  background-image: url("../../images/party/party-study-block-title-bg.png");
}

.party-titlebar-light h2 {
  color: #fff;
  text-shadow: 0 3px 7px rgba(150, 0, 0, .22);
}

.party-titlebar-light a {
  color: #fff;
}

.study-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-height: 568px;
  margin-top: -244px;
  padding: 50px 45px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(190, 26, 26, .12);
}

.study-column {
  min-width: 0;
  padding: 31px 20px 28px;
}

.study-column-blue {
  background: #eef3ff;
  --study-color: #4759df;
}

.study-column-orange {
  background: #fff7d9;
  --study-color: #ff9428;
}

.study-column-red {
  background: #fff0f0;
  --study-color: #e2140f;
}

.study-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 -22px 28px 0;
}

.study-column-head h3 {
  min-width: 126px;
  height: 42px;
  padding: 0 18px 0 20px;
  border-radius: 0 21px 21px 0;
  color: #fff;
  background: var(--study-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 42px;
  margin-left: -20px;
}

.study-column-head a {
  margin-right: 20px;
  color: #666;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
}

.study-column li {
  position: relative;
  min-width: 0;
  padding-left: 27px;
  color: #555d69;
  font-size: 16px;
  line-height: 38px;
}

.study-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 12px;
  background: var(--study-color);
  -webkit-mask: url("../../images/party/list-item-icon.png") center / contain no-repeat;
  mask: url("../../images/party/list-item-icon.png") center / contain no-repeat;
}

.study-column li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (max-width: 1199px) {
  .party-hero {
    height: 300px;
  }

  .party-wrap {
    width: auto;
    padding: 0 24px;
  }

  .party-titlebar {
    margin-bottom: 34px;
  }

  .party-news-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 18px;
  }

  .study-card {
    width: calc(100% - 48px);
    padding: 36px 28px;
  }
}

@media only screen and (max-width: 992px) {
  .activity-grid,
  .party-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .study-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .study-column {
    padding-bottom: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .party-page .header {
    background: #fff;
  }

  .party-hero {
    height: 190px;
  }

  .party-hero h1 {
    margin-bottom: 12px;
    font-size: 32px;
  }

  .party-hero p {
    font-size: 14px;
  }

  .party-activity {
    padding-top: 34px;
  }

  .party-news {
    padding: 34px 0 46px;
  }

  .party-titlebar {
    height: 40px;
    margin-bottom: 24px;
  }

  .party-titlebar h2 {
    min-width: 156px;
    padding: 0 24px 6px;
    font-size: 24px;
    line-height: 40px;
  }

  .party-titlebar a {
    top: 8px;
    font-size: 12px;
  }

  .activity-grid,
  .party-news-grid {
    grid-template-columns: 1fr;
  }

  .activity-card h3 {
    font-size: 17px;
  }

  .party-news-card {
    min-height: 160px;
  }

  .party-study {
    padding-bottom: 40px;
  }

  .party-study-bg {
    height: 330px;
    padding-top: 46px;
    background-size: auto 330px;
  }

  .study-card {
    width: calc(100% - 20px);
    margin-top: -160px;
    padding: 24px 16px;
    gap: 16px;
  }

  .study-column {
    padding: 22px 16px 18px;
  }

  .study-column-head {
    margin-right: -16px;
    margin-bottom: 18px;
  }

  .study-column-head h3 {
    min-width: 112px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
  }

  .study-column li {
    font-size: 14px;
    line-height: 32px;
  }

  .study-column li::before {
    top: 10px;
  }
}

@media only screen and (max-width: 413px) {
  .party-hero {
    height: 160px;
  }

  .party-wrap {
    padding: 0 10px;
  }

  .party-titlebar::before {
    background-size: 100% 28px;
  }

  .party-titlebar a {
    right: 4px;
  }

  .party-news-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 22px 14px;
  }

  .party-news-card time strong {
    font-size: 17px;
  }

  .party-news-card h3 {
    font-size: 16px;
  }
}

.thinkTank-achievement-page {
  background: #F5F5F5;
  margin-bottom: 40px;
}

.thinkTank-achievement-banner {
  height: 167px;
}

.thinkTank-achievement-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 61px;
  color: #555555;
  font-size: 16px;
}

.thinkTank-achievement-tabs {
  /* height: 60px; */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px;
  gap: 16px;
  background: #FFFFFF;
  color: #666666;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
}

.thinkTank-achievement-tabs a{
  font-size: 18px;
  color: #333333;
  margin-right: 16px;
}

.thinkTank-achievement-tabs .active {
  background: #236DF2;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 200px;
}

.thinkTank-achievement-total {
  color: #555555;
  font-size: 16px;
}

.thinkTank-achievement-total .achievement-total-count {
  color: #236DF2;
}

.thinkTank-achievement-list {
  background: #FFFFFF;
  margin-top: 16px;
}

.pagebar-container {
  background: #FFFFFF;
  padding: 16px 0;
}

.thinkTank-achievement-item {
  padding: 16px 24px 12px;
  border-bottom: 1px solid #D9D9D9;
}

.thinkTank-achievement-item .title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 24px;
}

.thinkTank-achievement-item .content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.thinkTank-achievement-item .content .desc-content,
.thinkTank-achievement-item .content .desc-date {
  font-size: 14px;
  color: #555555;
}

.thinkTank-achievement-item .content .desc-content {
  margin-bottom: 8px;
}

.thinkTank-achievement-item .content .download {
  background: #236DF2;
  color: #FFFFFF;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0px 16px;
  height: 36px;
  border-radius: 7px;
  cursor: pointer;
  flex-shrink: 0;
}

.thinkTank-achievement-item .content .download img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.thinkTank-achievement-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 24px 12px;
  border-bottom: 1px solid #D9D9D9;
  color: #555555;
  font-size: 16px;
}

.thinkTank-achievement-filter .sort-btn {
  cursor: pointer;
  user-select: none;
  margin-right: 16px;
}

.thinkTank-achievement-filter .filter-icon {
  display: none;
  font-style: normal;
}

.thinkTank-achievement-filter .active {
  color: #236DF2;
}

.thinkTank-achievement-filter .active .filter-icon {
  display: inline;
}

@media screen and (max-width: 768px) {
  .thinkTank-achievement-item .content {
    display: block;
  }

  .thinkTank-achievement-item .content .desc {
    margin-bottom: 12px;
  }

  .thinkTank-achievement-item .content .download {
    width: fit-content;
    margin-left: auto;
  }
}

.thinktank-page {
  --think-blue: #2669f2;
  --think-deep: #21429b;
  --think-ink: #1e293b;
  --think-muted: #697386;
  background: #fff;
  color: var(--think-ink);
}

.thinktank-main {
  overflow: hidden;
}

.thinktank-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.thinktank-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 347px;
  color: #fff;
  background: #0c2034 url("../../images/thinktank/thinktank-banner.png") center / cover no-repeat;
}

.thinktank-hero__content {
  width: min(655px, calc(100% - 48px));
  padding-top: 58px;
  text-align: center;
}

.thinktank-hero h1 {
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.thinktank-hero p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.thinktank-service-cards {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  padding-bottom: 58px;
  background: transparent;
}

.thinktank-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.thinktank-service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px 28px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 43, 89, .08);
  text-align: center;
}

.thinktank-service-card img {
  width: 120px;
  height: 115px;
  margin-bottom: 40px;
  object-fit: contain;
}
.thinktank-service-card:nth-child(2) img {
  width: 200px
}

.thinktank-service-card h2 {
  margin-bottom: 14px;
  color: #1b3876;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.thinktank-service-card p {
  min-height: 48px;
  color: #596574;
  font-size: 16px;
  line-height: 24px;
}

.thinktank-service-card span,
.training-consult a,
.consulting-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 149px;
  margin-top: 18px;
  border-radius: 3px;
  color: #fff;
  background: var(--think-blue);
  font-size: 16px;
  font-weight: 700;
}

.thinktank-section {
  padding: 58px 0 64px;
  background: #fff;
}

.thinktank-section-head {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.thinktank-section-head h2,
.thinktank-achievement-banner h2 {
  position: relative;
  color: #202838;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.thinktank-section-head h2::after,
.thinktank-achievement-banner h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: var(--think-blue);
  transform: translateX(-50%);
}
.thinktank-achievement-banner h2::after {
  background: #fff;
  width: 60px;
}

.thinktank-tabs,
.achievement-tabs,
.achievement-tabs__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.achievement-tabs__scroll{
  margin-bottom: 0px;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0;
  scrollbar-color: #bfd0ec transparent;
  scrollbar-width: thin;
}

.thinktank-tabs a,
.achievement-tabs a,
.achievement-tabs__scroll a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 30px;
  padding: 0 18px;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  color: #566172;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.thinktank-tabs a.active {
  border-color: var(--think-blue);
  color: #fff;
  background: var(--think-blue);
}

.thinktank-tabs .thinktank-more,
.achievement-tabs .thinktank-more {
  margin-left: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #6b7280;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
}

.experts-section {
  padding: 70px 0 76px;
}

.experts-section .thinktank-section-head {
  margin-bottom: 76px;
}

.experts-section .thinktank-section-head h2 {
  font-size: 34px;
}

.experts-section .thinktank-section-head h2::after {
  bottom: -16px;
  width: 64px;
  height: 5px;
}

.experts-section .thinktank-tabs {
  gap: 25px;
  margin-bottom: 44px;
}

.experts-section .thinktank-tabs__scroll {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 25px;
}

.experts-section .thinktank-tabs a {
  min-width: 120px;
  height: 40px;
  padding: 0 28px;
  border-color: #d9dce2;
  border-radius: 24px;
  color: #242b38;
  font-size: 14px;
  font-weight: 700;
}

.experts-section .thinktank-tabs a.active {
  border-color: var(--think-blue);
  color: #fff;
  background: var(--think-blue);
}

.experts-section .thinktank-tabs .thinktank-more {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  color: #666;
  background: transparent;
  font-size: 16px;
}

.thinktank-page .expert-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 25px;
}

.thinktank-page .expert-card {
  display: flex;
  width: auto;
  /* min-height: 430px; */
  height: auto;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  border: 1px solid #eceff4;
  border-radius: 8px;
  color: var(--think-ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 42, 91, .10);
  text-align: left;
  transition: box-shadow .2s ease, transform .2s ease;
}

.thinktank-page .expert-card:nth-child(2),
.thinktank-page .expert-card:nth-child(4) {
  margin-top: 0;
}

.thinktank-page .expert-card:hover,
.thinktank-page .expert-card:focus-visible {
  color: var(--think-ink);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 42, 91, .14);
  transform: translateY(-4px);
}

.thinktank-page .expert-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  background: #d7dde5;
}
.thinktank-page .expert-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 15px;
}

.thinktank-page .expert-card h3 {
  display: block;
  width: auto;
  min-width: 0;
  height: auto;
  margin: 0;
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  color: #555;
  background: transparent;
  box-shadow: none;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.thinktank-page .expert-card:hover h3,
.thinktank-page .expert-card:focus-visible h3 {
  color: #555;
  background: transparent;
}

.thinktank-page .expert-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--think-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thinktank-page .expert-card p {
  display: -webkit-box;
  /* min-height: 78px; */
  margin: 0;
  color: #232936;
  opacity: 1;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.thinktank-page .expert-card:hover p,
.thinktank-page .expert-card:focus-visible p {
  color: #232936;
}

.thinktank-page .expert-card ul {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.thinktank-page .expert-card li {
    flex: 1;
    height: 26px;
    border-radius: 15px;
    color: #8c929b;
    background: #f5f5f5;
    font-size: 12px;
    line-height: 26px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    max-width: 33.33%;
}

.achievement-section {
  padding: 0 0 80px;
  background: #fff;
}

.thinktank-achievement-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 177px;
  color: #fff;
  background: #061524 url("../../images/thinktank/thinktank-achievements-banner.png") center / cover no-repeat;
}

.thinktank-achievement-banner h2 {
  color: #fff;
}

.achievement-panel {
  position: relative;
  z-index: 1;
  margin-top: -36px;
  padding: 0 0 4px;
}

.achievement-tabs {
  height: 80px;
  margin-bottom: 48px;
  padding: 0 58px;
  border-radius: 8px;
  background: #f2f6fb;
  box-shadow: 0 8px 24px rgba(16, 42, 91, .08);
}

.achievement-tabs a {
  height: 80px;
  min-width: 122px;
  border: 0;
  border-radius: 0;
  color: #2b2f37;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
}

.achievement-tabs a.active {
  position: relative;
  color: var(--think-blue);
}

.achievement-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--think-blue);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.achievement-grid--empty {
  display: block;
}

.achievement-empty {
  font-size: 14px;
  text-align: center;
  color: #999;
}

.achievement-card {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 32px 32px 26px;
  border: 1px solid #e7ebf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 42, 91, .08);
  overflow: hidden;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.achievement-card-primary {
  color: #fff;
  border-color: transparent;
  background: #24469e;
}

.achievement-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: url("../../images/thinktank/thinktank-achievement-item-bg.svg") center / contain no-repeat;
  opacity: 0;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
  transition: opacity .2s ease;
}

.achievement-card-primary::after,
.achievement-card:hover::after,
.achievement-card:focus-visible::after {
  opacity: .5;
}

.achievement-card > * {
  position: relative;
  z-index: 1;
}

.achievement-card:hover,
.achievement-card:focus-visible {
  color: #fff;
  border-color: transparent;
  background: #24469e;
  box-shadow: 0 10px 24px rgba(36, 70, 158, .2);
  transform: translateY(-4px);
}

.achievement-card h3 {
  display: -webkit-box;
  min-height: 56px;
  margin-bottom: 18px;
  color: #2b2f37;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.achievement-card-primary h3 {
  color: #fff;
}

.achievement-card:hover h3,
.achievement-card:focus-visible h3 {
  color: #fff;
}

.achievement-card p {
    display: -webkit-box;
    min-height: 4.8em;
    color: #3f4653;
    font-size: 13px;
    line-height: 1.6em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
}

.achievement-card-primary p {
  color: rgba(255, 255, 255, .9);
}

.achievement-card:hover p,
.achievement-card:focus-visible p {
  color: rgba(255, 255, 255, .9);
}

.achievement-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #e6e9ef;
  color: #969da9;
  font-size: 14px;
  line-height: 20px;
}

.achievement-card-primary span {
  border-top-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .92);
}

.achievement-card:hover span,
.achievement-card:focus-visible span {
  border-top-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .92);
}

.achievement-card em {
  position: relative;
  color: var(--think-blue);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}

.achievement-card em::before {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

.achievement-card-primary em {
  color: #fff;
}

.achievement-card:hover em,
.achievement-card:focus-visible em {
  color: #fff;
}

body.achievement-modal-open {
  overflow: hidden;
}

.achievement-download-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  background: rgba(10, 24, 47, .52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.achievement-download-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.achievement-download-modal__dialog {
  position: relative;
  width: 400px;
  max-width: 100%;
  padding: 32px 32px 28px;
  border: 1px solid #e7ebf2;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: 0 20px 56px rgba(10, 24, 47, .22);
  transform: translateY(8px);
  transition: transform .18s ease;
}

.achievement-download-modal.is-open .achievement-download-modal__dialog {
  transform: translateY(0);
}

.achievement-download-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: #7b8495;
  font-size: 24px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

.achievement-download-modal__close:hover,
.achievement-download-modal__close:focus-visible {
  color: #263553;
  background: #f2f6fb;
}

.achievement-download-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 8px;
  color: #b66a00;
  background: #fff3d6;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.achievement-download-modal h2 {
  margin: 0;
  color: #202838;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.achievement-download-modal p {
  min-height: 24px;
  margin: 12px 0 24px;
  color: #596574;
  font-size: 15px;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.achievement-download-modal__confirm {
  min-width: 112px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid var(--think-blue);
  border-radius: 4px;
  color: #fff;
  background: var(--think-blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.achievement-download-modal__confirm:hover,
.achievement-download-modal__confirm:focus-visible {
  border-color: #174fc5;
  background: #174fc5;
}

.achievement-download-modal__close:focus-visible,
.achievement-download-modal__confirm:focus-visible {
  outline: 3px solid rgba(38, 105, 242, .24);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .achievement-download-modal,
  .achievement-download-modal__dialog {
    transition: none;
  }
}

body.site-alert-dialog-open {
  overflow: hidden;
}

.site-alert-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  background: rgba(10, 24, 47, .52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.site-alert-dialog.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-alert-dialog__panel {
  position: relative;
  width: 400px;
  max-width: 100%;
  padding: 32px 32px 28px;
  border: 1px solid #e7ebf2;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: 0 20px 56px rgba(10, 24, 47, .22);
  transform: translateY(8px);
  transition: transform .18s ease;
}

.site-alert-dialog.is-open .site-alert-dialog__panel {
  transform: translateY(0);
}

.site-alert-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: #7b8495;
  font-size: 24px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

.site-alert-dialog__close:hover,
.site-alert-dialog__close:focus-visible {
  color: #263553;
  background: #f2f6fb;
}

.site-alert-dialog__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 8px;
  color: #b66a00;
  background: #fff3d6;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.site-alert-dialog h2 {
  margin: 0;
  color: #202838;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.site-alert-dialog p {
  min-height: 24px;
  margin: 12px 0 24px;
  color: #596574;
  font-size: 15px;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.site-alert-dialog__confirm {
  min-width: 112px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid #2669f2;
  border-radius: 4px;
  color: #fff;
  background: #2669f2;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.site-alert-dialog__confirm:hover,
.site-alert-dialog__confirm:focus-visible {
  border-color: #174fc5;
  background: #174fc5;
}

.site-alert-dialog__close:focus-visible,
.site-alert-dialog__confirm:focus-visible {
  outline: 3px solid rgba(38, 105, 242, .24);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .site-alert-dialog {
    padding: 14px;
  }

  .site-alert-dialog__panel {
    padding: 28px 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-alert-dialog,
  .site-alert-dialog__panel {
    transition: none;
  }
}

.training-section {
  padding: 70px 0 90px;
  background: #f4f7fc;
}

.training-section .thinktank-section-head {
  margin-bottom: 76px;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 390px;
  gap: 40px;
  align-items: stretch;
}

.training-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.training-topline a {
  color: #666;
  font-size: 16px;
  font-weight: 700;
}

.training-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 34px;
  min-height: 188px;
  margin-bottom: 24px;
  padding: 30px 48px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.training-item:last-child {
  margin-bottom: 0;
}

.training-item time {
  display: block;
  align-self: center;
  padding-right: 28px;
  border-right: 1px solid #d6dbe4;
  color: #003c98;
  text-align: center;
}

.training-item time strong {
  display: block;
  color: #e00016;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.training-item time span {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.22;
}

.training-item h3 {
  margin-bottom: 14px;
  color: #003c98;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.training-item p {
  display: -webkit-box;
  color: #111827;
  font-size: 16px;
  line-height: 28px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.training-item small,
.meeting-training-list-page .news-list__body small {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
  color: #666;
  font-size: 13px;
  line-height: 20px;
}

.training-item small span,
.meeting-training-list-page .news-list__body small span {
  position: relative;
  padding-left: 18px;
}

.training-item small span::before,
.meeting-training-list-page .news-list__body small span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
}

.training-place::before,
.meeting-training-list-page .news-list__body small .training-place::before {
  width: 9px;
  height: 9px;
  border: 2px solid #666;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.training-speaker::before,
.meeting-training-list-page .news-list__body small .training-speaker::before {
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 3px 3px;
  background:
    radial-gradient(circle at 50% 28%, #666 0 3px, transparent 3.5px),
    linear-gradient(#666, #666) center bottom / 11px 6px no-repeat;
}


.meeting-training-detail-page .news-detail__meta small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: right;
  font-size: 14px;
}

.training-consult {
  display: flex;
  min-height: 658px;
  padding: 44px 34px;
  border-radius: 8px;
  color: #fff;
  background: #24469e;
  flex-direction: column;
}

.training-consult h3 {
  position: relative;
  margin-bottom: 70px;
  font-size: 22px;
  font-weight: 800;
}

.training-consult h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -34px;
  width: 100%;
  height: 3px;
  background: #f7c622;
}

.training-consult p {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.training-consult div {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.training-consult li {
  position: relative;
  margin-bottom: 22px;
  padding-left: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.training-consult li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f7c622;
}

.training-consult a {
  min-width: 152px;
  height: 50px;
  margin-top: 34px;
  background: #f7c622;
  color: #fff;
  font-size: 16px;
}

.consulting-section {
  padding: 72px 0 78px;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 32px;
  margin-bottom: 64px;
}

.consulting-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 34px;
  min-height: 170px;
  padding: 42px 56px 36px 40px;
  border-radius: 8px;
  background: url("../../images/thinktank/thinktank-consult-card-bg.png") center / cover no-repeat #f6fbff;
  overflow: hidden;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.consulting-card.active,
.consulting-card:focus-visible {
  color: #fff;
  background: #24469e;
  box-shadow: 0 12px 28px rgba(36, 70, 158, .18);
  transform: translateY(-2px);
}

.consulting-card.active::after,
.consulting-card:focus-visible::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 105px;
  height: 84px;
  background: url("../../images/thinktank/thinktank-consult-1-bg.svg") center / contain no-repeat;
  pointer-events: none;
}

.consulting-card img {
  width: 38px;
  height: 40px;
  margin-top: 2px;
  object-fit: contain;
}

.consulting-card:not(.active):focus-visible img {
  filter: brightness(0) invert(1);
}

.consulting-card h3 {
  margin-bottom: 18px;
  color: #213e91;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.consulting-card.active h3,
.consulting-card:focus-visible h3 {
  color: #fff;
}

.consulting-card p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.consulting-card.active p,
.consulting-card:focus-visible p {
  color: rgba(255, 255, 255, .92);
}

.consulting-cta {
  text-align: center;
}

.consulting-cta h3 {
  margin-bottom: 20px;
  color: #24469e;
  font-size: 18px;
  font-weight: 800;
}

.consulting-cta p {
  margin-bottom: 26px;
  color: #596574;
  font-size: 13px;
}

.consulting-cta a {
  min-width: 138px;
  margin: 0;
  background: #d40000;
}

@media only screen and (max-width: 1199px) {
  .thinktank-wrap {
    width: auto;
    padding: 0 24px;
  }

  .thinktank-service-grid,
  .thinktank-page .expert-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media only screen and (max-width: 992px) {
  .achievement-grid,
  .training-layout,
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .training-consult {
    min-height: 0;
  }
}

@media only screen and (max-width: 767px) {
  .thinktank-hero {
    height: 260px;
  }

  .thinktank-hero__content {
    padding-top: 42px;
  }

  .thinktank-hero h1 {
    font-size: 32px;
  }

  .thinktank-hero p {
    font-size: 13px;
    line-height: 1.65;
  }

  .thinktank-service-cards {
    margin-top: -42px;
    padding-bottom: 40px;
  }

  .thinktank-service-grid,
  .thinktank-page .expert-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .experts-section .thinktank-section-head h2{
    font-size: 24px;
  }

  .experts-section .thinktank-section-head {
    margin-bottom: 36px;
  }

  .experts-section .thinktank-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 28px;
    overflow: visible;
    padding-bottom: 0;
  }

  .experts-section .thinktank-tabs__scroll {
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0;
    scrollbar-color: #bfd0ec transparent;
    scrollbar-width: thin;
  }

  .experts-section .thinktank-tabs a {
    min-width: 110px;
    width: auto;
    height: 38px;
    padding: 0 12px;
    flex: 0 0 auto;
  }

  .experts-section .thinktank-tabs .thinktank-more {
    margin-left: 0;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    padding: 0 2px;
    font-size: 14px;
  }

  .experts-section .thinktank-tabs__scroll::-webkit-scrollbar {
    height: 5px;
  }

  .experts-section .thinktank-tabs__scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #bfd0ec;
  }

  .thinktank-page .expert-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .thinktank-page .expert-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 164px;
  }

  .thinktank-page .expert-card img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .thinktank-page .expert-card > div {
    padding: 16px;
  }

  .thinktank-page .expert-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .thinktank-page .expert-card strong {
    margin-bottom: 8px;
  }

  .thinktank-page .expert-card p {
    -webkit-line-clamp: 2;
  }

  .thinktank-page .expert-card ul {
    gap: 8px;
    padding-top: 12px;
  }

  .thinktank-page .expert-card li {
    padding: 0 8px;
  }

  .thinktank-service-card img{
    margin-bottom: 10px;
  }

  .thinktank-service-card {
    min-height: 0;
    padding: 20px;
  }

  .thinktank-section {
    padding: 42px 0 48px;
  }

  .thinktank-tabs,
  .achievement-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .achievement-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    height: auto;
    min-height: 58px;
    margin-bottom: 28px;
    overflow: visible;
    padding: 0 16px;
  }

  .achievement-tabs__scroll {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0;
    scrollbar-color: #bfd0ec transparent;
    scrollbar-width: thin;
  }

  .achievement-tabs a {
    min-width: 90px;
    width: auto;
    height: 38px;
    padding: 0 12px;
    flex: 0 0 auto;
    font-size: 14px;
  }

  .achievement-tabs .thinktank-more {
    margin-left: 0;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    padding: 0 2px;
    font-size: 14px;
  }

  .achievement-tabs__scroll::-webkit-scrollbar {
    height: 5px;
  }

  .achievement-tabs__scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #bfd0ec;
  }

  .training-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 18px;
  }

  .training-item time strong {
    font-size: 28px;
  }

  .training-item time span {
    font-size: 13px;
  }

  .consulting-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    min-height: 140px;
    padding: 24px 18px;
  }

  .consulting-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .consulting-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .consulting-card.active::after,
  .consulting-card:focus-visible::after {
    right: 12px;
    top: 12px;
    width: 80px;
    height: 64px;
  }

}

@media only screen and (max-width: 413px) {
  .thinktank-wrap {
    padding: 0 10px;
  }

  .thinktank-hero {
    height: 230px;
  }

  .thinktank-hero__content {
    width: calc(100% - 24px);
  }

  .thinktank-section-head h2,
  .thinktank-achievement-banner h2 {
    font-size: 24px;
  }

  .thinktank-page .expert-card img {
    height: 100%;
  }

  .achievement-download-modal {
    padding: 14px;
  }

  .achievement-download-modal__dialog {
    padding: 28px 20px 24px;
  }
}

.businessdata-page {
  --data-blue: #3e7bff;
  --data-deep: #21429b;
  --data-ink: #2b3445;
  --data-muted: #6b7280;
  background: #fff;
  color: var(--data-ink);
}

.businessdata-main {
  overflow: hidden;
  background: #fff;
}

.businessdata-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.businessdata-hero {
  display: grid;
  place-items: center;
  min-height: 272px;
  color: #fff;
  background: #06162d url("../../images/businessdata/businessdata-banner.png") center / cover no-repeat;
  text-align: center;
}

.businessdata-hero__content {
  width: min(760px, calc(100% - 48px));
}

.businessdata-hero h1 {
  margin-bottom: 22px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.businessdata-hero p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.businessdata-section {
  padding: 72px 0 96px;
}

.businessdata-title {
  display: flex;
  justify-content: center;
  text-align: center;
}

.businessdata-title h2,
.businessdata-titleline h2 {
  position: relative;
  color: #303747;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.businessdata-title h2::after,
.businessdata-titleline h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--data-blue);
  transform: translateX(-50%);
}

.data-classic {
  position: relative;
  margin: 64px 0 58px;
}

.data-classic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.data-classic-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 0 34px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  color: #303747;
  cursor: pointer;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
}

.data-classic-card--trade,
.data-classic-card--tab-1 {
  background: linear-gradient(90deg, #edf6ff 0%, #d9eaff 100%);
}

.data-classic-card--region,
.data-classic-card--tab-2 {
  background: linear-gradient(90deg, #efffee 0%, #daf8ce 100%);
}

.data-classic-card--digital,
.data-classic-card--tab-3 {
  background: linear-gradient(90deg, #fff5f2 0%, #ffe5d8 100%);
}

.data-classic-card--industry,
.data-classic-card--tab-4 {
  background: linear-gradient(90deg, #f2f1ff 0%, #e2e2ff 100%);
}

.data-classic-card[aria-selected="true"] {
  box-shadow: 0 0 0 3px rgba(77, 126, 255, .35);
}

.data-classic-card:focus-visible {
  outline: 3px solid #4d7eff;
  outline-offset: 3px;
}

.data-classic-card span {
  position: relative;
  z-index: 1;
}

.data-classic-card img {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 116px;
  height: 116px;
  object-fit: contain;
  pointer-events: none;
}

.data-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 72px;
  border: 1px solid #e7edf8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(39, 83, 160, .12);
  transform: translateY(-50%);
}

.data-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #6b94ff;
  border-left: 3px solid #6b94ff;
}

.data-arrow--prev {
  left: -34px;
}

.data-arrow--prev::before {
  left: 9px;
  transform: translateY(-50%) rotate(-45deg);
}

.data-arrow--next {
  right: -34px;
}

.data-arrow--next::before {
  right: 9px;
  transform: translateY(-50%) rotate(135deg);
}

.businessdata-titleline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.data-featured-panel {
  display: none;
}

.data-featured-panel:first-child,
.data-featured-panel.is-active {
  display: block;
}

.data-featured-panels.is-initialized .data-featured-panel:first-child:not(.is-active) {
  display: none;
}

/* 数据精选列表 */
.businessdata-list-page .businessdata-list-banner,
.businessdata-detail-page .businessdata-detail-banner {
  height: 300px;
}

.businessdata-list-page .businessdata-list-banner::after,
.businessdata-detail-page .businessdata-detail-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 24, 61, .28);
  pointer-events: none;
}

.businessdata-list-page .businessdata-list-banner .banner-con,
.businessdata-detail-page .businessdata-detail-banner .banner-con {
  z-index: 1;
}

.businessdata-list-page .businessdata-list-secondary-tabs {
  height: auto;
  padding: 14px 0;
  border-top: 1px solid #e3edff;
  border-bottom: 1px solid #c9dcff;
  background: #f4f8ff;
  box-shadow: none;
}

.businessdata-list-page .businessdata-list-secondary-tabs .container,
.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list {
  height: auto;
}

.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list {
  justify-content: center;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li {
  flex: 0 0 auto;
}

.businessdata-list-page .businessdata-list-secondary-tabs .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;
}

.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li.active > a,
.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li.active > a:hover,
.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li.active > a:focus,
.businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li > a:hover {
  color: #1f73ff;
  border-color: #aac8ff;
  background: #fff;
  box-shadow: 0 6px 16px rgba(31, 115, 255, .08);
}

.businessdata-list-page .businessdata-list-content {
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .businessdata-list-page .businessdata-list-banner,
  .businessdata-detail-page .businessdata-detail-banner {
    height: 230px;
  }

  .businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list {
    display: flex !important;
    justify-content: flex-start;
    gap: 10px;
  }

  .businessdata-list-page .businessdata-list-primary-tabs .news-tabs__list {
    display: flex !important;
  }

  .businessdata-list-page .businessdata-list-secondary-tabs {
    padding: 10px 0;
  }

  .businessdata-list-page .businessdata-list-secondary-tabs .news-tabs__list > li > a {
    min-width: 94px;
    height: 34px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 32px;
  }
}

.businessdata-titleline h2 {
  font-size: 24px;
}

.businessdata-titleline h2::after {
  display: none;
}

.businessdata-titleline a {
  color: #8c8f98;
  font-size: 14px;
  font-weight: 700;
}

.hot-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hot-data-card {
  display: block;
  min-height: 260px;
  padding: 18px 18px 20px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(18, 43, 89, .08);
  overflow: hidden;
}

.hot-data-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 16px;
}

.hot-data-card h3 {
  display: -webkit-box;
  color: #204aa2;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recommend-titleline {
  margin-top: 44px;
}

.recommend-data-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 28px 44px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(18, 43, 89, .08);
}

.recommend-data-panel li {
  position: relative;
  margin: 0 0 18px;
  padding-left: 22px;
  color: #4d5565;
  font-size: 14px;
  line-height: 22px;
}

.recommend-data-panel li:last-child {
  margin-bottom: 0;
}

.recommend-data-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 30%, #fff 0 2px, transparent 2.5px),
    #8cc8ff;
}

.recommend-data-panel a {
  color: inherit;
}

.ebook-section {
  padding-bottom: 96px;
}

.ebook-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: #eaf5ff url("../../images/businessdata/businessdata-ebook-banner.png") center / cover no-repeat;
}

.ebook-banner .businessdata-title h2 {
  font-size: 32px;
}

.ebook-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  margin: -34px 0 58px;
  padding: 22px 38px;
  border-radius: 8px;
  background: #edf5ff;
  box-shadow: 0 8px 22px rgba(42, 98, 180, .10);
}

.ebook-tabs a {
  display: grid;
  place-items: center;
  gap: 8px;
  color: #4c5667;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.ebook-tabs a i,
.ebook-tabs a img {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
}

.ebook-tabs a.active {
  color: var(--data-blue);
}

.ebook-tabs a.active i {
  color: var(--data-blue);
}
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.ebook-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 34px 26px 24px;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(18, 43, 89, .08);
  max-width: 100%;
  overflow: hidden;
}

.ebook-card--reader {
  cursor: pointer;
}

.ebook-card--reader:focus-visible {
  outline: 2px solid #2B67FF;
  outline-offset: 3px;
}

.ebook-card::after {
  display: none;
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -10px;
  height: 10px;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(18, 43, 89, .06);
}

.ebook-tag {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 13px;
  border-radius: 8px 0 8px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ebook-tag--law {
  background: #ff9b4a;
}

.ebook-tag--manage {
  background: #3e7bff;
}

.ebook-tag--import {
  background: #35c6a4;
}

.ebook-tag--general {
  background: #8c74ff;
}

.ebook-tag--trade {
  background: #ff7f6d;
}

.ebook-card h3 {
  display: -webkit-box;
  min-height: 28px;
  margin-bottom: 16px;
  color: #204aa2;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ebook-card p {
  margin-bottom: 10px;
  color: #566172;
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ebook-card .ebook-source-link {
  color: #2B67FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ebook-card .ebook-source-link:hover,
.ebook-card .ebook-source-link:focus-visible {
  color: #2B67FF;
  text-decoration-thickness: 2px;
}

.ebook-card div {
  display: -webkit-box;
  margin-top: 10px;
  padding: 18px;
  color: #6a7280;
  background: #f8f8f8;
  font-size: 12px;
  line-height: 22px;
  max-height: 110px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.ebook-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 46px;
  margin: 74px auto 0;
  border: 1px solid var(--data-blue);
  border-radius: 4px;
  color: var(--data-blue);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

/* 电子书片段列表 */
.ebook-list-main {
  padding-bottom: 72px;
  background: #f7f8fa;
}

.ebook-list-hero {
  display: grid;
  place-items: center;
  min-height: 190px;
  color: #fff;
  background: #06162d url("../../images/businessdata/businessdata-banner.png") center / cover no-repeat;
  text-align: center;
}

.ebook-list-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.ebook-list-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  color: #9096a2;
  font-size: 13px;
}

.ebook-list-breadcrumb a,
.ebook-list-breadcrumb strong {
  color: inherit;
  font-weight: 400;
}

.ebook-list-content {
  min-width: 0;
}

.ebook-list-tabs {
  margin: 0;
  padding: 0;
  /* border: 1px solid #dfe6f1; */
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  margin-bottom: 25px;
}

.ebook-list-tabs a {
  min-width: 0;
  min-height: 60px;
  padding: 20px 4px;
  /* border-right: 1px solid #dfe6f1; */
  font-size: 13px;
  font-weight: 500;
}

.ebook-list-tabs a:last-child {
  border-right: 0;
}

.ebook-list-tabs a i,
.ebook-list-tabs a img {
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.ebook-list-toolbar {
  display: flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e3e7ee;
}

.ebook-list-sort {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #8a909b;
  font-size: 13px;
}

.ebook-list-sort a {
  position: relative;
  padding-right: 13px;
  color: #7f8794;
}

.ebook-list-sort a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.ebook-list-sort a.is-asc::after {
  transform: translateY(-20%) rotate(225deg);
}

.ebook-list-sort a.active {
  color: #3778f6;
  font-weight: 700;
}

.ebook-list-grid {
  gap: 14px;
}

.ebook-list-grid .ebook-card {
  min-height: 264px;
  padding: 32px 22px 20px;
}

.ebook-list-grid .book-list-state {
  grid-column: 1 / -1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-list-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}

.ebook-list-pagebar {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ebook-list-pagebar[hidden] {
  display: none;
}

.ebook-list-pagebar__item {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  color: #7f8794;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.ebook-list-pagebar__item:hover,
.ebook-list-pagebar__item:focus-visible,
.ebook-list-pagebar__item.active {
  border-color: #3778f6;
  color: #fff;
  background: #3778f6;
}

.ebook-list-pagebar__item:disabled {
  border-color: #edf0f4;
  color: #c4c9d1;
  background: #fafbfc;
  cursor: default;
}

.ebook-list-pagebar__item.is-arrow {
  font-size: 16px;
}

.ebook-list-pagebar__ellipsis {
  display: grid;
  place-items: center;
  width: 26px;
  height: 34px;
  color: #8f96a1;
  font-size: 13px;
}

.ebook-list-total {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  color: #949aa5;
  font-size: 12px;
}

@media only screen and (max-width: 1199px) {
  .businessdata-wrap {
    width: auto;
    padding: 0 24px;
  }

  .data-arrow {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .data-classic-grid,
  .hot-data-grid,
  .ebook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ebook-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .businessdata-hero {
    min-height: 230px;
  }

  .businessdata-hero h1 {
    font-size: 32px;
  }

  .businessdata-hero p {
    font-size: 13px;
    line-height: 1.7;
  }

  .businessdata-section {
    padding: 48px 0 64px;
  }

  .data-classic {
    margin: 48px 0 42px;
  }

  .data-classic-grid,
  .hot-data-grid,
  .recommend-data-panel,
  .ebook-grid {
    grid-template-columns: 1fr;
  }

  .data-classic-card {
    min-height: 92px;
  }

  .recommend-data-panel {
    padding: 24px 20px;
    gap: 18px;
  }

  .ebook-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 42px;
    padding: 20px;
  }

  .ebook-card {
    min-height: 0;
  }

  .ebook-list-main {
    padding-bottom: 48px;
  }

  .ebook-list-hero {
    min-height: 150px;
  }

  .ebook-list-hero h1 {
    font-size: 30px;
  }

  .ebook-list-breadcrumb {
    min-height: 58px;
  }

  .ebook-list-tabs {
    display: flex;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .ebook-list-tabs a {
    flex: 0 0 82px;
    min-height: 58px;
  }

  .ebook-list-sort {
    gap: 16px;
  }

  .ebook-list-footer {
    display: flex;
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding-top: 14px;
  }

  .ebook-list-pagebar {
    max-width: 100%;
  }

  .ebook-list-pagebar__item {
    width: 32px;
    height: 32px;
  }

  .ebook-list-total {
    width: 100%;
    text-align: center;
  }
}

/* 电子音像列表 */
.digitallist-main {
  background: #fff;
}

.digitallist-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.digitallist-hero {
  position: relative;
  min-height: 350px;
  background: #2f72ff url("../../images/digitallist/top-banner.png") center / cover no-repeat;
  overflow: hidden;
}

.digitallist-hero__content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 115px;
  color: #fff;
  text-align: center;
}

.digitallist-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.digitallist-hero p {
  color: rgba(255, 255, 255, .92);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.digitallist-search-section {
  position: relative;
  z-index: 2;
  height: 44px;
}

.digitallist-search {
  position: absolute;
  left: 50%;
  bottom: 5px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  width: min(1040px, calc(100% - 48px));
  height: 78px;
  padding: 5px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(29, 52, 92, .12);
  transform: translateX(-50%);
}

.digitallist-search input,
.digitallist-search button {
  min-width: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
}

.digitallist-search input {
    height: 68px;
    padding: 0 28px;
    color: #202a3d;
    background: transparent;
    font-size: 18px;
}

.digitallist-search input::placeholder {
  color: #c9ced8;
}

.digitallist-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 68px;
    border-radius: 9999px;
    color: #fff;
    background: #5570ff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    /* width: 176px; */
}

.digitallist-search button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.digitallist-content {
  padding: 44px 0 62px;
}

.digitallist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.digitallist-tabs,
.digitallist-sort {
  display: flex;
  align-items: center;
}

.digitallist-tabs {
  gap: 14px;
}

.digitallist-tabs a {
  display: grid;
  place-items: center;
  min-width: 78px;
  height: 30px;
  padding: 0 18px;
  border-radius: 16px;
  color: #7b8190;
  font-size: 16px;
  font-weight: 700;
}

.digitallist-tabs a.active {
  color: #fff;
  background: #2278f2;
  box-shadow: 0 8px 16px rgba(34, 120, 242, .22);
}

.digitallist-sort {
  gap: 14px;
  color: #878e9e;
  font-size: 16px;
  white-space: nowrap;
}

.digitallist-sort span {
  color: #9aa1ad;
  font-weight: 700;
  font-size: 18px;
}

.digitallist-sort a {
  position: relative;
  color: #686f80;
  font-weight: 700;
}

.digitallist-sort a + a {
  margin-left: 16px;
}

.digitallist-sort a.active {
  color: #2878ef;
}

.digitallist-sort a.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 12px;
  height: 14px;
  background: url("../../images/digitallist/sort-icon.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.digitallist-sort a.active.is-asc::after {
  transform: translateY(-50%) rotate(180deg);
}

.media-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 14px;
}

.media-card {
  display: block;
  min-width: 0;
  color: #242936;
}

.media-card__cover {
  position: relative;
  aspect-ratio: 287 / 162;
  border-radius: 4px;
  background: #edf4ff;
  overflow: hidden;
}

.media-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__type {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 42px;
  height: 22px;
  padding: 0 8px;
  border-radius: 0 4px 0 6px;
  color: #fff;
  background: #5570ff;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.media-card__type:not(:empty) {
  font-weight: 700;
}

.media-card:not(.media-card--audio) .media-card__type {
  color: #aa8b07;
  background: #ffed72;
}

.media-card__play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  background: url("../../images/digitallist/player-stop-icon.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.media-card:hover .media-card__play,
.media-card:focus-visible .media-card__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.media-card h2 {
  margin: 10px 0 0;
  color: #222733;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-card--audio .media-card__cover {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 29px, transparent 30px),
    radial-gradient(circle at 68% 66%, rgba(255,255,255,.82) 0 20px, transparent 21px),
    linear-gradient(135deg, #d8e3ff 0%, #f6f1ff 54%, #bfc9ff 100%);
}

.media-card--audio .media-card__cover::before {
  content: "";
  position: absolute;
  left: 44%;
  top: 42%;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.2));
  box-shadow: 0 18px 34px rgba(66, 93, 180, .22);
  transform: translate(-50%, -50%);
}

.media-card--audio .media-card__cover::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  box-shadow: 18px -18px 0 -17px rgba(255,255,255,.72), 36px -36px 0 -35px rgba(255,255,255,.72);
}

.media-card--blue .media-card__cover {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 52% 54%, rgba(255,255,255,.72) 0 29px, transparent 30px),
    linear-gradient(135deg, #cde9ff 0%, #eef9ff 54%, #9ed8ff 100%);
}

.media-card--orange .media-card__cover {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 29px, transparent 30px),
    linear-gradient(135deg, #ffe4c7 0%, #fff4df 52%, #ffc7a1 100%);
}

.media-card--green .media-card__cover {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 29px, transparent 30px),
    linear-gradient(135deg, #ccf9d7 0%, #fbffd8 52%, #9ee984 100%);
}

.media-card--mint .media-card__cover {
  background:
    radial-gradient(circle at 43% 20%, rgba(255,255,255,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 51% 53%, rgba(255,255,255,.68) 0 29px, transparent 30px),
    linear-gradient(135deg, #c7fff0 0%, #e1fff9 52%, #93eed9 100%);
}

.media-card--course .media-card__cover,
.media-card--law .media-card__cover,
.media-card--history .media-card__cover,
.media-card--village .media-card__cover,
.media-card--reading .media-card__cover,
.media-card--city .media-card__cover {
  background: linear-gradient(135deg, #f9fbff 0%, #eef6ff 100%);
}

.media-card--course .media-card__cover::before,
.media-card--law .media-card__cover::before,
.media-card--history .media-card__cover::before,
.media-card--village .media-card__cover::before,
.media-card--reading .media-card__cover::before,
.media-card--city .media-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 44%, rgba(255,255,255,.64) 44% 56%, transparent 56%),
    repeating-linear-gradient(0deg, rgba(37, 76, 133, .12) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(90deg, rgba(37, 76, 133, .09) 0 1px, transparent 1px 13px);
}

.media-card--course .media-card__cover::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 34px;
  width: 86px;
  height: 56px;
  border: 5px solid #375986;
  border-radius: 3px;
  box-shadow: 90px 8px 0 -18px #2c78d8, 116px 12px 0 -22px #f8c44d;
}

.media-card--law .media-card__cover {
  background: linear-gradient(135deg, #eaf1f8 0%, #253858 100%);
}

.media-card--law .media-card__cover::after {
  content: "";
  position: absolute;
  left: 54px;
  top: 44px;
  width: 118px;
  height: 22px;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid rgba(255,255,255,.9);
  box-shadow: 60px -16px 0 -8px rgba(255,255,255,.86), 23px 37px 0 7px rgba(255,255,255,.86);
  transform: rotate(-10deg);
}

.media-card--history .media-card__cover {
  background: linear-gradient(135deg, #fff0cd 0%, #f4dfbb 100%);
}

.media-card--history .media-card__cover::after {
  content: "";
  position: absolute;
  left: 72px;
  top: 28px;
  width: 88px;
  height: 104px;
  border-radius: 2px 7px 7px 2px;
  background: linear-gradient(90deg, #7f281c 0 18%, #a4482c 18% 100%);
  box-shadow: 72px 34px 0 -32px rgba(196, 128, 64, .52);
}

.media-card--village .media-card__cover {
  background: linear-gradient(135deg, #fff5df 0%, #ead0a2 100%);
}

.media-card--village .media-card__cover::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 50px;
  width: 180px;
  height: 78px;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(117, 73, 27, .5) 48% 52%, transparent 53%),
    repeating-linear-gradient(0deg, rgba(117, 73, 27, .22) 0 2px, transparent 2px 9px);
  transform: skewX(-18deg);
}

.media-card--reading .media-card__cover {
  background: linear-gradient(135deg, #fbfbfb 0%, #e8f5ff 52%, #f5efd5 100%);
}

.media-card--reading .media-card__cover::after {
  content: "";
  position: absolute;
  left: 78px;
  top: 38px;
  width: 116px;
  height: 74px;
  border-radius: 50% 50% 4px 4px;
  background: radial-gradient(circle at 50% 50%, #315d96 0 25px, transparent 26px), linear-gradient(90deg, #fff 0 48%, #f5efe1 49% 100%);
  box-shadow: 0 16px 28px rgba(45, 90, 150, .16);
}

.media-card--city .media-card__cover {
  background:
    linear-gradient(rgba(123, 170, 219, .28), rgba(255,255,255,.05)),
    linear-gradient(122deg, #ebf5ff 0 50%, #608dbf 50% 100%);
}

.media-card--city .media-card__cover::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: 0;
  width: 84px;
  height: 136px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.62) 0 3px, transparent 3px 13px), linear-gradient(120deg, #324b67, #9cc5ed);
  transform: skewX(-14deg);
}

.media-card--book .media-card__cover img {
  filter: sepia(.32) saturate(.82) contrast(.96);
}

.media-card--has-image .media-card__cover::before,
.media-card--has-image .media-card__cover::after {
  display: none;
}

.digitallist-state {
  margin: 52px 0 0;
  color: #8c94a3;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.digitallist-state[hidden] {
  display: none;
}

.digitallist-pagebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
  color: #555;
  font-size: 16px;
  line-height: 1;
}

.digitallist-pagebar a,
.digitallist-pagebar button,
.digitallist-pagebar input {
  height: 44px;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #6a6a6a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all .2s ease;
}

.digitallist-pagebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0 12px;
  line-height: 42px;
}

.digitallist-pagebar a:hover,
.digitallist-pagebar a:focus {
  border-color: #1f72f2;
  color: #1f72f2;
}

.digitallist-pagebar a[aria-disabled="true"] {
  color: #bbb;
  border-color: #e5e5e5;
  cursor: not-allowed;
  pointer-events: none;
}

.digitallist-pagebar a.active,
.digitallist-pagebar button {
  border-color: #1f72f2;
  color: #fff;
  background: #1f72f2;
}

.digitallist-pagebar .next {
  min-width: 74px;
}

.digitallist-pagebar span {
  white-space: nowrap;
}

.digitallist-pagebar input {
  width: 56px;
  padding: 0 8px;
  color: #303030;
  line-height: normal;
  outline: none;
}

.digitallist-pagebar input:focus {
  border-color: #1f72f2;
  box-shadow: 0 0 0 2px rgba(31, 114, 242, .12);
}

.digitallist-pagebar button {
  padding: 0 18px;
  outline: none;
  cursor: pointer;
}

.digitallist-pagebar button:hover,
.digitallist-pagebar button:focus {
  border-color: #155fd0;
  background: #155fd0;
}

@media only screen and (max-width: 1199px) {
  .digitallist-wrap {
    width: auto;
    padding: 0 24px;
  }
}

@media only screen and (max-width: 992px) {
  .digitallist-hero {
    min-height: 236px;
  }

  .digitallist-hero__content {
    padding-top: 66px;
  }

  .media-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media only screen and (max-width: 767px) {
  .digitallist-hero {
    min-height: 210px;
  }

  .digitallist-hero__content {
    padding-top: 46px;
  }

  .digitallist-hero h1 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .digitallist-hero p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 13px;
  }

  .digitallist-search {
    grid-template-columns: minmax(0, 1fr) 94px;
    width: calc(100% - 28px);
    height: 48px;
    bottom: 12px;
    padding: 4px;
  }

  .digitallist-search input {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .digitallist-search button {
    height: 40px;
    font-size: 13px;
  }

  .digitallist-content {
    padding-top: 10px;
  }

  .digitallist-wrap {
    padding: 0 14px;
  }

  .digitallist-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .digitallist-sort {
    gap: 10px;
    font-size: 12px;
  }

  .digitallist-sort a + a {
    margin-left: 10px;
  }

  .media-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .media-card h2 {
    font-size: 12px;
  }

  .media-card__play {
    width: 38px;
    height: 38px;
  }

  .digitallist-pagebar {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 38px;
  }

  .digitallist-pagebar {
    font-size: 13px;
  }

  .digitallist-pagebar a {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 13px;
    line-height: 32px;
  }

  .digitallist-pagebar .next {
    min-width: 58px;
  }

  .digitallist-pagebar input {
    width: 44px;
    height: 34px;
    font-size: 13px;
  }

  .digitallist-pagebar button {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* 视频详情 */
.videodetail-page {
  background: #f6f8fd;
}

.videodetail-main {
  padding: 18px 0 58px;
  background: #f6f8fd;
}

.videodetail-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.videodetail-crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #9aa1ad;
  font-size: 14px;
  line-height: 1;
}

.videodetail-crumb a,
.videodetail-crumb strong {
  color: #9aa1ad;
  font-weight: 400;
}

.videodetail-crumb a:hover,
.videodetail-crumb a:focus-visible {
  color: #1f72f2;
}

.videodetail-top {
  display: grid;
  grid-template-columns: 900px 300px;
  gap: 0;
  align-items: stretch;
}

.videodetail-player {
  width: 100%;
  height: 500px;
  min-height: 500px;
  background: #111;
  overflow: hidden;
}

.media-preview-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}

.audiodetail-player .media-preview-frame {
  background: #eaf8ff;
}

.media-preview-player .audio-turntable,
.media-preview-player .audiodetail-controlbar {
  display: none;
}

.videodetail-player .video-js {
  width: 100%;
  height: 100%;
  background: #111;
}

.videodetail-player .video-js.vjs-fluid {
  height: 100%;
  padding-top: 0;
}

.videodetail-player .video-js .vjs-poster {
  background-size: cover;
}

.videodetail-player .video-js .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  height: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, .1));
}

.videodetail-player .video-js .vjs-big-play-button {
  width: 74px;
  height: 74px;
  margin-top: -37px;
  margin-left: -37px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .46);
  box-shadow: none;
  line-height: 74px;
}

.videodetail-player .video-js:hover .vjs-big-play-button,
.videodetail-player .video-js .vjs-big-play-button:focus {
  background: rgba(0, 0, 0, .58);
  box-shadow: none;
}

.videodetail-player .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  color: #fff;
  font-size: 44px;
  line-height: 74px;
  text-indent: 5px;
}

.videodetail-player .vjs-slider-vertical .vjs-volume-level::before {
  width: 12px;
  height: 12px;
  overflow: hidden;
  left: 50%;
  margin-left: -6px;
}

.videodetail-player .video-js .vjs-play-progress::before {
  width: 12px;
  height: 12px;
  overflow: hidden;
  top: 50%;
  margin-top: -6px;
  font-size: 12px;
}

.videodetail-player .video-js .vjs-progress-control:hover .vjs-play-progress::before {
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  font-size: 15px;
}

.videodetail-info {
  min-width: 0;
  height: 500px;
  padding: 20px;
  background: #fff;
  color: #727b8c;
}

.videodetail-info h1 {
  margin: 0 0 22px;
  color: #282d38;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.videodetail-info > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
}

.videodetail-info span {
  color: #8a92a0;
}

.videodetail-summary {
  margin-top: 24px;
}

.videodetail-summary h2 {
  margin: 0 0 8px;
  color: #343b49;
  font-size: 15px;
  font-weight: 800;
}

.videodetail-summary > div {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 12px;
  color: #8a92a1;
  font-size: 14px;
  line-height: 2;
}

.videodetail-summary > div::-webkit-scrollbar {
  width: 6px;
}

.videodetail-summary > div::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c4c9d3;
}

.videodetail-related {
  margin-top: 34px;
}

.videodetail-related > h2 {
  margin: 0 0 22px;
  color: #252b37;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.videodetail-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.videodetail-related .media-card h3 {
  margin: 10px 0 0;
  color: #222733;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media only screen and (max-width: 1199px) {
  .videodetail-wrap {
    width: auto;
    padding: 0 24px;
  }

  .videodetail-top {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media only screen and (max-width: 992px) {
  .videodetail-top {
    grid-template-columns: 1fr;
  }

  .videodetail-player {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .videodetail-info {
    height: auto;
    padding: 22px 20px;
  }

  .videodetail-summary > div {
    max-height: none;
  }

  .videodetail-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .videodetail-main {
    padding: 14px 0 42px;
  }

  .videodetail-wrap {
    padding: 0 14px;
  }

  .videodetail-crumb {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .videodetail-info h1 {
    font-size: 18px;
  }

  .videodetail-info > p,
  .videodetail-summary > div {
    font-size: 13px;
  }

  .videodetail-related > h2 {
    font-size: 24px;
  }

  .videodetail-related-grid {
    gap: 22px 12px;
  }

  .videodetail-related .media-card h3 {
    font-size: 12px;
  }

  .videodetail-player .video-js .vjs-big-play-button {
    width: 56px;
    height: 56px;
    margin-top: -28px;
    margin-left: -28px;
  }
}

/* 音频详情 */
.audiodetail-player {
  --audio-progress: .06;
  position: relative;
  width: 900px;
  height: 500px;
  overflow: hidden;
  background: #eaf8ff url("../../images/audioPlayer/player-bg.png") center / cover no-repeat;
}

.audio-turntable {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 430px;
  height: 430px;
  transform: translate(-50%, -50%);
}

.audio-wave {
  position: absolute;
  inset: 0;
  background: url("../../images/audioPlayer/SoundWave.png") center / contain no-repeat;
  opacity: .9;
  transform-origin: center;
}

.audio-wave--two {
  opacity: .32;
  transform: scale(.86);
}

.audiodetail-player.is-playing .audio-wave--one {
  animation: audioWavePulse 1.8s ease-in-out infinite;
}

.audiodetail-player.is-playing .audio-wave--two {
  animation: audioWavePulseAlt 1.8s ease-in-out infinite;
}

.audio-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .18));
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.audiodetail-player.is-playing .audio-disc {
  animation: audioDiscRotate 8s linear infinite;
}

.audio-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.audio-play-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.audio-play-toggle img {
  width: auto;
  height: 26px;
  margin-left: 4px;
}

.audiodetail-player.is-playing .audio-play-toggle img {
  margin-left: 0;
}

.audio-tonearm {
  position: absolute;
  z-index: 4;
  left: 64%;
  top: 6%;
  width: 58px;
  height: 240px;
  object-fit: contain;
  transform-origin: 50% 10%;
  transform: rotate(-22deg);
  transition: transform 1.4s cubic-bezier(.22, .78, .28, 1);
}

.audiodetail-player.is-playing .audio-tonearm {
  transform: rotate(5deg);
}

.audiodetail-controlbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 34px 34px auto minmax(0, 1fr) auto 58px 34px 34px;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  color: rgba(255, 255, 255, .86);
  background: linear-gradient(to top, rgba(0, 0, 0, .76), rgba(0, 0, 0, .08));
  font-size: 12px;
}

.audio-control,
.audio-rate,
.audio-setting,
.audio-volume {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.audio-control--play span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 14px;
  background: url("../../images/audioPlayer/stop-icon.png?v=20260722") center / contain no-repeat;
  transform: translate(-44%, -50%);
}

.audiodetail-player.is-playing .audio-control--play span {
  width: 10px;
  height: 14px;
  background-image: url("../../images/audioPlayer/play-icon.png?v=20260722");
  transform: translate(-50%, -50%);
}

.audio-control--next::before,
.audio-control--next::after {
  content: "";
  position: absolute;
  top: 8px;
}

.audio-control--next::before {
  left: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
}

.audio-control--next::after {
  right: 8px;
  width: 2px;
  height: 12px;
  background: #fff;
}

.audio-progress {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
}

.audio-progress span {
  position: absolute;
  left: 0;
  top: 0;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: #1f72f2;
}

.audio-progress span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.audio-rate {
  width: 58px;
  font-size: 12px;
}

.audio-setting::before,
.audio-volume::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
}

.audio-setting::before {
  content: "\2699";
}

.audio-volume::before {
  content: "\1F50A";
  font-size: 16px;
}

.audiodetail-related .media-card__cover {
  aspect-ratio: 287 / 162;
}

@keyframes audioDiscRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes audioWavePulse {
  0%, 100% {
    opacity: .74;
    transform: scale(.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes audioWavePulseAlt {
  0%, 100% {
    opacity: .2;
    transform: scale(.82);
  }
  50% {
    opacity: .44;
    transform: scale(.92);
  }
}

@media only screen and (max-width: 1199px) {
  .audiodetail-player {
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .audiodetail-player {
    height: auto;
    min-height: 310px;
    max-height: 500px;
    aspect-ratio: 9 / 7.5;
  }

  .audio-turntable {
    width: min(430px, 72vw);
    height: min(430px, 72vw);
  }

  .audio-disc {
    width: min(250px, 42vw);
    height: min(250px, 42vw);
  }

  .audio-tonearm {
    width: min(58px, 9vw);
    height: min(240px, 40vw);
  }
}

@media only screen and (max-width: 767px) {
  .audiodetail-controlbar {
    grid-template-columns: 28px auto minmax(0, 1fr) auto 28px;
    gap: 6px;
    padding: 0 10px;
  }

  .audio-control--next,
  .audio-duration,
  .audio-rate {
    display: none;
  }

  .audio-label,
  .audio-play-toggle {
    width: 58px;
    height: 58px;
  }

  .audio-play-toggle img {
    height: 22px;
  }
}

/* 图书详情 */
.bookdetail-page {
  background: #f6f8fd;
}

.bookdetail-embed-main {
  padding-top: 18px;
  background: #f6f8fd;
}

.bookdetail-embed-frame {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #fff;
}

.bookdetail-embed-state {
  margin: 0;
  padding: 80px 24px;
  color: #707987;
  font-size: 16px;
  text-align: center;
}

.bookdetail-main {
  padding: 18px 0 58px;
  background: #f6f8fd;
}

.bookdetail-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.bookdetail-crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #9aa1ad;
  font-size: 14px;
  line-height: 1;
}

.bookdetail-crumb a,
.bookdetail-crumb strong {
  color: #9aa1ad;
  font-weight: 400;
}

.bookdetail-crumb a:hover,
.bookdetail-crumb a:focus-visible {
  color: #1f72f2;
}

.bookdetail-summary-card {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  min-height: 320px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(32, 65, 120, .06);
}

.bookdetail-cover-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 54px;
  /* background: #ecf2fb; */
}

.bookdetail-cover-box img {
  width: 230px;
  height: 326px;
  object-fit: contain;
  filter: drop-shadow(0 15px 18px rgba(42, 74, 118, .16));
}

.bookdetail-info-box {
  min-width: 0;
  padding: 0 0 42px;
}

.bookdetail-title-panel {
  min-height: 0;
  padding: 0;
  background: none;
}

.bookdetail-title-panel h1 {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  padding: 0 30px;
  color: #252b36;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  background: url("../../images/bookdetail/title-bg.png") center / cover no-repeat;
}

.bookdetail-meta {
  display: grid;
  grid-template-columns: 1.18fr .9fr .95fr;
  gap: 18px 28px;
  min-height: 166px;
  margin: 0 22px;
  padding: 22px 22px 20px;
  color: #828a97;
  font-size: 15px;
  line-height: 1.2;
  background: #f2f6fd;
}

.bookdetail-meta div {
  display: flex;
  min-width: 0;
}

.bookdetail-meta dt {
  flex: 0 0 auto;
  color: #8b93a0;
  font-weight: 400;
}

.bookdetail-meta dd {
  min-width: 0;
  color: #6f7783;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bookdetail-meta__wide {
  grid-column: 1 / -1;
}

.bookdetail-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 14px;
  margin: 28px 0 24px;
  padding-left: 32px;
  color: #858b95;
  font-size: 15px;
}

.bookdetail-price strong {
  color: #ed1d24;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}

.bookdetail-price em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 29px;
  margin: -18px 2px 0 -6px;
  padding-bottom: 5px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  background: url("../../images/bookdetail/discount-tooltip-bg.png") center / contain no-repeat;
}

.bookdetail-price del {
  color: #8f96a2;
  font-weight: 700;
  text-decoration: none;
}

.bookdetail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 32px;
}

.bookdetail-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 36px;
  padding: 0 16px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.bookdetail-buy img {
  width: auto;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}

.bookdetail-buy--jd {
  background: #e92824;
}

.bookdetail-buy--taobao {
  background: #ff7a1a;
}

.bookdetail-buy--web-reader,
.bookdetail-buy--original-reader {
  background: #fff;
  border: 1px solid #2f6fed;
  color: #2f6fed;
}

.bookdetail-buy:hover,
.bookdetail-buy:focus-visible {
  color: #fff;
  filter: brightness(.96);
}

.bookdetail-buy--web-reader:hover,
.bookdetail-buy--web-reader:focus-visible,
.bookdetail-buy--original-reader:hover,
.bookdetail-buy--original-reader:focus-visible {
  background: #eef4ff;
  color: #2f6fed;
  filter: none;
}

.bookdetail-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 300px;
  gap: 18px;
  align-items: start;
  margin-top: 20px;
}

.bookdetail-content,
.bookdetail-related {
  background: #fff;
  box-shadow: 0 1px 3px rgba(32, 65, 120, .05);
}

.bookdetail-tabs {
  display: flex;
  align-items: stretch;
  height: 50px;
  border-top: 1px solid #1f72f2;
  border-bottom: 1px solid #edf0f6;
}

.bookdetail-tabs button {
  width: 142px;
  padding: 0;
  border: 0;
  border-right: 1px solid #edf0f6;
  background: #f7f7f7;
  color: #8c929d;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.bookdetail-tabs button.active {
  background: #fff;
  color: #1f72f2;
}

.bookdetail-tabpanels {
  min-height: 520px;
  padding: 22px 0 34px;
}

.bookdetail-panel {
  color: #707987;
  font-size: 16px;
  line-height: 2;
}

.bookdetail-panel[hidden] {
  display: none;
}

.bookdetail-panel > p {
  margin: 0 58px 16px;
  color: #727b88;
  font-size: 15px;
  line-height: 2;
}

.bookdetail-catalog {
  color: #6f7784;
  font-size: 16px;
}

.bookdetail-catalog li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 40px;
  font-weight: 700;
}

.bookdetail-catalog__plain {
  padding-left: 40px;
}

.bookdetail-catalog-toggle {
  display: flex;
  align-items: center;
  width: calc(100% + 80px);
  min-height: 44px;
  margin: 0 -40px;
  padding: 0 40px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bookdetail-catalog-toggle:focus-visible {
  outline: 2px solid rgba(31, 114, 242, .35);
  outline-offset: 2px;
}

.bookdetail-catalog li.is-open > .bookdetail-catalog-toggle {
  color: #1f72f2;
  background: #f0f5fd;
}

.bookdetail-chapter-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 14px;
  border: 2px solid #5aa0ff;
  border-radius: 50%;
}

.bookdetail-chapter-icon::before,
.bookdetail-chapter-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #5aa0ff;
  transform: translate(-50%, -50%);
}

.bookdetail-chapter-icon::before {
  width: 9px;
  height: 2px;
}

.bookdetail-chapter-icon::after {
  width: 2px;
  height: 9px;
}

.bookdetail-catalog li.is-open > .bookdetail-catalog-toggle .bookdetail-chapter-icon::after {
  display: none;
}

.bookdetail-catalog li:has(> .bookdetail-catalog) {
  display: block;
  /* padding: 0 !important; */
}

.bookdetail-catalog li:has(> .bookdetail-catalog) > .bookdetail-catalog {
  padding: 0;
}

.bookdetail-richtext {
  margin: 0 58px;
  color: #727b88;
  font-size: 15px;
  line-height: 2;
}

.bookdetail-richtext p {
  margin: 0 0 16px;
}

.bookdetail-state {
  display: block !important;
  padding: 22px 40px !important;
  color: #9aa1ad;
  font-size: 15px;
  font-weight: 400 !important;
  text-align: center;
}

.bookdetail-section {
  min-height: 41px;
  padding-left: 90px !important;
  color: #b1b7c0;
  font-size: 15px;
  font-weight: 400 !important;
}

.bookdetail-section:not(:has(> .bookdetail-catalog))::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 18px;
  border-radius: 50%;
  background: #cdd2da;
}

.bookdetail-related {
  min-height: 650px;
  border-top: 1px solid #1f72f2;
}

.bookdetail-related h2 {
  height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid #edf0f6;
  color: #333b49;
  font-size: 18px;
  font-weight: 800;
  line-height: 50px;
}

.bookdetail-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dfe3ea;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.bookdetail-rank--one {
  width: 30px;
  height: 34px;
  margin-left: -5px;
  overflow: hidden;
  color: transparent;
  background: url("../../images/newbook-badge.png") center / contain no-repeat;
}

.bookdetail-rank--two {
  background: #ff9f31;
}

.bookdetail-rank--three {
  background: #25b789;
}

.bookdetail-related-list {
  padding: 0 18px 24px;
}

.bookdetail-related-list li {
  display: grid;
  grid-template-columns: 20px 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
}

.bookdetail-related-list img {
  width: 42px;
  height: 60px;
  object-fit: cover;
  box-shadow: 0 4px 9px rgba(35, 57, 95, .12);
}

.bookdetail-related-list a {
  display: -webkit-box;
  overflow: hidden;
  color: #596373;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bookdetail-related-list a.bookdetail-related-cover {
  display: block;
  overflow: visible;
  line-height: 0;
}

.bookdetail-related-list em {
  display: none;
}

.bookdetail-related-list li:hover,
.bookdetail-related-list li:focus-within,
.bookdetail-related-list li.is-active,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  min-height: 248px;
  padding-top: 4px;
}

.bookdetail-related-list li:hover img,
.bookdetail-related-list li:focus-within img,
.bookdetail-related-list li.is-active img,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child img,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child img {
  grid-column: 2;
  grid-row: 1;
  width: 116px;
  height: 166px;
  margin: 0 auto 10px;
  box-shadow: 0 8px 14px rgba(35, 57, 95, .16);
}

.bookdetail-related-list li:hover a,
.bookdetail-related-list li:focus-within a,
.bookdetail-related-list li.is-active a,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child a,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child a {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  color: #1f72f2;
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
  text-align: center;
}

.bookdetail-related-list li:hover a.bookdetail-related-cover,
.bookdetail-related-list li:focus-within a.bookdetail-related-cover,
.bookdetail-related-list li.is-active a.bookdetail-related-cover,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child a.bookdetail-related-cover,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child a.bookdetail-related-cover {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 116px;
  height: 166px;
  margin: 0 auto 10px;
  overflow: visible;
  line-height: 0;
}

.bookdetail-related-list li:hover a.bookdetail-related-cover img,
.bookdetail-related-list li:focus-within a.bookdetail-related-cover img,
.bookdetail-related-list li.is-active a.bookdetail-related-cover img,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child a.bookdetail-related-cover img,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child a.bookdetail-related-cover img {
  margin: 0;
}

.bookdetail-related-list li:hover em,
.bookdetail-related-list li:focus-within em,
.bookdetail-related-list li.is-active em,
.bookdetail-related:not(.is-list-hovering) .bookdetail-related-list li:first-child em,
.bookdetail-related:not(.is-list-hovering):not(:has(.bookdetail-related-list li:hover)):not(:has(.bookdetail-related-list li:focus-within)) .bookdetail-related-list li:first-child em {
  grid-column: 1 / -1;
  grid-row: 3;
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: #8f97a6;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
  text-align: center;
}

.bookdetail-related-list a:hover,
.bookdetail-related-list a:focus-visible {
  color: #0d65d9;
}

@media only screen and (max-width: 1199px) {
  .bookdetail-wrap {
    width: auto;
    padding: 0 24px;
  }

  .bookdetail-summary-card {
    grid-template-columns: 34% minmax(0, 1fr);
  }

  .bookdetail-cover-box {
    padding: 30px 34px;
  }

  .bookdetail-info-box {
    padding-bottom: 34px;
  }

  .bookdetail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bookdetail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media only screen and (max-width: 992px) {
  .bookdetail-summary-card,
  .bookdetail-layout {
    grid-template-columns: 1fr;
  }

  .bookdetail-cover-box {
    min-height: 360px;
  }

  .bookdetail-info-box {
    padding: 28px 24px 32px;
  }

  .bookdetail-related {
    min-height: 0;
  }
}

@media only screen and (max-width: 767px) {
  .bookdetail-main {
    padding: 14px 0 42px;
  }

  .bookdetail-wrap {
    padding: 0 14px;
  }

  .bookdetail-crumb {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .bookdetail-cover-box {
    min-height: 320px;
    padding: 24px;
  }

  .bookdetail-cover-box img {
    width: 190px;
    height: 268px;
  }

  .bookdetail-title-panel {
    padding: 0;
  }

  .bookdetail-title-panel h1 {
    font-size: 20px;
    height: auto;
    min-height: 76px;
    padding: 18px 16px;
  }

  .bookdetail-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    margin: 0;
    padding: 18px 16px;
    font-size: 14px;
  }

  .bookdetail-meta dd {
    white-space: normal;
  }

  .bookdetail-price {
    gap: 8px 10px;
    padding-left: 0;
    font-size: 14px;
  }

  .bookdetail-price strong {
    font-size: 24px;
  }

  .bookdetail-actions {
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
  }

  .bookdetail-buy {
    flex: 0 0 calc(50% - 5px);
    min-width: 0;
    height: 40px;
    padding: 0 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .bookdetail-tabs {
    height: 46px;
  }

  .bookdetail-tabs button {
    flex: 1 1 0;
    width: auto;
    font-size: 14px;
  }

  .bookdetail-tabpanels {
    min-height: 0;
    padding: 16px 0 24px;
  }

  .bookdetail-catalog li {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .bookdetail-section {
    padding-left: 52px !important;
    font-size: 13px;
  }

  .bookdetail-panel > p {
    margin: 0 18px 14px;
    font-size: 14px;
  }

  .bookdetail-related h2 {
    font-size: 17px;
  }

}

/* 期刊矩阵列表 */
.periodical-list-page {
  background: #fff;
}

.periodical-list-main {
  background: #fff;
}

.periodical-list-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.periodical-list-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.periodical-list-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.periodical-list-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.periodical-list-hero__inner {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.periodical-list-hero h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.periodical-list-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: 22px;
  line-height: 1.45;
}

.periodical-search-section {
  position: relative;
  z-index: 2;
  height: 88px;
  margin-top: -44px;
}

.periodical-search {
  position: absolute;
  left: 50%;
  top: -1px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  width: min(1040px, calc(100% - 48px));
  height: 78px;
  padding: 5px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 78, 159, .15);
  transform: translateX(-50%);
}

.periodical-search input,
.periodical-search button {
  min-width: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
}

.periodical-search input {
  height: 68px;
  padding: 0 34px;
  color: #1d2b42;
  background: transparent;
  font-size: 18px;
}

.periodical-search input::placeholder {
  color: #c7ccd6;
}

.periodical-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;
}

.periodical-search button img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.periodical-list-content {
  padding: 150px 0 66px;
}

.periodical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 112px 24px;
}

.periodical-grid.is-empty {
  display: block;
}

.periodical-card {
  position: relative;
  display: block;
  min-height: 298px;
  padding: 32px 34px 32px 312px;
  color: #343946;
  background: #f3f6fd;
  overflow: visible;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.periodical-card::after {
  content: "";
  position: absolute;
  left: 158px;
  bottom: 16px;
  width: 252px;
  height: 34px;
  background: linear-gradient(110deg, transparent 0 24%, rgba(101, 142, 220, .16) 24% 58%, transparent 58% 100%) left top / 18px 100% repeat-x;
  opacity: .72;
  pointer-events: none;
}

.periodical-card:hover,
.periodical-card:focus-visible,
.periodical-card.is-active {
  color: #fff;
  background: #5570ff;
  box-shadow: 0 18px 34px rgba(59, 91, 222, .18);
  transform: translateY(-2px);
}

.periodical-card__cover {
  position: absolute;
  left: 38px;
  top: -72px;
  z-index: 2;
  width: 250px;
  height: 333px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e6ebf5;
  box-shadow: 0 12px 22px rgba(36, 72, 142, .08);
}

.periodical-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.periodical-card__info {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.periodical-card__info h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  margin: 0 0 14px;
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.periodical-card__info h2 strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.periodical-card__info h2 span {
  flex: 0 0 auto;
  min-width: 46px;
  height: 24px;
  padding: 0 8px;
  border-radius: 7px;
  color: #fff;
  background: #ffc946;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.periodical-card__info i {
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 18px;
  background: repeating-linear-gradient(90deg, #ffd543 0 4px, transparent 4px 10px);
}

.periodical-card__info p {
  margin: 0 0 12px;
  color: inherit;
  opacity: .78;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.periodical-card.is-active .periodical-card__info p,
.periodical-card:hover .periodical-card__info p,
.periodical-card:focus-visible .periodical-card__info p {
  opacity: .9;
}

@media only screen and (max-width: 1199px) {
  .periodical-list-wrap {
    width: auto;
    padding: 0 24px;
  }

  .periodical-card {
    padding-right: 24px;
  }
}

@media only screen and (max-width: 992px) {
  .periodical-list-hero {
    height: 250px;
  }

  .periodical-list-hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .periodical-list-hero__inner {
    width: min(720px, calc(100% - 48px));
  }

  .periodical-list-hero h1 {
    font-size: 44px;
  }

  .periodical-list-hero p {
    font-size: 18px;
  }

  .periodical-grid {
    grid-template-columns: 1fr;
    gap: 96px;
  }

  .periodical-card {
    width: min(640px, 100%);
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .periodical-list-hero {
    height: 180px;
  }

  .periodical-list-hero__inner {
    width: calc(100% - 28px);
  }

  .periodical-list-hero__content {
    width: 100%;
    padding-top: 0px;
  }

  .periodical-list-hero h1 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .periodical-list-hero p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 14px;
    word-break: break-all;
  }

  .periodical-search-section {
    height: 62px;
  }

  .periodical-search {
    grid-template-columns: minmax(0, 1fr) 94px;
    width: calc(100% - 28px);
    height: 48px;
    padding: 4px;
  }

  .periodical-search input {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .periodical-search button {
    height: 40px;
    gap: 6px;
    font-size: 13px;
  }

  .periodical-search button img {
    width: 14px;
    height: 14px;
  }

  .periodical-list-content {
    padding: 20px 0 42px;
  }

  .periodical-list-wrap {
    padding: 0 14px;
  }

  .periodical-grid {
    gap: 18px;
  }

  .periodical-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  .periodical-card::after {
    left: 78px;
    bottom: 10px;
    width: 162px;
    height: 20px;
    background-size: 18px 100%;
  }

  .periodical-card__cover {
    position: relative;
    left: auto;
    top: auto;
    width: 118px;
    height: 158px;
    padding: 5px;
    align-self: start;
  }

  .periodical-card__info h2 {
    gap: 7px;
    margin-bottom: 8px;
    font-size: 18px;
  }

  .periodical-card__info h2 span {
    height: 20px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 20px;
  }

  .periodical-card__info i {
    margin-bottom: 10px;
  }

  .periodical-card__info p {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.35;
  }
}

@media only screen and (max-width: 413px) {
  .periodical-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .periodical-card__cover {
    width: 96px;
    height: 128px;
  }

  .periodical-card__info h2 {
    font-size: 16px;
  }

  .periodical-card__info p {
    font-size: 12px;
  }
}

/* 期刊矩阵详情 */
.periodical-detail-page {
  background: #f6f8fd;
}

.periodical-detail-page .site-header,
.periodical-detail-page .header {
  box-shadow: 0 2px 0 #2b80ff;
}

.periodical-detail-main {
  background: #f6f8fd;
  padding: 16px 0 56px;
}

.periodical-detail-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.periodical-detail-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 34px;
  color: #aab2c0;
  font-size: 14px;
  line-height: 1.5;
}

.periodical-detail-crumb a {
  color: #aab2c0;
}

.periodical-detail-crumb a:hover,
.periodical-detail-crumb a:focus-visible {
  color: #2f7df5;
}

.periodical-detail-crumb strong {
  color: #5d6470;
  font-weight: 600;
}

.periodical-detail-card {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  min-height: 512px;
  border: 1px solid #e1e7f1;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.periodical-detail-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 44px;
  border-right: 1px solid #e6ebf3;
  background: #f6f8fd;
}

.periodical-detail-cover img {
  width: 300px;
  height: 405px;
  object-fit: cover;
}

.periodical-detail-profile {
  position: relative;
  padding: 0 28px 54px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), #fff 118px),
    radial-gradient(circle at 82% 12%, rgba(96, 154, 255, .22), transparent 22%),
    linear-gradient(120deg, rgba(235,244,255,.82), rgba(255,255,255,.68) 46%, rgba(228,240,255,.75));
}

.periodical-detail-profile h1 {
  display: flex;
  align-items: center;
  min-height: 100px;
  margin: 0 -30px;
  padding: 0 28px;
  color: #262b36;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  background: url("../../images/bookdetail/title-bg.png") center / cover no-repeat;
}

.periodical-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
  margin: 0;
  padding: 32px 28px 34px;
  color: #7a8391;
  background: rgba(243, 247, 255, .92);
  font-size: 16px;
  line-height: 1.75;
}

.periodical-detail-meta div {
  display: flex;
  min-width: 0;
}

.periodical-detail-meta dt {
  flex: 0 0 auto;
  font-weight: 400;
  color: #999999;
}

.periodical-detail-meta dd {
  min-width: 0;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.periodical-detail-meta__intro {
  grid-column: 1 / -1;
}

.periodical-detail-meta__intro dd {
  max-height: 7em;
  overflow-y: auto;
  font-weight: 500;
}

.periodical-issues {
  padding-top: 38px;
}

.periodical-year-shell {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 18px;
}

.periodical-year-track {
  display: grid;
  grid-template-columns: repeat(10, minmax(72px, 1fr));
  align-items: center;
  height: 66px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(40, 74, 130, .10);
}

.periodical-year-track button,
.periodical-year-arrow {
  border: 0;
  outline: 0;
  font-family: inherit;
  cursor: pointer;
}

.periodical-year-track button {
  height: 54px;
  min-width: 0;
  padding: 0 12px;
  border-radius: 999px;
  color: #858d9a;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.periodical-year-track button.is-active {
  color: #fff;
  background: #2f7df5;
}

.periodical-year-track button.is-active {
  box-shadow: 0 8px 16px rgba(47, 125, 245, .26);
}

.periodical-year-track button:hover,
.periodical-year-track button:focus-visible {
  color: #2f7df5;
}

.periodical-year-track button.is-active:hover,
.periodical-year-track button.is-active:focus-visible {
  color: #fff;
}

.periodical-year-arrow {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2f7df5;
  box-shadow: 0 8px 18px rgba(47, 125, 245, .26);
}

.periodical-year-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-62%, -50%) rotate(45deg);
}

.periodical-year-prev::before {
  border-color: #fff;
  transform: translate(-38%, -50%) rotate(225deg);
}

.periodical-year-arrow:disabled {
  background: #dce6f8;
  box-shadow: none;
  cursor: default;
}

.periodical-issue-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 44px;
  padding-top: 36px;
}

.periodical-issue {
  display: block;
  min-width: 0;
  color: #4c5360;
  text-align: center;
}

.periodical-issue img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.05;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: 0 8px 18px rgba(33, 65, 126, .08);
}

.periodical-issue span {
  display: block;
  overflow: hidden;
  color: #4d535f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.periodical-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  color: #858d9a;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.periodical-year-track .periodical-empty {
  grid-column: 1 / -1;
}

.periodical-issue-grid .periodical-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(40, 74, 130, .06);
}

.periodical-issues > .periodical-empty {
  min-height: 246px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(40, 74, 130, .06);
}

@media only screen and (max-width: 1199px) {
  .periodical-detail-wrap {
    width: auto;
    padding: 0 24px;
  }

  .periodical-detail-card {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .periodical-detail-cover {
    padding: 42px 34px;
  }

  .periodical-detail-cover img {
    width: 270px;
    height: 365px;
  }

  .periodical-detail-meta {
    gap: 18px 24px;
    font-size: 15px;
  }

  .periodical-issue-grid {
    gap: 28px;
  }
}

@media only screen and (max-width: 992px) {
  .periodical-detail-card {
    grid-template-columns: 1fr;
  }

  .periodical-detail-cover {
    border-right: 0;
    border-bottom: 1px solid #e6ebf3;
  }

  .periodical-detail-profile {
    padding: 34px 28px 32px;
  }

  .periodical-year-shell {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 12px;
  }

  .periodical-year-arrow {
    width: 50px;
    height: 50px;
  }

  .periodical-year-track {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .periodical-issue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .periodical-detail-main {
    padding: 12px 0 38px;
  }

  .periodical-detail-wrap {
    padding: 0 14px;
  }

  .periodical-detail-crumb {
    gap: 8px;
    font-size: 12px;
  }

  .periodical-detail-cover {
    padding: 24px 18px;
  }

  .periodical-detail-cover img {
    width: 210px;
    height: 284px;
  }

  .periodical-detail-profile {
    padding: 26px 18px 22px;
  }

  .periodical-detail-profile h1 {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .periodical-detail-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .periodical-detail-meta div {
    display: block;
  }

  .periodical-detail-meta dt,
  .periodical-detail-meta dd {
    display: inline;
  }

  .periodical-detail-meta__intro {
    display: flex;
  }

  .periodical-detail-meta__intro dd {
    display: block;
    flex: 1;
  }

  .periodical-issues {
    padding-top: 24px;
  }

  .periodical-year-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .periodical-year-arrow {
    width: 42px;
    height: 42px;
  }

  .periodical-year-arrow::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .periodical-year-track {
    grid-template-columns: repeat(10, 66px);
    height: 50px;
    padding: 4px;
  }

  .periodical-year-track button {
    height: 42px;
    padding: 0 8px;
    font-size: 14px;
  }

  .periodical-issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-top: 24px;
  }

  .periodical-issue span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 420px) {
  .periodical-issue-grid {
    gap: 18px 14px;
  }

  .periodical-detail-cover img {
    width: 180px;
    height: 243px;
  }
}

/* Shared tablet and mobile header navigation */
@media only screen and (max-width: 992px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header .header-inner {
    position: relative;
  }

  .site-header .nav-toggle {
    position: relative;
    z-index: 22;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    color: currentColor;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .site-header .nav-toggle > span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-nav-open .site-header .nav-toggle > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-open .site-header .nav-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-open .site-header .nav-toggle > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    margin: 0;
    padding: 8px 0 14px;
    gap: 0;
    color: #27364d;
    background: #fff;
    box-shadow: 0 16px 30px rgba(28, 51, 83, .16);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .mobile-nav-open .site-header .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav > a,
  .site-header .nav-item > a,
  .product-page .site-header .nav > a,
  .product-page .site-header .nav-item > a {
    width: 100%;
    height: 46px;
    padding: 0 24px;
    color: #27364d;
    font-size: 15px;
    font-weight: 400;
    line-height: 46px;
  }

  .site-header .nav > a.active,
  .site-header .nav-item > a.active,
  .product-page .site-header .nav > a.active,
  .product-page .site-header .nav-item > a.active {
    color: #1f72f2;
    background: #f3f7fd;
  }

  .site-header .nav a.active::after {
    content: none;
  }

  .site-header .nav-item {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  .site-header .nav-submenu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 46px;
    padding: 0;
    border: 0;
    color: #748197;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .site-header .nav-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
  }

  .site-header .is-submenu-open .nav-submenu-toggle span {
    transform: translateY(2px) rotate(225deg);
  }

  .site-header .nav-item .nav-dropdown,
  .product-page .site-header .nav-item .nav-dropdown {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 4px 0 8px;
    background: #f7f9fc;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header .nav-item.is-submenu-open .nav-dropdown,
  .product-page .site-header .nav-item.is-submenu-open .nav-dropdown {
    display: block;
  }

  .site-header .nav-dropdown a,
  .product-page .site-header .nav-dropdown a {
    height: 40px;
    padding: 0 36px;
    color: #5c687a;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
  }

  .site-header .nav-dropdown a:hover,
  .site-header .nav-dropdown a:focus-visible,
  .product-page .site-header .nav-dropdown a:hover,
  .product-page .site-header .nav-dropdown a:focus-visible {
    color: #1f72f2;
    background: #edf4ff;
  }
}

@media only screen and (max-width: 767px) {
  .index-page.has-fixed-header {
    padding-top: 58px;
  }

  .site-header {
    position: relative;
  }

  .product-page .site-header {
    position: sticky;
    top: 0;
  }

  .site-header,
  .product-page .site-header {
    z-index: 10;
    width: 100%;
    max-width: 100%;
    color: #303745;
    background: #fff;
    box-shadow: 0 1px 0 rgba(30, 45, 79, .1);
  }

  .site-header .header-inner,
  .product-page .site-header .header-inner,
  .index-page .site-header.is-fixed .header-inner {
    width: 100%;
    min-height: 58px;
    height: 58px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
  }

  .site-header .brand,
  .product-page .site-header .brand,
  .index-page .site-header.is-fixed .brand {
    min-width: 0;
    margin-right: auto;
  }

  .site-header .brand-logo--home,
  .index-page .site-header.is-fixed .brand-logo--home {
    display: none;
  }

  .site-header .brand-logo--plain,
  .product-page .site-header .brand-logo--plain,
  .index-page .site-header.is-fixed .brand-logo--plain {
    display: block;
  }

  .site-header .brand img,
  .product-page .site-header .brand img,
  .index-page .site-header.is-fixed .brand img {
    width: clamp(118px, 32vw, 142px);
    max-height: 38px;
  }

  .site-header .header-actions,
  .product-page .site-header .header-actions,
  .index-page .site-header.is-fixed .header-actions {
    position: static;
    width: auto !important;
    flex: 0 1 auto;
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
  }

  .site-header .header-auth,
  .product-page .site-header .header-auth,
  .index-page .site-header.is-fixed .header-auth {
    min-width: 0;
    color: #303745;
    font-size: 13px;
  }

  .site-header .header-auth__guest .header-auth__icon,
  .product-page .site-header .header-auth__guest .header-auth__icon,
  .index-page .site-header.is-fixed .header-auth__guest .header-auth__icon {
    display: none;
  }

  .site-header .header-auth__divider,
  .product-page .site-header .header-auth__divider,
  .index-page .site-header.is-fixed .header-auth__divider {
    margin: 0 4px;
    color: #aab1bd;
  }

  .site-header .header-auth__avatar,
  .product-page .site-header .header-auth__avatar,
  .index-page .site-header.is-fixed .header-auth__avatar {
    width: 18px;
    height: 18px;
  }

  .site-header .header-auth__name,
  .product-page .site-header .header-auth__name,
  .index-page .site-header.is-fixed .header-auth__name {
    max-width: 5em;
  }

  .site-header .search-btn,
  .product-page .site-header .search-btn,
  .index-page .site-header.is-fixed .search-btn {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-header .search-btn img,
  .product-page .site-header .search-btn img,
  .index-page .site-header.is-fixed .search-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(8%) saturate(747%) hue-rotate(183deg) brightness(93%) contrast(90%);
  }

  .site-header .nav-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .site-header .nav {
    max-height: calc(100vh - 58px);
  }

  .header-search-open .site-header .nav-toggle {
    opacity: .36;
    pointer-events: none;
  }

  .header-search-open .site-header .search-btn::before,
  .header-search-open .site-header .search-btn::after {
    width: 24px;
    height: 2px;
    background: #303745;
  }

}

@media only screen and (max-width: 360px) {
  .site-header .header-inner,
  .product-page .site-header .header-inner,
  .index-page .site-header.is-fixed .header-inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .site-header .header-auth,
  .product-page .site-header .header-auth,
  .index-page .site-header.is-fixed .header-auth {
    font-size: 12px;
  }

  .site-header .search-btn,
  .product-page .site-header .search-btn,
  .index-page .site-header.is-fixed .search-btn,
  .site-header .nav-toggle {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
}

/* Book download */
.book-download-main {
  color: #263348;
  background: #f5f7fa;
}

.book-download-hero {
  min-height: 320px;
  padding-top: var(--header-height);
  color: #fff;
  background: #1c5ba7 url("../../images/book-banner.png") center 38% / cover no-repeat;
  background-blend-mode: multiply;
  overflow: hidden;
}

.book-download-hero__inner {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.book-download-hero__copy {
  padding: 34px 0 30px;
}

.book-download-hero__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.book-download-hero__copy h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.book-download-hero__copy > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.8;
}

.book-download-hero__mark {
  position: relative;
  flex: 0 0 210px;
  height: 118px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 38px;
}

.book-download-hero__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 28px;
  background: #d24449;
}

.book-download-hero__mark span {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  letter-spacing: 0;
}

.book-download-hero__mark strong {
  margin-top: 8px;
  color: #fff;
  font-family: "Source Han Serif SC", "SimSun", serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
}

.book-download-content {
  padding-bottom: 80px;
}

.book-download-breadcrumb {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b94a3;
  font-size: 14px;
}

.book-download-breadcrumb a:hover {
  color: #2278f2;
}

.book-download-query,
.book-download-results {
  background: #fff;
  border: 1px solid #e8edf4;
  box-shadow: 0 10px 30px rgba(39, 69, 113, .06);
}

.book-download-query {
  padding: 32px 36px 36px;
}

.book-download-section-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.book-download-section-heading > div {
  position: relative;
  padding-left: 16px;
}

.book-download-section-heading > div::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 4px;
  background: #2278f2;
}

.book-download-section-heading span {
  color: #a0a9b7;
  font-size: 16px;
  letter-spacing: 0;
}

.book-download-section-heading h2 {
  margin-top: 4px;
  color: #24324a;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.book-download-reset {
  min-height: 36px;
  padding: 0;
  border: 0;
  color: #758196;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.book-download-reset:hover {
  color: #2278f2;
}

.book-download-form {
  display: grid;
  grid-template-columns: .65fr .65fr minmax(220px, 1.6fr) auto;
  align-items: end;
  gap: 20px;
}

.book-download-field {
  min-width: 0;
  border: 0;
}

.book-download-field > span,
.book-download-field legend {
  display: block;
  margin: 0 0 9px;
  padding: 0;
  color: #536074;
  font-size: 14px;
  font-weight: 500;
}

.book-download-control {
  position: relative;
  height: 46px;
  border: 1px solid #dfe5ed;
  background: #fff;
  display: flex;
  align-items: center;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.book-download-control:focus-within {
  border-color: #2278f2;
  box-shadow: 0 0 0 3px rgba(34, 120, 242, .1);
}

.book-download-control > .fa-search {
  flex: 0 0 auto;
  margin-left: 15px;
  color: #a3adbb;
}

.book-download-control input,
.book-download-control select {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: #263348;
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.book-download-field--keyword .book-download-control input {
  padding-left: 10px;
}

.book-download-control input::placeholder {
  color: #adb5c1;
}

.book-download-control--select select {
  padding-right: 38px;
  appearance: none;
  cursor: pointer;
}

.book-download-control--select .fa-angle-down {
  position: absolute;
  right: 14px;
  color: #8c97a8;
  pointer-events: none;
}

.book-download-date-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.book-download-date-range > span {
  color: #9099a7;
  font-size: 13px;
}

.book-download-date-range input {
  padding: 0 10px;
}

.book-download-submit,
.book-download-export {
  height: 46px;
  border: 0;
  color: #fff;
  background: #2278f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.book-download-submit {
  min-width: 122px;
  padding: 0 22px;
}

.book-download-submit:hover,
.book-download-export:hover:not(:disabled) {
  background: #155fc8;
}

.book-download-submit:active,
.book-download-export:active:not(:disabled) {
  transform: translateY(1px);
}

.book-download-results {
  margin-top: 24px;
}

.book-download-results__bar {
  min-height: 88px;
  padding: 18px 24px 18px 32px;
  border-bottom: 1px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.book-download-results__bar h2 {
  color: #24324a;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

.book-download-results__bar p {
  margin-top: 7px;
  color: #8c97a8;
  font-size: 13px;
}

.book-download-export {
  min-width: 136px;
  padding: 0 20px;
  background: #ca3e43;
}

.book-download-export:hover:not(:disabled) {
  background: #ad3035;
}

.book-download-export:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.book-download-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.book-download-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.book-download-table th {
  height: 50px;
  padding: 0 14px;
  color: #657187;
  background: #f4f7fb;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.book-download-table th:nth-child(1) { width: 72px; }
.book-download-table th:nth-child(2) { width: 156px; }
.book-download-table th:nth-child(3) { width: auto; text-align: left; }
.book-download-table th:nth-child(4) { width: 155px; }
.book-download-table th:nth-child(5) { width: 110px; }
.book-download-table th:nth-child(6) { width: 126px; }

.book-download-table td {
  height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid #edf0f5;
  color: #5a6678;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: break-word;
}

.book-download-table tbody tr:last-child td {
  border-bottom: 0;
}

.book-download-table tbody tr:hover td {
  background: #f8fbff;
}

.book-download-table td.book-download-table__title {
  color: #263348;
  font-weight: 500;
  text-align: left;
}

.book-download-table__isbn {
  font-family: Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}

.book-download-state td {
  height: 180px;
  color: #8d98a8;
}

.book-download-state .fa,
.book-download-spinner {
  margin-right: 10px;
}

.book-download-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #d8e5f7;
  border-top-color: #2278f2;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -4px;
  animation: book-download-spin .7s linear infinite;
}

@keyframes book-download-spin {
  to { transform: rotate(360deg); }
}

.book-download-pagination {
  min-height: 82px;
  border-top: 1px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.book-download-pagination:empty {
  display: none;
}

.book-download-pagination button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #dfe5ed;
  color: #667286;
  background: #fff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.book-download-pagination button:hover:not(:disabled),
.book-download-pagination button.is-active {
  border-color: #2278f2;
  color: #fff;
  background: #2278f2;
}

.book-download-pagination button:disabled {
  color: #c2c8d0;
  background: #f7f8fa;
  cursor: not-allowed;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media only screen and (max-width: 1200px) {
  .book-download-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-download-submit {
    justify-self: end;
  }

  .book-download-table {
    min-width: 980px;
  }
}

@media only screen and (max-width: 767px) {
  .book-download-hero {
    min-height: 210px;
    padding-top: 0;
  }

  .book-download-hero__inner {
    min-height: 210px;
  }

  .book-download-hero__copy {
    padding: 34px 0;
  }

  .book-download-hero__copy h1 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .book-download-hero__copy > p:last-child {
    font-size: 14px;
    line-height: 1.7;
  }

  .book-download-hero__mark {
    display: none;
  }

  .book-download-content {
    width: 100%;
    padding: 0 14px 48px;
  }

  .book-download-breadcrumb {
    height: 52px;
  }

  .book-download-query {
    padding: 24px 18px;
  }

  .book-download-section-heading {
    margin-bottom: 22px;
  }

  .book-download-section-heading h2 {
    font-size: 19px;
  }

  .book-download-reset span {
    display: none;
  }

  .book-download-reset {
    width: 36px;
    justify-content: center;
  }

  .book-download-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-download-submit {
    width: 100%;
  }

  .book-download-results {
    margin-top: 16px;
  }

  .book-download-results__bar {
    min-height: 80px;
    padding: 16px 18px;
  }

  .book-download-results__bar h2 {
    font-size: 19px;
  }

  .book-download-export {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .book-download-export span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .book-download-table,
  .book-download-table tbody,
  .book-download-table tr,
  .book-download-table td {
    display: block;
    width: 100%;
  }

  .book-download-table {
    min-width: 0;
  }

  .book-download-table thead {
    display: none;
  }

  .book-download-table tbody {
    padding: 0 18px;
  }

  .book-download-table tbody tr {
    padding: 18px 0;
    border-bottom: 1px solid #e8edf4;
  }

  .book-download-table tbody tr:last-child {
    border-bottom: 0;
  }

  .book-download-table td {
    min-height: 30px;
    height: auto;
    padding: 4px 0 4px 94px;
    border: 0;
    position: relative;
    text-align: left;
  }

  .book-download-table td::before {
    content: attr(data-label);
    position: absolute;
    top: 4px;
    left: 0;
    width: 84px;
    color: #919baa;
    font-size: 13px;
  }

  .book-download-table td:first-child {
    display: none;
  }

  .book-download-table td.book-download-table__title {
    margin-bottom: 8px;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .book-download-table td.book-download-table__title::before {
    display: none;
  }

  .book-download-state td,
  .book-download-state td:first-child {
    display: block;
    height: 130px;
    padding: 48px 0 0;
    text-align: center;
  }

  .book-download-state td::before {
    display: none;
  }

  .book-download-pagination {
    min-height: 70px;
  }
}
