@charset "UTF-8";
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

/* ========== Í¨ÓÃ½á¹¹ÑùÊ½ ========== */
.w1780 {
  padding-left: 0.7rem !important;
  padding-right: 0.7rem !important;
}

.w1480 {
  padding-left: 2.2rem !important;
  padding-right: 2.2rem !important;
}

.w1680 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

.w1660 {
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
}

.w1640 {
  padding-left: 1.4rem !important;
  padding-right: 1.4rem !important;
}

.w1620 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.w1600 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}
.pc-block {
  display: block !important;
}

.mb-block {
  display: none !important;
}

.pc-flex {
  display: flex !important;
}

.mb-flex {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none !important;
  }
  .mb-block {
    display: block !important;
  }
  .pc-flex {
    display: none !important;
  }
  .mb-flex {
    display: flex !important;
  }
}

.ibtn {
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  padding: 0.11rem 0.35rem;
  color: var(--vicolor);
  font-size: 0.14rem;
  font-weight: 400;
  font-family: var(--fw400);
  line-height: 1;
  position: relative;
  border-radius: 0.05rem;
  border: 1px solid var(--vicolor);
}
.ibtn:hover {
  background-color: var(--vicolor);
  color: #fff;
}
.ibtn.glass {
  border: 1px solid #FFF;
  background: rgba(184, 184, 184, 0.1);
  backdrop-filter: blur(10px);
}
.ibtn.gray {
  border-color: #666;
  color: #333;
}
.ibtn.gray:hover {
  border-color: var(--vicolor);
  color: #fff;
}
.ibtn.white {
  border-color: #fff;
  color: #fff;
}
.ibtn.vi {
  background: var(--vi);
  border-color: var(--vi);
  color: #fff;
}
.ibtn.vi:hover {
  background: color-mix(in srgb, var(--vi) 70%, #000 30%);
}

/* ========== Í¨ÓÃÄ£¿£¿£¿éÎÊÌâÐÎÃ²ÑùÊ½ ========== */
.tit-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.6rem;
}
.tit-box .subtit {
  color: var(--vi);
  font-size: 0.24rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.tit-box .tit {
  width: fit-content;
  font-size: 0.5rem;
  font-weight: 600;
  font-family: var(--fw600);
  line-height: 1.3;
  color: #333;
}
.tit-box .tit.c-333 {
  background: none;
  -webkit-text-fill-color: #333;
  color: #333;
}
.tit-box .tit.c-fff {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.tit-box .txt {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  font-weight: 400;
  font-family: var(--fw400);
  line-height: 2;
  color: #333;
  max-width: 13rem;
}
.tit-box .txt.c-fff {
  color: #fff;
}
.tit-box.text-center {
  align-items: center;
  text-align: center;
}

/* ========== Í¨ÓÃÐü¸¡Ð§¹ûÑùÊ½ ========== */
.pic-scale {
  overflow: hidden;
}
.pic-scale .pic, .pic-scale.pic {
  overflow: hidden;
}
.pic-scale .pic img, .pic-scale.pic img {
  transition: all 0.6s;
}
.pic-scale:hover .pic img, .pic-scale:hover.pic img {
  transform: scale(1.05);
}

/* ========== Í¨ÓÃ·ÖÒ³Æ÷ºÐ×ÓÑùÊ½ ========== */
.page-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.32rem;
  /* ÉÏÒ»Ò³ÏÂÒ»Ò³ÑùÊ½ */
}
.page-box .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  position: relative;
  pointer-events: none;
}
.page-box .navigation .next,
.page-box .navigation .prev {
  pointer-events: auto;
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.page-box .navigation .next .img1,
.page-box .navigation .prev .img1 {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
.page-box .navigation .next .img2,
.page-box .navigation .prev .img2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.page-box .navigation .next:hover .img1,
.page-box .navigation .prev:hover .img1 {
  opacity: 0;
}
.page-box .navigation .next:hover .img2,
.page-box .navigation .prev:hover .img2 {
  opacity: 1;
}
.page-box .navigation .next.swiper-button-disabled,
.page-box .navigation .prev.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-box {
  /* ÂÖ²¥½ø¶ÈÌõÑùÊ½ */
}
.page-box .progress {
  width: 100%;
  height: 2px !important;
  background: #E8E8E8;
  position: relative;
}
.page-box .progress .swiper-pagination-progressbar-fill {
  background: linear-gradient(118deg, #62DDD2 -7.85%, #3FAEF2 93%);
  height: 2px;
  border-radius: 0;
  display: block;
  transform-origin: left;
}
.page-box .progress2 {
  width: 2px;
  height: 100% !important;
  background: #E8E8E8;
  position: relative;
}
.page-box .progress2 .swiper-pagination-progressbar-fill {
  background: linear-gradient(118deg, #62DDD2 -7.85%, #3FAEF2 93%);
  height: 100%;
  border-radius: 0;
  display: block;
  transform-origin: left;
}
.page-box {
  /* ÂÖ²¥·ÖÒ³Æ÷Ìõ×´½ø¶ÈÌõÑùÊ½ */
}
.page-box .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.page-box .pagination.noauto .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: none;
  width: 100%;
}
.page-box .pagination .swiper-pagination-bullet {
  width: 0.63rem;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  margin: 0;
}
.page-box .pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--vi);
  width: 0;
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 0;
}
.page-box .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: progress 3.8s ease-in-out;
}
.page-box {
  /* ÂÖ²¥µã×´·ÖÒ³Æ÷ÑùÊ½ */
}
.page-box .pagination2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
}
.page-box .pagination2 .swiper-pagination-bullet {
  margin: 0;
  width: 0.2rem;
  height: 0.2rem;
  opacity: 1;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
}
.page-box .pagination2 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #C6C9C9;
  transition: all 0.6s ease;
}
.page-box .pagination2 .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0rem;
  height: 0rem;
  border-radius: 50%;
  background-color: var(--vicolor);
  opacity: 0.3;
  transition: all 0.6s ease;
}
.page-box .pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: var(--vicolor);
}
.page-box .pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 0.2rem;
  height: 0.2rem;
}
.page-box .pagination_round {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.page-box .pagination_round span {
  width: 0.32rem;
  height: 0.32rem;
  position: relative;
  opacity: 1;
  background: transparent;
  border-radius: 50%;
  margin: 0 !important;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-box .pagination_round span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 0.32rem;
  height: 0.32rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-box .pagination_round span .progress-circle {
  fill: none;
  stroke: var(--vicolor);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.page-box .pagination_round span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.06rem;
  height: 0.06rem;
  opacity: 1;
  border-radius: 50%;
  background: #fff;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.page-box .pagination_round .swiper-pagination-bullet-active {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.page-box .pagination_round .swiper-pagination-bullet-active svg {
  opacity: 1;
}
.page-box .pagination_round .swiper-pagination-bullet-active::after {
  opacity: 1;
}

/* ========== Êý×Ö·ÖÒ³Æ÷ÑùÊ½ ========== */
.num-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.num-box .prev,
.num-box .next {
  cursor: pointer;
  height: 0.4rem;
  width: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.03rem;
  transition: all 0.4s ease;
  background-color: rgb(51, 51, 51);
}
.num-box .prev img, .num-box .prev svg,
.num-box .next img,
.num-box .next svg {
  width: 0.08rem;
  transition: all 0.4s ease;
}
.num-box .prev:hover,
.num-box .next:hover {
  background: var(--vicolor);
}
.num-box .prev:hover img, .num-box .prev:hover svg,
.num-box .next:hover img,
.num-box .next:hover svg {
  filter: brightness(0) invert(1);
}
.num-box .page_num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.num-box .page_num .num {
  cursor: pointer;
  color: #667778;
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.num-box .page_num .num:hover, .num-box .page_num .num.active {
  color: var(--vicolor);
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  padding-top: var(--header-height);
}
.modal .bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}
.modal .content {
  position: relative;
  z-index: 2;
  width: 12rem;
  max-width: 90%;
  height: 8.2rem;
  max-height: 90%;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  transform: scale(0.6) translateY(0%);
  transition: all 0.4s ease-in-out;
}
.modal .close {
  position: absolute;
  z-index: 2;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #F7F9FA;
  transition: all 0.4s ease;
  top: 0.4rem;
  right: 0.4rem;
  opacity: 0.7;
  cursor: pointer;
}
.modal .close span {
  width: 0.3rem;
  height: 1.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close span:last-child {
  transform: translate(-50%, -50%) rotate(135deg);
}
.modal .close:hover {
  opacity: 1;
  transform: rotate(180deg);
}
.modal .close:hover span {
  background: #fff;
}
.modal.video .bg {
  backdrop-filter: blur(10px);
}
.modal.video .content {
  width: 12.8rem;
  height: 7.2rem;
  border-radius: 0.15rem;
  overflow: hidden;
  background-color: transparent;
}
.modal.video .content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal.video .close {
  width: 0.48rem;
  height: 0.48rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.modal.video .close span {
  width: 0.2rem;
  background: #fff;
}
.modal.card .bg {
  backdrop-filter: blur(10px);
}
.modal.card .content {
  width: 12rem;
  height: 6.5rem;
  border-radius: 0.3rem;
  background: #F0F2F5;
  overflow: visible;
}
.modal.card .close {
  top: -0.26rem;
  right: -0.26rem;
  width: 0.72rem;
  height: 0.72rem;
  opacity: 1;
}
.modal.card .close span {
  width: 0.2rem;
  background: #fff;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.show .content {
  transform: scale(1) translateY(0);
}

.side_fixed {
  position: fixed;
  top: 50%;
  right: 0.3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}
.side_fixed .item {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 0.14rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(0, 175, 160, 0.15);
  position: relative;
}
.side_fixed .item .icon {
  width: 0.22rem;
  height: 0.22rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side_fixed .item .info {
  width: 2.1rem;
  background-color: #FFF;
  box-shadow: 0 4px 12px rgba(0, 175, 160, 0.15);
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 0.1rem;
  margin-right: 0.12rem;
  transition: all 0.4s;
  padding: 0.15rem 0.3rem 0.15rem 0.2rem;
  clip-path: inset(0 0 0 100%);
}
.side_fixed .item .info .icon {
  width: 0.2rem;
  height: 0.2rem;
}
.side_fixed .item .info:after {
  z-index: 2;
  content: "";
  position: absolute;
  left: calc(100% - 0.16rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 0.02rem;
  background-color: #fff;
}
.side_fixed .item .info .txt {
  white-space: nowrap;
}
.side_fixed .item:hover {
  box-shadow: 0 8px 12px rgba(0, 175, 160, 0.3);
}
.side_fixed .item:hover .info {
  clip-path: inset(0 -10%);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 100%;
  z-index: 99;
  /* background: #fff; */
  /* border-top:1px solid rgba(0, 0, 0, 0.06) */
}
.dropdown.other{
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1.2rem;
  
}


.dropdown .drop_item {
  display: none;
  
}

.dropdown.other .drop_item{
  padding-top: .1rem;
}
.dropdown .drop_item .cont {
  width: 100%;
  padding: .6rem 0.72rem;
  background: #fff;
  
  border-top: 1px solid #cccccc63;
}

.dropdown.other .drop_item .cont{
    padding: .4rem .72rem;
    border-radius: .06rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.dropdown.other .drop_item .cont{
  padding: .2rem 0;
}
.dropdown .drop_item .cont .list {
  display: flex;
  gap: 0.26rem;
  flex-wrap: wrap;
}
.dropdown.other .drop_item .cont .list{
  flex-direction: column;
  gap: .05rem;
}
.dropdown .drop_item .cont .list .item {
  width: calc((100% - 1.3rem) / 6);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.dropdown.other .drop_item .cont .list .item {
    padding: .1rem 0;
    width: 100%;
}
.dropdown.other .drop_item .cont .list .item .tit{
  transition: all .4s;
}
.dropdown.other .drop_item .cont .list .item:hover .tit{
  color: var(--vicolor);
}
.dropdown .drop_item .cont .list .item .pic {
  width: 100%;
  height: 1.6rem;
  margin-bottom: 0.3rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.type_list {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-bottom: 0.8rem;
}
.type_list .item {
  width: fit-content;
  min-width: 1.8rem;
  padding: 0.16rem 0.54rem;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 175, 160, 0.1);
  cursor: pointer;
}
.type_list .item:hover, .type_list .item.active {
  color: #fff;
}

.breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  position: relative;
  z-index: 2;
}
.breadcrumb .home {
  width: 0.24rem;
  height: 0.24rem;
  flex-shrink: 0;
  opacity: 0.4;
  transition: all 0.4s ease;
}
.breadcrumb .home:hover {
  opacity: 1;
}
.breadcrumb .arrow {
  width: 0.14rem;
  height: 0.14rem;
  flex-shrink: 0;
}
.breadcrumb .link {
  font-size: 0.16rem;
  font-weight: 400;
  font-family: var(--fw400);
  color: #464646;
}
/* ========== Í¨ÓÃ¹ý¶É¶¯»­ÑùÊ½ ========== */
.trans-all {
  transition: all 0.4s ease;
}
.trans-all * {
  transition: all 0.4s ease;
}

.pc-block {
  display: block;
}

.mb-block {
  display: none;
}

.pc-flex {
  display: flex;
}

.mb-flex {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
  .mb-block {
    display: block;
  }
  .pc-flex {
    display: none;
  }
  .mb-flex {
    display: flex;
  }
}
/* ========== Í¨ÓÃÄÚÒ³bannerÑùÊ½ ========== */
.inner-banner {
  height: 10.8rem;
  position: relative;
}
.inner-banner .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.inner-banner .wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inner-banner .wrap .desc .tit {
  font-size: 0.5rem;
  font-weight: 600;
  font-family: var(--fw600);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 0.2rem;
  /* letter-spacing: 2px; */
}
.inner-banner .wrap .desc .txt {
  font-size: 0.22rem;
  font-weight: 400;
  font-family: var(--fw400);
  line-height: 1.66;
  color: #fff;
  text-align: center;
  /* letter-spacing: 2px; */
}
.inner-banner .wrap .mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
  pointer-events: none;
  z-index: 1;
}

/* ========== Í¨ÓÃÍ¼Æ¬ÑùÊ½ ========== */
/* Í¼Æ¬»ù´¡ÑùÊ½£ºÈ¥³ý±ß¿ò£¬£¬£¬×î´ó¿í¶È100%£¬£¬£¬¿é¼¶ÏÔÊ¾£¬£¬£¬¿í¶È100% */
img {
  border: none;
  max-width: 100%;
  display: block;
  width: 100%;
}
img.pic-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
img.pic-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.pic-fill {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
img[src=""] {
  opacity: 0;
}

video.pic-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
video.pic-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== ×ª¶¯ÌõÑùÊ½ ========== */
.iscroll {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
.iscroll::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}
.iscroll::-webkit-scrollbar-thumb {
  background: var(--vicolor);
}
.iscroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}
.iscroll.round::-webkit-scrollbar-thumb {
  border-radius: 3px;
}

/* ========== Í¨ÓÃÑÕÉ«¹¤¾ß ========== */
.c-vi {
  color: var(--vicolor);
}

.c-red {
  color: #ff0000;
}

.c-ff3d3d {
  color: #FF3D3D;
}

.c-fff {
  color: #fff;
}

.c-ff3 {
  color: rgba(255, 255, 255, 0.3);
}

.c-ff4 {
  color: rgba(255, 255, 255, 0.4);
}

.c-ff5 {
  color: rgba(255, 255, 255, 0.5);
}

.c-000 {
  color: #000;
}

.c-111 {
  color: #111;
}

.c-333 {
  color: #333;
}

.c-3336 {
  color: rgba(51, 51, 51, 0.6);
}

.c-2e2 {
  color: #2e2e2e;
}

.c-666 {
  color: #666;
}

.c-888 {
  color: #888;
}

.c-858 {
  color: #858585;
}

.c-868 {
  color: #868686;
}

.c-999 {
  color: #999;
}

.c-d8d {
  color: #d8d8d8;
}

.c-efe {
  color: #efefef;
}

.c-ff2 {
  color: rgba(255, 255, 255, 0.2);
}

.c-ff3 {
  color: rgba(255, 255, 255, 0.3);
}

.c-ff4 {
  color: rgba(255, 255, 255, 0.4);
}

.c-ff5 {
  color: rgba(255, 255, 255, 0.5);
}

.c-ff6 {
  color: rgba(255, 255, 255, 0.6);
}

.c-ff7 {
  color: rgba(255, 255, 255, 0.7);
}

.c-ff8 {
  color: rgba(255, 255, 255, 0.8);
}

.c-ff9 {
  color: rgba(255, 255, 255, 0.9);
}

.c-697 {
  color: #697d7b;
}

.c-464 {
  color: #464646;
}

/* ========== Í¨ÓÃÐÐ¸ß ========== */
.lh-1 {
  line-height: 1;
}

.lh-15 {
  line-height: 1.5;
}

.lh-2 {
  line-height: 2;
}

.lh-12 {
  line-height: 1.2;
}

.lh-125 {
  line-height: 1.25;
}

.lh-13 {
  line-height: 1.3;
}

.lh-133 {
  line-height: 1.33;
}

.lh-14 {
  line-height: 1.4;
}

.lh-142 {
  line-height: 1.42;
}

.lh-16 {
  line-height: 1.6;
}

.lh-166 {
  line-height: 1.66;
}

.lh-175 {
  line-height: 1.75;
}

.lh-18 {
  line-height: 1.8;
}

.lh-187 {
  line-height: 1.87;
}

/* ========== Í¨ÓÃ³¬ÐÐÊ¡ÂÔºÅÑùÊ½ ========== */
.t_line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 4;
  -moz-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 5;
  -moz-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 6;
  -moz-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

/* ========== Í¨ÓÃform±íµ¥ÑùÊ½ ========== */
.form-box {
  width: 100%;
}
.form-box .required {
  color: var(--vicolor);
}
.form-box .form_row {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.36rem;
}
.form-box .form_row:last-child {
  margin-bottom: 0;
}
.form-box .form_row .form_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  position: relative;
}
.form-box .form_row .form_item label {
  display: flex;
  gap: 0.06rem;
  font-size: 0.18rem;
  font-weight: 300;
  font-family: var(--fw300);
  color: #464646;
}
.form-box .form_row .form_item.w50 {
  width: 50%;
}
.form-box .form_row .form_item .input_box {
  position: relative;
}
.form-box .form_row .form_item .input_box .icon {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 0.2rem;
}
.form-box .form_row .form_item input,
.form-box .form_row .form_item textarea,
.form-box .form_row .form_item select {
  flex-shrink: 0;
  width: 100%;
  padding: 0 0.25rem;
  border-radius: 0.15rem;
  border: 1px solid transparent;
  background: #F7F9FA;
  transition: all 0.4s ease;
  font-size: 0.16rem;
  font-weight: 300;
  font-family: var(--fw300);
  line-height: 1.3;
  color: #333;
}
.form-box .form_row .form_item input::placeholder,
.form-box .form_row .form_item textarea::placeholder,
.form-box .form_row .form_item select::placeholder {
  text-shadow: 0 4px 20px rgba(89, 87, 87, 0.26);
  color: #999;
}
.form-box .form_row .form_item input:focus,
.form-box .form_row .form_item textarea:focus,
.form-box .form_row .form_item select:focus {
  border-color: var(--vicolor);
}
.form-box .form_row .form_item input,
.form-box .form_row .form_item select {
  height: 0.5rem;
  line-height: 0.5rem;
}
.form-box .form_row .form_item textarea {
  height: 2rem;
  padding: 0.15rem 0.25rem;
  resize: none;
}
.form-box .form_btn {
  margin-top: 0.6rem;
}
.form-box .form_btn .btn {
  padding: 0.12rem 0.55rem;
  font-size: 0.14rem;
  font-weight: 600;
  font-family: var(--fw600);
  color: #fff;
  font-style: italic;
  background-color: var(--vicolor);
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: all 0.4s ease;
}
.form-box .form_btn .btn .icon {
  width: 0.08rem;
}
.form-box .form_btn .btn .icon svg {
  width: 100%;
  height: 100%;
}
.form-box .form_btn .btn .icon {
  transition: all 0.4s ease;
}
.form-box .form_btn .btn:hover {
  background-color: color-mix(in srgb, var(--vicolor) 80%, black);
}

/*# sourceMappingURL=global.css.map */
<!--ºÄÊ±1775248480.4646Ãë-->