.header {
  position: fixed;
  height: var(--headHeight);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(0.1rem);
}
.header .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header .wrap .lf {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .wrap .lf .logo {
  height: 0.46rem;
  position: relative;
}
.header .wrap .rg {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .wrap .rg nav {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
  margin-right: 2.8rem;
}
.header .wrap .rg nav .li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.header .wrap .rg nav .li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vicolor);
  transition: all 0.5s;
}
.header .wrap .rg nav .li a {
  font-size: 0.18rem;
  color: #FFF;
  font-weight: 500;
  font-family: var(--fw500);
  transition: all 0.5s;
}
.header .wrap .rg nav .li:hover a, .header .wrap .rg nav .li.active a {
  color: var(--vicolor);
}
.header .wrap .rg .actions {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}
.header .wrap .rg .actions .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: #FFF;
  transition: all 0.5s;
}
.header .wrap .rg .actions .item .icon {
  position: relative;
}
.header .wrap .rg .actions .item.search {
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.5s;
}
.header .wrap .rg .actions .item.search .icon {
  width: 0.14rem;
  height: 0.14rem;
  transition: all 0.5s;
}
.header .wrap .rg .actions .item.search:hover {
  background-color: var(--vicolor);
}
.header .wrap .rg .actions .item.search:hover .icon {
  filter: brightness(0) invert(1);
}
.header .wrap .rg .actions .item.lang {
  gap: 0.04rem;
}
.header .wrap .rg .actions .item.contact {
  background-color: var(--vicolor);
  border: 1px solid var(--vicolor);
  border-radius: 0.25rem;
  padding: 0.12rem 0.3rem;
}
.header .wrap .rg .actions .item.contact:hover {
  background-color: #fff;
  border-color: var(--vicolor);
  color: var(--vicolor);
}
.header .img1 {
  opacity: 1;
  transition: all 0.5s;
}
.header .img2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: auto;
  transition: all 0.5s;
}
.header.on {
  background-color: #FFF;
}
.header.on .img1 {
  opacity: 0;
}
.header.on .img2 {
  opacity: 1;
}
.header.on .rg nav .li a {
  color: #000;
}
.header.on .rg .actions .item {
  color: #000;
}
.header.on .rg .actions .item.search {
  background-color: rgba(6, 35, 41, 0.1);
}
.header.on .rg .actions .item.contact {
  color: #fff;
}

.footer {
  background-color: #F5F7F7;
}
.footer .wrap .top {
  padding: 0.6rem 0 0;
  display: flex;
}
.footer .wrap .top .logo {
  height: 0.8rem;
}
.footer .wrap .center {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.88rem;
}
.footer .wrap .center .lf {
  width: 3.69rem;
  flex-shrink: 0;
}
.footer .wrap .center .rg {
  flex: 1;
}
.footer .wrap .center .contact_box {
  flex: 1;
  border-right: 1px solid #DEDEE1;
  padding-right: 1rem;
  margin-top: 0.36rem;
}
.footer .wrap .center .contact_box .tit {
  margin-bottom: 0.2rem;
}
.footer .wrap .center .contact_box .list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.32rem;
}
.footer .wrap .center .contact_box .list2 {
  display: flex;
  gap: 0.2rem;
}
.footer .wrap .center .contact_box .list2 .item .qrcode {
  width: 1.06rem;
  height: 1.06rem;
  margin-bottom: 0.12rem;
}
.footer .wrap .center .contact_box .list2 .item .tit {
  text-align: center;
}
.footer .wrap .center .nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-left: 1.6rem;
}
.footer .wrap .center .nav .item .item_top {
  margin-bottom: 0.25rem;
}
.footer .wrap .center .nav .item .item_top .tit {
  font-size: 0.18rem;
  font-weight: 400;
  font-family: var(--fw400);
  color: #062329;
  transition: all 0.5s;
}
.footer .wrap .center .nav .item .item_top .tit:hover {
  color: var(--vicolor);
}
.footer .wrap .center .nav .item .ul {
  display: flex;
  flex-direction: column;
}
.footer .wrap .center .nav .item .ul .li {
  padding: 0.15rem 0;
  font-size: 0.16rem;
  font-weight: 300;
  font-family: var(--fw300);
  color: #062329;
  transition: all 0.5s;
}
.footer .wrap .center .nav .item .ul .li:hover {
  transform: translateX(0.02rem);
  color: var(--vicolor);
}
.footer .wrap .bottom {
  background-color: var(--vicolor);
  display: flex;
  justify-content: space-between;
  padding: 0.22rem 0;
}
.footer .wrap .bottom .policy a {
  padding: 0 0.05rem;
  position: relative;
  transition: all 0.5s;
  color: #fff;
}
.footer .wrap .bottom .policy a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  width: 1px;
  height: 80%;
  background: #fff;
}
.footer .wrap .bottom .policy a:last-child {
  padding-right: 0;
}
.footer .wrap .bottom .policy a:last-child::after {
  display: none;
}
.footer .wrap .bottom .rg {
  display: flex;
  align-items: center;
  gap: 0.04rem;
}
.footer .wrap .bottom .rg .beian {
  display: flex;
  align-items: center;
  gap: 0.04rem;
}
.footer .wrap .bottom .rg .beian .link {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.footer .wrap .bottom .rg .beian .link .icon {
  width: 0.16rem;
}

.index_page section {
  background-color: #fff;
  position: relative;
}
.index_page .banner {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}
.index_page .banner .swiper_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.index_page .banner .swiper_box .swiper-slide {
  width: 100%;
  height: 100%;
}
.index_page .banner .swiper_box .swiper-slide .item {
  width: 100%;
  height: 100%;
  position: relative;
}
.index_page .banner .swiper_box .swiper-slide .item .bg {
  position: absolute;
  inset: 0;
}
.index_page .banner .swiper_box .swiper-slide .item .cont {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem 1.2rem;
}
.index_page .banner .swiper_box .swiper-slide .item .cont .desc {
  margin-bottom: 0.7rem;
}
.index_page .banner .swiper_box .swiper-slide .item .cont .desc .txt {
  margin-top: 0.2rem;
}
.index_page .banner .swiper_box .page-box {
  position: absolute;
  z-index: 3;
  bottom: 0.75rem;
  width: 100%;
  margin: 0;
}
.index_page .banner .swiper_box .page-box .navigation {
  position: absolute;
  right: 1.2rem;
  bottom: 0;
}
.index_page .ind1 {
  position: relative;
  padding: 1.2rem 0 1.5rem;
  overflow: hidden;
}
.index_page .ind1 > .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.index_page .ind1 .map_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.91rem;
  height: 7.91rem;
}
.index_page .ind1 .map_box .center_dot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index_page .ind1 .map_box .center_dot .tit {
  margin-bottom: 0.02rem;
}
.index_page .ind1 .map_box .center_dot .icon {
  width: 0.2rem;
  height: 0.2rem;
}
.index_page .ind1 .map_box .bg {
  position: absolute;
  inset: 0;
}
.index_page .ind1 .map_box .dot_list {
  position: relative;
  width: 100%;
  height: 100%;
}
.index_page .ind1 .map_box .dot_list .item {
  position: absolute;
  top: 50%;
  left: 50%;
}
.index_page .ind1 .map_box .dot_list .item .dot {
  width: 0.32rem;
  height: 0.32rem;
}
.index_page .ind1 .map_box .dot_list .item .dot.small {
  width: 0.26rem;
  height: 0.26rem;
}
.index_page .ind1 .map_box .dot_list .item .dot.large {
  width: 0.38rem;
  height: 0.38rem;
}
.index_page .ind1 .map_box .dot_list .item .info {
  z-index: 2;
  color: #062329;
  font-size: 0.16rem;
  font-weight: 400;
  font-family: var(--fw400);
  position: absolute;
  top: 60%;
  right: 70%;
  padding: 0.05rem 0.1rem;
  border-radius: 0.07rem 0rem 0.07rem 0.07rem;
  background: #FFF;
  box-shadow: 0 0.04rem 0.2rem 0 rgba(0, 160, 192, 0.2);
}
.index_page .ind1 .map_box .dot_list .item .info .tit {
  white-space: nowrap;
}
.index_page .ind1 .map_box .dot_list .item .info.right {
  right: auto;
  left: 70%;
  border-radius: 0rem 0.07rem 0.07rem 0.07rem;
}
.index_page .ind1 .map_box .dot_list .item .info:hover, .index_page .ind1 .map_box .dot_list .item .info.active {
  background-color: var(--vicolor);
  color: #fff;
}
.index_page .ind1 .wrap {
  position: relative;
  z-index: 3;
}
.index_page .ind1 .wrap .top {
  margin-bottom: 3.12rem;
  display: flex;
  justify-content: space-between;
}
.index_page .ind1 .wrap .top .lf .tit-box {
  margin-bottom: 0.4rem;
}
.index_page .ind1 .wrap .top .lf .card {
  border-radius: 0.16rem;
  border: 0.02rem solid #FFF;
  background: linear-gradient(254deg, rgba(0, 160, 192, 0.1) 0%, rgba(0, 160, 192, 0) 62.09%), linear-gradient(259deg, rgba(255, 255, 255, 0.2) 0.55%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  width: 6.37rem;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  padding: 0.32rem;
  margin-bottom: 0.36rem;
  position: relative;
}
.index_page .ind1 .wrap .top .lf .card .bg {
  position: absolute;
  width: 2.18rem;
  height: 1.78rem;
  bottom: 0.18rem;
  right: 0.37rem;
}
.index_page .ind1 .wrap .top .lf .card .item {
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.index_page .ind1 .wrap .top .lf .card .item .icon {
  width: 0.36rem;
  height: 0.36rem;
}
.index_page .ind1 .wrap .top .lf .card .item .tit {
  line-height: 1.3;
}
.index_page .ind1 .wrap .top .lf .card .item .tit strong {
  color: var(--vicolor);
  font-size: 0.28rem;
  font-weight: 400;
  font-family: var(--fw400);
}
.index_page .ind1 .wrap .top .rg {
  width: 5.3rem;
}
.index_page .ind1 .wrap .top .rg .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.index_page .ind1 .wrap .top .rg .list .item {
  width: calc((100% - 0.7rem) / 2);
  padding-top: 0.2rem;
  border-top: 0.01rem solid #DEDEE1;
  position: relative;
}
.index_page .ind1 .wrap .top .rg .list .item::before {
  content: "";
  position: absolute;
  top: -0.01rem;
  left: 0;
  width: 0.4rem;
  height: 0.02rem;
  background-color: var(--vicolor);
}
.index_page .ind1 .wrap .top .rg .list .item .num {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.index_page .ind1 .wrap .bottom .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}
.index_page .ind1 .wrap .swiper_ind1 {
  width: 100%;
  padding: 0 1.2rem;
  overflow: hidden;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide {
  width: 7.4rem;
  margin-right: 0.3rem;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide:last-child {
  margin-right: 0;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item {
  width: 100%;
  height: 100%;
  padding: 0.33rem 0.3rem 0.2rem 0.2rem;
  display: flex;
  border-radius: 0.24rem;
  background: #F5F7F7;
  backdrop-filter: blur(0.2rem);
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .pic {
  border-radius: 0.24rem;
  width: 3.25rem;
  height: 100%;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .info {
  flex: 1;
  padding-left: 0.34rem;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .info .tag {
  padding: 0.1rem 0.2rem;
  background-color: var(--vicolor);
  margin-bottom: 0.25rem;
  width: fit-content;
  border-radius: 0.25rem;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .info .tag span {
  padding-left: 0.16rem;
  position: relative;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .info .tag span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.06rem;
  height: 0.06rem;
  background-color: #fff;
  border-radius: 0.01rem;
}
.index_page .ind1 .wrap .swiper_ind1 .swiper-slide .item .info .tit {
  margin-bottom: 0.2rem;
  line-height: 1.5;
}
.index_page .ind2 {
  position: relative;
  padding: 1.2rem 0;
  min-height: 10.8rem;
}
.index_page .ind2 > .bg {
  position: absolute;
  inset: 0;
}
.index_page .ind2 .wrap {
  position: relative;
}
.index_page .ind2 .wrap .tit-box {
  margin-bottom: 0.24rem;
}
.index_page .ind2 .wrap .type_list {
  display: flex;
  gap: 0.36rem;
}
.index_page .ind2 .wrap .type_list .item {
  padding: 0.12rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.04rem;
  border-radius: 0.23rem;
  border: 1px solid var(--vicolor);
  background-color: #fff;
  color: var(--vicolor);
  cursor: pointer;
  transition: all 0.5s;
}
.index_page .ind2 .wrap .type_list .item .icon {
  width: 0.22rem;
  height: 0.22rem;
  transition: all 0.5s;
  transform: translateY(-0.01rem);
}
.index_page .ind2 .wrap .type_list .item .tit {
  transition: all 0.5s;
  line-height: 1.1;
}
.index_page .ind2 .wrap .type_list .item:hover, .index_page .ind2 .wrap .type_list .item.active {
  background-color: var(--vicolor);
  color: #fff;
}
.index_page .ind2 .wrap .type_list .item:hover .icon, .index_page .ind2 .wrap .type_list .item.active .icon {
  filter: brightness(0) invert(1);
}
.index_page .ind2 .wrap .cont {
  position: relative;
  width: 100%;
}
.index_page .ind2 .wrap .cont .list {
  display: none;
  flex-wrap: wrap;
}
.index_page .ind2 .wrap .cont .list .item {
  transition: all 0.5s;
}
.index_page .ind2 .wrap .cont .list .item:hover {
  transform: translateY(-0.04rem);
}
.index_page .ind2 .wrap .cont .list.style1 {
  column-gap: 0.5rem;
  row-gap: 0.32rem;
  padding-top: 0.5rem;
  width: 8.14rem;
}
.index_page .ind2 .wrap .cont .list.style1 .item {
  width: 3.82rem;
  height: 1.58rem;
  position: relative;
  border-radius: 0.12rem;
  box-shadow: 0 0.1rem 0.3rem 0 rgba(0, 125, 150, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1rem;
}
.index_page .ind2 .wrap .cont .list.style1 .item .bg {
  position: absolute;
  inset: 0;
}
.index_page .ind2 .wrap .cont .list.style1 .item .tit {
  position: relative;
  text-align: center;
}
.index_page .ind2 .wrap .cont .list.style2 {
  gap: 0.4rem;
  padding-top: 0.8rem;
  width: 8.7rem;
}
.index_page .ind2 .wrap .cont .list.style2 .item {
  width: 4.15rem;
  height: 1.7rem;
  border-radius: 0.12rem;
  border: 1px solid rgba(0, 160, 192, 0.2);
  background: linear-gradient(102deg, rgba(0, 160, 192, 0.1) 4.33%, rgba(255, 255, 255, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 0.2rem 0.24rem;
  position: relative;
}
.index_page .ind2 .wrap .cont .list.style2 .item .item_bg {
  position: absolute;
  right: 0rem;
  bottom: 0;
  width: 2rem;
  height: 1.6rem;
}
.index_page .ind2 .wrap .cont .list.style2 .item .icon {
  width: 1.35rem;
  height: auto;
  max-height: 100%;
}
.index_page .ind2 .wrap .cont .list.style2 .item .desc {
  width: 1.95rem;
}
.index_page .ind2 .wrap .cont .list.style2 .item .desc .tit {
  margin-bottom: 0.1rem;
}
.index_page .ind2 .wrap .cont .list.active {
  display: flex;
}
.index_page .ind2 .wrap .cont .rg_pic_box {
  position: absolute;
  right: 0;
  top: -1.1rem;
}
.index_page .ind2 .wrap .cont .rg_pic_box .pic {
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
}
.index_page .ind2 .wrap .cont .rg_pic_box .pic:nth-child(1) {
  right: -0.2rem;
  top: 0;
  width: 7.92rem;
  height: 7.59rem;
}
.index_page .ind2 .wrap .cont .rg_pic_box .pic:nth-child(1) .ibtn {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
}
.index_page .ind2 .wrap .cont .rg_pic_box .pic:nth-child(2) {
  right: 0;
  top: 0;
  width: 6.95rem;
  height: 5.88rem;
}
.index_page .ind2 .wrap .cont .rg_pic_box .pic.active {
  opacity: 1;
}
.index_page .ind3 {
  padding: 1.4rem 0 0.8rem;
}
.index_page .ind3 .wrap .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.56rem;
}
.index_page .ind3 .wrap .top .tit-box .tit {
  font-size: 0.6rem;
}
.index_page .ind3 .wrap .top .desc {
  width: 4.95rem;
}
.index_page .ind3 .wrap .top .desc .tit {
  margin-bottom: 0.15rem;
}
.index_page .ind3 .wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.index_page .ind3 .wrap .list .bigitem {
  width: 100%;
  height: 7.75rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.24rem;
}
.index_page .ind3 .wrap .list .bigitem .bg {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  will-change: transform;
  transition: all 0.5s;
}
.index_page .ind3 .wrap .list .bigitem .cont {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0.55rem 0.65rem;
  justify-content: space-between;
}
.index_page .ind3 .wrap .list .bigitem .cont .info .tit {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin-bottom: 0.15rem;
}
.index_page .ind3 .wrap .list .bigitem .cont .ibtn {
  position: relative;
  top: unset;
  right: unset;
}
.index_page .ind3 .wrap .list .bigitem .cont .tags {
  display: flex;
  gap: 0.12rem;
  margin-bottom: 0.14rem;
}
.index_page .ind3 .wrap .list .bigitem .cont .tags span {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.16rem);
  padding: 0.04rem 0.12rem;
}
.index_page .ind3 .wrap .list .bigitem:hover .bg {
  transform: scale(1.02);
}
.index_page .ind3 .wrap .list .item {
  width: calc((100% - 0.4rem) / 3);
  height: 3.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.24rem;
}
.index_page .ind3 .wrap .list .item .bg {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  will-change: transform;
  transition: all 0.5s;
}
.index_page .ind3 .wrap .list .item .cont {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0.45rem 0.4rem;
}
.index_page .ind3 .wrap .list .item .cont .ibtn {
  position: absolute;
  top: 0.25rem;
  right: 0.32rem;
  padding: 0;
  border: none;
  background-color: transparent;
  backdrop-filter: none;
}
.index_page .ind3 .wrap .list .item .cont .ibtn .icon {
  width: 0.5rem;
  height: 0.5rem;
}
.index_page .ind3 .wrap .list .item .cont .ibtn .icon img {
  height: 0.14rem;
}
.index_page .ind3 .wrap .list .item .cont .ibtn .icon {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.2rem);
}
.index_page .ind3 .wrap .list .item:hover .bg {
  transform: scale(1.02);
}
.index_page .ind3 .wrap .list .item:hover .cont .ibtn .icon {
  background-color: var(--vicolor);
}
.index_page .ind4 {
  padding: 0.8rem 0 1.8rem;
}
.index_page .ind4 .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.index_page .ind4 .list {
  display: flex;
  gap: 0.3rem;
}
.index_page .ind4 .list .item {
  width: calc((100% - 0.6rem) / 3);
  overflow: hidden;
  border-radius: 0.24rem;
  height: 6.26rem;
  display: flex;
  flex-direction: column;
  background: #F5F7F7;
  position: relative;
}
.index_page .ind4 .list .item.ulitem {
  padding: 0.4rem 0.06rem 0.4rem 0.3rem;
}
.index_page .ind4 .list .item.ulitem .ul {
  padding-right: 0.18rem;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.index_page .ind4 .list .item.ulitem .ul .li {
  padding: 0.24rem 0;
  border-bottom: 1px solid #EAEAEA;
  transition: all 0.5s;
}
.index_page .ind4 .list .item.ulitem .ul .li .date {
  margin-bottom: 0.12rem;
}
.index_page .ind4 .list .item.ulitem .ul .li .tit {
  transition: all 0.5s;
}
.index_page .ind4 .list .item.ulitem .ul .li:first-child {
  padding-top: 0;
}
.index_page .ind4 .list .item.ulitem .ul .li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.index_page .ind4 .list .item.ulitem .ul .li:hover {
  transform: translateX(0.02rem);
}
.index_page .ind4 .list .item.ulitem .ul .li:hover .tit {
  color: var(--vicolor);
}
.index_page .ind4 .list .item .pic {
  width: 100%;
  height: 3.4rem;
}
.index_page .ind4 .list .item .info {
  flex: 1;
  padding: 0.4rem 0.35rem 0.48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.5s;
}
.index_page .ind4 .list .item .info .desc .date {
  margin-bottom: 0.35rem;
  transition: all 0.5s;
}
.index_page .ind4 .list .item .info .desc .tit {
  transition: all 0.5s;
}
.index_page .ind4 .list .item .info .ibtn.style1 {
  padding: 0;
  border: none;
}
.index_page .ind4 .list .item .info .ibtn.style1 .btn_txt {
  padding: 0;
  padding-right: 0.24rem;
}
.index_page .ind4 .list .item .bg {
  position: absolute;
  right: 0.08rem;
  bottom: 0.08rem;
  width: 3rem;
  height: 2.45rem;
  z-index: 2;
  pointer-events: none;
}
.index_page .ind4 .list .item:hover .info {
  background-color: var(--vicolor);
}
.index_page .ind4 .list .item:hover .info .desc .date {
  color: #fff;
}
.index_page .ind4 .list .item:hover .info .desc .tit {
  color: #fff;
}
.index_page .ind4 .list .item:hover .info .ibtn.style1 {
  background-color: transparent;
}
.index_page .ind5 {
  position: relative;
  min-height: 7.76rem;
}
.index_page .ind5 .bg {
  position: absolute;
  inset: 0;
}
.index_page .ind5 .wrap {
  position: relative;
  padding-top: 2rem;
}
.index_page .ind5 .wrap .tit-box {
  margin-bottom: 0.6rem;
}

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