/* 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: 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 {
  /* 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: 40px;
  -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 .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;
  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: 120px;
  min-width: 100%;
  background-color: #fff;
  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.3s;
}
.head .nav li dd {
  border-bottom: 1px solid #eee;
}
.head .nav li dd a {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding: 0 5px;
  color: #333;
  min-width: 100px;
  white-space: nowrap;
}
.head .nav li:hover > a {
  /* color: #004557; */
}
.head .nav li:hover > a:after {
  width: 100%;
  left: 0;
  right: auto;
}
.head .nav li:hover dl {
  top: 90px;
  visibility: visible;
  opacity: 1;
}
.head .nav li dd a:hover {
  color: #fff;
  background-color: #004557;
}
.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 .tel {
  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 .tel i {
  font-size: 28px;
  margin-right: 5px;
}
.head .btn .tel p{
  font-size: 18px;
}
.head .btn .menu_btn {
  display: none;
}

/* 下拉样式 */
.head.on1:after {
  height: 100%;
}
.head.on1 .logo {
  padding-top: 0;
}
.head.on1 .logo img {
  height: 40px;
}
.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 .tel {
  color: #333;
}
.head.on2 .btn .tel i {
  color: #004557;
}

/* 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: #004557;
}
.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: #004557;
  -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: #004557;
  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: #004557;
  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: #007439;
}
/* .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: 360px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
  /* opacity: .6; */
}
.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%;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
  /* padding-top: 100px; */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inbanner .swiper-slide .text h1 {
  font-size: .16rem;
  color: #fff;
  text-transform: uppercase;
  font-family: "AlibabaPuHuiTi55";
  margin-bottom: .1rem;
}
.inbanner .swiper-slide .text h2 {
  display: inline-block;
  font-size: .2rem;
  color: #fff;
  line-height: 2;
  background-color: #004557;
  padding: 0 .2rem;
  font-family: "AlibabaPuHuiTi55";
  border-radius: 3px;
  margin-bottom: .3rem;
}
.inbanner .swiper-slide .text h3 {
  font-size: .64rem;
  /* font-weight: bold; */
  color: #fff;
  font-family: "AlibabaPuHuiTi55";
  margin-bottom: .3rem;
}
.inbanner .swiper-slide .text h5 {
  font-size: .18rem;
  color: #fff;
  margin-bottom: .5rem;
  text-transform: uppercase;
  font-family: "AlibabaPuHuiTi55";
}
.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: .18rem;
  color: #fff;
  font-family: "AlibabaPuHuiTi55";
}
.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.3rem;
}
.intl h3 {
  font-size: 0.56rem;
  line-height: 0.875;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.2rem;
}
.intl h5 {
  font-size: 0.32rem;
  line-height: 1.3;
  color: #999;
}
.intl span {
  display: inline-block;
  width: 0.4rem;
  height: 0.04rem;
  background-color: #666;
  margin-bottom: 0.1rem;
}
.inpro {
  position: relative;
  padding: 0.6rem 0 1rem;
  background-color: #fafafa;
}
.inpro .intl {
  max-width: 55%;
}
.inpro .sk {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45%;
  height: 50%;
  padding-right: 10%;
  padding-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /* background: url(../images/inpro_bg.png) no-repeat center left;
  background-size: auto 100%; */
  background-color: #004557;
}
.inpro .sk div {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 100%;
  text-align: center;
  margin-left: 20px;
  cursor: pointer;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.inpro .sk div.inpro_prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.inpro .sk div.inpro_prev:after,
.inpro .sk div.inpro_next:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: #fff;
  border-radius: 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%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .sk i {
  font-size: 24px;
  color: #fff;
  line-height: 56px;
}
.inpro .sk div:hover i {
  color: #004557;
}
.inpro .sk div.inpro_prev:hover:after,
.inpro .sk div.inpro_next:hover:after {
  width: 60px;
  height: 60px;
}
.inpro .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.inpro .content li .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.inpro .content li .text {
  position: relative;
  background-color: #fff;
  padding: 0.08rem 0;
  text-align: center;
  margin-top: 0.03rem;
}
.inpro .content li .text:after{
  content: "";
  position: absolute;
  top: -.03rem;
  right: 0;
  height: .03rem;
  width: 0%;
  background-color: #004557;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.inpro .content li .text h3 {
  font-size: 18px;
  line-height: 32px;
  color: #333;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .content li .text h5 {
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.inpro .content li a:hover .img img{
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.inpro .content li a:hover .text:after{
  width: 100%;
  left: 0;
  right: auto;
}
.inpro .content li a:hover .text h3{
  color: #004557;
}
.inabout {
  position: relative;
  padding: 1.5rem 0 1rem;
  background: url(../images/inabout_bg1.png) no-repeat right center;
  -o-background-size: 80% auto;
     background-size: 80% auto;
}
.inabout .sk {
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  width: 35%;
  height: 50%;
  background-color: #004557;
}
.inabout .w80 {
  position: relative;
  padding-left: 50%;
}
.inabout .img {
  position: absolute;
  top: 0;
  left: -12.5%;
  width: 67.5%;
  height: 100%;
}
.inabout .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inabout .text {
  padding: 0.5rem 0 0.3rem;
  text-align: right;
}
.inabout .text h3 {
  font-size: 0.56rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "grifterbold";
}
.inabout .text h3 span {
  font-size: 0.56rem;
  color: #004557;
  font-family: "grifterbold";
}
.inabout .text h5 {
  font-size: 0.32rem;
  text-transform: uppercase;
  font-family: "AlibabaPuHuiTi55";
  padding: 0.25rem 0;
}
.inabout .text p {
  font-size: 14px;
  line-height: 2;
  color: #666;
  text-align: justify;
  margin-bottom: 0.3rem;
}
.inabout .text ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0.3rem;
}
.inabout .text ul li {
  margin-left: 0.5rem;
  text-align: center;
}
.inabout .text ul li:first-child {
  margin-left: 0;
}
.inabout .text ul li a {
  display: block;
}
.inabout .text ul li .ico {
  width: 0.8rem;
  padding: 0.1rem;
  border: 1px solid #004557;
  border-radius: 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.inabout .text ul li i {
  display: block;
  font-size: 0.48rem;
  color: #004557;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.inabout .text ul li h1 {
  font-size: 16px;
  color: #333;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.inabout .text ul li a:hover .ico {
  border-color: #004557;
  background-color: #004557;
}
.inabout .text ul li a:hover i {
  color: #fff;
}
.inabout .text ul li a:hover h1 {
  color: #004557;
}
.inabout .text a.more {
  display: block;
  float: right;
  width: 1.8rem;
  font-size: 16px;
  color: #fff;
  line-height: 0.5rem;
  background-color: #00867a;
  border-radius: 50px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innew .intl h3 {
  font-size: 0.48rem;
}
.inabout .text a.more:hover {
  background-color: #004557;
}
.inys .w80 {
  position: relative;
  padding-right: 30%;
  /* display: flex;
  flex-direction: row-reverse; */
}
.inys .title {
  position: absolute;
  right: -12.5%;
  top: 0;
  width: 50%;
  height: 100%;
}
.inys .title .img {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.inys .title .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004557;
  opacity: 0.8;
}
.inys .title .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inys .title .text {
  position: absolute;
  top: 1.25rem;
  right: 25%;
  text-align: right;
}
.inys .title .text h3 {
  font-size: 0.56rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.inys .title .text h5 {
  font-size: 0.32rem;
  line-height: 1;
  color: #fff;
  font-family: "AlibabaPuHuiTi55";
  margin-bottom: 0.2rem;
}
.inys .title .text span {
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: #fff;
  margin-bottom: 0.2rem;
}
.inys .title .text p {
  padding-left: 0.8rem;
  color: #fff;
  line-height: 2;
  opacity: 0.9;
  /* text-align: justify; */
}
.inys .content {
  padding: 1.25rem 0 1rem;
}
.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: 50%;
  margin-bottom: 0.5rem;
}
.inys .content li:nth-child(n + 2) {
  margin-bottom: 0;
}
.inys .content li .ico {
  margin-bottom: 0.2rem;
}
.inys .content li .ico i {
  font-size: 0.64rem;
  color: #004557;
}
.inys .content li h3 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  font-family: "AlibabaPuHuiTi55";
  margin-bottom: 0.2rem;
}
.inys .content li span {
  display: block;
  width: 28px;
  height: 4px;
  background-color: #00867a;
  margin-bottom: 0.2rem;
}
.inys .content li p {
  font-size: 16px;
  color: #333;
}

.inpro2 {
  padding: 1rem 0;
  background-color: #fafafa;
}
.inpro2 .intl {
  text-align: center;
}
.inpro2 .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;
  background-color: #fff;
}
.inpro2 .content .inpro2_nav {
  width: 330px;
  background-color: #004557;
}
.inpro2 .content .inpro2_nav .tl {
  padding: 0.3rem 0.35rem;
}
.inpro2 .content .inpro2_nav .tl h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 0.05rem;
}
.inpro2 .content .inpro2_nav .tl h4 {
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}
.inpro2 .content .inpro2_nav ul {
  padding: 0.35rem 0.35rem 0.35rem 0.25rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.inpro2 .content .inpro2_nav ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 40px;
  padding: 0 0.3rem;
  color: #333;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro2 .content .inpro2_nav ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  border: solid transparent 5px;
  border-left-color: #fff;
  -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro2 .content .inpro2_nav ul li.more a {
  color: #004557;
}
.inpro2 .content .inpro2_nav ul li.on a {
  color: #fff;
  background-color: #004557;
}
.inpro2 .content .inpro2_nav ul li.on a:after {
  opacity: 1;
}
.inpro2 .content .list {
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-calc(100% - 330px);
  width: -moz-calc(100% - 330px);
  width: calc(100% - 330px);
  height: 100%;
}
.inpro2 .content .list 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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inpro2 .content .list ul li {
  width: 50%;
  height: 50%;
}
.inpro2 .content .list ul li:nth-child(2n + 1) {
  border-right: 1px solid #eee;
}
.inpro2 .content .list ul li:nth-child(-n + 2) {
  border-bottom: 1px solid #eee;
}
.inpro2 .content .list ul li a {
  display: block;
  position: relative;
  height: 100%;
}
.inpro2 .content .list ul li .img {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #fff;
}
.inpro2 .content .list ul li .img img {
  display: block;
  position: absolute;
  top: 0;
  right: 5%;
  /* width: 100%; */
  height: 100%;
}
.inpro2 .content .list ul li .text {
  position: absolute;
  bottom: 5%;
  left: 5%;
}
.inpro2 .content .list ul li .text h3 {
  font-size: 18px;
  color: #333;
  /* font-family: "AlibabaPuHuiTi55"; */
  font-weight: bold;
  margin-bottom: 0.05rem;
}
.inpro2 .content .list ul li .text h5 {
  font-size: 16px;
  color: #666;
}

.incase {
  position: relative;
  padding-bottom: 1rem;
  background-color: #fff;
}
.incase .w90 {
  position: relative;
}
.incase .intl {
  position: absolute;
  z-index: 99;
  top: 100px;
  left: 10%;
  text-align: left;
}
.incase .intl h3 {
  color: #fff;
  margin-bottom: 0.1rem;
}
.incase .intl h5 {
  color: #fff;
}
.incase .img_list li {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding-bottom: 26%;
  background-color: #004557;
}
.incase .img_list li img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}
.incase .img_list li:after {
  content: "";
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.incase .box {
  position: relative;
  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;
  min-height: 215px;
}
.incase .box .text_list {
  position: relative;
  width: 760px;
  margin: 0px;
  padding-top: 50px;
}
.incase .box .text_list h3 {
  font-size: 32px;
  color: #555;
  margin-bottom: 35px;
  font-weight: bold;
}
.incase .box .text_list p {
  font-size: 15px;
  line-height: 2;
  color: #888;
  text-align: justify;
  margin-bottom: 30px;
}
.incase .box .text_list a {
  position: relative;
  display: block;
  width: 120px;
  font-size: 16px;
  line-height: 38px;
  color: #fff;

  text-align: center;
}
.incase .box .text_list a:before,
.incase .box .text_list a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #00867a;
  opacity: 0.8;
}
.incase .box .text_list a:after {
  width: 0px;
  background-color: #004557;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .box .text_list a:hover:after {
  width: 100%;
}
.incase .box .title_list {
  position: absolute;
  top: -0;
  right: 0px;
  width: 330px;
  height: 430px;
  margin: 0px;
  padding-top: 100px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #333;
  text-align: center;
}
.incase .box .title_list h3 {
  font-size: 36px;
  color: #fff;
}
.incase .box .title_list span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #00867a;
  margin: 20px auto;
}
.incase .box .title_list p {
  font-size: 42px;
  color: #fff;
  font-family: "Bebas-Neue";
  opacity: 0.9;
}
.incase .box .title_list .btn {
  position: absolute;
  z-index: 99;
  left: 0px;
  bottom: 80px;
  width: 100%;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.incase .box .title_list .btn i {
  display: block;
  font-size: 12px;
  color: #fff;
  opacity: 0.6;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .box .title_list .btn .incase_prev i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.incase .box .title_list .btn .sx {
  display: block;
  width: 1px;
  height: 10px;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 50px;
}
.incase .box .title_list .btn i:hover {
  color: #00867a;
  opacity: 1;
}

.innew {
  position: relative;
  padding: 0.9rem 0 1rem;
}
.innew .bg_img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.innew .bg_img:after,.innew .bg_img:before{
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004557;
  opacity: .6;
}
.innew .bg_img:after{
  z-index: 3;
  background-color: #000;
  opacity: .5;
}
.innew .bg_img img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innew .intl {
  position: relative;
  text-align: center;
  margin-bottom: 0.5rem;
}
.innew .intl h3 {
  color: #fff;
  /* margin-bottom: 0.3rem; */
}
.innew .intl span {
  background-color: #fff;
  margin-bottom: 0.1rem;
}
.innew .intl h5 {
  color: #fff;
}
.innew .content .swiper {
  padding: 10px;
  /* padding-bottom: 10px; */
}
.innew .content li a {
  display: block;
}
.innew .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
}
.innew .content li .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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;
}
.innew .content li .text {
  padding: 0.2rem 0.1rem 0.3rem;
  border: 1px solid #eee;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.innew .content li .text h3 {
  font-size: 16px;
  line-height: 2;
  color: #111;
  font-weight: bold;
  margin-bottom: 0.05rem;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innew .content li .text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0.2rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innew .content li .text span {
  position: relative;
  display: block;
  font-size: 14px;
  color: #004557;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innew .content li .text span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  border: 5px solid transparent;
  border-left-color: #004557;
  -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innew .content li a:hover .img img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.innew .content li a:hover .text h3 {
  color: #004557;
}
.innew .content li a:hover .text span {
  padding-left: 15px;
}
.innew .content li a:hover .text span:after {
  left: 0;
}
.innew .content a.more {
  display: block;
  margin: 0.35rem auto 0;
  font-size: 16px;
  color: #004557;
  width: 1.9rem;
  line-height: 0.45rem;
  border: 1px solid #004557;
  border-radius: 25px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innew .content a.more:hover {
  color: #fff;
  background-color: #004557;
}

/* foot */
.foot {
  background-color: #333;
  padding: 0.8rem 0 0.5rem;
}
.foot .w80 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foot .foot_nav {
  width: -webkit-calc(100% - 560px);
  width: -moz-calc(100% - 560px);
  width: calc(100% - 560px);
}
.foot .foot_nav 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;
}
.foot .foot_nav dt {
  margin-bottom: 0.15rem;
}
.foot .foot_nav dd {
  margin-bottom: 0.1rem;
}
.foot .foot_nav a {
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.foot .foot_nav dt a {
  font-size: 18px;
  opacity: 0.8;
}
.foot .foot_nav dd a {
  font-size: 14px;
  opacity: 0.6;
}
.foot .foot_nav a:hover {
  opacity: 1;
}
.foot .foot_contact {
  width: 360px;
}
.foot .foot_contact .tel {
  margin-bottom: 0.25rem;
}
.foot .foot_contact h3 {
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 0.1rem;
}
.foot .foot_contact h5 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.foot .foot_contact p {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
}
.foot_copyright {
  background-color: #333;
}
.foot_copyright .w80 {
  padding: 0.15rem 0;
  border-top: 1px solid #666;
  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);
}
