/* 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;
  transition: all 0.5s;
}
.head:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo {
  height: 50%;
  /* padding-top: 0.2rem; */
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo a,
.head .logo img {
  display: block;
  height: 100%;
}
.head .logo .img {
  position: relative;
  height: 100%;
}
.head .logo .img img {
  -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%;
  margin: 0 0.1rem;
}
.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;
  left: 50%;
  bottom: 0px;
  height: 2px;
  width: 0px;
  background-color: #fff;
  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 dl {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--main-color);
  padding: 10px 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.5s;
}
.head .nav li dd {
  /* border-bottom: 1px solid #eee; */
  margin: 0 0.1rem;
}
.head .nav li dd a {
  display: block;
  font-size: 14px;
  line-height: 2;
  padding: 0 0.1rem;
  color: #fff;
  white-space: nowrap;
}
.head .nav li dd a:after {
  height: 1px;
  background-color: #fff;
}
.head .nav li:hover > a {
  /* color: var(--main-color); */
}
.head .nav li:hover > a:after {
  width: 100%;
}
.head .nav li:hover dl {
  /* top: 90px; */
  visibility: visible;
  opacity: 1;
}
.head .nav li dd a:hover:after {
  width: calc(100% - 0.2rem);
}
.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;
  /* width: 80px; */
  height: 100%;
  color: #fff;
  cursor: pointer;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
}
.head .btn .search i {
  font-size: 28px;
  margin-right: 5px;
}
.head .btn .search p {
  font-size: 18px;
}
.head .btn .menu_btn {
  display: none;
}

.xl_bg {
  position: absolute;
  top: var(--head-height);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--main-color);
  padding: 10px 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.5s;
}

/* 下拉样式 */
.head.on1 {
  height: calc(var(--head-height) - 20px);
}
.head.on1:after {
  /* height: 100%; */
  width: 100%;
  opacity: 0.9;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.head.on1 .logo {
  padding-top: 0;
}
/* .head.on1 .logo img {
  height: 60px;
} */
.head.on1 .logo img.logo1 {
  opacity: 1;
}
.head.on1 .logo img.logo2 {
  opacity: 0;
}
.head.on1 .nav li > a {
  color: #333;
}
.head.on1 .nav li > a:after {
  background-color: #333;
}
.head.on1 .btn .search {
  /* background-color: var(--main-color); */
}
.head.on1 .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);
}

/* menu */
.menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 0 2.5rem;
  background-color: #fff;
}
.menu .left {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1.5rem;
  height: 100%;
  background-color: #333;
}
.menu .left .logo {
  padding: 0.2rem 0.1rem;
}
.menu .left .logo img {
  display: block;
}
.menu .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .close i {
  font-size: 36px;
  color: #333;
}
.menu .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menu .nav {
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.menu .nav ul {
  position: relative;
}
.menu .nav ul li a {
  position: relative;
  display: block;
  text-align: right;
  font-size: 0.32rem;
  line-height: 0.5rem;
  white-space: nowrap;
  padding: 0 0 0 0.4rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .nav ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 0px;
  height: 2px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .nav ul dl {
  position: absolute;
  right: -webkit-calc(100% + 80px);
  right: -moz-calc(100% + 80px);
  right: calc(100% + 80px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  /* animation: navInLeft .4s ease-in; */
}
.menu .nav ul dl dd a {
  display: block;
  font-size: 0.24rem;
}

.menu .nav ul li.on > a {
  color: var(--main-color);
  padding: 0 0.4rem 0 0;
}
.menu .nav ul li.on > a:after {
  width: 0.3rem;
}
.menu .nav ul li.on > dl {
  right: -webkit-calc(100% + 50px);
  right: -moz-calc(100% + 50px);
  right: calc(100% + 50px);
  visibility: visible;
  opacity: 1;
}
.menu .nav ul li dd.on > a {
  color: var(--main-color);
  padding: 0 0.4rem 0 0;
}
.menu .nav ul li dd.on > a:after {
  width: 0.3rem;
}
.menu .nav ul dd.on > dl {
  right: -webkit-calc(100% + 50px);
  right: -moz-calc(100% + 50px);
  right: calc(100% + 50px);
  visibility: visible;
  opacity: 1;
}
.menu .nav1 {
  display: none;
}

/* index */
.index_bg {
  /* background-color: #fafafa; */
  margin-top: 0px;
}

.inbanner {
  position: relative;
}

.inbanner .swiper-slide a {
  position: relative;
  display: block;
  background-color: #fff;
  height: 100vh;
}

.inbanner .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
  -o-object-fit: none;
  object-fit: none;
  opacity: 1;
}

.inbanner .swiper-slide {
  position: relative;
}

.inbanner .swiper-slide .text {
  position: absolute;
  top: 50%;
  left: 10%;
  /* 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: 64px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.inbanner .swiper-slide .text h5 {
  font-size: 28px;
  color: #ddd;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.inbanner .swiper-slide .text p {
  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;
  font-size: 20px;
  color: #fff;
}

.inbanner .swiper-slide .text p span {
  display: inline-block;
  margin: 0 10px;
  width: 1px;
  height: 10px;
  background-color: #eee;
}

.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: center;
  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: 30px; */
  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;
  width: 25px;
  height: 25px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 100%;
  margin: 0;
  margin-right: 10px;
  opacity: 0.6;
  -webkit-transition: var(--transition-custom);
  -o-transition: var(--transition-custom);
  -moz-transition: var(--transition-custom);
  transition: var(--transition-custom);
}
.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 50%;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  border-color: #fff;
}

.intl h3 {
  position: relative;
  font-size: 36px;
  color: var(--main-color);
}
.intl h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Bebas-Neue";
  font-size: 108px;
  color: #ccc;
  letter-spacing: 10px;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.inys {
  position: relative;
  border-bottom: 1px solid #eee;
}
.inys::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 30%;
  height: calc((100% - 1rem) / 3 + 1rem);
  background-color: var(--main-color);
}
.inys .w80 {
  padding-top: 1rem;
  border-left: 1px solid #eee;
}
.inys ul li {
  display: flex;
}
.inys ul li .text {
  position: relative;
  width: 50%;
  padding: 0.8rem 1rem;
}
.inys ul li .text::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  height: 68px;
  width: 1px;
  background-color: var(--main-color);
}
.inys ul li .text h5 {
  position: relative;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  padding-left: 45px;
  margin-bottom: 10px;
}
.inys ul li .text h5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #ccc;
}
.inys ul li .text h3 {
  font-size: 36px;
  color: #444;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.inys ul li .text h3 span {
  font-size: 36px;
  display: inline-block;
  color: var(--main-color);
}
.inys ul li .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
.inys ul li .img {
  position: relative;
  width: 50%;
  padding-bottom: 25%;
}
.inys ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inys ul li .img:hover img {
  width: 200%;
}
.inys ul li:nth-child(2) {
  flex-direction: row-reverse;
}
.inys ul li:nth-child(2) .text::before {
  display: none;
}
.inys ul li:nth-child(3) .img img {
  width: 125%;
  max-width: none;
}

.inabout {
  position: relative;
  padding-top: 1rem;
}
.inabout .tl {
  position: absolute;
  top: 0.55rem;
  right: 0;
  font-family: "Bebas-Neue";
  font-size: 286px;
  color: var(--main-color);
  opacity: 0.2;
}
.inabout .text {
  width: 48%;
  padding-left: 10%;
  margin-bottom: 0.8rem;
}
.inabout .text h3 {
  position: relative;
  font-size: 36px;
  color: var(--main-color);
  padding-left: 65px;
  margin-bottom: 0.15rem;
}
.inabout .text h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}
.inabout .text h5 {
  font-size: 20px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.inabout .text p {
  font-size: 15px;
  line-height: 2;
  color: #666;
  margin-bottom: 0.4rem;
}
.inabout .text a {
  position: relative;
  display: block;
  width: 120px;
  font-size: 16px;
  line-height: 42px;
  color: #fff;
  text-align: center;
}
.inabout .text a::before,
.inabout .text a::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #aaa;
}
.inabout .text a::after {
  z-index: -1;
  width: 0;
  background-color: var(--main-color);
  transition: all 0.3s;
}
.inabout .text a:hover::after {
  width: 100%;
}
.inabout .ico {
  padding: 1rem 0;
  background: url(../images/inabout_bg.png) no-repeat center;
  background-color: var(--main-color);
}
.inabout .ico ul {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.inabout .ico ul li {
  text-align: center;
}
.inabout .ico ul li i {
  display: block;
  font-size: 56px;
  color: #fff;
  margin-bottom: 0.1rem;
}
.inabout .ico ul li h3 {
  font-size: 18px;
  color: #fff;
}
.inabout .img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 60%;
}
.inabout .img img {
  display: block;
  filter: drop-shadow(-10px -10px 30px rgba(255, 255, 255, 0.3));
}

.inpro {
  padding: 1rem 0;
  background-color: #fafafa;
}
.inpro .intl {
  position: relative;
  padding: 0.1rem 0;
  margin-bottom: 0.8rem;
}
.inpro .intl h3 {
  padding-left: 65px;
}
.inpro .intl h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}
.inpro .intl h5 {
  left: 0;
  transform: translateY(-50%);
}
.inpro .intl a {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 15px;
  font-weight: bold;
  color: #888;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.inpro .intl a:hover {
  color: var(--main-color);
}
.inpro .content {
  margin-left: -10px;
  width: calc(100% + 20px);
}
.inpro .content .swiper {
  padding: 10px 10px 40px 10px;
}
.inpro .content li a {
  display: block;
  background-color: #fff;
  /* border-radius: 5px;
  overflow: hidden; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.inpro .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: .2rem;
}
.inpro .content li .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpro .content li h3 {
  font-size: 16px;
  color: #333;
  text-align: center;
  padding: 0 10px;
}
.inpro .content li span {
  display: block;
  position: relative;
  bottom: -20px;
  width: 40px;
  height: 40px;
  background-color: #aaa;
  border-radius: 100%;
  margin: 0 auto;
  transition: all 0.3s;
}
.inpro .content li span::before,
.inpro .content li span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.inpro .content li span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.inpro .content li a:hover span {
  background-color: var(--main-color);
}
.inpro .content li a:hover span::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.inpro .content li a:hover span::after {
  transform: translate(-50%, -50%) rotate(270deg);
}

.incase {
  padding: 1rem 0;
}
.incase .intl {
  position: relative;
  padding: 0.1rem 0;
  margin-bottom: 0.8rem;
  text-align: center;
}

.incase .content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* .incase .swiper{
  position: relative;
} */
.incase .imglist .swiper li a {
  display: block;
  width: 100%;
  padding-bottom: 35%;
  overflow: hidden;
}
.incase .imglist .swiper li img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.incase .imglist .swiper .btn {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 0;
  width: 100%;
}
.incase .imglist .swiper .btn .incase_prev,
.incase .imglist .swiper .btn .incase_next {
  position: absolute;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s;
}
.incase .imglist .swiper .btn .incase_next {
  right: 0;
}
.incase .imglist .swiper .btn i {
  font-size: 32px;
  color: var(--main-color);
  transition: all 0.3s;
}
.incase .imglist .swiper .btn .incase_prev i {
  transform: rotate(180deg);
}
.incase .imglist .swiper .btn .incase_prev:hover,
.incase .imglist .swiper .btn .incase_next:hover {
  background-color: var(--main-color);
  opacity: 1;
}
.incase .imglist .swiper .btn .incase_prev:hover i,
.incase .imglist .swiper .btn .incase_next:hover i {
  color: #fff;
}

.incase .incase_nav {
  position: relative;
  z-index: 9;
}
.incase .incase_nav .swiper {
}
.incase .incase_nav ul {
  display: flex;
  background-color: #fff;
}
.incase .incase_nav li {
  position: relative;
  width: 20%;
  padding-bottom: 10%;
  text-align: center;
  border-right: 1px solid #eaeaea;
}
.incase .incase_nav li:last-child {
  border-right: 0;
}
.incase .incase_nav li .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s;
}
.incase .incase_nav li i {
  font-size: 48px;
  color: #666;
  margin-bottom: 0.1rem;
}
.incase .incase_nav li h3 {
  font-size: 18px;
  color: #333;
}
.incase .incase_nav li.on .box {
  /* top: -5%;
  left: -5%;
  width: 110%;
  height: 110%; */
  background-color: var(--main-color);
  /* box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); */
}
.incase .incase_nav li.on i {
  color: #fff;
}
.incase .incase_nav li.on h3 {
  color: #fff;
}

.innews {
  padding: 0.8rem 0 1rem;
  background: url(../images/innews_bg.png) no-repeat center bottom #fafafa;
  /* -o-background-size: 100% auto;
  background-size: 100% auto; */
  overflow: hidden;
}
.innews .intl {
  position: relative;
  padding: 0.1rem 0;
  margin-bottom: 0.8rem;
}
.innews .intl h3 {
  padding-left: 65px;
}
.innews .intl h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}
.innews .intl h5 {
  left: 0;
  transform: translateY(-50%);
}
.innews .intl a {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 15px;
  font-weight: bold;
  color: #888;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.innews .intl a:hover {
  color: var(--main-color);
}
.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 {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}
.innews .content ul li.left img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  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: url(../images/innews_ico.png) no-repeat right bottom -100% #fff;
}
.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: 32px;
  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-color: var(--main-color);
  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;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -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: var(--main-color);
  -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;
  text-align: justify;
  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: var(--main-color);
}

.innews .content dd a:hover h3:after {
  width: 100%;
  left: 0;
  right: auto;
}

.foot {
  background-color: #333;
}
.foot ul {
  display: flex;
}
.foot ul li {
  position: relative;
  width: 20%;
  /* height: 4.6rem; */
  padding: 0.6rem 0.5rem 0.6rem 0.6rem;
  border-left: 1px solid #666;
}
.foot ul li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: -1px;
  width: 2px;
  height: 50px;
  background-color: var(--main-color);
}
.foot ul li:first-child {
  background-color: var(--main-color);
}
.foot ul li:nth-child(-n + 2) {
  border-left: 0;
}
.foot ul li h5 {
  position: relative;
  font-size: 12px;
  color: #fff;
  padding-left: 30px;
  opacity: 0.9;
  text-transform: uppercase;
  margin-bottom: 0.05rem;
}
.foot ul li h5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #fff;
  opacity: 0.9;
}
.foot ul li h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}
.foot ul li p {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}
.foot ul li .tel {
  font-size: 32px;
  color: #fff;
  margin: 0.1rem 0 0.25rem;
}
.foot ul li .code {
  padding-left: 0.5rem;
  margin-top: 0.3rem;
}
.foot ul li .code img {
  display: block;
  width: 100px;
}
.foot ul li dd {
  margin-bottom: 0.2rem;
}
.foot ul li dd a {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.foot ul li dd a:hover {
  opacity: 1;
}
.foot_copyright {
  padding: 0.15rem 0;
  background-color: #fafafa;
}
.foot_copyright .w90 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.foot_copyright p {
  color: #666;
}
.foot_copyright a {
  display: inline-block;
  color: #666;
  transition: all 0.3s;
}
.foot_copyright a:first-child {
  margin-right: 0.2rem;
}
.foot_copyright a:hover {
  color: var(--main-color);
}
