/* 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: 90px;
  padding: 0 0.3rem;
}
.head:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo {
  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;
}
.head .logo .img {
  position: relative;
}
.head .logo .img img {
  height: 60px;
  -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;
  height: 100%;
  opacity: 0;
}
.head .right{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
}
.head .nav {
  height: 100%;
  margin-right: .2rem;
}
.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;
  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 .nav_xl{
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: rgba(27, 133, 45, 0.85);
  padding: .5rem 0 .6rem;
}
.head .nav .nav_xl .w80{
  display: flex;
  justify-content: space-between;
}
.head .nav .nav_xl .img{
  position: relative;
  width: 400px;
  padding-bottom: 225px;
  overflow: hidden;
}
.head .nav .nav_xl .text{
  width: calc(100% - 450px);
}
.head .nav .nav_xl .text h3{
  font-size: .36rem;
  color: #fff;
  margin-bottom: .2rem;
}
.head .nav .nav_xl .text h3 span{
  font-size: .24rem;
  color: #fff;
}
.head .nav .nav_xl .text p{
  font-size: 16px;
  color: #fff;
  opacity: .8;
  margin-bottom: .5rem;
}
.head .nav .nav_xl .text dl{
  display: flex;
  flex-wrap: wrap;
}
.head .nav .nav_xl .text dl dd{
  margin-right: .1rem;
  margin-bottom: .1rem;
}
.head .nav .nav_xl .text dl dd a{
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #22ac38;
  padding: 0 .3rem;
  transition: all .3s;
}
.head .nav .nav_xl .text dl dd a:hover{
  color: #22ac38;
  background-color: #fff;
}
.head .nav .nav_xl .img img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.head .nav li:hover > a {
  /* color: #22ac38; */
}
.head .nav li:hover > a:after {
  width: 100%;
  left: 0;
  right: auto;
}

.head .btn {
  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-left: .3rem;
  /* padding: 0 0.5rem; */
}
.head .btn:after{
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 10px;
  background-color: #ccc;
  /* transform: translateY(-50%); */
}
.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;
}
.head .btn .search i {
  font-size: 22px;
}
.head .btn .menu_btn {
  display: none;
}

/* 下拉样式 */
.head.on1:after {
  opacity: .95;
}
.head.on1 .logo {
  padding-top: 0;
}
.head.on1 .logo img {
  height: 60px;
}
.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 {
  cursor: pointer;
}
.head.on2 .btn .search i {
  color: #22ac38;
}

/* 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: 16px;
  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: #22ac38;
}
.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: #22ac38;
  -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: #22ac38;
  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: #22ac38;
  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 {
  display: block;
  height: 100%;
  min-height: 360px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
} */
.inbanner .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: none;
  object-fit: none;
  opacity: 1;
}

/* display: block;
height: 100%;
width: 100%;
-o-object-fit: none;
object-fit: none;
opacity: 1; */

.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;
  -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;
  padding-right: 5px;
}
.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 .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 .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: 3px;
  width: 200px;
  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;
}

.intl {
  position: relative;
  /* text-align: center; */
  margin-bottom: 0.5rem;
}
.intl:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 20px;
  width: 100px;
  height: 4px;
  background-color: #22ac38;
}
.intl h3 {
  font-size: 36px;
  line-height: 42px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  /* margin-bottom: 5px; */
}
.intl h5 {
  font-size: 25px;
  line-height: 36px;
  color: #999;
}

.intl1 {
  margin-bottom: 0.5rem;
}
.intl1 h3 {
  position: relative;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.intl1 h3:before,
.intl1 h3:after {
  content: "";
  position: absolute;
  left: -20px;
  top: 0px;
  width: 5px;
  height: 15px;
  background: #22ac38;
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  transform: skew(-30deg);
}
.intl1 h3:after {
  left: -30px;
}
.intl1 h5 {
  font-size: 42px;
  color: #27344d;
  font-weight: bold;
}

.inys {
  /* padding: 0.3rem 0; */
  background-color: #fff;
}
.inys .intl {
  margin-bottom: 0.8rem;
}
.inys .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.inys .content li {
  width: 20%;
  height: 495px;
  padding: 1.5rem 0.3rem 1rem 0.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inys .content li:nth-child(2n + 1) {
  background-color: #f5f5f5;
}
.inys .content li .zz {
  z-index: -1 !important;
  background-color: #22ac38;
}
.inys .content li .ico {
  margin-bottom: 1rem;
}
.inys .content li .ico i {
  font-size: 64px;
  color: #333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inys .content li .text h3 {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inys .content li .text p {
  font-size: 14px;
  color: #555;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inys .content li:hover {
  /* background-color: #22ac38; */
}
.inys .content li:hover .ico i,
.inys .content li:hover .text h3,
.inys .content li:hover .text p {
  color: #fff;
}

.inpro2{
  padding: .8rem 0;
}
.inpro2 .inpro2_nav{
  margin-bottom: 20px;
  background-color: #fff;
}
.inpro2 .inpro2_nav .swiper-slide{
  background-color: #ccc;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  width: 202px;
  background: #f5f5f5;
  /* border-right: 1px solid #fff; */
}
.inpro2 .inpro2_nav .swiper-slide.cur{
  padding: 0;
  background: #22ac38;
  /* border: #156322; */
  color: #fff;
}

.inpro2 .inpro2_con{
  margin-bottom: 40px;
}
.inpro2 .inpro2_con li dd{
  width: 24%;
  margin-right: 1.3%;
  float: left;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #eee;
}
.inpro2 .inpro2_con li dd:nth-child(4n){
  margin-right: 0px;
}
.inpro2 .inpro2_con li a{
  display: block;
}
.inpro2 .inpro2_con li a .img{
  /*height: 300px;*/
  border: 1px solid #eee;
  overflow: hidden;
}
.inpro2 .inpro2_con li a .img img{
  display: block;
  transition: all 0.3s;
}
.inpro2 .inpro2_con li a .text{
  position: relative;
  text-align: center;
  border-top: 1px solid #eee;
  background: #eee;
  position: relative;
  padding: 10px 0;
}
.inpro2 .inpro2_con li a .text:after{
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  background-color: #22ac38;
  transition: all 0.3s;
}
.inpro2 .inpro2_con li a .text p{
  font-size: 16px;
  line-height: 28px;
  color: #111;
  position: relative;
  z-index: 10;
  padding: 0 5px;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.inpro2 .inpro2_con li a:hover .img img{
  transform: scale(1.1);
}
.inpro2 .inpro2_con li a:hover .text:after{
  height: 49px;
}
.inpro2 .inpro2_con li a:hover .text p{
  color: #fff;
}
.inpro2 a.more{
  position: relative;
  display: block;
  width: 190px;
  height: 44px;
  font-size: 16px;
  color: #fff;
  line-height: 44px;
  letter-spacing: 1px;
  padding:0 45px 0 28px;
  background-color: #22ac38;
}
.inpro2 a.more i{
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 44px;
  border-left: 1px solid rgb(255 255 255 / 0.18);
  background-color: #333;
}
.inpro2 a.more i:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-20%,-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}

.inabout {
  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;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #f2f4f7;
}
.inabout .img {
  position: relative;
}
.inabout .img img {
  display: block;
  width: 100%;
}
.inabout .img img.img2 {
  display: none;
}
.inabout .text {
  position: absolute;
  top: 10%;
  right: 0;
  width: 50%;
  padding: 0.3rem 10% 0.3rem 0%;
}
.inabout .text:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 1px;
  background-color: #22ac38;
  opacity: 0;
}
.inabout .text h4 {
  font-size: 24px;
  color: #444;
  margin-top: 0.1rem;
}
.inabout .text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.inabout .text a {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 160px;
  height: 40px;
  color: #fff;
  padding: 0 20px;
  background-color: #22ac38;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  -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: #22ac38;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a span,
.inabout .text a i {
  position: relative;
  z-index: 1;
}
.inabout .text a:hover {
  width: 180px;
}
.inabout .text a:hover:after {
  width: 100%;
  opacity: 1;
}

.inpro .intl {
  margin-bottom: 0.8rem;
}
.inpro .content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.inpro .title_list {
  position: absolute;
  right: 0px;
  top: 0px;
}
.inpro .title_list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -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-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.inpro .title_list li {
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.inpro .title_list li:last-child {
  margin-bottom: 0px;
}
.inpro .title_list li h3 {
  font-size: 16px;
  color: #999;
  border-left: 1px solid #999;
}
.inpro .title_list li h3 span {
  display: inline-block;
  padding: 0 20px;
}
.inpro .title_list li.on h3 {
  color: #22ac38;
  border-left: 1px solid #22ac38;
}
.inpro .img_list {
  width: 70%;
  margin: 0;
  padding-bottom: 50px;
}
.inpro .img_list li {
  position: relative;
  background-color: #fff;
}
.inpro .img_list img {
  display: block;
  height: 100%;
  width: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
}
.inpro .inpro_next {
  position: absolute;
  z-index: 9;
  bottom: 0px;
  right: 35%;
  height: 80px;
  width: 180px;
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #22ac38;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .inpro_next i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 20px;
}
.inpro .inpro_next:hover {
  width: 200px;
  background-color: #22ac38;
}
.inpro .text_list {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 35%;
}
.inpro .text_list li {
  padding: 30px 45px 45px;
  background-color: #f5f5f5;
}
.inpro .text_list li span {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 16px;
  color: #22ac38;
  line-height: 24px;
}
.inpro .text_list li span:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 12px;
  width: 30px;
  height: 1px;
  background-color: #22ac38;
}
.inpro .text_list li h3 {
  font-size: 24px;
  /* font-weight: bold; */
  color: #27344d;
  margin: 0.15rem 0 0.15rem;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .text_list li p {
  font-size: 16px;
  line-height: 28px;
  height: 84px;
  color: #999;
  margin-bottom: 0.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.inpro .text_list li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 160px;
  font-size: 16px;
  line-height: 60px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .text_list li a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 40%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #22ac38;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .text_list li a:hover {
  color: #fff;
}
.inpro .text_list li a:hover:after {
  width: 100%;
  border-color: #22ac38;
  background-color: #22ac38;
}
.incase {
  padding: 0.2rem 0 1.2rem;
}
.incase .content {
  padding: 0 2.5%;
}
.incase .content li {
  position: relative;
}
.incase .content .img {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  background-color: #22ac38;
}
.incase .content .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .content .img .bg {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(bottom, rgba(34, 172, 56, .8) 0%, rgba(0, 138, 138, 0) 50%, transparent 100%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.incase .content .img .bg .iconfont {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  font-size: 49px;
}
.incase .content .text {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 5%;
  width: 90%;
  /* transform: translateY(-50%); */
}
.incase .content .text h3 {
  font-size: 22px;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .content .text h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0.05rem;
}
.incase .content li:hover .img img {
  opacity: 0.6;
}
.incase .content li:hover .text h3 {
  font-size: 24px;
}

.innews {
  position: relative;
  padding: 1rem 0;
}
.innews .bg {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 46%;
  height: 100%;
  overflow: hidden;
  background-color: #22ac38;
}
.innews .bg img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.4;
}
.innews .content {
  position: relative;
  z-index: 9;
  width: 90%;
  background-color: #fff;
  padding: 0.8rem 0.5rem 0.8rem 10%;
}
.innews .content .intl {
  margin-bottom: 0.3rem;
}
.innews .content .swiper {
  padding: 10px 10px;
}
.innews .content li a {
  position: relative;
  display: block;
  background-color: #fafafa;
}
.innews .content li .img{
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}
.innews .content li .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.innews .content li .text {
  padding: 0 0.2rem 0.5rem;
}
.innews .content li .text .time {
  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;
  padding: 0.2rem 0;
}
.innews .content li .text .time .d {
  font-size: 56px;
  color: #22ac38;
  font-weight: bold;
}
.innews .content li .text .time .my {
  padding-left: 10px;
  font-size: 14px;
  color: #666;
}
.innews .content li .text .time .xh {
  width: 30px;
  height: 2px;
  background-color: #22ac38;
  margin-left: 20px;
}
.innews .content li .text h3 {
  font-size: 16px;
  color: #333;
  line-height: 24px;
  height: 48px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content li .text1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 80%;
  visibility: hidden;
  opacity: 0;
  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);
  background: url(../images/innews_logo.png) no-repeat right -100% bottom 10px #fafafa;
  -o-background-size: 80% auto;
  background-size: 80% auto;
  padding: 0.8rem 0.2rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.innews .content li a:hover .text1 {
  visibility: visible;
  height: 100%;
  opacity: 1;
  background: url(../images/innews_logo.png) no-repeat right 5% bottom 10px #fafafa;
  -o-background-size: 80% auto;
  background-size: 80% auto;
}
.innews .content li .text1 h3 {
  position: relative;
  font-size: 18px;
  color: #22ac38;
  line-height: 24px;
  height: 48px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content li .text1 p {
  position: relative;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
.innews .content li .text1 p:before,
.innews .content li .text1 p:after {
  content: "";
  position: absolute;
  left: 8px;
  top: -15px;
  width: 5px;
  height: 15px;
  background: #22ac38;
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  transform: skew(-30deg);
}
.innews .content li .text1 p:after {
  left: 20px;
}
.innews .content li .text1 .time {
  position: absolute;
  left: 0.2rem;
  bottom: 0.5rem;
  font-size: 16px;
  color: #333;
}

/* foot */
.foot_link {
  background-color: #333;
}
.foot_link .w80 {
  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.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.foot_link p {
  color: rgba(255, 255, 255, 0.8);
}
.foot_link .gotop {
  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: 16px;
  color: #fff;
  cursor: pointer;
}
.foot_link .gotop i {
  font-size: 20px;
}
.foot_content {
  background-color: #333;
}
.foot_content .w80 {
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5rem 0 0.5rem;
}
.foot_content {
}
.foot_content .code img {
  display: block;
  width: 120px;
  margin-bottom: 0.1rem;
}
.foot_content .code h3 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.foot_content .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.foot_content .nav li {
  margin-right: 0.5rem;
}
.foot_content .nav li:last-child {
  margin-right: 0;
}
.foot_content .nav li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.foot_content .nav li dt {
  margin-bottom: 0.1rem;
  /* min-width: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35); */
}
.foot_content .nav li dt a {
  display: inline-block;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}
.foot_content .nav li a:hover {
  color: rgba(255, 255, 255, 1);
}
.foot_content .nav li dd a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.foot_content .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -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-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.foot_content .logo img {
  display: block;
  opacity: 0.95;
  /* margin-bottom: 5px; */
}
.foot_content .logo h3 {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.2rem;
}
.foot_content .logo h4 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
}
.foot_content .logo h5 {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: bold;
}
.foot_content .foot_contact {
  display: none;
}

.foot_copyright {
  background-color: #232323;
}
.foot_copyright .w80 {
  padding: 0.15rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
}
.foot_copyright p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}
.foot_copyright p a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.foot_copyright p a:first-child {
  margin-left: 0px;
}
.foot_copyright a:hover {
  color: rgba(255, 255, 255, 0.9);
}
