@charset "UTF-8";
/* ========== 通用图片样式 ========== */
/* 图片基础样式：去除边框，最大宽度100%，块级显示，宽度100% */
img {
  border: none;
  max-width: 100%;
  display: block;
}
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;
}
video.pic-fill {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pic-scale .pic, .pic-scale.pic {
  overflow: hidden;
}
.pic-scale .pic img, .pic-scale.pic img {
  transition: all 0.7s;
  transform: translateZ(0);
  will-change: transform;
}
.pic-scale:hover .pic img, .pic-scale:hover.pic img {
  transform: scale(1.05) !important;
}

/* 移动pc显示隐藏 */
.pc,
.pc-block {
  display: block;
}

.pcflex,
.pc-flex {
  display: flex;
}

.mbflex,
.mb-flex {
  display: none;
}

.mb,
.mb-block {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc,
  .pc-block {
    display: none;
  }
  .pcflex,
  .pc-flex {
    display: none;
  }
  .mb,
  .mb-block {
    display: block;
  }
  .mbflex,
  .mb-flex {
    display: flex;
  }
}
.c-fff {
  color: #fff;
}

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

.c-vi {
  color: var(--viColor);
}

.c-333 {
  color: #333;
}

.c-666 {
  color: #666;
}

.c-999 {
  color: #999;
}

.c-000 {
  color: #000;
}

.f_70 {
  font-size: 0.7rem;
}

.fw300 {
  font-weight: 300;
  font-family: var(--f300);
}

.fw400 {
  font-weight: 400;
  font-family: var(--f400);
}

.fw500 {
  font-weight: 500;
  font-family: var(--f500);
}

.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;
}

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

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

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



.ibtn {
  height: 0.4rem;
  line-height: 0.4rem;
  position: relative;
  border-radius: 0.02rem;
  width: fit-content;
  overflow: hidden;
  transition: all 0.7s;
}
.ibtn::before {
  content: "";
  position: absolute;
  inset: 0.001rem;
  border: 0.01rem solid transparent;
}
.ibtn .btn_icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #f46c1c;
  width: 0.42rem;
  height: 100%;
  padding: 0.1rem;
  -webkit-clip-path: polygon(-1% -1%, 100% 0, 80% 101%, -1% 101%);
  clip-path: polygon(-1% -1%, 100% 0, 80% 101%, -1% 101%);
  transition: all 0.7s;
}
.ibtn .btn_txt {
  width: fit-content;
  padding: 0.01rem 0.1rem 0 0.42rem;
  font-family: var(--f500);
  font-size: 0.16rem;
  font-weight: 500;
  min-width: 1.67rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.7s;
}
.ibtn.white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.15rem);
}
.ibtn.white::before {
  border-color: #fff;
}
.ibtn.white .btn_txt {
  color: #fff;
}
.ibtn.white:hover {
  background: rgba(255, 255, 255, 0.4);
}
.ibtn.vi {
  background: var(--viColor);
}
.ibtn.vi::before {
  border-color: var(--viColor);
}
.ibtn.vi .btn_txt {
  color: #fff;
}
.ibtn.vi:hover {
  background: color-mix(in srgb, var(--viColor) 80%, black);
}
.ibtn.gray::before {
  border-color: rgba(14, 55, 111, 0.1);
}
.ibtn.gray .btn_txt {
  color: #333;
}
.ibtn.gray:hover {
  background: var(--viColor);
}
.ibtn.gray:hover .btn_txt {
  color: #fff;
}

.havebtn:hover .ibtn.white {
  background: rgba(255, 255, 255, 0.4);
}
.havebtn:hover .ibtn.vi {
  background: color-mix(in srgb, var(--viColor) 80%, black);
}
.havebtn:hover .ibtn.gray {
  background: var(--viColor);
}
.havebtn:hover .ibtn.gray .btn_txt {
  color: #fff;
}

.ind_page {
  padding-top: var(--headerHeight);
}
.ind_page .tit-box .tit {
  color: #333;
  font-size: 0.56rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--f400);
}
.ind_page .tit-box .txt {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 1.88;
  font-family: var(--f400);
}
.ind_page .tit-box.center {
  text-align: center;
}
.ind_page .ind1 {
  padding: 0.62rem 0 0.8rem;
}
.ind_page .ind1 .wrap .tit-box {
  margin-bottom: 0.57rem;
}
.ind_page .ind1 .wrap .video_box {
  width: 100%;
  height: 7.34rem;
}
.ind_page .ind2 {
  padding: 0.8rem 0 1.6rem;
}
.ind_page .ind2 .wrap .tit-box {
  margin-bottom: 0.42rem;
}
.ind_page .ind2 .wrap .tab_list {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  width: fit-content;
  margin: 0 auto 0.4rem;
}
.ind_page .ind2 .wrap .tab_list::before {
  content: "";
  position: absolute;
  position-anchor: --tab-list;
  bottom: -1px;
  left: anchor(left);
  width: anchor-size(width);
  border-radius: 2px;
  height: 2px;
  background-color: var(--viColor);
  transition: all 0.7s;
}
.ind_page .ind2 .wrap .tab_list .item {
  padding: 0 0.65rem 0.25rem;
  cursor: pointer;
  transition: all 0.7s;
}
.ind_page .ind2 .wrap .tab_list .item:hover {
  color: var(--viColor);
}
.ind_page .ind2 .wrap .tab_list .item.active {
  color: var(--viColor);
  anchor-name: --tab-list;
  font-weight: 500;
  font-family: var(--f500);
}
.ind_page .ind2 .wrap .cont {
  display: flex;
  justify-content: space-between;
  gap: 0.18rem;
  height: 6.48rem;
}
.ind_page .ind2 .wrap .cont .lf {
  width: 3.07rem;
  flex-shrink: 0;
  height: 100%;
  padding: 0.55rem 0.25rem 0.4rem 0.3rem;
  background-color: var(--viColor);
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide {
  width: 100%;
  height: 100%;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide .info {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide .info .tit {
  margin-bottom: 0.3rem;
  line-height: 1.3;
  transform: translateX(1rem);
  transition: all 0.3s;
  opacity: 0;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide .info .txt {
  line-height: 1.87;
  transform: translateX(1rem);
  transition: all 0.3s 0.2s;
  opacity: 0;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide.swiper-slide-active .info .tit {
  transform: translateX(0);
  opacity: 1;
}
.ind_page .ind2 .wrap .cont .lf .swiper_ind2_info .swiper-slide.swiper-slide-active .info .txt {
  transform: translateX(0);
  opacity: 1;
}
.ind_page .ind2 .wrap .cont .rg {
  flex: 1;
  height: 100%;
}
.ind_page .ind2 .wrap .cont .rg .swiper_ind2_product {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ind_page .ind2 .wrap .cont .rg .swiper_ind2_product .swiper-slide {
  width: 100%;
  height: 100%;
}
.ind_page .ind2 .wrap .cont .rg .list {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.18rem;
  row-gap: 0.2rem;
  padding-right: 0.04rem;
}
.ind_page .ind2 .wrap .cont .rg .list::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.ind_page .ind2 .wrap .cont .rg .list::-webkit-scrollbar-thumb {
  background: var(--viColor);
  border-radius: 2px;
}
.ind_page .ind2 .wrap .cont .rg .list .item {
  width: calc((100% - 0.36rem) / 3);
  height: calc((100% - 0.2rem) / 2);
  background: #EAEEF2;
  padding: 0.34rem;
  position: relative;
}
.ind_page .ind2 .wrap .cont .rg .list .item .desc {
  padding-bottom: 0.2rem;
  position: relative;
  width: fit-content;
}
.ind_page .ind2 .wrap .cont .rg .list .item .desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.3rem;
  height: 0.02rem;
  background: var(--viColor);
  transition: all 0.7s;
}
.ind_page .ind2 .wrap .cont .rg .list .item .desc .t1 {
  margin-bottom: 0.1rem;
}
.ind_page .ind2 .wrap .cont .rg .list .item .desc .t2 {
  line-height: 1.3;
}
.ind_page .ind2 .wrap .cont .rg .list .item .pic {
  position: absolute;
  bottom: 0.34rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1rem);
}
.ind_page .ind2 .wrap .cont .rg .list .item .pic img {
  max-height: 1.9rem;
  transition: all 0.7s;
  transform: translateZ(0);
  transform-origin: bottom;
}
.ind_page .ind2 .wrap .cont .rg .list .item:hover .desc::after {
  width: 0.5rem;
}
.ind_page .ind2 .wrap .cont .rg .list .item:hover .pic img {
  transform: scale(1.1);
}
.ind_page .ind3 {
  padding: 2rem 0 1.9rem;
  position: relative;
}
.ind_page .ind3 .bg {
  position: absolute;
  inset: 0;
}
.ind_page .ind3 .wrap {
  position: relative;
}
.ind_page .ind3 .wrap .tit-box {
  width: 13.85rem;
  margin: 0 auto 2.5rem;
}
.ind_page .ind3 .wrap .tit-box .tit {
  color: #fff;
}
.ind_page .ind3 .wrap .tit-box .txt {
  margin-top: 0.4rem;
}
.ind_page .ind3 .wrap .tit-box .ibtn {
  margin-top: 0.7rem;
}
.ind_page .ind3 .wrap .list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.ind_page .ind3 .wrap .list .item .num_box {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.04rem;
}
.ind_page .ind4 {
  padding: 1.6rem 0 0.8rem;
}
.ind_page .ind4 .wrap .tit-box {
  margin-bottom: 0.6rem;
}
.ind_page .ind4 .wrap .cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.52rem;
}
.ind_page .ind4 .wrap .cont .lf {
  flex: 1;
}
.ind_page .ind4 .wrap .cont .lf .list {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0.44rem;
}
.ind_page .ind4 .wrap .cont .lf .list .item {
  width: calc((100% - 0.44rem) / 2);
  height: 100%;
  min-height: 6.3rem;
  display: flex;
  flex-direction: column;
  background: #F8F8F8;
  transition: all 0.7s;
}
.ind_page .ind4 .wrap .cont .lf .list .item .pic {
  width: 100%;
  height: 3.12rem;
}
.ind_page .ind4 .wrap .cont .lf .list .item .info {
  flex: 1;
  padding: 0.35rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ind_page .ind4 .wrap .cont .lf .list .item .info .desc .time {
  margin-bottom: 0.1rem;
}
.ind_page .ind4 .wrap .cont .lf .list .item .info .desc .tit {
  min-height: 0.7rem;
  margin-bottom: 0.1rem;
  line-height: 1.5;
  transition: all 0.7s;
}
.ind_page .ind4 .wrap .cont .lf .list .item .info .desc .txt {
  line-height: 1.75;
}
.ind_page .ind4 .wrap .cont .lf .list .item:hover {
  background: #FFF;
  box-shadow: 0 0.04rem 0.6rem 0 rgba(0, 0, 0, 0.1);
}
.ind_page .ind4 .wrap .cont .lf .list .item:hover .info .desc .tit {
  color: var(--viColor);
}
.ind_page .ind4 .wrap .cont .rg {
  width: 5.15rem;
  flex-shrink: 0;
}
.ind_page .ind4 .wrap .cont .rg .ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ind_page .ind4 .wrap .cont .rg .ul .li {
  padding: 0.35rem 0;
  border-top: 1px solid #EDEDED;
  transition: all 0.7s;
  position: relative;
}
.ind_page .ind4 .wrap .cont .rg .ul .li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.7s;
  background-color: var(--viColor);
}
.ind_page .ind4 .wrap .cont .rg .ul .li .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind_page .ind4 .wrap .cont .rg .ul .li .top .time {
  flex-shrink: 0;
}
.ind_page .ind4 .wrap .cont .rg .ul .li .top .title {
  width: 3.14rem;
  color: #242424;
}
.ind_page .ind4 .wrap .cont .rg .ul .li .detail {
  display: none;
  width: 3.14rem;
  margin-left: auto;
}
.ind_page .ind4 .wrap .cont .rg .ul .li .detail .txt {
  margin-top: 0.14rem;
  line-height: 1.5;
}
.ind_page .ind4 .wrap .cont .rg .ul .li .detail .ibtn {
  margin-top: 0.4rem;
}
.ind_page .ind4 .wrap .cont .rg .ul .li:last-child {
  border-bottom: 1px solid #EDEDED;
}
.ind_page .ind4 .wrap .cont .rg .ul .li.active {
  padding: 0.3rem 0;
}
.ind_page .ind4 .wrap .cont .rg .ul .li.active::before {
  transform: scaleX(1);
}
.ind_page .ind5 {
  padding: 0.8rem 0 1.6rem;
}
.ind_page .ind5 .wrap {
  padding: 0 2.36rem;
}
.ind_page .ind5 .wrap .tit-box {
  margin-bottom: 0.8rem;
}
.ind_page .ind5 .wrap .list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: 0.55rem;
  row-gap: 0.55rem;
}
.ind_page .ind5 .wrap .list .item {
  grid-column: span 2;
  aspect-ratio: 1/1;
  background: #FFF;
  box-shadow: 0 0 0.48rem 0.06rem rgba(14, 55, 111, 0.06);
  backdrop-filter: blur(0.3rem);
  padding: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.7s;
}
.ind_page .ind5 .wrap .list .item:nth-child(1) {
  grid-column: 2/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(2) {
  grid-column: 4/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(3) {
  grid-column: 6/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(4) {
  grid-column: 8/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(5) {
  grid-column: 1/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(6) {
  grid-column: 3/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(7) {
  grid-column: 5/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(8) {
  grid-column: 7/span 2;
}
.ind_page .ind5 .wrap .list .item:nth-child(9) {
  grid-column: 9/span 2;
}
.ind_page .ind5 .wrap .list .item .info {
  text-align: center;
}
.ind_page .ind5 .wrap .list .item .info .icon {
  width: 0.7rem;
  height: 0.7rem;
  object-fit: contain;
  margin: 0 auto 0.24rem;
}
.ind_page .ind5 .wrap .list .item .info .t1 {
  margin-bottom: 0.12rem;
  line-height: 1.3;
}
.ind_page .ind5 .wrap .list .item .qr {
  position: absolute;
  inset: 0;
  padding: 0.12rem;
  opacity: 0;
  transition: all 0.7s;
}
.ind_page .ind5 .wrap .list .item:hover {
  transform: translateY(-0.12rem);
}
.ind_page .ind5 .wrap .list .item:hover .qr {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
