/* 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: .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: 50%;
  -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 .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: .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: .8;
  transition: all .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 .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: 40%;
}
.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;
}

.inbanner {
  position: relative;
}
.inbanner::before {
  content: "";
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  pointer-events: none;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.inbanner .swiper-slide a {
  position: relative;
  display: block;
  background-color: #000;
}
/* .inbanner .swiper-slide a:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .3;
} */
.inbanner .swiper-slide img {
  display: block;
  height: 100vh;
  min-height: 240px;
  width: 100%;
  -o-object-fit: none;
  object-fit: none;
  /* opacity: .5; */
}
.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 .ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}
.inbanner .banner_btn .ico i {
  font-size: 24px;
}
.inbanner .banner_btn .ico p {
  font-size: 14px;
  font-weight: bold;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0.25) 100%, rgba(255, 255, 255));
  /* 文字颜色填充设置为透明 */
  -webkit-text-fill-color: transparent;
  /* 背景裁剪，即让文字使用背景色 */
  -webkit-background-clip: text;
  /* 背景图放大一下，看着柔和一些 */
  -webkit-background-size: 200% 100%;
  /* 应用动画flowCss 12秒速度 无限循环 线性匀速动画*/
  -webkit-animation: flowCss 6s infinite linear;
}

@-webkit-keyframes flowCss {
  0% {
    /* 移动背景位置 */
    background-position: 0 0;
  }

  100% {
    background-position: -400% 0;
  }
}

.inbanner .swiper-slide {
  position: relative;
}
.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 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  /* font-weight: bold; */
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, .6);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: all .3s;
}
.inbanner .banner_btn .btn .banner_prev{
  transform: rotate(180deg);
  margin-right: 20px;
}
.inbanner .banner_btn .btn .banner_prev i,
.inbanner .banner_btn .btn .banner_next i{
  font-size: 16px;
}
.inbanner .banner_btn .btn .loading {
  position: relative;
  height: 2px;
  width: 80px;
  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;
  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 {
  width: 2px;
  height: 15px;
  background-color: #fff;
  border-radius: 0px;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet-active {
  height: 30px;
  opacity: 1;
}
.inbanner .banner_btn .btn .banner_next:hover,.inbanner .banner_btn .btn .banner_prev:hover{
  background-color: #fff;
}
.inbanner .banner_btn .btn .banner_next:hover i,.inbanner .banner_btn .btn .banner_prev:hover i{
  color: var(--main-color);
}

/* 更多按钮 */
.inmore {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  font-size: 14px;
  line-height: 3;
  color: #333;
  border: 1px solid #333;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s;
}
.inmore span {
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #333;
  margin-left: 10px;
  transition: all 0.3s;
}
.inmore::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -180px;
  width: 170px;
  height: 100%;
  background-color: var(--main-color);
  transform: skew(20deg);
  opacity: 0.4;
  transition: all 0.5s;
}
.inmore:hover {
  color: #fff;
  border-color: var(--main-color);
}
.inmore:hover span {
  margin-left: 30px;
  background-color: #fff;
}
.inmore:hover::after {
  left: -20px;
  opacity: 1;
}

.inabout {
  position: relative;
  background: url(../images/inabout_bg2.png) no-repeat center;
  padding: 1rem 0;
}
.inabout .sk {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1.85rem;
  background-color: var(--main-color);
}
.inabout .w80 {
  position: relative;
}
.inabout .tl {
  position: absolute;
  z-index: 0;
  top: -0.6rem;
  right: 0;
  font-size: 2rem;
  font-weight: bold;
  color: #666;
  font-family: "Bebas-Neue";
  letter-spacing: 5px;
  opacity: 0.1;
}
.inabout .text {
  position: relative;
  width: 50%;
  padding-right: 20px;
}
.inabout .text h3 {
  font-size: 32px;
  line-height: 0.4rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0.1rem;
}
.inabout .text h4 {
  font-size: 14px;
  line-height: 0.15rem;
  color: #aaa;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.inabout .text h5 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.2rem;
}
.inabout .text h5 span {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color2);
  /* margin-right: 5px; */
}
.inabout .text p {
  font-size: 14px;
  line-height: 2;
  color: #666;
  text-align: justify;
  margin-bottom: 0.5rem;
}

.inabout .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: calc(100% - 1.85rem);
  overflow: hidden;
}
.inabout .img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inprocat {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
  padding-bottom: 100px;
}
.inprocat .img {
  position: relative;
  z-index: 9;
  top: 100px;
  width: 60%;
  background-color: #ccc;
}
.inprocat .img a {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 55%;
}
.inprocat .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inprocat .text {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  padding: 0 10% 0 22%;
  background: url(../images/inprocat_bg.jpg) no-repeat center;
  background-size: cover;
}
.inprocat .text .pro_logo {
  display: none;
  position: absolute;
  top: 50%;
  right: 10%;
  width: 40%;
  transform: translateY(-50%);
}
.inprocat .text .pro_logo img {
  display: block;
  width: 100%;
  opacity: 0.03;
}
.inprocat .text .swiper-slide {
  padding: 5px;
}
.inprocat .text h3 {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.inprocat .text h5 {
  font-size: 16px;
  color: #fff;
  /* text-transform: uppercase; */
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.inprocat .text p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}
.inprocat .text a.inmore {
  color: #fff;
  border-color: #fff;
}
.inprocat .text a.inmore span {
  background-color: #fff;
}
.inprocat .text a.inmore::after {
  background-color: var(--main-color2);
}
.inprocat .text a.inmore:hover {
  color: #fff;
  border-color: var(--main-color2);
}
.inprocat .text a.inmore:hover span {
  background-color: #fff;
}

.inpro {
  display: flex;
  justify-content: space-between;
  background: url(../images/inpro_bg.jpg) no-repeat center bottom;
  background-size: 100% 60%;
  padding: .5rem 0;
  margin: 1rem auto;
}
.inpro .text {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  width: 35%;
  padding-left: 10%;
  padding-right: 0.8rem;
}
.inpro .text h3 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  width: 100%;
  margin-bottom: 0.1rem;
}
.inpro .text h5 {
  font-size: 16px;
  color: #888;
  width: 100%;
  margin-bottom: 0.5rem;
}
.inpro .text p {
  font-size: 14px;
  line-height: 2;
  color: #888;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.inpro .text .btn {
  display: flex;
}
.inpro .text .btn .inpro_prev,.inpro .text .btn .inpro_next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  cursor: pointer;
  transition: all .3s;
}
.inpro .text .btn .inpro_prev i,.inpro .text .btn .inpro_next i{
  font-size: 16px;
  color: #666;
  transition: all .3s;
}
.inpro .text .btn .inpro_prev{
  margin-right: 20px;
}
.inpro .text .btn .inpro_prev i{
  transform: rotate(180deg);
}
.inpro .text .btn div:hover{
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.inpro .text .btn div:hover i{
  color: #fff;
}
.inpro .list {
  width: 65%;
}
.inpro .list li a {
  display: block;
  border: 1px solid #eee;
}
.inpro .list li .img{
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.inpro .list li .img img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpro .list li h3 {
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 3.5;
  padding: 0 10px;
  /* background-color: #fafafa; */
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .list li h3::before,
.inpro .list li h3::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
}
.inpro .list li h3::after {
  width: 0;
  background-color: var(--main-color);
  opacity: 0;
  transition: all .3s;
}
.inpro .list li a:hover h3{
  color: #fff;
}
.inpro .list li a:hover h3::after {
  width: 100%;
  opacity: 1;
}

.incase{
  margin: 1rem auto 0;
  padding-bottom: 1.5rem;
  background: url(../images/incase_bg.jpg) no-repeat bottom right;
  background-size: auto 100%;
}
.incase .intl{
  margin-bottom: .5rem;
}
.incase .intl h3 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  width: 100%;
  margin-bottom: 0.1rem;
}
.incase .intl h5 {
  font-size: 16px;
  color: #888;
  width: 100%;
  margin-bottom: 0.5rem;
}
.incase .intl p {
  font-size: 14px;
  line-height: 2;
  color: #888;
  text-align: justify;
  width: 480px;
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.incase .content{
  display: flex;
  justify-content: space-between;
}
.incase .content .img{
  width: 60%;
}
.incase .content .img li a{
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 55%;
  background-color: var(--main-color);
}
.incase .content .img li img{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: .6;
}
.incase .content .text{
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: 40%;
  padding: 0 10%;
}
.incase .content .text h3{
  font-size: 32px;
  color: #333;
  text-align: center;
}
.incase .content .text .hx{
  width: 40px;
  height: 1px;
  background-color: var(--main-color2);
  margin: .4rem auto .6rem;
}
.incase .content .text p{
  font-size: 14px;
  color: #666;
  line-height: 2;
  text-align: center;
  margin-bottom: 1rem;
}
.incase .content .text .btn {
  display: flex;
}
.incase .content .text .btn .incase_prev,.incase .content .text .btn .incase_next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  cursor: pointer;
  transition: all .3s;
}
.incase .content .text .btn .incase_prev i,.incase .content .text .btn .incase_next i{
  font-size: 16px;
  color: #666;
  transition: all .3s;
}
.incase .content .text .btn .incase_prev{
  margin-right: 20px;
}
.incase .content .text .btn .incase_prev i{
  transform: rotate(180deg);
}
.incase .content .text .btn div:hover{
  background-color: #333;
}
.incase .content .text .btn div:hover i{
  color: #fff;
}


.innews{
  /* margin: 1rem auto; */
  padding: 1.5rem 0;
  background: url(../images/innews_bg.jpg) no-repeat left bottom;
  background-color: #fafafa;
}
.innews .w80{
  position: relative;
  display: flex;
  align-items: center;
}
.innews .intl{
  width: 25%;
  padding-right: 10px;
  margin-bottom: .5rem;
}
.innews .intl h3 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  width: 100%;
  margin-bottom: 0.1rem;
}
.innews .intl h5 {
  font-size: 16px;
  color: #888;
  width: 100%;
  margin-bottom: 0.5rem;
}
.innews .intl .hx{
  width: 30px;
  height: 1px;
  background-color: var(--main-color2);
  margin-bottom: .2rem;
}
.innews .intl p {
  font-size: 14px;
  line-height: 2;
  color: #888;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.innews .list{
  width: 75%;
}
.innews .list li a{
  display: block;
  padding: .35rem .15rem;
  background-color: #fff;
  transition: all .3s;
}
.innews .list li h5{
  font-size: 16px;
  color: #333;
  opacity: .3;
  margin-bottom: .2rem;
  transition: all .3s;
}
.innews .list li h3{
  position: relative;
  font-size: 20px;
  color: #333;
  padding-bottom: .25rem;
  margin-bottom: .2rem;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
  transition: all .3s;
}
/* .innews .list li h3::after{
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color2);
  opacity: 0;
  transition: all .3s;
  transition-delay: .3s
} */
.innews .list li p{
  font-size: 14px;
  color: #333;
  opacity: .6;
  margin-bottom: .25rem;
  transition: all .3s;
}
.innews .list li .img{
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  margin-bottom: .25rem;
}
.innews .list li .img img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.innews .list li span{
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  transition: all .3s;
}
.innews .list li span:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  height: 2px;
  width: 10px;
  margin-top: -1px;
  background-color: #fff;
  opacity: 0;
  transition: all .3s;
}
.innews .list li a:hover {
  background-color: var(--main-color);
}
.innews .list li a:hover h5,.innews .list li a:hover h3,.innews .list li a:hover p{
  color: #fff;
}
/* .innews .list li a:hover h3::after{
  width: 100%;
  opacity: .6;
  left: 0;
  right: auto;
} */
.innews .list li a:hover span{
  color: #fff;
  padding-left: 20px;
}
.innews .list li a:hover span::after{
  left: 0;
  opacity: 1;
}

.foot{
  position: relative;
  padding: 1rem 0;
  background-color: #f4f4f4;
  /* background: url(../images/foot_bg2.jpg) no-repeat center; */
}
.foot .img{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
}
.foot .img img{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foot .w80{
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: space-around
}
.foot .gotop{
  position: absolute;
  top: 0;
  right: 0;
}
.foot .foot_logo{
  margin-bottom: .3rem;
}
.foot .foot_logo img{
  height: 50px;
}
.foot .foot_nav{
  margin-bottom: .4rem;
}
.foot .foot_nav ul{
  display: flex;
  flex-wrap: wrap;
}
.foot .foot_nav li{
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
.foot .foot_nav li::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 10px;
  background-color: #ccc;
  transform: translateY(-50%);
}
.foot .foot_nav li:first-child{
  margin-left: 0;
}
.foot .foot_nav li:last-child::after{
  display: none;
}
.foot .foot_nav li a{
  display: block;
  font-size: 15px;
  color: #555;
}
.foot .foot_nav li a:hover{
  color: var(--main-color);
}
.foot .foot_contact h3{
  font-size: 28px;
  color: var(--main-color);
}
.foot .foot_contact h5{
  font-size: 24px;

  text-transform: uppercase;
  color: #888;
  margin-bottom: .2rem;
}
.foot .foot_contact p{
  font-size: 14px;
  line-height: 2;
  color: #666;
}
.foot .foot_contact h1{
  font-size: 18px;
  color: var(--main-color2);
}
.foot .foot_contact h1 span{
  display: block;
  font-size: 32px;
}
.foot_copyright{
  background-color: var(--main-color);
  padding: 10px 0;
}
.foot_copyright .w80{
  display: flex;
  justify-content: space-between;
}
.foot_copyright p{
  font-size: 14px;
  line-height: 24px;
  color: #ddd;
}
.foot_copyright p a{
  display: inline-block;
  color: #fff;
  transition: all .3s;
  opacity: .8;
}
.foot_copyright p a:hover{
  opacity: 1;
}