/* 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: 100px;
  padding-left: 0.5rem;
  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 .logo a,
.head .logo img {
  display: block;
}
.head .logo img {
  max-height: 60px;
}
.head .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .right .nav {
  padding-right: 0.5rem;
}
.head .right .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;
}
.head .right .nav li{
  position: relative;
}
.head .right .nav li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 100px;
  padding: 0 0.2rem;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.head .right .nav li>a:after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 3px;
  width: 0px;
  background-color: #2f63a4;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.head .right .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 .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.head .right .nav li dd{
  border-bottom: 1px solid #eee;
}
.head .right .nav li dd a{
  display: block;
  font-size: 15px;
  line-height: 2;
  padding: 0 5px;
  white-space:nowrap;
}
.head .right .nav li:hover>a{
  color: #2f63a4;
}
.head .right .nav li:hover>a:after{
  width: 100%;
}
.head .right .nav li:hover dl{
  top: 100px;
  visibility: visible;
  opacity: 1;
}
.head .right .nav li dd a:hover{
  color: #fff;
  background-color: #2f63a4;
}
.head .right .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;
  background-color: #2f63a4;
}
.head .right .btn .img {
  margin-right: 0.25rem;
}
.head .right .btn img {
  display: block;
}
.head .right .btn > div {
  cursor: pointer;
  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;
}
.head .right .btn p {
  font-size: 14px;
  color: #fff;
  margin-right: 0.08rem;
}
.head .right .btn i {
  font-size: 20px;
  color: #fff;
}
.head .right .btn .search_btn {
  position: relative;
  padding-right: 0.2rem;
  margin-right: 0.2rem;
}
.head .right .btn .search_btn:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 1px;
  height: 20px;
  background-color: #eee;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 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: #2f63a4;
}
.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: #2f63a4;
  -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: #2f63a4;
  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: #2f63a4;
  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 img {
  display: block;
  height: 100vh;
  min-height: 360px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.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: 32px;
  color: #ddd;
  margin-bottom: 20px;
}
.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: #27344d;
}
.intl h3 {
  font-size: 36px;
  line-height: 42px;
  font-weight: bold;
  text-transform: uppercase;
  color: #27344d;
  /* margin-bottom: 5px; */
}
.intl h5 {
  font-size: 25px;
  line-height: 36px;
  color: #999;
}

.intl1 {
  margin-bottom: 0.5rem;
}
.intl1 h3 {
  position: relative;
  font-size: 18px;
  color: #27344d;
  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: #2f63a4;
  -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%;
  padding: 1.5rem 0.3rem 1rem 0.5rem;
}
.inys .content li:nth-child(2n + 1) {
  background-color: #f5f5f5;
}
.inys .content li .ico {
  margin-bottom: 1rem;
}
.inys .content li .ico i {
  font-size: 64px;
  color: #333;
}
.inys .content li .text h3 {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.inys .content li .text p {
  font-size: 14px;
  color: #555;
}

.inabout {
  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-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #f2f4f7;
}
.inabout .text {
  width: 50%;
  padding: 0.3rem 3% 0.3rem 10%;
}

.inabout .text p {
  font-size: 16px;
  color: #27344d;
  line-height: 1.4;
  margin-bottom: 0.7rem;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -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: 50px;
  color: #fff;
  padding: 0 20px;
  background-color: #2f63a4;
  -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: #317ddc;
  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;
}
.inabout .img {
  width: 50%;
}
.inabout .img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 560px;
  width: 100%;
}

.inpro .intl {
  margin-bottom: 0.8rem;
}
.inpro .content li a {
  display: block;
  padding-bottom: 20px;
}
.inpro .content .img {
  overflow: hidden;
}
.inpro .content .img img {
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content .text {
  position: relative;
  padding: 10px 5px 35px;
  background-color: #fff;
  text-align: center;
}
.inpro .content .text h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content .text h5 {
  font-size: 14px;
  color: #555;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .content .text span {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 24px;
  height: 24px;
  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;
  border-radius: 100%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2f63a4;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content .text span i {
  font-size: 14px;
  color: #fff;
}
.inpro .content .text span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
     -moz-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
       -o-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  border: 1px solid #2f63a4;
  /* transition: all .5s; */
}
.inpro .content li a:hover .text h3 {
  color: #2f63a4;
}
.inpro .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);
}
.inpro .content li a:hover .text span {
  background-color: #317ddc;
}
.inpro .content li a:hover .text span:after {
  /* 应用动画diffuse 1.5秒速度 无限循环 线性匀速动画*/
  -webkit-animation: diffuse 1.5s infinite linear;
     -moz-animation: diffuse 1.5s infinite linear;
       -o-animation: diffuse 1.5s infinite linear;
          animation: diffuse 1.5s infinite linear;
}

@-webkit-keyframes diffuse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
    opacity: 1;
  }
  60% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
}

.incase {
  padding: 0.2rem 0 1.2rem;
}
.incase .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;
}
.incase .title_list {
  position: absolute;
  right: 0px;
  top: 0px;
}
.incase .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;
}
.incase .title_list li {
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.incase .title_list li:last-child {
  margin-bottom: 0px;
}
.incase .title_list li h3 {
  font-size: 16px;
  color: #999;
  border-left: 1px solid #999;
}
.incase .title_list li h3 span {
  display: inline-block;
  padding: 0 20px;
}
.incase .title_list li.on h3 {
  color: #2f63a4;
  border-left: 1px solid #2f63a4;
}
.incase .img_list {
  width: 80%;
  margin: 0 0 0 -10%;
  padding-bottom: 50px;
}
.incase .img_list li {
  position: relative;
  background-color: #2f63a4;
}
.incase .img_list img {
  display: block;
  height: 640px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}
.incase .incase_next {
  position: absolute;
  z-index: 9;
  bottom: 0px;
  right: 45%;
  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: #2f63a4;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .incase_next i {
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 20px;
}
.incase .incase_next:hover {
  width: 200px;
  background-color: #317ddc;
}
.incase .text_list {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 45%;
}
.incase .text_list li {
  padding: 60px 85px 95px;
  background-color: #fff;
}
.incase .text_list li span {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 16px;
  color: #2f63a4;
  line-height: 24px;
}
.incase .text_list li span:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 12px;
  width: 30px;
  height: 1px;
  background-color: #2f63a4;
}
.incase .text_list li h3 {
  font-size: 32px;
  /* font-weight: bold; */
  color: #27344d;
  margin: 0.3rem 0 0.3rem;
}
.incase .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;
}
.incase .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;
}
.incase .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 #2f63a4;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.incase .text_list li a:hover {
  color: #fff;
}
.incase .text_list li a:hover:after {
  width: 100%;
  background-color: #2f63a4;
}

.innews {
  position: relative;
  padding: 1rem 0;
}
.innews .bg {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 46%;
  height: 100%;
  overflow: hidden;
}
.innews .bg img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.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 {
  display: block;
}
.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: 64px;
  color: #2f63a4;
  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: #2f63a4;
  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 5px #fafafa;
  -o-background-size: 90% auto;
     background-size: 90% 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 5px
    #fafafa;
  -o-background-size: 90% auto;
     background-size: 90% auto;
}
.innews .content li .text1 h3 {
  position: relative;
  font-size: 18px;
  color: #2f63a4;
  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: #2f63a4;
  -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;
}
.foot_content .logo h3 {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  padding-right: 8px;
  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);
}
