/* common.css：全站基础样式与公共组件 */

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

*::before,
*::after {
  box-sizing: border-box;
}

button,
input,
textarea,
select {
  outline: none;
  font-family: "Source Han Sans CN", -apple-system, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
  border: none;
}

li {
  list-style: none;
}

.article-content ul,
.article-content ol,
.detail-content ul,
.detail-content ol,
.detail-content-box ul,
.detail-content-box ol,
.input-article ul,
.input-article ol,
.cate-hero-intro ul,
.cate-hero-intro ol,
.item-main ul,
.item-main ol,
.fw-content ul,
.fw-content ol {
  margin: 0.75em 0 1em;
  padding-left: 1.5em;
}

.article-content ul li,
.detail-content ul li,
.detail-content-box ul li,
.input-article ul li,
.cate-hero-intro ul li,
.item-main ul li,
.fw-content ul li {
  list-style: disc;
}

.article-content ol li,
.detail-content ol li,
.detail-content-box ol li,
.input-article ol li,
.cate-hero-intro ol li,
.item-main ol li,
.fw-content ol li {
  list-style: decimal;
}

.article-content li,
.detail-content li,
.detail-content-box li,
.input-article li,
.cate-hero-intro li,
.item-main li,
.fw-content li {
  margin-bottom: 0.35em;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--theme);
  outline-offset: 2px;
}

button,
.tab-item,
.more-btn,
[role="button"] {
  touch-action: manipulation;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --theme: #e60012;
  --aok-red: #e60012;
  --aok-blue: #2E3192;
  --aok-black: #000000;
  --aok-grey-05: #F5F7FA;
  --aok-grey-10: #E6E6E6;
  --aok-grey-20: #D9D9D9;
  --aok-grey-50: #808080;
  --aok-grey-70: #4D4D4D;
  --text-header: #0f172a;
  --text-main: #334155;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-soft: #e2e8f0;
  --border-light: #edf2f7;
  --surface-page: #f8fafc;
  --surface-soft: #fbfcfd;
  --surface-white: #ffffff;
  --duration: 0.45s;
  --header-height: max(1rem, 80px);
  --space: 45px;
  --border: 1px solid rgba(204, 204, 204, 0.5);
  --mask: rgba(255, 255, 255, 0.6);
  --mask-filter: blur(6px);
  --more-w: 135px;
  --more-h: 35px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-card: 8px;
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(30,45,142,0.1);
  --shadow-card: 0 2px 12px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 10px 28px rgba(15, 23, 42, 0.08);
  --pl-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --pl-shadow-hover: 0 10px 25px -5px rgba(230,0,18,0.08), 0 8px 10px -6px rgba(0,0,0,0.02);
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font27: clamp(18px, 0.27rem, 27px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  --font50: clamp(28px, 0.5rem, 50px);
}

html {
  font-size: calc(100vw / 19.2);
  scroll-behavior: smooth;
}

@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}

@font-face {
  font-family: "Source Han Sans CN";
  src: url("../fonts/SourceHanSansSC-Regular-2.woff2") format("woff2"),
       url("../fonts/SourceHanSansSC-Regular-2.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url("../fonts/SourceHanSansSC-Medium-2.woff2") format("woff2"),
       url("../fonts/SourceHanSansSC-Medium-2.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("../fonts/Source-Sans-Pro-Light-2.otf") format("opentype");
  font-display: swap;
}

body {
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

body.lock {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-header);
  font-weight: 700;
  line-height: 1.3;
}

p, li, dd, td, th {
  font-size: 16px;
  line-height: 1.72;
}

.desc, .summary, .item-desc, .slide-desc, .banner-desc, .text-muted, .time-text, .source {
  color: var(--text-muted);
}

.title, .item-title, .slide-title, .panel-title, .article-title, .aok-name, .pro-title, .cate-title {
  font-weight: 700;
}

.sub-title, .advantage-sub-title, .banner-desc, .cate-hero-intro, .category-intro-block, .article-content, .detail-content, .fw-content, .item-desc {
  font-size: 16px;
  line-height: 1.76;
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: var(--border-soft);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}

.wrap {
  max-width: 1536px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
}

@media (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .phone-hide {
    display: none !important;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--aok-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.6s ease linear;
  height: var(--header-height);
  z-index: 99;
}

header.active,
header.hover {
  background: #ffffff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
}

html body header.active .header-wrap .other,
html body header.hover .header-wrap .other {
  --header-search-color: #1e293b;
  --header-lang-color: #1e293b;
  --header-menu-color: var(--theme);
}

.header-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .logo {
  display: block;
}

.header-wrap .logo img {
  display: block;
  width: max(180px, 2.5rem);
}

.header-wrap .nav {
  margin-left: max(1.55rem, 30px);
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .nav .nav-item {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.header-wrap .nav .nav-item .item-top {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.header-wrap .nav .nav-item .item-top a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}

html body header .header-wrap .nav .nav-item .item-top a {
  font-family: "Source Han Sans CN", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.96);
  transition: color var(--duration);
}

html body header.active .header-wrap .nav .nav-item .item-top a,
html body header.hover .header-wrap .nav .nav-item .item-top a {
  color: #1e293b;
}

html body header .header-wrap .nav .nav-item.active .item-top a,
html body header .header-wrap .nav .nav-item:hover .item-top a {
  color: var(--theme) !important;
  font-weight: 400;
}

.header-wrap .nav .nav-item .item-bottom,
.header-wrap .nav .nav-item .pro-bottom,
.header-wrap .nav .nav-item .common-head-bottom,
.header-wrap .nav .nav-item .about-head-bottom {
  display: none;
}

.header-wrap .nav .nav-item:hover .item-bottom,
.header-wrap .nav .nav-item:hover .pro-bottom,
.header-wrap .nav .nav-item:hover .common-head-bottom,
.header-wrap .nav .nav-item:hover .about-head-bottom {
  display: block;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item a img,
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link img {
  display: none !important;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item a,
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link {
  white-space: nowrap !important;
}

.header-wrap .nav .nav-item .pro-bottom {
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100%;
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  height: 460px !important;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 0;
  border-top: 1px solid var(--aok-grey-10);
  z-index: 100;
}

.header-wrap .nav .nav-item .pro-bottom::-webkit-scrollbar {
  width: 6px;
}

.header-wrap .nav .nav-item .pro-bottom::-webkit-scrollbar-track {
  background: #fff;
}

.header-wrap .nav .nav-item .pro-bottom::-webkit-scrollbar-thumb {
  background: var(--aok-grey-10);
  border-radius: 3px;
}

.header-wrap .nav .nav-item .pro-bottom::-webkit-scrollbar-thumb:hover {
  background: var(--theme);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap {
  display: flex;
  align-items: stretch;
  min-height: 100%;
  gap: 0;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one {
  width: 27.91%;
  flex-shrink: 0;
  margin-right: 0.35rem;
  padding: 35px 20px 35px 0;
  background-color: #fff;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item {
  display: none;
  animation: fadeIn 0.4s ease;
  height: 100%;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item.show {
  display: flex;
  flex-direction: column;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--aok-grey-10);
  flex-shrink: 0;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 66.66%;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text {
  flex: 1;
  padding-left: 5px;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .cate {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  color: var(--text-header);
  margin-bottom: 8px;
  transition: var(--duration);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .name,
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .model {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-muted);
  overflow-wrap: break-word;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item:hover .pic img {
  transform: scale(1.05);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item:hover .text .cate {
  color: var(--theme);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one {
  width: 15%;
  flex-shrink: 0;
  border-right: 1px solid var(--aok-grey-10);
  background-color: var(--aok-grey-05);
  padding-top: 15px;
  padding-bottom: 15px;
  overflow-y: auto;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one::-webkit-scrollbar {
  display: none;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item {
  position: relative;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s;
  width: 100%;
  color: var(--text-body);
  padding: 12px 25px;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item.current {
  background-color: #fff;
  margin-right: -1px;
  z-index: 2;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item.current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--theme);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item.current a {
  color: var(--theme);
  font-weight: 600;
  padding-left: 30px;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two {
  width: 19%;
  min-width: 200px;
  flex-shrink: 0;
  border-right: 1px solid var(--aok-grey-10);
  background-color: #fff;
  padding: 20px 0;
  overflow-y: auto;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two::-webkit-scrollbar {
  display: none;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section {
  display: none;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section.show {
  display: block;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item {
  padding: 0 15px;
  margin-bottom: 2px;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-body);
  transition: all 0.2s ease;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link:hover,
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item.current .item-link {
  color: var(--theme);
  background-color: #fff5f5;
  font-weight: 600;
}

.cate-two .two-section .two-item.is-pure-product:first-child .item-link {
  color: var(--text-header) !important;
  font-weight: normal !important;
}

.cate-two .two-section .two-item.is-pure-product .item-link:hover {
  color: var(--theme) !important;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three {
  flex: 1;
  min-width: 240px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 25px 30px;
  overflow-y: auto;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item {
  display: none;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item.show {
  display: block;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item {
  margin-bottom: 10px;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-body);
  letter-spacing: 1px;
  transition: var(--duration);
  display: block;
  padding: 2px 0;
}

.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item a:hover {
  color: var(--theme);
  transform: translateX(5px);
}

.header-wrap .nav .nav-item .common-head-bottom {
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100%;
  background: #ffffff;
  box-shadow: -19px 19px 18px 0px rgba(0, 0, 0, 0.1);
  padding-top: max(0.57rem, 30px);
  padding-bottom: max(1.08rem, 30px);
  border-top: 1px solid var(--border-soft);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap {
  display: flex;
  gap: 30px max(15px, 0.3rem);
  justify-content: center;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item {
  width: 18.42447917%;
  flex-shrink: 0;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .pic img {
  transform: scale(1.05);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .title {
  color: var(--theme);
  font-weight: 600;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-text {
  color: var(--theme);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-icon .default {
  opacity: 0;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-icon .hover {
  opacity: 1;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.8975265%;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text {
  padding-left: 10px;
  padding-right: 10px;
  overflow-wrap: break-word;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .title {
  font-weight: 400;
  font-size: var(--font18);
  color: var(--text-main);
  line-height: 1.55555556;
  margin-top: max(0.15rem, 10px);
  text-align: center;
  transition: var(--duration);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more {
  margin-top: max(0.24rem, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-text {
  font-family: "Source Han Sans CN", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon {
  width: 5px;
  position: relative;
  z-index: 2;
  margin-left: 11px;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon img {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--duration);
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon .default {
  opacity: 1;
}

.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon .hover {
  opacity: 0;
}

.header-wrap .nav .nav-item .about-head-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #ffffff;
  border-radius: 0px 0px 10px 10px;
  width: 118px;
  padding-top: max(15px, 0.19rem);
  padding-bottom: max(15px, 0.23rem);
}

.header-wrap .nav .nav-item .about-head-bottom .item {
  margin-bottom: 10px;
}

.header-wrap .nav .nav-item .about-head-bottom .item:last-child {
  margin-bottom: 0;
}

.header-wrap .nav .nav-item .about-head-bottom .item .text {
  display: block;
  font-size: var(--font16);
  line-height: 1.5;
  color: var(--text-body);
  transition: var(--duration);
  text-align: center;
}

.header-wrap .nav .nav-item .about-head-bottom .item .text:hover {
  color: #f71e26;
}

.header-wrap .other {
  --header-search-color: #ffffff;
  --header-lang-color: #ffffff;
  --header-menu-color: var(--theme);
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .other button.search,
.header-wrap .other button.phone-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header-wrap .other .search {
  margin-right: max(0.2rem, 10px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--header-search-color);
}

.header-wrap .other .search img {
  transition: var(--duration);
}

.header-wrap .other .search .search-icon {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-wrap .other .line {
  width: 1px;
  height: 14px;
  background-color: #fff;
  flex-shrink: 0;
}

.header-wrap .other .lang {
  margin-left: max(0.2rem, 10px);
  position: relative;
  z-index: 10;
  height: 100%;
}

.header-wrap .other .lang:hover .lang-list {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  pointer-events: initial;
}

.header-wrap .other .lang .lang-head {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .other .lang .lang-head .icon img {
  display: block;
  filter: brightness(0) invert(1);
}

.header-wrap .other .lang .lang-head .current-text,
.header-wrap .other .lang .lang-head .current-text a.text {
  font-size: 14px;
  font-weight: 600;
  color: var(--header-lang-color);
  line-height: 1;
  white-space: nowrap;
  margin-left: 0;
}

html body header.active .header-wrap .other .lang .lang-head .current-text,
html body header.hover .header-wrap .other .lang .lang-head .current-text,
html body header.active .header-wrap .other .lang .lang-head .current-text a.text,
html body header.hover .header-wrap .other .lang .lang-head .current-text a.text {
  color: var(--header-lang-color) !important;
}

html body header.active .header-wrap .other .search img,
html body header.hover .header-wrap .other .search img,
html body header.active .header-wrap .other .lang .lang-head .icon img,
html body header.hover .header-wrap .other .lang .lang-head .icon img {
  filter: brightness(0) opacity(0.85) !important;
}

html body header.active .header-wrap .other .search,
html body header.hover .header-wrap .other .search {
  color: var(--header-search-color);
}

html body header.active .header-wrap .other .line,
html body header.hover .header-wrap .other .line {
  background-color: #cbd5e1 !important;
}

.header-wrap .other .lang .lang-list {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(20px);
  width: 100px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--duration);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  pointer-events: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-wrap .other .lang .lang-list .lang-item {
  margin-bottom: 15px;
}

.header-wrap .other .lang .lang-list .lang-item:last-child {
  margin-bottom: 0;
}

.header-wrap .other .lang .lang-list .lang-item .text {
  color: #000000;
  font-size: var(--font14);
  line-height: 1;
  transition: var(--duration);
  display: block;
  text-align: center;
}

.header-wrap .other .lang .lang-list .lang-item .text:hover {
  color: var(--theme);
}

.header-wrap .other .head-contact {
  width: max(1.2rem, 100px);
  height: 36px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-left: max(0.51rem, 20px);
  border: 1px solid transparent;
}

.header-wrap .head-search {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding-top: max(20px, 0.45rem);
  padding-bottom: max(20px, 0.45rem);
  display: none;
}

.header-wrap .head-search .search-wrap {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 7;
}

.header-wrap .head-search .search-wrap input {
  display: block;
  width: 100%;
  height: max(30px, 0.6rem);
  padding-left: 20px;
  padding-right: max(0.6rem, 45px);
  font-size: 16px;
  color: #000000;
  transition: var(--duration);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
  position: relative;
  z-index: 2;
}

.header-wrap .head-search .search-wrap input:focus {
  border-bottom-color: #2E3192;
}

.header-wrap .head-search .search-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.header-wrap .head-search .search-wrap .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-wrap .head-search .search-wrap .search-btn:hover img {
  filter: none;
}

.header-wrap .head-search .search-wrap .search-btn img {
  display: block;
  width: 18px;
  filter: grayscale(1);
  transition: var(--duration);
}

.head-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: auto;
  transition: var(--duration);
}

.head-mask img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.phone-nav {
  display: none;
}

.hover-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hover-btn .more-text {
  font-size: 14px;
  font-weight: 500;
  transition: var(--duration);
}

.hover-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
  pointer-events: none;
  width: 0;
  height: 400%;
  background-color: var(--theme);
  transition: var(--duration);
}

.hover-btn:hover {
  border-color: transparent !important;
}

.hover-btn:hover .more-text {
  color: #fff !important;
}

.hover-btn:hover::after {
  width: 130%;
}

.more-btn {
  margin-right: 10px !important;
  margin-top: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 34px;
  border: 1px solid #e60012;
  border-radius: 17px;
  background-color: #e60012;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.more-btn .more-text {
  position: relative;
  z-index: 1;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.more-btn .more-icon {
  display: none !important;
}

.more-btn .more-text::after {
  content: " \2192";
  font-weight: 500;
  margin-left: 6px;
  transition: margin-left 0.25s ease;
}

.more-btn:hover .more-text::after {
  margin-left: 10px;
}

.more-btn:hover {
  background-color: #cb000f !important;
  border-color: #cb000f !important;
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.25) !important;
  color: #ffffff;
}

.more-btn.more-btn-light {
  border: 1px solid #e2e8f0 !important;
  background-color: #f8fafc !important;
  color: var(--text-main) !important;
}

.more-btn.more-btn-light .more-text {
  color: var(--text-main) !important;
}

.more-btn.more-btn-light .more-icon img {
  filter: brightness(0) opacity(0.6) !important;
}

.more-btn.more-btn-light:hover {
  background-color: #e60012 !important;
  border-color: #e60012 !important;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25) !important;
}

.more-btn.more-btn-light:hover .more-text {
  color: #ffffff !important;
}

.more-btn.more-btn-light:hover .more-icon img {
  filter: brightness(0) invert(1) !important;
}

.more-btn.more-btn-rect {
  border-radius: 17px !important;
  border: 1px solid #cbd5e1 !important;
  background-color: #ffffff !important;
  color: var(--text-muted) !important;
  min-width: 120px;
  width: fit-content;
  padding: 0 16px;
}

.more-btn.more-btn-rect .more-text {
  color: var(--text-muted) !important;
}

.more-btn.more-btn-rect .more-icon img {
  filter: brightness(0) opacity(0.5) !important;
}

.more-btn.more-btn-rect:hover {
  background-color: #f8fafc !important;
  border-color: var(--theme) !important;
}

.more-btn.more-btn-rect:hover .more-text {
  color: var(--theme) !important;
}

.more-btn.more-btn-rect:hover .more-icon {
  transform: translateX(5px) !important;
}

.more-btn.more-btn-rect:hover .more-icon img {
  filter: none !important;
}

.common-banner {
  position: relative;
  z-index: 2;
  margin-top: var(--header-height);
}

.common-banner .pic {
  width: 100%;
}

.common-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}

.common-banner .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.common-banner .text .banner-title {
  font-size: 42px;
  line-height: 1.22;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: max(0.37rem, 15px);
  white-space: nowrap;
}

.common-banner .text .banner-desc {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: #ffffff;
  padding-bottom: max(1.5rem, 30px);
}

.common-banner .text .breadcrumb {
  display: flex;
  align-items: center;
  padding-bottom: max(0.21rem, 15px);
}

.common-banner .text .breadcrumb .icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.common-banner .text .breadcrumb .list {
  display: flex;
  align-items: center;
}

.common-banner .text .breadcrumb .list .item {
  font-size: var(--font14);
  font-weight: 500;
  color: #fff;
}

.common-banner .text .breadcrumb .list .item::after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}

.common-banner .text .breadcrumb .list .item:last-child::after {
  display: none;
}

.common-banner .text .breadcrumb .list .item .link {
  color: #fff;
  transition: var(--duration);
}

.common-banner .text .breadcrumb .list .item .link:hover {
  color: var(--theme);
}

.common-tab-area {
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid #e8edf5;
}

.common-tab-area .tab-list {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  max-width: 86%;
  padding-bottom: 2px;
  gap: 0;
}

.common-tab-area .tab-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 10px;
}

.common-tab-area .tab-list::-webkit-scrollbar-thumb {
  background-color: #e60012;
  border-radius: 10px;
}

.common-tab-area .tab-list .tab-item {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  padding: 24px max(15px, 0.42rem);
  border-right: 1px solid rgba(204, 204, 204, 0.3);
  transition: var(--duration);
}

.common-tab-area .tab-list .tab-item::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: transparent;
  transition: var(--duration);
}

.common-tab-area .tab-list .tab-item.active {
  background-color: #f8faff;
  color: #e60012;
  border-right-color: rgba(204, 204, 204, 0.3);
}

.common-tab-area .tab-list .tab-item.active::after {
  background: #e60012;
}

.common-tab-area .tab-list .tab-item:not(.active):hover {
  color: #e60012;
  background: #fbfcff;
}

.common-page-breadcrumb {
  display: flex;
  align-items: center;
  padding-top: max(10px, 0.21rem);
  padding-bottom: max(10px, 0.21rem);
}

.common-page-breadcrumb .icon img {
  display: block;
  width: 12px;
}

.common-page-breadcrumb .bread-list {
  margin-left: 5px;
  display: flex;
  align-items: center;
}

.common-page-breadcrumb .bread-list .bread-item {
  font-weight: 500;
  font-size: var(--font14);
  color: var(--text-body);
}

.common-page-breadcrumb .bread-list .bread-item:last-child::after {
  display: none;
}

.common-page-breadcrumb .bread-list .bread-item:last-child a {
  color: var(--text-main);
}

.common-page-breadcrumb .bread-list .bread-item::after {
  content: ">";
  margin-left: 5px;
  margin-right: 5px;
}

.common-page-breadcrumb .bread-list .bread-item a {
  color: var(--text-body);
  transition: var(--duration);
}

.common-page-breadcrumb .bread-list .bread-item a:hover {
  color: var(--theme);
}

@media (max-width: 768px) {
  .common-page-breadcrumb {
    display: none;
  }
}

.common-recommend-news-area .hot-news-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: max(0.6rem, 30px);
}

.common-recommend-news-area .hot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: max(0.3rem, 15px);
}

.common-recommend-news-area .hot-list .hot-item {
  overflow: hidden;
}

.common-recommend-news-area .hot-list .hot-item .pic {
  display: block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.common-recommend-news-area .hot-list .hot-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.06896552%;
}

.common-recommend-news-area .hot-list .hot-item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration);
}

.common-recommend-news-area .hot-list .hot-item .text .title {
  font-size: var(--font22);
  color: var(--text-main);
  line-height: 1.45454545;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: max(0.25rem, 15px);
  transition: var(--duration);
}

.common-recommend-news-area .hot-list .hot-item .text .time-line {
  margin-top: max(0.2rem, 10px);
  display: flex;
  align-items: center;
}

.common-recommend-news-area .hot-list .hot-item .text .time-line .time-icon {
  width: 15px;
  margin-right: 6px;
}

.common-recommend-news-area .hot-list .hot-item .text .time-line .time-text {
  line-height: 1;
  font-size: var(--font14);
  color: var(--text-muted);
}

.common-recommend-news-area .hot-list .hot-item .text .desc {
  font-size: var(--font14);
  color: var(--text-muted);
  line-height: 1.85714286;
  margin-top: max(0.25rem, 15px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: calc((26 / 14) * var(--font14) * 2);
}

.common-recommend-news-area .hot-list .hot-item .text .more-btn {
  margin-top: max(0.23rem, 15px);
}

.common-recommend-news-area .hot-list .hot-item .text .more-btn .more-icon {
  height: 10px;
  margin-left: 11px;
}

.common-recommend-news-area .hot-list .hot-item:hover .pic img {
  transform: scale(1.05);
}

.common-recommend-news-area .hot-list .hot-item:hover .text .title {
  color: var(--theme);
}

.common-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
}

.common-pagination .item,
.common-pagination .fyprev,
.common-pagination .fynext {
  font-size: var(--font14);
  color: var(--text-body);
  line-height: 1;
  min-width: max(0.45rem, 35px);
  height: max(0.45rem, 35px);
  padding: 0 8px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(201, 201, 201, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--duration);
}

.common-pagination .item img,
.common-pagination .fyprev img,
.common-pagination .fynext img {
  height: 11px;
  object-fit: contain;
  display: block;
}

.common-pagination .item.prev,
.common-pagination .item.next {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.common-pagination .fyprev:empty::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
}

.common-pagination .fynext:empty::before,
.common-pagination .item.next:empty::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-top: 2px solid #64748b;
  transform: rotate(45deg);
}

.common-pagination .item:hover,
.common-pagination .item.active,
.common-pagination .fyprev:hover:not(.disabled),
.common-pagination .fynext:hover:not(.disabled) {
  background-color: var(--theme);
  color: #fff;
  border-color: transparent;
}

.common-pagination .fyprev:hover:not(.disabled)::before,
.common-pagination .fynext:hover:not(.disabled)::before {
  border-color: #fff;
}

.common-pagination .item.prev:hover img,
.common-pagination .item.next:hover img,
.common-pagination .fyprev:hover:not(.disabled) img,
.common-pagination .fynext:hover:not(.disabled) img {
  filter: brightness(0) invert(1);
}

.common-pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

.common-pagination .page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max(0.45rem, 35px);
  height: max(0.45rem, 35px);
  color: var(--text-muted);
  font-size: var(--font14);
  user-select: none;
}

a.seo-inner-link {
  color: #1e2d8e;
  font-weight: 600;
  border-bottom: 1px solid rgba(30, 45, 142, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

a.seo-inner-link:hover {
  border-bottom-color: #1e2d8e;
  color: #0f1a6b;
}

.search-list-page .page-content {
  padding-bottom: max(1.2rem, var(--space));
}

.search-list-page .search-form {
  --h: 60px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  max-width: 600px;
  padding-top: max(1rem, var(--space));
}

.search-list-page .search-form input {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 60px;
  border: 1px solid var(--border-soft);
  padding-left: max(0.35rem, 10px);
  padding-right: max(0.35rem, 10px);
  font-size: 16px;
  color: var(--text-main);
  transition: var(--duration);
}

.search-list-page .search-form input:focus {
  border-color: var(--theme);
}

.search-list-page .search-form button {
  width: 140px;
  height: var(--h);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme);
  border-radius: 60px;
  font-size: 16px;
  color: #fff;
}

.search-list-page .search-list {
  margin-top: max(0.6rem, 30px);
  margin-bottom: 30px;
}

.search-list-page .search-list .item {
  display: block;
  padding-top: max(0.4rem, 10px);
  padding-bottom: max(0.4rem, 10px);
  border-bottom: 1px solid #e8ecf1;
}

.search-list-page .search-list .item:hover .title {
  color: var(--theme);
}

.search-list-page .search-list .item:hover .desc span {
  background-size: 100% 1px;
  background-position: left bottom;
  color: var(--theme);
}

.search-list-page .search-list .item .title {
  font-size: var(--font22);
  color: var(--text-main);
  line-height: 1.5;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: max(0.2rem, 15px);
  transition: var(--duration);
}

.search-list-page .search-list .item .desc {
  font-size: var(--font16);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: max(0.2rem, 10px);
}

.search-list-page .search-list .item .desc span {
  display: inline;
  background-image: linear-gradient(to right, var(--theme), var(--theme));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: right bottom;
  color: var(--text-body);
  transition: background-size 1s, color var(--duration);
}

.search-list-page .search-list .item .source {
  font-size: 14px;
  color: var(--text-body);
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

footer {
  background-color: var(--surface-page);
  padding-top: max(1.18rem, var(--space));
  padding-bottom: max(0.72rem, var(--space));
}

footer .footer-wrap {
  display: flex;
  align-items: flex-start;
}

footer .footer-wrap .footer-left {
  width: 56.31510417%;
  flex-shrink: 0;
}

footer .footer-wrap .footer-left .foot-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: max(0.35rem, 20px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

footer .footer-wrap .footer-left .foot-nav .nav-item {
  margin-right: 10px;
}

footer .footer-wrap .footer-left .foot-nav .nav-item:last-child {
  margin-right: 0;
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-t {
  margin-bottom: max(0.25rem, 15px);
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .t-link {
  font-weight: 500;
  font-size: var(--font18);
  color: var(--text-header);
  transition: var(--duration);
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .t-link:hover {
  color: var(--theme);
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon {
  display: none;
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text {
  margin-bottom: 5px;
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text:last-child {
  margin-bottom: 0;
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text .link {
  font-size: var(--font14);
  color: var(--text-body);
  line-height: 1.5;
  transition: var(--duration);
}

footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text .link:hover {
  color: var(--theme);
}

footer .footer-wrap .footer-left .foot-friend-link {
  padding-top: max(0.3rem, 15px);
  padding-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  margin-bottom: max(20px, 0.3rem);
}

footer .footer-wrap .footer-left .foot-friend-link .custom {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

footer .footer-wrap .footer-left .foot-friend-link .custom .text {
  font-weight: 700;
  font-size: var(--font16);
  color: var(--theme);
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list {
  display: flex;
  align-items: center;
  margin-left: max(0.35rem, 15px);
  flex-wrap: wrap;
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item {
  padding-right: max(0.2rem, 10px);
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item:last-child .link::after {
  display: none;
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link {
  font-size: var(--font14);
  color: var(--text-body);
  transition: var(--duration);
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link:hover {
  color: var(--theme);
}

footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link::after {
  content: "|";
  padding-left: max(0.2rem, 10px);
}

footer .footer-wrap .footer-left .foot-info {
  margin-bottom: 20px;
}

footer .footer-wrap .footer-left .foot-info p,
footer .footer-wrap .footer-left .foot-info a,
footer .footer-wrap .footer-left .foot-info span {
  font-size: var(--font14);
  color: var(--text-body);
  line-height: 2.28571429;
  transition: var(--duration);
}

footer .footer-wrap .footer-left .foot-info a:hover {
  color: var(--theme);
}

footer .footer-wrap .footer-left .foot-follow {
  display: flex;
  align-items: center;
}

footer .footer-wrap .footer-left .foot-follow .text {
  color: var(--text-body);
  font-size: var(--font18);
  margin-right: max(0.2rem, 10px);
  line-height: 1;
  white-space: nowrap;
}

footer .footer-wrap .footer-left .foot-follow .icon-list {
  display: flex;
  align-items: center;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: max(0.2rem, 10px);
  width: 21px;
  position: relative;
  z-index: 10;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:last-child {
  margin-right: 0;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon img {
  object-fit: contain;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon .default {
  display: block;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon .hover {
  display: none;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .qrcode {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  bottom: 115%;
  width: 120px;
  height: 120px;
  background-color: #fff;
  padding: 6px;
  transition: var(--duration);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.6);
  border-radius: 10px;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .icon .default {
  display: none;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .icon .hover {
  display: block;
}

footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}

footer .footer-wrap .footer-right {
  width: 30.72916667%;
  flex-shrink: 0;
  margin-left: auto;
}

footer .footer-wrap .footer-right .foot-logo {
  margin-bottom: max(0.5rem, 20px);
}

footer .footer-wrap .footer-right .foot-logo img {
  display: block;
  width: max(2.54rem, 150px);
  object-fit: contain;
}

footer .footer-wrap .footer-right .foot-name {
  font-size: var(--font24);
  font-weight: 700;
  color: var(--theme);
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

footer .footer-wrap .footer-right .foot-info-list {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

footer .footer-wrap .footer-right .foot-info-list .foot-info-item {
  display: flex;
  align-items: center;
  margin-bottom: max(0.2rem, 10px);
}

footer .footer-wrap .footer-right .foot-info-list .foot-info-item:last-child {
  margin-bottom: 0;
}

footer .footer-wrap .footer-right .foot-info-list .foot-info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

footer .footer-wrap .footer-right .foot-info-list .foot-info-item .text {
  margin-left: 10px;
  font-size: var(--font16);
  color: var(--text-main);
}

footer .footer-wrap .footer-right .foot-qrcode-area {
  margin-top: max(0.24rem, 20px);
  display: flex;
  align-items: flex-start;
}

footer .footer-wrap .footer-right .foot-qrcode-area .item {
  margin-right: max(0.4rem, 25px);
}

footer .footer-wrap .footer-right .foot-qrcode-area .item:last-child {
  margin-right: 0;
}

footer .footer-wrap .footer-right .foot-qrcode-area .item .img {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid rgba(204, 204, 204, 0.3);
}

footer .footer-wrap .footer-right .foot-qrcode-area .item .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

footer .footer-wrap .footer-right .foot-qrcode-area .item .text {
  font-size: var(--font16);
  text-align: center;
  margin-top: 10px;
  color: var(--text-muted);
}

.foot-aside {
  position: fixed;
  right: 12px;
  bottom: 20%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

.foot-aside.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.foot-aside .aside-item {
  position: relative;
  margin-bottom: 2px;
}

button.list-link, button.mc-item, button.go-top {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button.list-link {
  width: 100%;
}

.contact-aside .icon {
  background-color: var(--aok-red);
  height: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
}

.contact-aside .icon .v-text {
  writing-mode: vertical-rl;
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  letter-spacing: 2px;
}

.go-top .icon {
  background-color: #fff;
  width: 44px;
  height: 44px;
  border: 1px solid #e8ecf1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot-aside .hover-content {
  position: absolute;
  right: 100%;
  bottom: 0;
  padding-right: 10px;
  display: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.foot-aside .hover-content.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.side-contact-list {
  width: 180px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
}

.list-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.list-link:hover {
  background: #f9f9f9;
}

.list-link img {
  width: 18px;
  filter: invert(11%) sepia(54%) saturate(4174%) hue-rotate(240deg) brightness(30%) contrast(100%);
}

.list-link .info-text {
  margin-left: 12px;
  text-align: left;
}

.list-link .t1 {
  font-size: 15px;
  color: var(--aok-black);
  font-weight: 600;
}

.list-link .t2 {
  font-size: 13px;
  color: var(--aok-grey-50);
  margin-top: 4px;
}

.common-footer-link {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #2E3192;
  padding-top: max(0.35rem, 20px);
  padding-bottom: max(0.35rem, 20px);
}

.common-footer-link .list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-footer-link .list .item {
  padding-left: max(20px, 1.46rem);
  padding-right: 1.46rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.common-footer-link .list .item:hover .icon img {
  filter: none;
}

.common-footer-link .list .item:hover .text {
  color: var(--theme);
}

.common-footer-link .list .item:first-child {
  padding-left: 0;
}

.common-footer-link .list .item:last-child {
  padding-right: 0;
  border-right: none;
}

.common-footer-link .list .item .icon {
  height: max(0.51rem, 30px);
  display: flex;
  align-items: center;
}

.common-footer-link .list .item .icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: var(--duration);
  max-height: 100%;
  filter: brightness(0) invert(1);
}

.common-footer-link .list .item .text {
  font-size: var(--font18);
  color: #fff;
  text-align: center;
  margin-top: 17px;
  transition: var(--duration);
}

@media (max-width: 1450px) {
  .header-wrap .nav {
    margin-left: 1rem;
  }
}

@media (max-width: 1200px) {
  .header-wrap .nav {
    display: none;
  }

  .header-wrap .other {
    --header-search-color: #111827;
    --header-lang-color: #333333;
    --header-menu-color: #111827;
    column-gap: 8px;
    color-scheme: light;
  }

  html body header.active .header-wrap .other,
  html body header.hover .header-wrap .other {
    --header-search-color: #111827;
    --header-lang-color: #333333;
    --header-menu-color: #111827;
  }

  .header-wrap .other .line {
    display: none;
  }

  .header-wrap .other .lang {
    width: 40px;
    height: 40px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-wrap .other .lang::before {
    display: none;
  }

  .header-wrap .other .lang .lang-head {
    width: 100%;
    justify-content: center;
  }

  .phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 0;
    color: var(--header-menu-color);
  }

  .phone-btn .menu-icon {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.6s ease;
  }

  .phone-nav {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  .phone-nav::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
  }

  .phone-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 30px 0 150px 0;
    border-top: 1px solid var(--border-soft);
    display: none;
    --padding: 7%;
    z-index: 999;
  }

  .phone-nav .nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f2f2f2;
  }

  .phone-nav .nav-item .item-top,
  .phone-nav .nav-item .item-bottom .bottom-section .section-top,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item {
    padding-right: 30px !important;
    box-sizing: border-box !important;
  }

  .phone-nav .nav-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #fff;
    transition: all 0.3s;
    pointer-events: none;
  }

  .phone-nav .nav-item .item-top a.text, .phone-nav .nav-item .item-top .js-toggle {
    pointer-events: auto;
  }

  .phone-nav .nav-item .item-top a.text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3d;
    flex: 1;
    padding: 5px 0;
  }

  .phone-nav .nav-item .item-top.active {
    background-color: #f9f9f9;
  }

  .phone-nav .nav-item .item-top.active a.text {
    color: var(--theme);
    font-weight: 700;
  }

  .phone-nav .nav-item .item-top .js-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
  }

  .header-wrap .other .lang .lang-head .current-text, .header-wrap .other .lang .lang-head .current-text a.text {
    font-size: 14px;
    font-weight: 600;
  }

  .phone-nav .nav-item .item-top .js-toggle .icon-wrap,
  .phone-nav .nav-item .item-bottom .bottom-section .section-top .icon-wrap,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item .icon-wrap,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item > :not(a) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background-color: var(--theme);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .phone-nav .nav-item .item-top .js-toggle .icon-wrap img,
  .phone-nav .nav-item .item-bottom .bottom-section .section-top .icon-wrap img,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item .icon-wrap img,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item > :not(a) img,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item > :not(a) svg {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(0) invert(1) !important;
    transition: transform 0.3s ease;
  }

  .phone-nav .nav-item .item-top.active .js-toggle .icon-wrap {
    background-color: var(--aok-blue);
  }

  .phone-nav .nav-item .item-top.active .js-toggle .icon-wrap img {
    transform: rotate(90deg);
  }

  .phone-nav .nav-item .item-bottom {
    display: none;
    background-color: #fcfcfc;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 20px 35px;
    border-bottom: 1px solid #f9f9f9;
    background-color: #fff;
    transition: all 0.3s;
  }

  .phone-nav .nav-item .item-bottom .bottom-section:last-child .section-top {
    border-bottom: none;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top .item-link {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active {
    background-color: #fffbfb;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active .item-link {
    color: var(--theme);
    font-weight: 700;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active .icon-wrap {
    background-color: var(--aok-blue);
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active .icon-wrap img {
    transform: rotate(90deg);
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom {
    width: 100%;
    display: none;
    background-color: #fff;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 50px;
    border-bottom: 1px solid var(--surface-page);
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item a {
    font-size: 14px;
    color: var(--text-body);
    flex: 1;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active a {
    color: var(--theme);
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active > :not(a) {
    background-color: var(--aok-blue) !important;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active > :not(a) img,
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active > :not(a) svg {
    transform: rotate(90deg) !important;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-content {
    display: none;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    padding: 15px 20px 20px 50px;
    background-color: #fff;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list .three-item {
    background-color: #f7f8fa;
    border-radius: 4px;
    overflow: hidden;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list .three-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 5px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.3;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list .three-item a:active {
    background-color: var(--theme);
    color: #fff;
  }

  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px;
  }

  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item {
    width: 100%;
    margin-right: 0 !important;
    padding-left: calc(var(--padding) + 1em);
    padding-right: calc(var(--padding) + 1em);
    border-bottom: var(--border);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .text {
    font-size: 14px;
    color: var(--text-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }

  .phone-nav .nav-item .item-bottom.about-head-bottom {
    padding-left: 1em;
    padding-right: 1em;
  }

  .phone-nav .nav-item .item-bottom.about-head-bottom .item {
    margin-top: 6px;
  }

  .phone-nav .nav-item .item-bottom.about-head-bottom .item .text {
    font-size: 14px;
    color: var(--text-body);
    text-align: center;
  }

  .phone-nav .nav-item .item-bottom.about-head-bottom .item .text:hover {
    color: var(--theme);
  }

  .header-wrap .other .lang .lang-head .icon img {
    filter: none !important;
    opacity: 1 !important;
  }

  .header-wrap .other .search {
    width: 40px;
    height: 40px;
    margin-right: 0;
    justify-content: center;
    position: relative;
    color: var(--header-search-color) !important;
  }

  .header-wrap .other .search img {
    display: none !important;
  }

  .header-wrap .other .search .search-icon {
    display: block;
    width: 20px;
    height: 20px;
  }

  .header-wrap .other .lang .lang-head .current-text, .header-wrap .other .lang .lang-head .current-text a.text {
    color: var(--header-lang-color) !important;
  }

  .header-wrap .other .lang {
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .header-wrap .other .line {
    background-color: var(--border-soft) !important;
  }
}

@media (max-width: 992px) {
  body, p, li, dd, td, th, input, textarea, select {
    font-size: 15px;
    line-height: 1.72;
  }

  .common-banner .text .banner-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .common-banner .text .banner-desc {
    font-size: 16px;
    line-height: 1.72;
  }

  .common-sec-title .main-t, .custom-sec-title .main-t, .aok-section-header .zh, .section-header h2, .section-header-flex .main-t {
    font-size: 28px;
    line-height: 1.32;
  }

  footer .footer-wrap {
    flex-wrap: wrap;
  }

  footer .footer-wrap .footer-left {
    width: 100%;
  }

  footer .footer-wrap .footer-right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    order: -1;
    margin-bottom: 30px;
  }

  footer .footer-wrap .footer-right .foot-qrcode-area .item .img {
    width: 105px;
    height: 105px;
  }

  footer .footer-wrap .footer-right .foot-qrcode-area {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .mobile-contact-bar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  footer .footer-wrap .footer-left .foot-nav {
    display: none;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item {
    margin-bottom: 15px;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .t-link {
    color: var(--theme);
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .phone-icon span:nth-child(1) {
    background-color: var(--theme);
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .phone-icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: var(--theme);
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-b {
    display: none;
    padding-left: 1em;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon {
    display: block;
    position: relative;
    width: 15px;
    height: 15px;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span {
    background-color: #334155;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--duration);
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span:nth-child(1) {
    width: 100%;
    height: 1px;
  }

  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span:nth-child(2) {
    width: 1px;
    height: 100%;
  }

  .foot-aside {
    display: none;
  }

  .product-list-page .pro-filter-area {
    display: none;
  }

  .product-list-page .phone-toggle-form-btn {
    display: block;
    background-color: var(--theme);
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-top: 35px;
    color: #fff;
  }

  .mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background: var(--aok-red);
    box-shadow: 0 -2px 10px rgba(230,0,18,0.25);
    padding: 4px 0 env(safe-area-inset-bottom);
  }

  .mobile-contact-bar .mc-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    line-height: 1.35;
    padding: 6px 10px;
  }

  .mobile-contact-bar .mc-item img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
  }

  .mobile-contact-bar .mc-inquiry {
    font-weight: 600;
    font-size: 12px;
    color: #fff;
  }

  body {
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 65px;
  }

  body, p, li, dd, td, th, input, textarea, select {
    font-size: 15px;
    line-height: 1.68;
  }

  .common-banner .text .banner-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .common-banner .text .banner-desc, .sub-title, .advantage-sub-title, .cate-hero-intro, .category-intro-block, .article-content, .detail-content, .fw-content, .item-desc, .desc, .summary {
    font-size: 15px;
    line-height: 1.68;
  }

  .common-sec-title .main-t, .custom-sec-title .main-t, .aok-section-header .zh, .section-header h2, .section-header-flex .main-t {
    font-size: 24px;
    line-height: 1.34;
  }

  .common-sec-title .sub-t, .custom-sec-title .sub-t, .aok-section-header .en, .section-header .sub-title, .cate-subtitle {
    font-size: 13px;
    line-height: 1.45;
  }

  .header-wrap .logo img {
    width: 120px;
    object-fit: contain;
  }

  .header-wrap .other .lang .lang-head .icon img {
    width: 14px;
  }

  .header-wrap .other .head-contact {
    display: none;
  }

  .phone-nav .nav-item .item-top a {
    font-size: 16px;
  }

  .phone-nav .nav-item .item-bottom .bottom-section .section-top .item-link {
    font-size: 14px;
  }

  .header-wrap .other .lang .lang-head .current-text {
    display: block !important;
    color: var(--header-lang-color) !important;
  }

  .header-wrap .other .search {
    margin-right: 0;
  }

  .header-wrap .other .lang {
    margin-left: 0;
    margin-right: 0;
  }

  .phone-btn {
    margin-left: 0;
  }

  .common-banner .pic img {
    height: 260px;
    object-fit: cover;
  }

  .common-banner .text .banner-desc {
    padding-bottom: 2.5rem;
  }

  .common-banner .text .banner-desc br {
    display: none;
  }

  .common-pagination .item, .common-pagination .fyprev, .common-pagination .fynext {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-size: 12px;
    border-radius: 4px;
  }

  .common-pagination .page-dots {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .search-list-page .search-form {
    --h: 40px;
  }

  .search-list-page .search-form input, .search-list-page .search-form button, .search-list-page .search-list .item .title {
    font-size: 14px;
  }
}

@media (max-width: 1200px) and (prefers-color-scheme: dark) {
  html body .header-wrap .other,
  html body header.active .header-wrap .other,
  html body header.hover .header-wrap .other {
    --header-search-color: rgba(255, 255, 255, 0.92);
    --header-lang-color: rgba(255, 255, 255, 0.92);
    --header-menu-color: rgba(255, 255, 255, 0.92);
  }
}

.more-btn,
.more-btn.more-btn-light,
.more-btn.more-btn-rect {
  border-radius: 6px !important;
}

.more-btn:hover .more-text {
  transform: translateX(2px);
}

.more-btn:hover .more-icon {
  transform: translateX(4px);
}


/* 公共按钮：文字继承颜色，箭头统一用 Unicode，避免乱码 */
.more-btn .more-text {
  color: inherit;
}
.more-btn .more-text::after {
  content: " \2192";
}
