/* head */
.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: var(--head-height);
  padding: 0 0.3rem;
}
.head .xl_bg {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0;
  background-color: var(--main-color);
  backdrop-filter: blur(40px);
  opacity: 0.8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  background-color: #000;
  opacity: 0.8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo {
  height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.head .logo .img {
  position: relative;
  height: 60%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo img {
  display: block;
  height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo img.logo1 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.head .nav {
  height: 100%;
}
.head .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.head .nav li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 0.2rem;
}
.head .nav li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  padding: 0 0.05rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  height: 1px;
  width: 0px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li dl {
  position: absolute;
  top: var(--head-height);
  left: 50%;
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  padding-bottom: 20px;
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li dd {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0s;
}
.head .nav li dd a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 2.5;
  padding: 0;
  color: #fff;
  /* min-width: 100px; */
  white-space: nowrap;
  text-align: center;
  opacity: 0.6;
}
.head .nav li dd a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
  opacity: 0.8;
  transition: all 0.3s;
}
.head .nav li:hover > a {
  opacity: 1;
}
.head .nav li:hover > a:after {
  width: 100%;
  left: 0;
  right: auto;
}
.head .nav li:hover dl {
  /* top: var(--head-height); */
  visibility: visible;
  opacity: 1;
}
.head .nav li:hover dd {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s;
}
.head .nav li dd a:hover {
  opacity: 1;
}
.head .nav li dd a:hover::after {
  width: 100%;
}
.head .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  /* padding: 0 0.5rem; */
}
.head .btn .search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.head .btn .search i {
  font-size: 28px;
  margin-right: 5px;
}
.head .btn .menu_btn {
  display: none;
}

/* 下拉样式 */
.head.on1:after {
  height: 100%;
}
.head.on1 .logo {
  padding-top: 0;
}
.head.on1 .logo .img {
  height: 60%;
}
.head.on2:after {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.head.on2 .logo img.logo1 {
  opacity: 1;
}
.head.on2 .logo img.logo2 {
  opacity: 0;
}
.head.on2 .nav li a {
  color: #333;
}
.head.on2 .nav li a:after {
  background-color: #333;
}
.head.on2 .btn .search {
  color: #333;
}
.head.on2 .btn .search i {
  color: var(--main-color);
}

/* serach */
.head_search {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 45px;
  width: 768px;
  max-width: 90%;
  /* height: 140px; */
}
.head_search form {
  position: relative;
}
.head_search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #666;
}
.head_search button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border: 0px;
  font-size: 22px;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.head_search button:hover {
  color: #fff;
  background-color: var(--main-color);
}
.head_search .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.head_search .close:after,
.head_search .close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  line-height: 20px;
  background-color: #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_search .close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search_bg {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.mob_page_nav {
  display: none;
}
.menu {
  display: none;
}

/* index */
.index_bg {
  display: block;
  /* background-color: #fafafa; */
  margin-top: 0px;
}

.inbanner {
  position: relative;
}
/* .inbanner::before{
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--head-height);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.inbanner::after{
  content: "";
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--head-height);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 100%);
} */

.inbanner .swiper-slide a {
  position: relative;
  display: block;
  background-color: var(--main-color);
  height: 100vh;
}
.inbanner .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 1;
}
.inbanner .swiper-slide .text {
  position: absolute;
  top: 50%;
  left: 10%;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
  /* padding-top: 100px; */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inbanner .swiper-slide .text h3 {
  font-size: 0.48rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.inbanner .swiper-slide .text h4 {
  position: relative;
  font-size: 0.16rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.inbanner .swiper-slide .text h4::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 50px;
  height: 5px;
  background-color: var(--main-color);
}
.inbanner .swiper-slide .text h5 {
  position: relative;
  font-size: 0.2rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.2rem;
}
.inbanner .swiper-slide .text p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.16rem;
  color: #fff;
}
.inbanner .swiper-slide .text p span {
  position: relative;
  z-index: 2;
  margin-right: 0.2rem;
  font-size: 0.16rem;
  line-height: 2;
  color: #fff;
  padding: 0 0.15rem;
  /* background-color: var(--main-color); */
}
.inbanner .swiper-slide .text p span::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 10px;
  opacity: 0.8;
}
.inbanner .swiper-slide {
  position: relative;
}

.inbanner .banner_btn {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: centerIndustrial field;
  align-items: center;
  padding: 0 3% 10px;
}

.inbanner .banner_btn .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inbanner .banner_btn .btn .banner_prev,
.inbanner .banner_btn .btn .banner_next {
  font-size: 14px;
  /* font-weight: bold; */
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  cursor: pointer;
}

.inbanner .banner_btn .btn .loading {
  position: relative;
  height: 2px;
  width: 100px;
  margin: 0 15px;
  background-color: rgba(255, 255, 255, 0.3);
}

.inbanner .banner_btn .btn .loading .bt {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background-color: #fff;
}

.inbanner .banner_btn .swiper-pagination {
  position: relative;
  bottom: 0;
  width: auto;
  height: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: 0;
  margin-right: 10px;
  opacity: 0.5;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet-active {
  height: 16px;
  opacity: 1;
}

.intl {
  /* text-align: center; */
  margin-bottom: 0.5rem;
}
.intl h3 {
  display: inline-block;
  font-size: 0.42rem;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05rem;
  background: -webkit-linear-gradient(-45deg, var(--main-color) 0%, var(--main-color2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--main-color);
  margin-bottom: 0.1rem;
  opacity: 0.8;
}
.intl p {
  font-size: 0.2rem;
  color: #333;
}

.inabout {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  background-color: #f1f6fc;
}
.inabout .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;

  background-size: cover;
  opacity: 0.1;
}
.inabout .bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/inabout_bg.webp) no-repeat center;
}
.inabout .bg::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c5e4ff;
  background-color: var(--main-color);
  opacity: 0.1;
}
.inabout .inab_t {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.3rem;
}
.inabout .inab_t .intl {
}
.inabout .inab_t .intl h3 {
  margin-bottom: 0.2rem;
}
.inabout .inab_t .img {
  position: relative;
  width: 50%;
  padding-bottom: 25%;
  border-top-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  overflow: hidden;
}
.inabout .inab_t .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inabout .text p {
  font-size: 0.15rem;
  line-height: 1.8;
  color: #333;
  width: 65%;
  margin-bottom: 0.6rem;
  text-align: justify;
}
.inabout .text .btn {
  display: flex;
  justify-content: space-between;
}
.inabout .text .btn a.more {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
}
.inabout .text .btn a.more i {
  font-size: 0.32rem;
  margin-left: 0.05rem;
  transition: all 0.3s;
}
.inabout .text .btn a.more:hover {
  color: var(--main-color);
}
.inabout .text .btn a.more:hover i {
  color: var(--main-color);
  margin-left: 0.15rem;
}
.inabout .text .btn ul {
  display: flex;
}
.inabout .text .btn ul li {
  margin-left: 0.2rem;
}
.inabout .text .btn ul li a {
  display: block;
  font-size: 0.16rem;
  line-height: 2.5;
  padding: 0 0.4rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 30px;
  transition: all 0.3s;
}
.inabout .text .btn ul li a:hover {
  color: #fff;
  background-color: var(--main-color);
}

.inpro {
  padding: 1rem 0;
}
.inpro .intl {
}
.inpro .swiper {
  padding: 10px 5px;
  /* border: 1px solid var(--main-color); */
}
.inpro .swiper li {
  border-radius: 10px;
  box-shadow: 0 0 3px 1px rgba(111, 111, 111, 0.1);
  flex-shrink: 0;
  width: 23.5%;
  margin-right: 3%;
  overflow: hidden;
  /* transition: all .3s; */
}
.inpro .swiper li.swiper_cur {
  width: 47%;
}
.inpro .swiper li .box {
  position: relative;
  z-index: 2;
  padding: 0 0.2rem;
}
.inpro .swiper li .box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(right bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 3s;
}
.inpro .swiper li .box .tl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 0.1rem 0;
}
.inpro .swiper li .box .tl h3 {
  font-size: 0.2rem;
  line-height: 1.5;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .swiper li .box .tl a.more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.4rem;
  height: 0.4rem;
  padding-left: 0.02rem;
  border: 1px solid #999;
  border-radius: 100%;
  transition: all 0.3s;
}
.inpro .swiper li .box .tl a.more i {
  font-size: 0.2rem;
}
.inpro .swiper li .box .tl a.more:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.inpro .swiper li .box .box1 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  /* padding-top: .15rem; */
}
.inpro .swiper li .box dl {
  position: absolute;
  top: 0.15rem;
  left: 10%;
  width: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
.inpro .swiper li .box dl dd {
  margin-bottom: 0.05rem;
}
.inpro .swiper li .box dl dd a {
  position: relative;
  display: block;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #666;
  padding-left: 10px;
  transition: all 0.3s;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .swiper li .box dl dd a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #aaa;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.inpro .swiper li .box dl dd a:hover {
  color: var(--main-color);
}
.inpro .swiper li .box dl dd a:hover::after {
  background-color: var(--main-color);
}
.inpro .swiper li .box .img {
  position: relative;
  right: 0%;
  bottom: -0.2rem;
  width: 100%;
  padding-bottom: 2rem;
  /* transition: all .3s; */
}
.inpro .swiper li .box .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.inpro .swiper li .box2 {
  height: 0.4rem;
}
.inpro .swiper li.swiper_cur .box .tl h3 {
  color: var(--main-color);
}
.inpro .swiper li.swiper_cur .box::after {
  opacity: 1;
}
.inpro .swiper li.swiper_cur .box dl {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.inpro .swiper li.swiper_cur .box .img {
  right: 0%;
  width: 50%;
}

.inpro .btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1.5%; */
  margin-top: 0.3rem;
}
.inpro .btn .inpro_scrollbar {
  position: relative;
  /* position: absolute;
  top: 0;
  left: 10%; */
  width: calc(100% - 1.5rem);
  height: 5px;
  background-color: #ccc;
  border-radius: 10px;
}
.inpro .btn .inpro_prev,
.inpro .btn .inpro_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  /* border: 1px solid #eee; */
  background-color: #f5f5f5;
  border-radius: 10px;
  transition: all 0.3s;
}
.inpro .btn .inpro_prev i,
.inpro .btn .inpro_next i {
  font-size: 0.16rem;
}
.inpro .btn .inpro_prev {
  transform: rotate(180deg);
}
.inpro .btn .inpro_prev:hover,
.inpro .btn .inpro_next:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.inpro1 .content ul {
  align-items: stretch;
}
.inpro1 .content li {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto !important;
}
.inpro1 .content li a {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0.6rem 0 calc(60% + 0.6rem);
}
.inpro1 .content li a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.85;
  transition: all 0.3s;
}
.inpro1 .content li:nth-child(2n) a::after {
  background-color: var(--main-color2);
}
.inpro1 .content li .tl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #fff;
  margin-bottom: 0.8rem;
  padding: 0 7.5%;
}
.inpro1 .content li .tl h3 {
  font-size: 0.24rem;
}
.inpro1 .content li .tl h4 {
  font-size: 0.16rem;
  line-height: 1;
  padding: 0.05rem 0.1rem;
  color: var(--main-color);
  background-color: #fff;
  border-radius: 0.15rem;
  margin: 0.1rem 0;
  opacity: 0.8;
  transition: all 0.3s;
}
.inpro1 .content li:nth-child(2n) h4 {
  color: var(--main-color2);
}
.inpro1 .content li .tl h5 {
  font-size: 0.14rem;
  line-height: 1.5;
  opacity: 0.6;
  transition: all 0.3s;
}
.inpro1 .content li .box {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  width: 60%;
  padding-bottom: 60%;
  transform: translateX(-50%);
}
.inpro1 .content li .sx {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 0.8rem;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.inpro1 .content li .img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 20%;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.inpro1 .content li .img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.6);
}
.inpro1 .content li .img img {
  display: block;
  border-radius: 100%;
}
.inpro1 .content li a:hover::after {
  opacity: 1;
}
.inpro1 .content li a:hover .tl h4 {
  opacity: 1;
}
.inpro1 .content li a:hover .tl h5 {
  opacity: 0.9;
}
.inpro1 .content li a:hover .sx {
  top: -0.4rem;
  bottom: auto;
  height: 0.3rem;
}
.inpro1 .content li a:hover .img {
  visibility: visible;
  padding: 8%;
  opacity: 1;
}
.inpro2 {
  padding: 0.8rem 0;
  background-color: #fafafa;
}
.inpro2 .intl {
  text-align: center;
  margin-bottom: 0.1rem;
}
.inpro2 .content {
}
.inpro2 .inpro2_img {
  position: relative;
  margin-bottom: 10px;
}
.inpro2 .inpro2_img li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.inpro2 .inpro2_img li .text {
  width: calc(100% - 2rem - 62%);
}
.inpro2 .inpro2_img li .text h3 {
  font-size: 0.36rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.15rem;
}
.inpro2 .inpro2_img li .text h5 {
  display: inline-block;
  font-size: 0.18rem;
  line-height: 2;
  color: #fff;
  padding: 0 0.2rem;
  background-color: var(--main-color2);
  border-radius: 20px;
  margin-bottom: 0.3rem;
}
.inpro2 .inpro2_img li .text p {
  font-size: 0.15rem;
  line-height: 1.5;
  text-align: justify;
  color: #333;
}
.inpro2 .inpro2_img li .img {
  width: calc( 100% - 2rem - 40%);
  padding-bottom: 40%;
}
.inpro2 .inpro2_img li .img img {
  object-fit: contain;
  width: 110%;
  height: 110%;
}
.inpro2 .inpro2_img li .more {
  width: 2rem;
}
.inpro2 .inpro2_img li .more a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.2rem;
}
.inpro2 .inpro2_img li .more a i {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  font-size: 0.32rem;
  color: #fff;
  background-color: var(--main-color);
  margin-left: 15px;
}
.inpro2 .inpro2_img li .more a i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  border-radius: 100%;
  background-color: var(--main-color);
  transform: translate(-50%, -50%);
  opacity: 1;
}
@keyframes ks {
  from {
    width: 80%;
    height: 80%;
    opacity: 1;
  }
  to {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
.inpro2 .inpro2_img li .more a:hover i::after {
  animation: ks 2s infinite;
}
.inpro2 .box {
  position: relative;
  padding: 0 50px;
}
.inpro2 .inpro2_list {
}
.inpro2 .inpro2_list .img {
  padding-bottom: 100%;
  background-color: #fff;
  transition: all 0.3s;
}
.inpro2 .inpro2_list .tl {
  display: flex;
  align-items: center;
  height: 0.45rem;
  padding: 0 0.05rem;
  margin-top: 3px;
  background-color: #fff;
  transition: all 0.3s;
}
.inpro2 .inpro2_list h3 {
  font-size: 0.15rem;
  line-height: 1;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.inpro2 .inpro2_list li.swiper-slide-thumb-active .img {
  background-color: var(--main-color);
}
.inpro2 .inpro2_list li.swiper-slide-thumb-active .tl {
  background-color: var(--main-color);
}
.inpro2 .inpro2_list li.swiper-slide-thumb-active .tl h3 {
  color: #fff;
}
.inpro2 .inpro2_btn {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  left: 0px;
  right: 0px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  /* transform: translateY(-50%); */
  /* pointer-events: none; */
}
.inpro2 .inpro2_btn > div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
}
.inpro2 .inpro2_btn i {
  font-size: 0.36rem;
  color: var(--main-color);
  transition: all 0.3s;
}
.inpro2 .inpro2_btn .inpro2_prev i {
  transform: rotate(180deg);
}
.inpro2 .inpro2_btn > div:hover {
  background-color: var(--main-color);
}
.inpro2 .inpro2_btn > div:hover i {
  color: #fff;
}

.inys {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  background: url(../images/inys_bg.webp) no-repeat center;
}
.inys::after,
.inys::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.9;
}
.inys::before {
  left: auto;
  right: 0;
  width: 55%;
  background-color: #000;
  opacity: 0.9;
}
.inys .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 8%;
  color: #fff;
}
.inys .text {
  width: 48%;
  padding: 0.8rem 10% 0.8rem 0.6rem;
  border: 5px solid #fff;
}
.inys .text h3 {
  font-size: 0.32rem;
  letter-spacing: 2px;
  /* font-weight: bold; */
  margin-bottom: 0.05rem;
}
.inys .text h5 {
  font-size: 0.5rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.inys .text span {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #fff;
  margin: 0.2rem 0;
}
.inys .text p {
  font-size: 0.15rem;
  line-height: 1.8;
  text-align: justify;
}
.inys .list {
  width: 45%;
}
.inys .list ul {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.inys .list ul li {
  display: flex;
  align-items: center;
  width: 100%;
}
.inys .list ul li .ico {
  margin-right: 0.15rem;
}
.inys .list ul li .ico i {
  font-size: 0.4rem;
}
.inys .list ul li h3 {
  font-size: 0.18rem;
}
.inys .list ul li span {
  display: block;
  /* width: 20px;
  height: 2px; */
  margin: 0.05rem 0;
  /* background-color: #fff; */
}
.inys .list ul li p {
  font-size: 0.15rem;
}

.incase {
  padding: 1rem 0;
}
.incase .tl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.incase .tl .intl {
  margin-bottom: 0;
}
.incase .tl .incase_nav ul {
  display: flex;
}
.incase .tl .incase_nav li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0.5rem;
}
.incase .tl .incase_nav li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.45rem;
  width: 0.4rem;
  height: 1px;
  background-color: #ccc;
  transform: translateY(-1px);
}
.incase .tl .incase_nav li:first-child {
  margin-left: 0;
}
.incase .tl .incase_nav li:first-child::after {
  display: none;
}
.incase .tl .incase_nav li i {
  display: block;
  font-size: 0.36rem;
  /* color: var(--main-color); */
  transition: all 0.3s;
}
.incase .tl .incase_nav li h3 {
  font-size: 0.14rem;
}
.incase .tl .incase_nav li.on i {
  color: var(--main-color);
}
.incase .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.incase .box .incase_img {
  position: relative;
  width: 55%;
  padding: 0 5%;
}
.incase .box .incase_img li {
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.8;
  transition: all 0.3s;
}
.incase .box .incase_img li.swiper-slide-active {
  opacity: 1;
}
.incase .box .incase_img .img {
  padding-bottom: 60%;
}
.incase .box .incase_img .btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 1.5%; */
  margin-top: 0.3rem;
  transform: translateY(-50%);
}
.incase .box .incase_img .btn .incase_prev,
.incase .box .incase_img .btn .incase_next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  /* border: 1px solid #eee; */
  background-color: #f5f5f5;
  border-radius: 100%;
  transition: all 0.3s;
}
.incase .box .incase_img .btn .incase_prev {
  transform: rotate(180deg);
}
.incase .box .incase_img .btn .incase_prev:hover,
.incase .box .incase_img .btn .incase_next:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.incase .box .incase_text {
  width: 42%;
}
.incase .box .incase_text li {
  padding: 10px;
}
.incase .box .incase_text h3 {
  font-size: 0.32rem;
  color: #333;
  /* color: var(--main-color); */
  margin-bottom: 0.1rem;
}
.incase .box .incase_text h5 {
  font-size: 0.16rem;
  /* color: #666; */
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.incase .box .incase_text p {
  font-size: 0.15rem;
  line-height: 1.8;
  color: #888;
  margin-bottom: 0.5rem;
}
.incase .box .incase_text a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.14rem;
  line-height: 3;
  width: 1.5rem;
  color: #333;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.incase .box .incase_text a i {
  font-size: 0.14rem;
  margin-left: 0.05rem;
  transition: all 0.3s;
}
.incase .box .incase_text a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.incase .box .incase_text a:hover i {
  color: #fff;
  margin-left: 0.2rem;
}

.innews {
  padding: 0.8rem 0 1rem;
  background: url(../images/innews_bg.png) no-repeat center bottom #f5f5f5;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}
.innews .intl {
  margin-bottom: 0.5rem;
}
.innews .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.innews .content ul li {
  -webkit-flex-basis: 33.33%;
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
}
.innews .content ul li.left {
  margin-right: 0.45rem;
}
.innews .content ul li.left a {
  position: relative;
  display: block;
  padding-bottom: 260px;
  background-color: #fff;
}
.innews .content ul li.left img {
  display: block;
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.innews .content ul li.left .text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0.4rem;
  height: 260px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  background-size: 40% auto !important;
}
.innews .content ul li.left .text span {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 0.3rem;
}
.innews .content ul li.left .text span font {
  float: right;
  display: inline-block;
}
.innews .content ul li.left .text h3 {
  font-size: 22px;
  line-height: 32px;
  height: 64px;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.4rem;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content ul li.left .text p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content ul li.left .text h4 {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  font-size: 18px;
  color: #666;
}
.innews .content ul li.left a:hover .text {
  height: 100%;
  background: #00458e;
  padding-top: 0.8rem;
}
.innews .content ul li.left a:hover .text span {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h3 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h4 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text p {
  /* height: 96px; */
  opacity: 1;
  visibility: visible;
}
.innews .content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 540px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.innews .content dd a {
  display: block;
}
.innews .content dd h3 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content dd h3:after {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  bottom: 0px;
  height: 2px;
  background-color: #00458e;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .content dd p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content dd span {
  display: block;
  font-size: 16px;
  color: #999;
}
.innews .content dd a:hover h3 {
  color: #00458e;
}

.innews .content dd a:hover h3:after {
  width: 100%;
  left: 0;
  right: auto;
}

.inht {
  position: relative;
  padding: 1rem 0;
}
.inht .bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-size: cover;
}
.inht .bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  opacity: 0.6;
}
.inht .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inht .w80 {
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
}
.inht h3 {
  font-size: 0.38rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.inht p {
  font-size: 0.16rem;
  line-height: 1.6;
  color: #fff;
  padding: 0 10%;
}

/* foot */
.foot {
  /* padding: 0 50px; */
}
.foot .content {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1.5rem;
  background-color: #f7f7f7;
}
.foot .foot_img {
  position: absolute;
  z-index: -1;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}
.foot .foot_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: .6; */
}
.foot .content .tl {
  margin-bottom: 0.6rem;
}
.foot .content .tl h3 {
  font-size: 0.32rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.15rem;
}
.foot .content .tl p {
  font-size: 0.15rem;
  color: var(--main-color);
}
.foot .content .text h3 {
  font-size: 0.42rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.3rem;
}
.foot .content .text p {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0.2rem;
}
.foot .code {
  margin-top: 0.5rem;
}
.foot .code ul {
  display: flex;
}
.foot .code ul li {
  margin-right: 0.2rem;
}
.foot .code ul li:last-child {
  margin-right: 0;
}
.foot .code img {
  display: block;
  width: 150px;
  margin-bottom: 0.05rem;
}
.foot .code h5 {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.foot .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.2rem 1rem;
  background-color: var(--main-color);
}
.foot .copyright p {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #fff;
}
.foot .copyright a {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #fff;
}
