header {
  width: 100%;
  --header-color: var(--theme-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

header::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(30px);
  transform: scale();
}

body.scrolled header,
body.scrolled .mobile-nav {
  --header-h: 90px;
}

body.scrolled header::after {
  top: 0;
}

header .main,
header .main-thin {
  position: relative;
  z-index: 1;
  padding: 0 var(--main-thin-margin);
  margin: 0;
}

.header-wrap .logo {
  height: var(--header-h);
  margin-right: max(20px, 60 * var(--px));
  transition: 0.3s;
}

header.theme-light {
  --header-color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

header.theme-light .header-wrap .logo,
header.theme-light .search-wrap,
header.theme-light .lang-curr,
header.theme-light .btn-large-nav-expand i {
  filter: url(#white-overlay);
}

header.theme-light::after {
  background: rgba(26, 54, 93, .5);
}

.btn-large-nav-expand i {
  background-color: #fff;
}

.header-wrap .nav {
  flex-shrink: 0;
  margin-right: 20px;
}

.header-wrap .nav-ul-f {
  gap: max(20px, 60 * var(--px));
}

.header-wrap .nav-a-f {
  height: var(--header-h);
  line-height: var(--header-h);
  color: var(--header-color);
  display: block;
  transition: 0.3s;
}

.header-wrap .nav-li-f:hover .nav-a-f,
.header-wrap .nav-a-s:hover {
  color: var(--theme-color-blue);
}

header.theme-light .header-wrap .nav-li-f:hover .nav-a-f {
  color: var(--theme-color-light-blue);
}

.header-wrap .nav-li-f:hover .nav-ul-s {
  visibility: visible;
  transform: translate(0, 0);
  opacity: 1;
}

.header-wrap .nav-ul-s {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  transform: translate(0, -20px);
  transition: .3s;
  z-index: 999;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
  visibility: hidden;
  opacity: 0;
}

.header-wrap .nav-ul-s {
  width: 100%;
}

.header-wrap .nav-a-s {
  padding: var(--px-20-40);
}

.header-area-r {
  gap: 10px;
}

.lang-wrap {
  position: relative;
  cursor: pointer;
}

.lang-curr {
  border-radius: 300px;
  padding: 0 20px;
  height: 40px;
  gap: 5px;
  color: var(--header-color);
}

.lang-cont {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
  border-radius: 2px;
}

.lang-cont-area {
  border-radius: 10px;
  overflow: hidden;
}

.lang-cont a {
  background-color: #fff;
  padding: 10px 0;
  color: #000;
}

.lang-wrap:hover .lang-cont {
  visibility: visible;
  opacity: 1;
  transform: unset;
}

.index-banner {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.index-banner-plate {
  position: absolute;
  bottom: var(--section-padding);
  left: 0;
}

.index-banner-plate .slogan {
  font-size: max(40px, 88 * var(--px));
  line-height: 1.3;
}

.roll-wrap {
  width: 60px;
  height: 60px;
  margin-top: var(--px-20-40);
  position: relative;
  cursor: pointer;
}

.roll-wrap span {
  width: max-content;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 30px), -50%);
}

.roll {
  height: 100%;
  border-radius: 50%;
  background-color: var(--theme-color-blue);
  position: relative;
  --num: 1s;
}

.roll i {
  width: 16px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/arrow-bottom.svg) 50%/contain no-repeat;
  animation: scrollHintAngleMove calc(var(--num) * 3) linear infinite;
  opacity: 0;
  z-index: 1
}

.roll i:nth-of-type(2) {
  animation-delay: calc(var(--num) * 1)
}

.roll i:nth-of-type(3) {
  animation-delay: calc(var(--num) * 2)
}

.roll:hover {
  border-color: var(--theme-color);
}

.roll:hover .roll-wrap .roll {
  --num: 0.2s;
}

@keyframes scrollHintAngleMove {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(.8)
  }

  33% {
    opacity: 1;
    transform: translateY(-5px) scale(1)
  }

  67% {
    opacity: 1;
    transform: translateY(5px) scale(1)
  }

  100% {
    opacity: 0;
    transform: translateY(10px) scale(.8)
  }
}

.roll-wrap .ring {
  --num: 1.3s;
}

.roll-wrap .ring i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  border-radius: 50%;
  border: 1px solid #1A365D;
  animation: ringMove calc(var(--num) * 2) linear infinite;
}

.roll-wrap .ring i:nth-of-type(2) {
  animation-delay: calc(var(--num) * 1)
}

@keyframes ringMove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.8)
  }
}

.index-sec1 .sec-area {
  width: 45%;
}

.color-white {
  color: #fff;
}

.bg-blue {
  background-color: var(--theme-color-blue);
}

.index-sec1::after,
.index-sec1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.index-sec1::after {
  height: 100%;
  background: linear-gradient(to bottom, #F4F8FB, transparent 30%);
  /* background: url(../images/bg1.png) no-repeat 100%; */
  z-index: 2;
  background-position: top;
}

.index-sec1::before {
  height: 100%;
  background: linear-gradient(180.00deg, rgba(4, 20, 43, 1), rgba(4, 20, 43, 0) 106.25%);
  z-index: 1;
}

.main-roof {
  position: relative;
  z-index: 10;
}

.learn-more {
  width: max-content;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  transition: .3s;
  cursor: pointer;
  padding: 10px 0;
  border-radius: 5px;
}

.color-white .learn-more {
  color: #fff;
}

.learn-more .icon {
  --icon-lay-w: 30px;
}

.learn-more .icon img {
  margin-left: 3px;
}

.learn-more:hover {
  padding-left: 20px;
  padding-right: 10px;
  color: var(--theme-color-blue);
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
}

.index-sec1 .data-wrap {
  margin-top: max(30px, 90 * var(--px));
}

.index-sec1 .data-wrap .item {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.index-sec1 .data-wrap .item:nth-child(even) {
  flex-direction: row-reverse;
}

.index-sec1 .data-wrap .item .data {
  width: 50%;
  border-top: 1px solid #C9DCE9;
  margin-top: -1px;
}

.data-wrap .item .data {
  padding: var(--px-10-20) 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
}

.data-wrap .item .data span {
  font-size: max(30px, 58 * var(--px));
  font-weight: 400;
  margin-right: 5px;
}

.index-sec1 .sec-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-25%, 28%);
}

.index-sec2 .sec-wrap-sub {
  padding-bottom: 0;
}

.index-sec2 .slogan {
  position: absolute;
  bottom: 20%;
  right: 0;
}

.index-sec2 .sec-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 185%;
  width: 60%;
  background: linear-gradient(90.00deg, rgba(53, 84, 128, .7) 0.034%, rgba(53, 84, 128, 0) 100%);
  border-top-left-radius: 65%;
}

.index-sec2 .sec-top {
  width: 30%;
}

.index-sec2 .sec-area img {
  height: 85vh;
}

.index-sec2 .ceo-name {
  margin-top: max(30px, 70 * var(--px));
}

.swiper-handle {
  gap: 20px;
  position: absolute;
  bottom: 10%;
  left: var(--main-margin);
  z-index: 15;
  cursor: pointer;
  user-select: none;
}

.swiper-handle-btn {
  --icon-lay-w: 50px;
  --icon-lay-bg: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  cursor: pointer;
}

.swiper-handle-btn:hover {
  background-color: #fff;
}

.swiper-handle-btn:hover img {
  filter: url(#blue-overlay)
}

.index-sec3 .sec-top {
  width: 50%;
}

.index-sec3 .sec-area {
  width: max(300px, 690 * var(--px));
  aspect-ratio: 1;
}

.index-sec3 .honor-wrap {
  border-top: 1px solid rgba(255, 255, 255, .3);
  position: relative;
}

.index-sec3 .honor-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, .3);
}

.index-sec3 .honor-wrap .swiper-slide {
  width: 50%;
  padding: var(--px-20-40) 20px;
  height: auto;
  text-align: center;
}

.index-sec3 .honor-wrap .swiper-slide::after,
.index-sec3 .honor-wrap .swiper-slide::before {
  content: '';
  width: 35px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.index-sec3 .honor-wrap .swiper-slide::after {
  left: max(25px, 8%);
  background: url(../images/honor-icon.png) no-repeat center;
}

.index-sec3 .honor-wrap .swiper-slide::before {
  right: max(25px, 8%);
  transform: translateY(-50%) scaleX(-1);
  background: url(../images/honor-icon.png) no-repeat center;
}

.index-sec3 .honor-wrap .swiper-slide .title {
  font-size: var(--font-18);
}

.index-sec3 .honor-wrap .swiper-slide .intro {
  font-size: var(--font-24);
  font-weight: bold;
  margin-top: 5px;
}

.index-sec3 .label {
  position: absolute;
  width: max(150px, 200 * var(--px));
  padding: 10px;
  font-size: var(--font-20);
  font-weight: 300;
  gap: var(--px-10-20);
  border-radius: 300px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.15);
  justify-content: flex-end;
  animation: float 3s ease-in-out infinite;
  color: #fff;
}

.index-sec3 .label:hover {
  background-color: rgba(26, 54, 93, .5);
}

.index-sec3 .label .icon {
  --icon-lay-w: 40px;
  --icon-lay-bg: rgba(0, 0, 0, .5)
}

.index-sec3 .label1 {
  top: 25%;
  left: 15%;
}

.index-sec3 .label2 {
  top: 71%;
  left: 62%;
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.index-sec3 .sec-bg img {
  margin-top: -5.5%;
  height: 115%;
}

.index-sec4 .type-list .list {
  padding: 10px 0;
  font-weight: 300;
  display: block;
  /* transition: .3s; */
}

.index-sec4 .type-list .list:hover {
  color: var(--theme-color-blue);
  font-weight: bold;
}

.index-sec4 .sec-wrap {
  gap: 40px;
}

.index-sec4 .sec-area,
.index-sec4 .news-card {
  gap: var(--px-20-40);
}

.index-sec4 .card {
  color: #fff;
  padding: var(--px-20-40);
  border-radius: 30px;
  justify-content: flex-end;
  font-weight: 300;
  background-color: var(--theme-color-light-blue);
}

.index-sec4 .card .title {
  font-size: var(--font-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

.index-sec4 .card .info {
  gap: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.index-sec4 .card .info span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
}

.index-sec4 .card1 {
  width: max(200px, 460 * var(--px));
  aspect-ratio: 46 / 60;
  margin-top: calc(max(150px, 340 * var(--px)) * .5);
}

.index-sec4 .card2 {
  width: max(150px, 340 * var(--px));
  aspect-ratio: 1;
}

.index-sec4 .card3 {
  width: max(260px, 540 * var(--px));
  aspect-ratio: 54 / 32;
}

.index-sec5 .sec-title {
  color: var(--theme-color-blue);
}

.index-sec5 .learn-more {
  font-weight: bold;
}

.index-sec4,
.index-sec5 {
  z-index: 1;
}

.page-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.sec-border {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.footer-wrap {
  gap: max(30px, 15%);
  border-radius: max(30px, 80 * var(--px));
  padding: calc(2 * var(--px-20-40));
  background-position: right;
  background-color: rgba(26, 54, 93, .8);
  backdrop-filter: blur(10px);
}

.footer-wrap .area-left {
  flex-shrink: 0;
}

.footer-wrap .slogan {
  line-height: 1.2;
}

.footer-wrap .contact-type .item {
  gap: 10px;
}

.footer-wrap .qr-wrap {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  width: max-content;
}

.footer-wrap .qr-wrap img {
  margin-bottom: 10px;
  width: 120px;
}

.footer-wrap .area-middle {
  flex-shrink: 0;
}

.footer-wrap .area-middle .nav {
  gap: 30px;
  margin-right: max(30px, 87 * var(--px));
}

.footer-wrap .area-middle a {
  font-size: var(--font-24);
  font-weight: 300;
}

.footer-wrap a {
  color: #fff;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright-wrap {
  padding: var(--px-20-40);
}

.copyright span {
  margin: var(--px-10-20);
  opacity: .5;
}

.copyright-wrap .privacy {
  gap: 20px;
}

.breadcrumb {
  gap: 10px;
  position: absolute;
  top: calc(var(--header-h) + 10px);
  left: var(--main-thin-margin);
  color: #fff;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb img {
  filter: url(#white-overlay);
  height: 12px;
}

.banner .slogan {
  position: absolute;
  top: 40%;
  left: 0;
  color: #fff;
}

.banner .slogan .title {
  font-size: max(28px, 88 * var(--px));
}

.banner .slogan .intro {
  font-weight: 300;
  font-size: var(--font-24);
  margin-top: var(--px-10-20);
}

.banner .page-intro {
  position: absolute;
  bottom: var(--px-20-40);
  left: 50%;
  transform: translateX(-50%);
  width: 45em;
  font-size: var(--font-24);
  line-height: 2;
}

.aboutus-sec1 .data-wrap {
  justify-content: center;
  gap: max(20px, 20%);
  text-align: center;
}

.aboutus-sec1 .icon {
  --icon-lay-bg: var(--theme-color-blue);
}

.aboutus-sec1 .icon img {
  width: 50%;
}

.page-sec-top {
  text-align: center;
}

.page-sec-top .sec-title {
  color: var(--theme-color-blue);
  position: relative;
}


.page-sec-top .sec-title::after {
  content: '';
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, .5em);
  border-radius: 5px;
}

.page-sec-top .sec-title::after {
  width: 2.5em;
  background: linear-gradient(to right, var(--theme-color-blue) 50%, var(--theme-color-light-blue) 50%, var(--theme-color-light-blue));
}

.page-sec-top.theme-white .sec-title {
  color: #fff;
}

.page-sec-top.theme-white .sec-title::after {
  background: linear-gradient(to right, #fff 50%, var(--theme-color-light-blue) 50%, var(--theme-color-light-blue));
}

.aboutus-sec3 .sec-bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.aboutus-sec3 .sec-bg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.aboutus-sec3 .sec-bg1 img,
.aboutus-sec3 .sec-bg2 img {
  width: 100%;
}

.aboutus-sec3 .card-wrap {
  --column: 2;
}

.aboutus-sec3 .leader-wrap .item {
  padding: 1px;
  border-radius: 30px;
  aspect-ratio: 70 / 54;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .3);
}

.aboutus-sec3 .leader-wrap .item-wrap {
  height: 100%;
  padding: var(--px-20-40);
  border-radius: 30px;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}

.aboutus-sec3 .leader-wrap .item-wrap .title {
  font-size: max(26px, 38 * var(--px));
  font-weight: bold;
}

.aboutus-sec3 .leader-wrap .item-wrap .intro {
  font-size: var(--font-24);
}

.aboutus-sec3 .leader-wrap .item-wrap .photo {
  position: absolute;
  bottom: 0;
  right: 20px;
  height: 90%;
}

.aboutus-sec3 .leader-wrap .icon {
  position: absolute;
  left: var(--px-20-40);
  bottom: var(--px-20-40);
}

.aboutus-sec3 .icon {
  --icon-lay-w: 50px;
  --icon-lay-bg: rgba(255, 255, 255, .1);
}

.aboutus-sec4 .department {
  gap: 10px;
}

.aboutus-sec4 .department .item {
  width: 160px;
  height: 480px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  /* background-color: rgba(255, 255, 255, .15); */
  background-color: var(--theme-color-blue);
  font-weight: 300;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.department .hidden-item {
  display: none;
}

.aboutus-sec4 .department .cover {
  padding: 20px;
}

.aboutus-sec4 .department .cover .serial {
  font-size: var(--font-20);
}

.aboutus-sec4 .department .title {
  font-size: var(--font-22);
}

.aboutus-sec4 .department .info {
  padding: var(--px-20-40);
  display: none;
}

.aboutus-sec4 .department .item.active {
  width: auto;
  flex: 1;
}

.aboutus-sec4 .department .item.active .cover {
  display: none;
}

.aboutus-sec4 .department .item.active .info {
  display: block;
}

.aboutus-sec4 .department .item .cover .intro {
  font-size: var(--font-18);
  font-weight: 300;
}

.aboutus-sec4 .department .item .icon {
  background-color: var(--theme-color);
}

.aboutus-sec3 {
  margin-bottom: max(20px, var(--header-h));
  ;
}

.aboutus-sec3 .team-wrap .item {
  border-radius: 30px;
  box-shadow: 0px 10px 20px 0px rgba(53, 84, 128, 0.1);
  background: #fff;
  margin-top: max(20px, 60 * var(--px));
}

.aboutus-sec3 .team-wrap .item:nth-child(even) {
  flex-direction: row-reverse;
}

.aboutus-sec3 .team-wrap .item .pic {
  width: 50%;
  border-radius: 30px;
  overflow: hidden;
}

.aboutus-sec3 .team-wrap .item .txt {
  width: 50%;
  padding: var(--px-20-40);
  position: relative;
}

.aboutus-sec3 .team-wrap .item .title {
  font-size: max(24px, 44 * var(--px));
}

.aboutus-sec3 .team-wrap .item .intro {
  font-weight: 300;
  font-size: var(--font-20);
  margin-bottom: var(--px-20-40);
}

.aboutus-sec3 .team-wrap .item .serial {
  position: absolute;
  bottom: var(--px-20-40);
  left: var(--px-20-40);
  font-weight: 300;
  font-size: var(--font-24);
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: none;
}

.dialog-wrap {
  width: 70%;
  height: 65vh;
  background-color: #fff;
  z-index: 1;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.dialog-cont {
  height: 100%;
}

.dialog-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, .5);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(0, 0, 0, .15);
  cursor: pointer;
}

.dialog-close:hover {
  background-color: var(--theme-color-blue);
  border-color: var(--theme-color-blue);
}

.dialog-close:hover img {
  filter: url(#white-overlay);
}

.dialog .leader-intro {
  border-radius: 30px;
  height: 100%;
  display: none;
}

.dialog .leader-intro .pic {
  border-radius: 30px;
  width: 30%;
  height: 100%;
  background-image: url(../images/img0129-5.jpg);
  position: relative;
  flex-shrink: 0;
  padding: var(--px-10-20) var(--px-10-20) 0;
}

.dialog .leader-intro .pic img {
  object-position: bottom;
}

.dialog .leader-intro .txt {
  padding: max(30px, 68 * var(--px));
  margin: var(--px-20-40) 0;
  overflow-y: auto;
}

.dialog .leader-intro .txt .title {
  font-size: max(24px, 38 * var(--px));
  font-weight: bold;
  color: var(--theme-color-blue);
}

.dialog .leader-intro .txt .position {
  font-size: var(--font-24);
  color: var(--theme-color-blue);
}

.dialog .leader-intro .txt .intro {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
  padding-top: var(--px-10-20);
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.plate-wrap {
  border-radius: 30px;
  cursor: pointer;
}

.plate-wrap .pic {
  border-radius: 30px;
  overflow: hidden;
  padding: max(30px, 75 * var(--px));
}

.plate-wrap .txt {
  padding: var(--px-20-40) max(30px, 75 * var(--px));
}

.product-sec1 {
  margin-top: calc(max(50px, 120 * var(--px)) * -1);
  padding-bottom: 20px;
}

.product-sec1 .card-wrap {
  --column: 2;
  --gap: max(30px, 80 * var(--px));
}

.product-sec1 .plate-wrap {
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-sec1 .item {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0px 5px 10px 0px rgba(53, 84, 128, 0.1);
}

.product-sec1 .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: .3s;
}

.product-sec1 .pic,
.product-sec1 .bg,
.product-sec1 .txt {
  width: 100%;
  aspect-ratio: 68 / 24;
  height: auto;
}

.product-sec1 .txt {
  position: relative;
  transition: .3s;
}

.product-sec1 .title {
  font-size: max(24px, 38 * var(--px));
  color: var(--theme-color-blue);
  transition: .3s;
}

.product-sec1 .intro {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
  opacity: 0;
  transition: .3s;
  text-align: left;
}

.product-sec1 .icon {
  --icon-lay-bg: var(--theme-color-light-blue);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-sec1 .icon img {
  filter: url(#blue-overlay);
}

@media (min-width: 576px) {
  .product-sec1 .item:hover .plate-wrap {
    background-color: rgba(53, 84, 128, .8);
  }

  .product-sec1 .item:hover .txt {
    transform: translateY(-15%);
  }

  .product-sec1 .item:hover .intro {
    opacity: 1;
    color: #fff;
  }

  .product-sec1 .item:hover .icon {
    opacity: 0;
  }

  .product-sec1 .item:hover .bg {
    height: 100%;
    aspect-ratio: unset;
  }

  .product-sec1 .item:hover .title {
    color: #fff;
  }
}

.product-sec2 .swiper-slide {
  width: calc(100% - var(--main-margin) * 2);
  position: relative;
}

.product-sec2 .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
  z-index: 2;
  backdrop-filter: blur(15px);
  transition: .3s;
}

.product-sec2 .swiper-slide-active::after {
  opacity: 0;
  transform: scale(0);
}

.product-sec2 .slide-wrap .title {
  border-radius: 30px;
  background-color: var(--theme-color-blue);
  padding: var(--px-20-40) var(--px-20-40) calc(var(--px-20-40) * 3);
  font-size: max(20px, 48 * var(--px));
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.product-sec2 .chart-wrap {
  border-radius: 30px;
  background-color: #fff;
  padding: var(--px-20-40) var(--px-20-40) calc(var(--px-20-40) * 3);
  margin-top: calc(var(--px-20-40) * -2);
  box-shadow: 0px 5px 10px 0px rgba(53, 84, 128, 0.1);
}

.product-sec2 .chart-wrap .caption {
  font-size: max(18px, 38 * var(--px));
  font-weight: bold;
  color: var(--theme-color-blue);
}

.product-sec2 .slide-wrap .info {
  border-radius: 30px;
  background: linear-gradient(#F2F6F8, #F9FAFC);
  font-weight: 300;
  color: var(--theme-color-blue);
  padding: var(--px-20-40);
  margin-top: calc(var(--px-20-40) * -2);
  box-shadow: 0px 5px 10px 0px rgba(53, 84, 128, 0.1);
}

.product-sec2 .slide-wrap .info p {
  margin-bottom: 10px;
}

.product-sec2 .slide-wrap .info span {
  display: inline-block;
  width: 4em;
  text-align: justify;
  text-align-last: justify;
}

.product-sec2 .slide-wrap .info i {
  font-style: normal;
}

.product-sec2 .slide-wrap {
  padding: 0 5px 10px;
}

.product-sec2 .cover {
  border-radius: 30px;
  background-color: rgba(26, 54, 93, .8);
  overflow: hidden;
}

.product-sec2.pass .cover {
  display: none;
}

.product-sec2 .cover-wrap {
  height: 100%;
  backdrop-filter: blur(15px);
  color: #fff;
  gap: max(30px, 65 * var(--px));
  position: relative;
  padding: 10px;
}

.product-sec2 .cover-wrap .title {
  font-size: max(26px, 48 * var(--px));
  font-weight: bold;
}

/* .product-sec2 .cover-wrap .btn {
  font-size: max(22px, 38 * var(--px));
  font-weight: bold;
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 300px;
  color: #fff;
}

.product-sec2 .cover-wrap .btn-wrap {
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 300px;
  padding: var(--px-10-20) max(30px, 100 * var(--px));
} */

/* --- 核心按钮样式开始 --- */

/* 链接容器，处理布局 */
.btn-link {
  text-decoration: none;
  display: inline-block;
  /* 确保光效不被切掉 */
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.1));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 悬停时链接容器的微弱上浮 */
.btn-link:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 20px rgba(0, 210, 255, 0.4));
}

/* 实际的按钮主体 */
.btn {
  /* 保留你提供的核心样式 */
  font-size: max(22px, 38 * var(--px));
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* 关键：裁切超出内容 */
  display: inline-flex;
  justify-content: center;
  align-items: center;

  /* 整合了重复的属性，优化了 padding */
  padding: 20px max(30px, 100 * var(--px));
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 300px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  /* 背景处理：使用半透明渐变增强质感 */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* --- 炫酷特效层 --- */

/* 1. 动态流光层 */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  /* 初始在左侧外部 */
  width: 50%;
  /* 宽度为按钮的一半 */
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-25deg);
  /* 倾斜角度 */
  z-index: 1;
  pointer-events: none;
  transition: left 0.5s;
}

/* 悬停时流光划过 */
.btn:hover::before {
  left: 150%;
  /* 移动到右侧外部 */
  transition: left 0.7s ease-in-out;
}

/* 2. 内部光泽/渐变背景 */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

/* 悬停时的边框高亮和背景微变 */
.btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1), 0 0 15px rgba(0, 210, 255, 0.3);
}

/* 文字容器，确保文字在特效之上 */
.btn-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 悬停时文字轻微放大 */
.btn:hover .btn-wrap {
  transform: scale(1.05);
}

/* 点击时的按压效果 */
.btn-link:active .btn {
  transform: scale(0.96) translateY(2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 装饰用的小图标（可选） */
.icon-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* 悬停时显示箭头 */
.btn:hover .icon-arrow {
  width: auto;
  height: auto;
  border: none;
  opacity: 1;
  transform: translateX(0);
  margin-left: 8px;
}

/* 粒子容器基础样式 */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* 防止粒子溢出容器 */
  z-index: 0;
  /* 确保在内容下方 */
  pointer-events: none;
  /* 不干扰鼠标点击 */
}

/* 单个粒子样式 */
.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  will-change: transform, opacity;
  /* 性能优化 */
}


.product-sec2 .cover-wrap .intro {
  font-size: var(--font-24);
  text-align: center;
}

.product-sec3 {
  margin-bottom: max(30px, 10%);
}

.product-sec3 .swiper {
  padding: max(60px, 5%) 0 max(50px, 15%);
}

.product-sec3 .swiper-slide {
  width: max(300px, 580 * var(--px));
}

.product-sec3 .swiper-slide-active .slide-wrap {
  transform: scale(1.5);
  opacity: 1;
}

.product-sec3 .slide-wrap {
  background-color: #fff;
  border-radius: 30px;
  padding: max(30px, 15%) max(50px, 20%);
  color: var(--theme-color-blue);
  text-align: center;
  position: relative;
  opacity: .5;
  transition: .3s;
}

.product-sec3 .slide-wrap::after,
.product-sec3 .slide-wrap::before {
  content: '';
  width: 35px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.product-sec3 .slide-wrap::after {
  left: max(25px, 10%);
  background: url(../images/honor-icon-left.svg) no-repeat;
}

.product-sec3 .slide-wrap::before {
  right: max(25px, 10%);
  background: url(../images/honor-icon-right.svg) no-repeat;
}

.product-sec3 .slide-wrap .title {
  font-size: var(--font-18);
}

.product-sec3 .slide-wrap .intro {
  font-size: var(--font-24);
  font-weight: bold;
  margin-top: 10px;
}

.product-sec3 .slide-wrap .rank {
  font-size: max(24px, 38 * var(--px));
  font-weight: bold;
  margin-top: 10px;
}

.product-sec3 .swiper-handle {
  bottom: max(20px, 12%);
  left: 50%;
  transform: translateX(-50%);
}

.product-sec3 .swiper-handle .icon {
  transition: .3s;
}

.product-sec3 .swiper-handle .icon:hover {
  --icon-lay-bg: var(--theme-color-blue);
}

.product-sec3 .swiper-handle .icon:hover img {
  filter: url(#white-overlay);
}

.product-sec3 .swiper-handle img {
  filter: url(#blue-overlay);
}

.page-l-sec-top {
  text-align: left;
}

.page-l-sec-top .sec-title::after {
  left: 0;
  transform: translate(0, .5em);
}

.test-sec1 .sec-tips {
  font-size: var(--font-18);
  font-weight: 300;
}

.question-item {
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(53, 84, 128, .1);
  padding: var(--px-20-40);
  border-radius: 30px;
  margin-top: var(--px-20-40);
}

.question-top {
  align-items: flex-start;
}

.question-serial {
  position: relative;
  width: max(30px, 60 * var(--px));
  color: #fff;
}

.question-serial span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  font-weight: bold;
  font-size: var(--font-16);
}

.question-title {
  flex: 1;
  font-size: var(--font-24);
  font-weight: bold;
  margin-left: var(--px-10-20);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.option-wrap {
  padding-left: calc(max(30px, 60 * var(--px)) + var(--px-10-20));
  gap: 5px;
  flex-wrap: wrap;
}

.option-item {
  margin-top: var(--px-20-40);
  width: 49%;
  gap: 15px;
  cursor: pointer;
}

.option-choose {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: rgba(26, 54, 93, .1);
  flex-shrink: 0;
}

.option-item.active .option-choose {
  background: url(../images/checked.svg) no-repeat center / 15px;
  background-color: rgba(26, 54, 93, 1);
}

.option-title {
  font-weight: 300;
  font-size: var(--font-24);
}

.test-sec1 .agreement {
  padding: max(20px, 60 * var(--px)) 10%;
  font-size: var(--font-18);
  font-weight: 300;
}

.test-sec1 .agreement .option-item {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  padding-bottom: var(--px-20-40);
  width: 100%;
  margin-top: 0;
}

.test-sec1 .learn-more {
  background-color: var(--theme-color-blue);
  border-radius: 300px;
  padding: var(--px-10-20);
  padding-left: calc(var(--px-20-40) * 1.5);
  color: #fff;
  gap: max(20px, 100 * var(--px));
  margin: 0 auto;
}

.test-sec1 .learn-more:hover {
  background-color: #fff;
  color: var(--theme-color-blue);
}

.option-card {
  padding: var(--px-20-40) 0;
  margin-left: calc(max(30px, 60 * var(--px)) + var(--px-10-20));
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.option-tips {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
}

.option-cont {
  flex-wrap: wrap;
  gap: 20px;
}

.option-cont .item {
  padding: var(--px-20-40);
  border-radius: 30px;
  background-color: #F4F8FB;
}

.option-cont .item.w33 {
  width: calc((100% - 20px * 2) / 3);
}

.option-cont .item.w50 {
  width: calc((100% - 20px) / 2);
}

.option-cont.color-change .item:nth-child(2) {
  background-color: #E9F1F7;
}

.option-cont.color-change .item:nth-child(3) {
  background-color: #DFEAF3;
}

.option-cont.color-change .item:nth-child(4) {
  background-color: #D5E4EF;
}

.option-cont.color-change .item:nth-child(5) {
  background-color: #CCDEEB;
}

.option-cont .type {
  color: var(--theme-color-blue);
}

.option-cont .type {
  border-left: 4px solid var(--theme-color-blue);
  padding-left: 5px;
}

.option-cont .name {
  font-size: var(--font-18);
  font-weight: 300;
}

.option-cont .rank {
  font-size: var(--font-24);
  font-weight: bold;
}

.option-cont .serial {
  font-size: max(22px, 38 * var(--px));
  font-weight: bold;
}

.option-cont .intro {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
}

.option-bar {
  position: fixed;
  top: 50%;
  left: 20px;
  background-color: #E9F1F7;
  border-radius: 300px;
  width: 60px;
  padding: 10px;
  transform: translateY(-50%);
}

.option-bar-wrap {
  position: relative;
}

.option-bar-cont {
  position: relative;
  z-index: 1;
}

.option-bar .item {
  height: 40px;
  color: rgba(26, 54, 93, .5);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}

.option-bar .item.active {
  color: #fff;
}

.option-bar .option-bar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  background-color: var(--theme-color-blue);
  transition: .3s;
}

.filter-type {
  padding: 5px;
  border-radius: 300px;
  background-color: #fff;
  box-shadow: 0 5px 15px 0 rgba(53, 84, 128, .1);
  font-size: var(--font-18);
  font-weight: 300;
  position: relative;
}

.filter-type-wrap {
  position: relative;
}

.filter-type .item {
  padding: var(--px-10-20) var(--px-20-40);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.filter-type .item.active {
  font-weight: bold;
}

.filter-type-thumb {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme-color-light-blue);
  width: 166px;
  height: 100%;
  border-radius: 300px;
  transition: .3s;
}

.filter {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.filter-curr {
  border-radius: 300px;
  overflow: hidden;
}

.filter .btn {
  color: var(--theme-color);
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  padding: var(--px-10-20) 15px var(--px-10-20) var(--px-20-40);
  transition: .3s;
  gap: calc(var(--px-20-40) * 2);
}

.filter-choose {
  border-radius: 10px;
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(10px);
  z-index: 999;
  background-color: var(--theme-color-light-blue);
  transition: .3s;
  opacity: 0;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(71, 52, 26, 0.1);
  visibility: hidden;
}

.filter-choose .btn {
  display: block;
  padding: 20px;
  border-radius: 0;
  text-align: center;
  border: 0;
}

.filter-choose .btn+.btn {
  border-top: 1px solid #E5E5E5;
}

.filter-choose .btn:hover {
  background-color: var(--theme-color-light-blue);
}

.filter.active .filter-choose {
  opacity: 1;
  transform: translateY(5px);
  visibility: visible;
}

.filter-curr .icon {
  --icon-lay-w: 30px;
  --icon-lay-bg: var(--theme-color-light-blue);
}

.filter-curr .icon img {
  filter: url(#blue-overlay);
}

.notice-sec1,
.news-sec1 {
  min-height: 70vh;
}

.news-top {
  border-radius: 30px;
  overflow: hidden;
  margin-top: max(30px, 60 * var(--px));
  transition: .3s;
  background-color: #fff;
}

.news-top .pic {
  width: 50%;
}

.news-top .txt {
  width: 50%;
  padding: var(--px-20-40);
}

.news-top .txt .title {
  font-size: var(--font-24);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.news-top .txt .intro {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  word-break: break-word;
}

.news-top .txt .time {
  gap: 10px;
  font-weight: 300;
}

.news-top:hover {
  color: #fff;
  background-color: var(--theme-color-blue);
}

.news-top:hover .time img {
  filter: url(#white-overlay);
}

.news-wrap {
  margin-top: max(40px, 60 * var(--px));
}

.news-wrap .card-wrap {
  --gap: max(20px, 60 * var(--px));
}

.news-wrap .item {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(53, 84, 128, 0.1);
  cursor: pointer;
  transition: .3s;
}

.news-wrap .pic {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 44 / 27;
  background-color: var(--theme-color-light-blue);
}

.news-wrap .txt {
  padding: var(--px-20-40);
  font-weight: 300;
  min-height: 200px;
  position: relative;
  transition: .3s;
}

.news-wrap .item:hover {
  background-color: var(--theme-color-blue);
  color: #fff;
}

.news-wrap .item:hover .txt .time img {
  filter: url(#white-overlay);
}

.news-wrap .txt .icon {
  --icon-lay-w: 50px;
  position: absolute;
  bottom: var(--px-20-40);
  right: var(--px-20-40);
  background-color: rgba(255, 255, 255, .1);
}

.news-wrap .txt .title {
  font-size: var(--font-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  word-break: break-word;
}

.news-wrap .txt .wfEditorMode {
  margin-top: 0;
}

.news-wrap .txt .time {
  gap: 10px;
}

.news-wrap .learn-more {
  margin-left: auto;
  margin-right: auto;
}

.news-wrap .learn-more .icon {
  --icon-lay-bg: var(--theme-color-blue);
}

.news-wrap .learn-more .icon img {
  margin-left: 0;
}

.page-banner-title {
  font-size: max(28px, 88 * var(--px));
  color: #1A365D;
  padding-top: var(--header-h);
}

.page-banner-title .sec-wrap-sub {
  padding-bottom: 0;
}

.page-banner-title .breadcrumb,
.page-banner-title .breadcrumb a {
  color: var(--theme-color);
}

.page-banner-title .breadcrumb img {
  filter: url(#theme-overlay);
}

.news-detail-sec1 {
  background-color: #fff;
  padding-bottom: max(30px, 10%);
}

.news-detail-sec1 .news-title {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.news-detail-sec1 .sec-wrap {
  padding-bottom: max(30px, 60 * var(--px));
}

.news-detail-sec1 .label {
  background-color: var(--theme-color-light-blue);
  padding: var(--px-10-20) var(--px-20-40);
  border-radius: 300px;
  font-size: var(--font-18);
  font-weight: 500;
  color: var(--theme-color-blue);
  width: max-content;
}

.news-detail-sec1 .title {
  font-size: max(24px, 68 * var(--px));
  margin-top: var(--px-10-20);
}

.news-detail-sec1 .time {
  gap: 10px;
  margin-top: max(20px, 60 * var(--px));
}

.news-detail-sec1 .txt {
  font-weight: 300;
  font-size: var(--font-18);
}

.news-detail-sec1 .handle-wrap {
  border-top: 1px solid rgba(0, 0, 0, .15);
  font-size: var(--font-18);
}

.news-detail-sec1 .handle-wrap .item {
  width: 50%;
  gap: 10px;
  line-height: 2;
  padding: var(--px-20-40) 0;
}

.news-detail-sec1 .handle-wrap .item:last-child {
  flex-direction: row-reverse;
  text-align: right;
  border-left: 1px solid rgba(0, 0, 0, .15);
}

.news-detail-sec1 .handle-wrap .item .intro p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}

.news-detail-sec1 .learn-more {
  margin-left: auto;
  margin-right: auto;
}

.news-detail-sec1 .learn-more .icon {
  --icon-lay-bg: var(--theme-color-blue);
}

.news-detail-sec1 .learn-more .icon img {
  margin-left: 0;
}

.news-detail-sec2 .learn-more .icon img {
  filter: url(#white-overlay);
}

.notice-wrap {
  margin-top: max(30px, 60 * var(--px));
}

.notice-wrap .item {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(53, 84, 128, 0.1);
  padding: var(--px-20-40);
  gap: 5%;
  transition: .3s;
  cursor: pointer;
  margin-bottom: var(--px-20-40);
}

.notice-wrap .item .time {
  width: 15%;
  color: var(--theme-color-blue);
  flex-shrink: 0;
}

.notice-wrap .item .time .day {
  font-size: max(22px, 48 * var(--px));
  font-weight: bold;
}

.notice-wrap .item .time .year-month {
  font-size: var(--font-24);
}

.notice-wrap .item .title {
  font-size: var(--font-24);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
}

.notice-wrap .item .intro {
  font-size: var(--font-18);
  font-weight: 300;
  margin-top: var(--px-10-20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.notice-wrap .item .learn-more {
  color: var(--theme-color-blue);
  font-weight: 300;
}

.notice-wrap .item .learn-more .icon {
  --icon-lay-w: 30px;
  --icon-lay-bg: var(--theme-color-light-blue);
}

.notice-wrap .item .learn-more .icon img {
  filter: url(#blue-overlay);
}

.notice-wrap>.learn-more {
  margin-left: auto;
  margin-right: auto;
}

.notice-wrap>.learn-more .icon {
  --icon-lay-bg: var(--theme-color-blue);
}

.notice-wrap>.learn-more .icon img {
  margin-left: 0;
}

.notice-wrap .item:hover {
  background-color: var(--theme-color-blue);
  color: #fff;
}

.notice-wrap .item:hover .time,
.notice-wrap .item:hover .learn-more {
  color: #fff;
}

.notice-wrap .item .learn-more:hover {
  color: var(--theme-color-blue) !important;
}

.joinus-sec1 .card-wrap {
  --column: 4;
  --gap: var(--px-20-40);
}

.joinus-sec1 .item {
  position: relative;
}

.joinus-sec1 .item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.joinus-sec1 .news-wrap .txt {
  min-height: 160px;
  font-size: var(--font-24);
  font-weight: normal;
}

.joinus-sec2 .item {
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: var(--px-20-40);
  cursor: pointer;
}

.joinus-sec2 .item-top {
  border-radius: 30px;
  padding: max(12px, 46 * var(--px)) max(20px, 60 * var(--px));
  position: relative;
  gap: max(10px, 10%);
}

.joinus-sec2 .item-top .title {
  font-size: var(--font-24);
  font-weight: bold;
  width: 50%;
}

.joinus-sec2 .item-top .icon {
  position: absolute;
  top: 50%;
  right: max(20px, 60 * var(--px));
  transform: translateY(-50%);
  --icon-lay-bg: var(--theme-color-light-blue);
  --icon-lay-w: 50px;
  transition: .3s;
}

.joinus-sec2 .item-top .icon::after,
.joinus-sec2 .item-top .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-color-blue);
  transition: .3s;
}

.joinus-sec2 .item-top .icon::after {
  width: 1px;
  height: 12px;
}

.joinus-sec2 .item-top .icon::before {
  width: 12px;
  height: 1px;
}

.joinus-sec2 .item-expand {
  padding: max(20px, 60 * var(--px));
  padding-bottom: var(--px-10-20);
  display: none;
}

.joinus-sec2 .item.active .item-top {
  background-color: var(--theme-color-blue);
  color: #fff;
}

.joinus-sec2 .item.active .item-top .icon {
  background-color: rgba(255, 255, 255, .1);
  transform: translateY(-50%) rotate(180deg);
}

.joinus-sec2 .item.active .item-top .icon::after {
  opacity: 0;
}

.joinus-sec2 .item.active .item-top .icon::before {
  background-color: #fff;
}

.joinus-sec2 .job-intro {
  padding-bottom: var(--px-20-40);
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  margin-bottom: var(--px-10-20);
}

.joinus-sec2 .learn-more {
  margin-left: auto;
  margin-right: auto;
}

.joinus-sec2 .learn-more .icon {
  --icon-lay-bg: var(--theme-color-blue);
}

.joinus-sec2 .learn-more .icon img {
  filter: url(#white-overlay);
}

.joinus-sec2 .item-expand a {
  color: #355480;
}

.joinus-sec2 .sec-area>.learn-more img {
  margin-left: 0;
}

.contact-banner {
  background-size: contain;
  background-position: top;
}

.contact-banner .main {
  --main-margin: var(--main-thin-margin)
}

/* .contact-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #C9DCE9, transparent);
} */

.contact-banner .slogan {
  position: relative;
  top: unset;
  left: unset;
  margin-top: max(30px, 10%);
}

.contact-banner .slogan .pic {
  margin-top: max(50px, 20%);
  border-radius: 30px;
  overflow: hidden;
}

.commit-cont {
  color: var(--theme-color-blue);
  padding: var(--px-20-40);
  height: 100%;
}

.commit-cont .title {
  font-size: var(--font-24);
  padding-bottom: var(--px-10-20);
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  text-align: center;
}

.commit-cont .txt {
  font-size: var(--font-18);
  padding-right: var(--px-10-20);
  margin-top: var(--px-10-20);
  overflow-y: auto;
}

.commit-cont .txt p {
  font-weight: 300;
}

.commit-cont .txt h1 {
  font-weight: 500;
}

.dialog-btn-wrap {
  gap: 20px;
  margin-top: var(--px-20-40);
}

.dialog-btn-wrap .btn {
  border-radius: 300px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
  height: 50px;
}

.dialog-btn-wrap .btn {
  border: 1px solid var(--theme-color-blue);
  color: var(--theme-color-blue);
  padding: 0;
  font-size: var(--font-18);
}

.dialog-btn-wrap .btn.dialog-agree-btn,
.dialog-btn-wrap .btn.dialog-reset-btn {
  padding: 0;
  background-color: var(--theme-color-blue);
  color: #fff;
}

.dialog-btn-wrap .btn:hover {
  background-color: #fff;
  color: var(--theme-color-blue);
  border-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
}

.commit-btn-wrap .btn {
  width: 160px;
}

.evaluation-btn-wrap .btn {
  width: calc((100% - 20px) / 2);
}

.evaluation-result {
  gap: 20px;
  padding: var(--px-20-40);
}

.evaluation-result .title {
  font-size: var(--font-24);
  color: var(--theme-color-blue);
  font-weight: 300;
}

.evaluation-result .intro {
  font-size: var(--font-28);
  font-weight: bold;
}

.evaluation-result .icon {
  --icon-lay-w: 160px;
  --icon-lay-bg: #fff;
  box-shadow: 0 10px 20px 0 rgba(53, 84, 128, .1);
}

.evaluation-result .rank {
  width: max(100px, 160 * var(--px));
  aspect-ratio: 1;
  border-radius: 30px;
  font-size: var(--font-20);
  font-weight: 300;
  background-color: #fff;
  border: 1px solid var(--theme-color-blue);
}

.evaluation-result .rank span {
  font-size: max(24px, 68 * var(--px));
  font-weight: bold;
  color: var(--theme-color-blue);
  line-height: 1.2;
}

.evaluation-result .tips {
  font-size: var(--font-20);
  color: var(--theme-color-blue);
  font-weight: 300;
}

.evaluation-handle {
  padding: var(--px-20-40);
}

.evaluation-handle .title {
  font-size: var(--font-18);
  font-weight: bold;
  text-align: center;
}

.evaluation-handle .intro {
  font-size: var(--font-16);
  font-weight: 300;
  margin-top: var(--px-10-20);
}

.evaluation-pass-dialog .dialog-wrap {
  width: max(300px, 720 * var(--px));
  height: auto;
  max-height: 80vh;
  overflow-y: auto;
}

.evaluation-not-agree-dialog .dialog-wrap {
  width: max(300px, 720 * var(--px));
  height: auto;
  max-height: 80vh;
  background-color: unset;
}

.evaluation-not-agree-dialog .evaluation-btn-wrap,
.evaluation-not-agree-dialog .evaluation-btn-wrap .btn {
  width: 100%;
}

#page {
  position: relative;
}

.about-sec-cont {
  background-size: contain;
  background-position: center;
}

.news-sec-cont {
  background-size: 100%;
  background-position: top;
}