.fl {
  float: left; }

.fr {
  float: right; }

.oneLine {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.twoLine {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.threeLine {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

.main {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; }

.w1400 {
  width: 1400px;
  margin: 0 auto;
  max-width: 92%;
  position: relative;
  z-index: 5; }

.bgc {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

@media (max-width: 1024px) {
  .pc {
    display: none; } }

.wap {
  display: none; }
  @media (max-width: 1024px) {
    .wap {
      display: block; } }

#translate {
  display: none; }

.hoverPic a .pic {
  position: relative;
  overflow: hidden; }
  .hoverPic a .pic img {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: all 1.2s; }
@media (min-width: 1024px) {
  .hoverPic:hover a .pic img {
    transform: scale(1.1); } }

.videoItem {
  width: 100%;
  position: fixed;
  height: 100%;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0; }
  .videoItem .video {
    width: 62.5vw;
    height: 35.15625vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 0 !important;
    background-color: #fff; }
    .videoItem .video video {
      width: 100%;
      height: 100%; }
    .videoItem .video .videoClose {
      width: 3.125vw;
      height: 3.125vw;
      position: absolute;
      top: -1.5625vw;
      right: -1.5625vw;
      border-radius: 100%;
      background-color: #0070b2;
      cursor: pointer; }
      .videoItem .video .videoClose:after {
        width: 1.5625vw;
        height: 0.20833vw;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(45deg);
        content: ''; }
      .videoItem .video .videoClose:before {
        width: 1.5625vw;
        height: 0.20833vw;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(-45deg);
        content: ''; }
  @media (max-width: 768px) {
    .videoItem .video {
      width: 100%;
      height: 100%; }
      .videoItem .video .videoClose {
        top: 0;
        right: 0;
        width: 30px;
        height: 30px; }
        .videoItem .video .videoClose:after {
          width: 14px;
          height: 2px; }
        .videoItem .video .videoClose:before {
          width: 14px;
          height: 2px; } }

@media (max-width: 1024px) {
  .headerBox {
    height: 50px; } }
.headerBox .header {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 1.5625vw;
  padding-right: 1.77083vw;
  justify-content: space-between;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  box-sizing: border-box;
  transition: all 0.5s; }
  .headerBox .header .logo {
    width: 197px;
    height: 80px;
    display: flex;
    align-items: center; }
  .headerBox .header .nav {
    margin-left: 2.29167vw;
    flex: 1; }
    .headerBox .header .nav ul {
      display: flex; }
      .headerBox .header .nav ul li {
        margin-right: 1.5625vw;
        position: relative; }
        .headerBox .header .nav ul li:last-child {
          margin-right: 0; }
        .headerBox .header .nav ul li .tits {
          font-size: 13px;
          line-height: 80px;
          display: block;
          padding: 0 12px;
          color: #fff;
          text-transform: uppercase;
          box-sizing: border-box;
          border-bottom: 1px solid rgba(255, 255, 255, 0); }
        .headerBox .header .nav ul li dl {
          opacity: 0;
          filter: alpha(opacity=0);
          visibility: hidden;
          position: absolute;
          -webkit-transition: all .35s;
          transition: all .35s;
          -moz-transition: all .35s;
          -ms-transition: all .35s;
          top: 100%;
          z-index: 99;
          margin-top: -1px;
          -webkit-box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
          box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
          -webkit-transition: all .35s;
          transition: all .35s;
          -moz-transition: all .35s;
          -ms-transition: all .35s;
          width: 200px;
          padding: 10px 15px;
          left: -10px;
          background: #fff;
          list-style-type: none;
          -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
          -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
          box-sizing: border-box; }
          .headerBox .header .nav ul li dl:after {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 32px;
            width: 16px;
            height: 16px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent #fff;
            display: block;
            box-sizing: border-box; }
          .headerBox .header .nav ul li dl dd {
            background: 0 0;
            position: relative;
            text-align: left;
            border-bottom: 1px solid #e9e9ee;
            padding: 6px 0; }
            .headerBox .header .nav ul li dl dd a {
              display: block;
              line-height: 21px;
              padding: 0.52083vw 0;
              font-size: 14px;
              position: relative;
              color: #666; }
              @media (min-width: 1024px) {
                .headerBox .header .nav ul li dl dd a:hover {
                  color: #0070b2; } }
        .headerBox .header .nav ul li.on .tits {
          background-image: -moz-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
          background-image: -webkit-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
          background-image: -ms-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
          border-color: #fff; }
        @media (min-width: 1024px) {
          .headerBox .header .nav ul li:hover .tits {
            background-image: -moz-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
            background-image: -webkit-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
            background-image: -ms-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
            border-color: #fff; }
          .headerBox .header .nav ul li:hover dl {
            top: 100%;
            opacity: 1;
            filter: alpha(opacity=100);
            visibility: visible;
            height: auto;
            opacity: 1;
            filter: alpha(opacity=100);
            display: block;
            -webkit-transform: rotateX(0);
            transform: rotateX(0); } }
  .headerBox .header .headerRight {
    display: flex;
    align-items: center; }
    .headerBox .header .headerRight .searchClick {
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .headerBox .header .headerRight .searchClick img:nth-child(2) {
        display: none; }
    .headerBox .header .headerRight .lan {
      margin-left: 3px;
      position: relative; }
      .headerBox .header .headerRight .lan .tits {
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 35px; }
        .headerBox .header .headerRight .lan .tits img:nth-child(2) {
          display: none; }
      .headerBox .header .headerRight .lan #select {
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
        opacity: 0; }
    .headerBox .header .headerRight .click {
      width: 10.3125vw;
      height: 35px;
      border-radius: 10px;
      border: 1px solid #fff;
      display: block;
      text-align: center;
      box-sizing: border-box;
      font-size: 13px;
      line-height: 33px;
      color: #fff;
      text-transform: uppercase;
      margin-left: 2.86458vw; }
    .headerBox .header .headerRight .navClick {
      display: none;
      width: 22px;
      height: 18px;
      margin-left: 15px; }
      .headerBox .header .headerRight .navClick span {
        width: 100%;
        height: 2px;
        background-color: #333;
        display: block;
        position: relative;
        transition: .3s;
        -webkit-transition: .3s;
        margin-bottom: 6px; }
        .headerBox .header .headerRight .navClick span:last-child {
          margin-bottom: 0; }
      .headerBox .header .headerRight .navClick.on span:nth-child(1) {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 8px;
        right: 0px; }
      .headerBox .header .headerRight .navClick.on span:nth-child(2) {
        display: none; }
      .headerBox .header .headerRight .navClick.on span:nth-child(3) {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 0;
        right: 0; }
  .headerBox .header.on {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 112, 178, 0.2); }
    .headerBox .header.on .nav ul li .tits {
      color: #333; }
    .headerBox .header.on .nav ul li.on .tits {
      color: #fff; }
    @media (min-width: 1024px) {
      .headerBox .header.on .nav ul li:hover .tits {
        color: #fff; } }
    .headerBox .header.on .headerRight .searchClick img:nth-child(1) {
      display: none; }
    .headerBox .header.on .headerRight .searchClick img:nth-child(2) {
      display: block; }
    .headerBox .header.on .headerRight .lan .tits img:nth-child(1) {
      display: none; }
    .headerBox .header.on .headerRight .lan .tits img:nth-child(2) {
      display: block; }
    .headerBox .header.on .headerRight .click {
      border-color: #333;
      color: #333; }
  @media (max-width: 1920px) {
    .headerBox .header .nav ul li {
      margin-right: 1.04167vw; } }
  @media (max-width: 1790px) {
    .headerBox .header .headerRight .click {
      width: 160px;
      margin-left: 20px; }
    .headerBox .header .nav ul li {
      margin-right: 10px; } }
  @media (max-width: 1620px) {
    .headerBox .header .headerRight .click {
      width: 120px;
      margin-left: 20px;
      font-size: 12px; }
    .headerBox .header .nav {
      margin-left: 25px; }
    .headerBox .header .nav ul li .tits {
      padding: 0 8px; } }
  @media (max-width: 1480px) {
    .headerBox .header .nav ul li .tits {
      font-size: 12px; }
    .headerBox .header .headerRight .searchClick {
      width: 25px; }
    .headerBox .header .headerRight .lan .tits {
      width: 25px; }
    .headerBox .header .headerRight .click {
      width: 110px;
      margin-left: 10px; } }
  @media (max-width: 1380px) {
    .headerBox .header .logo {
      width: 160px; }
    .headerBox .header .nav ul li {
      margin-right: 0; } }
  @media (max-width: 1250px) {
    .headerBox .header .headerRight .click {
      display: none; } }
  @media (max-width: 1120px) {
    .headerBox .header .logo {
      width: 140px; }
    .headerBox .header .nav {
      margin-left: 15px; }
      .headerBox .header .nav ul {
        display: flex; }
        .headerBox .header .nav ul li .tits {
          text-align: center;
          line-height: 20px;
          height: 80px;
          display: flex;
          align-items: center; } }
  @media (max-width: 1024px) {
    .headerBox .header {
      background-color: #fff;
      height: 50px; }
      .headerBox .header .nav {
        width: 100%;
        position: fixed;
        top: 50px;
        height: calc(100vh - 50px);
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        display: none;
        margin-left: 0; }
        .headerBox .header .nav ul {
          width: 260px;
          box-sizing: border-box;
          height: 100%;
          display: block;
          float: right;
          padding-top: 20px;
          background-color: #fff; }
          .headerBox .header .nav ul li {
            float: none;
            background: none !important;
            margin-right: 0; }
            .headerBox .header .nav ul li .tits {
              font-size: 15px;
              line-height: 46px;
              height: auto;
              padding-left: 20px;
              display: block;
              box-sizing: border-box;
              position: relative;
              color: #000 !important;
              background: none !important;
              font-weight: normal;
              text-align: left; }
              .headerBox .header .nav ul li .tits:after {
                display: none; }
            .headerBox .header .nav ul li dl {
              width: 100%;
              position: relative;
              opacity: 1;
              top: 0;
              padding: 0;
              visibility: initial;
              box-shadow: none;
              transform: rotateX(0);
              display: none;
              left: 0; }
              .headerBox .header .nav ul li dl:after {
                display: none; }
              .headerBox .header .nav ul li dl dd {
                border-bottom: none;
                padding: 0; }
                .headerBox .header .nav ul li dl dd a {
                  color: #000;
                  font-size: 14px;
                  line-height: 36px;
                  padding: 0 0 0 30px;
                  box-sizing: border-box; }
      .headerBox .header .headerRight .searchClick img:nth-child(1) {
        display: none; }
      .headerBox .header .headerRight .searchClick img:nth-child(2) {
        display: block; }
      .headerBox .header .headerRight .lan .tits img:nth-child(1) {
        display: none; }
      .headerBox .header .headerRight .lan .tits img:nth-child(2) {
        display: block; }
      .headerBox .header .headerRight .navClick {
        display: block; } }

.index-banner {
  width: 100%;
  position: relative; }
  .index-banner ul li {
    width: 100%;
    position: relative; }
    .index-banner ul li a {
      width: 100%;
      display: block;
      position: relative; }
      .index-banner ul li a:after {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center top;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-image: url("../images/index_banner_bg.png");
        z-index: 5; }
      .index-banner ul li a .con {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        padding-top: 8.125%; }
        .index-banner ul li a .con .tits {
          font-size: 2.34375vw;
          line-height: 2.70833vw;
          font-weight: bold;
          text-transform: uppercase;
          color: #fff; }
        .index-banner ul li a .con .tit {
          font-size: 15px;
          line-height: 18px;
          color: #fff;
          margin-top: 23px; }
        .index-banner ul li a .con .more {
          width: 226px;
          height: 38px;
          text-align: center;
          font-size: 19px;
          line-height: 38px;
          color: #fff;
          background-size: cover;
          background-repeat: no-repeat;
          background-image: url("../images/btn.png");
          margin-top: 28px; }
  .index-banner .btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 10;
    bottom: 82px; }
    .index-banner .btns span {
      width: 6px;
      height: 2px;
      background-color: #fff;
      opacity: 0.83;
      display: block;
      margin: 0 5px;
      cursor: pointer;
      transition: all 0.3s; }
      .index-banner .btns span.swiper-pagination-bullet-active {
        width: 172px;
        opacity: 1; }
  @media (max-width: 1366px) {
    .index-banner ul li a .con .tit {
      margin-top: 15px; }
    .index-banner ul li a .con .more {
      font-size: 15px;
      width: 180px;
      height: 32px;
      border-radius: 16px;
      line-height: 32px; } }
  @media (max-width: 1200px) {
    .index-banner ul li a {
      overflow: hidden; }
      .index-banner ul li a img {
        width: 140%;
        margin-left: -20%; } }
  @media (max-width: 1024px) {
    .index-banner ul li a {
      overflow: hidden; }
      .index-banner ul li a img {
        width: 100%;
        margin-left: 0; } }
  @media (max-width: 750px) {
    .index-banner ul li a .con .tits {
      font-size: 18px;
      line-height: 22px; }
    .index-banner ul li a .con .tit {
      font-size: 12px;
      line-height: 18px;
      display: none; }
    .index-banner ul li a .con .more {
      width: 120px;
      height: 26px;
      border-radius: 13px;
      font-size: 12px;
      line-height: 26px;
      margin-top: 20px; }
    .index-banner .btns {
      bottom: 10px; }
      .index-banner .btns span.swiper-pagination-bullet-active {
        width: 80px; } }

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8; }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0; } }
.index .indexTitle {
  font-size: 30px;
  line-height: 32px;
  color: #000;
  font-weight: bold; }
  @media (max-width: 1200px) {
    .index .indexTitle {
      font-size: 24px;
      line-height: 26px; } }
  @media (max-width: 768px) {
    .index .indexTitle {
      font-size: 20px;
      line-height: 22px; } }
.index .box1 .tabsPic {
  background-color: #fff;
  padding: 8px 9px 0;
  margin-left: -9px;
  display: flex;
  margin-top: -58px;
  justify-content: space-between; }
  .index .box1 .tabsPic a {
    width: 10.9%;
    position: relative;
    display: block; }
    .index .box1 .tabsPic a img {
      width: 100%;
      display: block;
      filter: grayscale(71%); }
    .index .box1 .tabsPic a:after {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 5; }
    .index .box1 .tabsPic a p {
      width: 100%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      line-height: 18px;
      color: #fff;
      text-transform: uppercase;
      left: 0;
      z-index: 10;
      text-align: center; }
    .index .box1 .tabsPic a.on img {
      filter: grayscale(0%); }
    .index .box1 .tabsPic a.on:after {
      background-color: rgba(4, 99, 158, 0.65); }
.index .box1 .list {
  width: 100%;
  position: relative; }
  .index .box1 .list .a {
    width: 5.3%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
    .index .box1 .list .a.prev {
      left: 2.7%; }
    .index .box1 .list .a.next {
      right: 2.7%; }
  .index .box1 .list .listNew {
    width: 72%;
    margin: 0 auto; }
    .index .box1 .list .listNew ul {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0; }
      .index .box1 .list .listNew ul li {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 5; }
        .index .box1 .list .listNew ul li .img {
          max-width: 60%;
          max-height: 90%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
.index .box1 .click {
  width: 226px;
  height: 38px;
  text-align: center;
  font-size: 16px;
  line-height: 38px;
  color: #012754;
  font-weight: bold;
  display: block;
  margin: 28px auto 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/btn1.png"); }
@media (max-width: 1200px) {
  .index .box1 {
    padding-top: 15px; }
    .index .box1 .tabsPic {
      flex-wrap: wrap;
      margin-top: 0;
      padding: 0;
      margin-left: 0; }
      .index .box1 .tabsPic a {
        width: 24.5%;
        margin-bottom: 6px; }
        .index .box1 .tabsPic a:last-child {
          display: none; } }
@media (max-width: 768px) {
  .index .box1 .tabsPic a {
    width: 33%;
    margin-bottom: 0.5%;
    display: block !important; }
  .index .box1 .list .listNew {
    width: 130%;
    margin-left: -12%; }
  .index .box1 .list .a {
    z-index: 5; }
    .index .box1 .list .a.prev {
      left: 0; }
    .index .box1 .list .a.next {
      right: 0; }
  .index .box1 .click {
    width: 160px;
    height: 32px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 32px;
    margin: 15px auto 0; } }
.index .box2 {
  display: flex;
  margin: 4.16667vw auto 0;
  justify-content: space-between; }
  .index .box2 .con {
    width: 45%; }
    .index .box2 .con .indexTitle {
      margin-bottom: 27px; }
    .index .box2 .con .tit {
      font-size: 14px;
      line-height: 24px;
      color: #646262;
      margin-bottom: 24px; }
    .index .box2 .con .more {
      width: 151px;
      height: 35px;
      text-align: center;
      font-size: 14px;
      line-height: 35px;
      color: #fff;
      display: block;
      background-repeat: no-repeat;
      background-image: url("../images/btn2.png");
      background-size: cover;
      margin-top: 55px; }
  .index .box2 .picBox {
    width: 49.5%;
    position: relative; }
    .index .box2 .picBox .videoBox {
      width: 82.9%;
      height: calc(100% - 25px);
      border-radius: 10px;
      overflow: hidden;
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer; }
      .index .box2 .picBox .videoBox img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover; }
      .index .box2 .picBox .videoBox .icon {
        width: 66px;
        height: 66px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgab(4, 99, 158, 0.4);
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .index .box2 .picBox .videoBox .icon img {
          width: 13px;
          height: 22px;
          position: relative;
          z-index: 5; }
        .index .box2 .picBox .videoBox .icon:before {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          content: '';
          background-color: #0070b2;
          opacity: 0.2;
          border-radius: 100%;
          animation: pulse-border 1.5s linear infinite 0.75s; }
        .index .box2 .picBox .videoBox .icon:after {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          content: '';
          background-color: #0070b2;
          opacity: 0.4;
          border-radius: 100%;
          animation: pulse-border 1.5s linear infinite; }
    .index .box2 .picBox .pic {
      width: 30.3%;
      height: calc(100% - 35px);
      position: absolute;
      left: 0;
      bottom: 0;
      border-radius: 10px;
      overflow: hidden;
      z-index: 5; }
      .index .box2 .picBox .pic img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover; }
  @media (max-width: 1200px) {
    .index .box2 .con .indexTitle {
      margin-bottom: 15px; }
    .index .box2 .con .tit {
      font-size: 13px;
      line-height: 22px;
      margin-bottom: 15px; } }
  @media (max-width: 1024px) {
    .index .box2 .con .tit {
      margin-bottom: 15px; }
    .index .box2 .con .more {
      margin-top: 25px; } }
  @media (max-width: 768px) {
    .index .box2 {
      padding: 25px 0;
      display: block; }
      .index .box2 .con {
        width: 100%; }
      .index .box2 .picBox {
        width: 100%;
        margin-top: 15px; }
        .index .box2 .picBox .videoBox {
          height: auto;
          position: relative;
          margin-left: 17%;
          width: 83%; }
          .index .box2 .picBox .videoBox img {
            width: 100%;
            height: auto;
            position: relative; }
          .index .box2 .picBox .videoBox .icon {
            width: 40px;
            height: 40px; }
            .index .box2 .picBox .videoBox .icon img {
              width: 10px; }
        .index .box2 .picBox .pic {
          width: 24%;
          top: 20px;
          height: 100%; } }
.index .box3 {
  padding-top: 50px; }
  .index .box3 .indexTitle {
    text-align: center; }
  .index .box3 .txt {
    font-size: 14px;
    line-height: 21px;
    color: #646262;
    text-align: center;
    width: 720px;
    max-width: 92%;
    margin: 40px auto 0; }
  .index .box3 .list {
    width: 358px;
    margin: 28px auto 0;
    overflow: initial; }
    .index .box3 .list ul li {
      width: 100%;
      transition: all 0.3s; }
      .index .box3 .list ul li a {
        width: 95%;
        margin: 0 auto;
        height: auto;
        display: block;
        position: relative;
        border-radius: 10px;
        border: 1px solid #e3e3e3; }
        .index .box3 .list ul li a .pic {
          border-radius: 10px;
          padding-bottom: 81.4%; }
          .index .box3 .list ul li a .pic:after {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 5;
            content: '';
            background-color: rgba(0, 0, 0, 0.35); }
        .index .box3 .list ul li a .con {
          width: 100%;
          box-sizing: border-box;
          padding: 20px 24px 13px; }
          .index .box3 .list ul li a .con .tits {
            font-size: 14px;
            line-height: 19px;
            height: 38px;
            color: #4a4848;
            font-weight: bold; }
          .index .box3 .list ul li a .con .time {
            font-size: 12px;
            line-height: 14px;
            color: #7c7b7b;
            margin-top: 7px; }
          .index .box3 .list ul li a .con .tit {
            display: none;
            font-size: 12px;
            line-height: 15px;
            height: 45px;
            margin-top: 10px; }
        .index .box3 .list ul li a .more {
          width: 151px;
          height: 35px;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          bottom: -17px;
          background-size: cover;
          background-repeat: no-repeat;
          text-align: center;
          font-size: 14px;
          line-height: 35px;
          color: #fff;
          z-index: 5;
          background-image: url("../images/btn2.png");
          display: none; }
      .index .box3 .list ul li.swiper-slide-active {
        width: 100%;
        transform: translateY(-12px); }
        .index .box3 .list ul li.swiper-slide-active a {
          box-shadow: -2.575px 4.286px 6px 0px rgba(184, 181, 181, 0.39);
          border-color: #0070b2; }
          .index .box3 .list ul li.swiper-slide-active a .pic {
            padding-bottom: 81.9%; }
            .index .box3 .list ul li.swiper-slide-active a .pic:after {
              display: none; }
          .index .box3 .list ul li.swiper-slide-active a .con {
            padding-bottom: 36px; }
            .index .box3 .list ul li.swiper-slide-active a .con .tits {
              color: #0070b2; }
            .index .box3 .list ul li.swiper-slide-active a .con .time {
              color: #0070b2; }
            .index .box3 .list ul li.swiper-slide-active a .con .tit {
              display: -webkit-box;
              color: #0070b2; }
          .index .box3 .list ul li.swiper-slide-active a .more {
            display: block; }
    .index .box3 .list .btns {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 47px; }
      .index .box3 .list .btns span {
        width: 6px;
        height: 2px;
        background-color: #b8b5b5;
        opacity: 0.83;
        display: block;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s; }
        .index .box3 .list .btns span.swiper-pagination-bullet-active {
          width: 172px;
          opacity: 1; }
  @media (max-width: 1200px) {
    .index .box3 .txt {
      margin: 25px auto 0; } }
  @media (max-width: 768px) {
    .index .box3 {
      padding-top: 25px; }
      .index .box3 .txt {
        margin-left: 15px auto 0; }
      .index .box3 .list .btns {
        margin-top: 15px; }
        .index .box3 .list .btns span.swiper-pagination-bullet-active {
          width: 80px; } }
.index .box4 {
  padding-top: 4.16667vw; }
  .index .box4 .indexTitle {
    text-align: center; }
  .index .box4 .list {
    width: 100%;
    margin-top: 22px;
    padding-top: 20px;
    overflow: hidden; }
    .index .box4 .list .listNew {
      width: 100%;
      position: relative;
      overflow: initial; }
      .index .box4 .list .listNew ul {
        width: 100%; }
        .index .box4 .list .listNew ul li {
          width: 50%;
          height: auto;
          position: relative; }
          .index .box4 .list .listNew ul li.on {
            z-index: 5; }
          .index .box4 .list .listNew ul li .item {
            width: 100%; }
            .index .box4 .list .listNew ul li .item a {
              width: 100%;
              height: 100%;
              background-color: #fff;
              display: flex; }
              .index .box4 .list .listNew ul li .item a .pic {
                width: 50%;
                height: 0;
                padding-bottom: 37.4%;
                overflow: hidden;
                position: relative; }
                .index .box4 .list .listNew ul li .item a .pic img {
                  width: 100%;
                  height: 100%;
                  position: absolute;
                  top: 0;
                  left: 0;
                  object-fit: cover; }
              .index .box4 .list .listNew ul li .item a .con {
                flex: 1;
                padding: 0 25px;
                display: flex;
                justify-content: center;
                flex-direction: column;
                color: #858686; }
                .index .box4 .list .listNew ul li .item a .con .tits {
                  font-size: 16px;
                  line-height: 19px;
                  height: 38px;
                  font-weight: bold; }
                .index .box4 .list .listNew ul li .item a .con .time {
                  font-size: 12px;
                  line-height: 14px;
                  margin-top: 13px; }
                .index .box4 .list .listNew ul li .item a .con .tit {
                  font-size: 12px;
                  line-height: 15px;
                  height: 90px;
                  -webkit-line-clamp: 6;
                  margin-top: 10px; }
                .index .box4 .list .listNew ul li .item a .con .tit1 {
                  display: flex;
                  flex-direction: row-reverse;
                  margin-top: 22px; }
                  .index .box4 .list .listNew ul li .item a .con .tit1 .more {
                    width: 106px;
                    height: 24px;
                    text-align: center;
                    font-size: 12px;
                    line-height: 24px;
                    border-radius: 12px;
                    background-size: cover; }
            .index .box4 .list .listNew ul li .item:nth-child(2) a {
              flex-direction: row-reverse; }
            @media (min-width: 1024px) {
              .index .box4 .list .listNew ul li .item:hover {
                box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.13);
                z-index: 5; }
                .index .box4 .list .listNew ul li .item:hover a .pic {
                  box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.13); }
                .index .box4 .list .listNew ul li .item:hover a .con {
                  color: #0070b2; }
                  .index .box4 .list .listNew ul li .item:hover a .con .tit1 .more {
                    color: #fff;
                    background-image: url("../images/btn2.png"); } }
      .index .box4 .list .listNew .btns {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px; }
        .index .box4 .list .listNew .btns a {
          width: 47px;
          height: 20px;
          display: block;
          background-position: center;
          background-repeat: no-repeat;
          margin: 0 21px; }
          .index .box4 .list .listNew .btns a.prev {
            background-image: url("../images/prev1.png"); }
          .index .box4 .list .listNew .btns a.next {
            background-image: url("../images/next1.png"); }
          @media (min-width: 1024px) {
            .index .box4 .list .listNew .btns a:hover.prev {
              background-image: url("../images/prev1_h.png"); }
            .index .box4 .list .listNew .btns a:hover.next {
              background-image: url("../images/next1_h.png"); } }
  @media (max-width: 1366px) {
    .index .box4 .list .listNew ul li .item a .con .tit {
      -webkit-line-clamp: 4;
      height: 60px; }
    .index .box4 .list .listNew ul li .item a .con .tit1 {
      margin-top: 10px; } }
  @media (max-width: 1200px) {
    .index .box4 .list .listNew ul li .item a .pic {
      padding-bottom: 42%; }
    .index .box4 .list .listNew ul li .item a .con {
      padding: 0 15px; }
      .index .box4 .list .listNew ul li .item a .con .tits {
        font-size: 15px; } }
  @media (max-width: 960px) {
    .index .box4 .list .listNew ul li {
      width: 100%; } }
  @media (max-width: 768px) {
    .index .box4 {
      padding-top: 25px; }
      .index .box4 .list {
        padding-top: 0;
        margin-top: 15px; }
        .index .box4 .list .listNew ul li {
          margin-right: 10px; }
          .index .box4 .list .listNew ul li:last-child {
            margin-right: 0; }
          .index .box4 .list .listNew ul li .item:nth-child(2) {
            display: none; }
          .index .box4 .list .listNew ul li .item a {
            display: block; }
            .index .box4 .list .listNew ul li .item a .pic {
              width: 100%;
              padding-bottom: 70%; }
            .index .box4 .list .listNew ul li .item a .con {
              width: 100%;
              padding: 15px;
              background-color: rgba(0, 0, 0, 0.05);
              box-sizing: border-box; }
        .index .box4 .list .listNew .btns {
          margin-top: 15px; } }
.index .box5 {
  background-color: #fafafa;
  margin-top: 2.60417vw; }
  .index .box5 .itemBox {
    display: flex;
    justify-content: space-between;
    padding-top: 3.38542vw;
    padding-bottom: 2.91667vw; }
    .index .box5 .itemBox .item {
      text-align: center; }
      .index .box5 .itemBox .item .t {
        font-size: 20px;
        color: #999;
        height: 56px;
        line-height: 56px; }
        .index .box5 .itemBox .item .t span {
          color: #007fd0;
          font-size: 54px; }
      .index .box5 .itemBox .item .t1 {
        font-size: 20px;
        line-height: 22px;
        color: #999;
        margin-top: 1px; }
  @media (max-width: 1366px) {
    .index .box5 .itemBox .item .t {
      line-height: 42px;
      height: 42px;
      font-size: 16px; }
      .index .box5 .itemBox .item .t span {
        font-size: 40px; }
    .index .box5 .itemBox .item .t1 {
      font-size: 16px;
      line-height: 18px; } }
  @media (max-width: 1024px) {
    .index .box5 .itemBox .item .t {
      line-height: 30px;
      height: 30px;
      font-size: 14px; }
      .index .box5 .itemBox .item .t span {
        font-size: 28px; }
    .index .box5 .itemBox .item .t1 {
      font-size: 14px;
      line-height: 16px; } }
  @media (max-width: 768px) {
    .index .box5 .itemBox {
      flex-wrap: wrap; }
      .index .box5 .itemBox .item {
        width: 33.33333%;
        padding: 10px 0; }
        .index .box5 .itemBox .item .t {
          line-height: 22px;
          height: 22px;
          font-size: 12px; }
          .index .box5 .itemBox .item .t span {
            font-size: 20px; }
        .index .box5 .itemBox .item .t1 {
          font-size: 12px;
          line-height: 14px; } }
.index .box6 {
  background-color: #000;
  padding-top: 40px;
  padding-bottom: 35px; }
  .index .box6 .indexTitle {
    text-align: center;
    color: #fff; }
  .index .box6 .list {
    margin-top: 45px; }
    .index .box6 .list ul {
      width: 100%;
      position: relative;
      padding-bottom: 15.2%;
      height: 0; }
      .index .box6 .list ul li {
        border-radius: 10px;
        overflow: hidden;
        padding: 3px;
        box-sizing: border-box;
        position: absolute;
        left: 50%;
        top: 0;
        width: 24%;
        background: linear-gradient(-106deg, #878787 0%, white 21%, #878787 51%, white 72%, #878787 100%);
        transition: all 0.5s;
        transform: translate(265%, 13%) rotate(4deg);
        opacity: 0; }
        .index .box6 .list ul li:nth-child(1) {
          transform: translate(-260%, 12%) rotate(-4deg);
          opacity: 1; }
        .index .box6 .list ul li:nth-child(2) {
          transform: translate(-155%, 3%) rotate(-2deg);
          opacity: 1; }
        .index .box6 .list ul li:nth-child(3) {
          transform: translate(-50%, 0);
          opacity: 1; }
          .index .box6 .list ul li:nth-child(3) .pic:after {
            display: none; }
          .index .box6 .list ul li:nth-child(3) a {
            display: block; }
        .index .box6 .list ul li:nth-child(4) {
          transform: translate(55%, 3.5%) rotate(2deg);
          opacity: 1; }
        .index .box6 .list ul li:nth-child(5) {
          transform: translate(160%, 13%) rotate(4deg);
          opacity: 1; }
        .index .box6 .list ul li .pic {
          width: 100%;
          padding-bottom: 53.9%;
          height: 0;
          overflow: hidden;
          position: relative;
          border-radius: 10px; }
          .index .box6 .list ul li .pic img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
            border-radius: 10px; }
          .index .box6 .list ul li .pic:after {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.72) 100%);
            background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.72) 100%);
            background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.72) 100%);
            background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.72) 100%);
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.72) 100%); }
        .index .box6 .list ul li a {
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          z-index: 10;
          display: none; }
          .index .box6 .list ul li a .time {
            width: 42px;
            background-color: #fff;
            position: absolute;
            top: 10px;
            left: 18px;
            text-align: center;
            border-radius: 0 0 5px 5px; }
            .index .box6 .list ul li a .time .data {
              padding-top: 6px;
              padding-bottom: 3px;
              width: 100%;
              color: #fff;
              background-image: -moz-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
              background-image: -webkit-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
              background-image: -ms-linear-gradient(-90deg, #0a1b33 0%, #0a1b33 0%, #2f769f 100%);
              border-radius: 0 0 5px 5px; }
              .index .box6 .list ul li a .time .data span {
                font-size: 20px;
                line-height: 22px;
                font-weight: bold; }
              .index .box6 .list ul li a .time .data i {
                font-size: 12px;
                line-height: 14px; }
            .index .box6 .list ul li a .time .year {
              font-size: 12px;
              line-height: 20px;
              color: #000; }
          .index .box6 .list ul li a img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
    .index .box6 .list .btns {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 35px; }
      .index .box6 .list .btns span {
        width: 6px;
        height: 2px;
        background-color: #fff;
        opacity: 0.49;
        display: block;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s; }
        .index .box6 .list .btns span.on {
          width: 172px;
          opacity: 1; }
  @media (max-width: 1200px) {
    .index .box6 .list ul {
      padding-bottom: 20%; }
      .index .box6 .list ul li {
        width: 32%; } }
  @media (max-width: 1024px) {
    .index .box6 .list {
      margin-top: 25px; }
      .index .box6 .list .btns {
        margin-top: 15px; }
    .index .box6 .list ul li a img {
      width: 40px; } }
  @media (max-width: 768px) {
    .index .box6 {
      padding-top: 25px;
      padding-bottom: 30px; }
      .index .box6 .list ul {
        padding-bottom: 46%; }
        .index .box6 .list ul li {
          width: 82%; } }
.index .box7 {
  padding-top: 50px; }
  .index .box7 .indexTitle {
    text-align: center; }
  .index .box7 .list {
    margin-top: 50px; }
    .index .box7 .list ul {
      width: 100%;
      position: relative;
      padding-bottom: 16%; }
      .index .box7 .list ul li {
        width: 22%;
        height: 100%;
        position: absolute;
        z-index: var(--cc); }
        .index .box7 .list ul li .pic {
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          overflow: hidden;
          position: absolute;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          border-radius: 10px;
          padding: 1px;
          background-color: #fff; }
          .index .box7 .list ul li .pic img {
            width: calc(100% - 2px);
            height: calc(100% - 2px);
            position: absolute;
            top: 1px;
            left: 1px;
            object-fit: cover;
            border-radius: 10px; }
          .index .box7 .list ul li .pic:after {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            background-size: auto 100%;
            background-repeat: repeat-x;
            background-position: left bottom;
            background-image: url("../images/bg2.png"); }
        .index .box7 .list ul li a {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 5; }
        .index .box7 .list ul li:nth-child(1) {
          left: 11%;
          transform: rotate(-8deg) translate(-50%, 9.2%); }
        .index .box7 .list ul li:nth-child(2) {
          left: 20.75%;
          transform: rotate(-6deg) translate(-50%, 3.2%); }
        .index .box7 .list ul li:nth-child(3) {
          left: 30.5%;
          transform: rotate(-4deg) translate(-50%, 0px); }
        .index .box7 .list ul li:nth-child(4) {
          left: 40.25%;
          transform: rotate(-2deg) translate(-50%, -1%); }
        .index .box7 .list ul li:nth-child(5) {
          left: 50%;
          transform: rotate(0deg) translate(-50%, 0); }
        .index .box7 .list ul li:nth-child(6) {
          left: 59.75%;
          transform: rotate(2deg) translate(-50%, 3%); }
        .index .box7 .list ul li:nth-child(7) {
          left: 69.5%;
          transform: rotate(4deg) translate(-50%, 8%); }
        .index .box7 .list ul li:nth-child(8) {
          left: 79.25%;
          transform: rotate(6deg) translate(-50%, 16%); }
        .index .box7 .list ul li:nth-child(9) {
          left: 89%;
          transform: rotate(8deg) translate(-50%, 26%); }
        @media (min-width: 1024px) {
          .index .box7 .list ul li:hover .pic {
            transform: scale(1.1);
            padding: 2px;
            background: -moz-linear-gradient(top, #039ff9 0%, #0c203b 100%);
            background: -webkit-gradient(left top, left bottom, color-stop(0%, #039ff9), color-stop(100%, #0c203b));
            background: -webkit-linear-gradient(top, #039ff9 0%, #0c203b 100%);
            background: -o-linear-gradient(top, #039ff9 0%, #0c203b 100%);
            background: -ms-linear-gradient(top, #039ff9 0%, #0c203b 100%);
            background: linear-gradient(to bottom, #039ff9 0%, #0c203b 100%); }
            .index .box7 .list ul li:hover .pic img {
              width: calc(100% - 4px);
              height: calc(100% - 4px);
              top: 2px;
              left: 2px; }
            .index .box7 .list ul li:hover .pic:after {
              display: none; } }
  .index .box7 .con {
    width: 525px;
    max-width: 80%;
    margin: 40px auto 0;
    text-align: center; }
    .index .box7 .con .txt {
      font-size: 14px;
      line-height: 24px;
      color: #010101; }
    .index .box7 .con .more {
      display: block;
      width: 151px;
      height: 35px;
      background-size: cover;
      background-repeat: no-repeat;
      background-image: url("../images/btn2.png");
      text-align: center;
      font-size: 14px;
      line-height: 35px;
      color: #fff;
      margin: 22px auto 0; }
  @media (max-width: 1080px) {
    .index .box7 .list ul {
      padding-bottom: 22%;
      transform: rotate(1deg); }
      .index .box7 .list ul li {
        width: 34%; }
        .index .box7 .list ul li:nth-child(n + 8) {
          display: none; }
        .index .box7 .list ul li:nth-child(1) {
          left: 18%;
          transform: rotate(-6deg) translate(-50%, 4.2%); }
        .index .box7 .list ul li:nth-child(2) {
          left: 28%;
          transform: rotate(-4deg) translate(-50%, 1.2%); }
        .index .box7 .list ul li:nth-child(3) {
          left: 39%;
          transform: rotate(-2deg) translate(-50%, 0); }
        .index .box7 .list ul li:nth-child(4) {
          left: 50%;
          transform: rotate(0deg) translate(-50%, 0); }
        .index .box7 .list ul li:nth-child(5) {
          left: 61%;
          transform: rotate(2deg) translate(-50%, 2%); }
        .index .box7 .list ul li:nth-child(6) {
          left: 72%;
          transform: rotate(4deg) translate(-50%, 6%); }
        .index .box7 .list ul li:nth-child(7) {
          left: 83%;
          transform: rotate(6deg) translate(-50%, 12%); } }
  @media (max-width: 768px) {
    .index .box7 {
      padding-top: 25px; }
      .index .box7 .list {
        margin-top: 25px; }
        .index .box7 .list ul {
          padding-bottom: 40%;
          transform: rotate(0); }
          .index .box7 .list ul li {
            width: 60%; }
            .index .box7 .list ul li:nth-child(n + 4) {
              display: none; }
            .index .box7 .list ul li:nth-child(1) {
              left: 30%;
              transform: rotate(-2deg) translate(-50%, 0); }
            .index .box7 .list ul li:nth-child(2) {
              left: 50%;
              transform: rotate(0) translate(-50%, 0); }
            .index .box7 .list ul li:nth-child(3) {
              left: 70%;
              transform: rotate(2deg) translate(-50%, 4%);
              z-index: 0; }
      .index .box7 .con {
        width: 100%;
        margin-top: 20px;
        max-width: 100%; } }
.index .box8 {
  padding-top: 53px; }
  .index .box8 .indexTitle {
    text-align: center; }
  .index .box8 .boxNew {
    display: flex;
    background-color: #fafafa;
    margin-top: 45px; }
    .index .box8 .boxNew .list {
      width: 59.6%; }
      .index .box8 .boxNew .list .item {
        padding: 10px 65px 10px 15px; }
        .index .box8 .boxNew .list .item a {
          width: 100%;
          display: flex;
          align-items: center; }
          .index .box8 .boxNew .list .item a .pic {
            width: 85px;
            height: 62px;
            border-radius: 5px;
            overflow: hidden;
            position: relative; }
            .index .box8 .boxNew .list .item a .pic img {
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0;
              object-fit: cover; }
            .index .box8 .boxNew .list .item a .pic:after {
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0;
              z-index: 5;
              background-color: rgba(0, 0, 0, 0.32);
              content: ''; }
          .index .box8 .boxNew .list .item a .con {
            flex: 1;
            margin-left: 20px; }
            .index .box8 .boxNew .list .item a .con .tits {
              font-size: 15px;
              line-height: 17px;
              color: #000;
              font-weight: bold;
              height: 17px; }
            .index .box8 .boxNew .list .item a .con .tit {
              font-size: 13px;
              line-height: 15px;
              color: #646262;
              height: 30px;
              margin-top: 7px; }
        .index .box8 .boxNew .list .item.on {
          background-size: cover;
          background-repeat: no-repeat;
          background-image: url("../images/bg1.jpg"); }
          .index .box8 .boxNew .list .item.on a .pic:after {
            display: none; }
          .index .box8 .boxNew .list .item.on a .con .tits {
            color: #fff; }
          .index .box8 .boxNew .list .item.on a .con .tit {
            color: #fff; }
    .index .box8 .boxNew .img {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      position: relative; }
      .index .box8 .boxNew .img img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover; }
  @media (max-width: 768px) {
    .index .box8 {
      padding-top: 25px; }
      .index .box8 .boxNew {
        margin-top: 20px; }
        .index .box8 .boxNew .list {
          width: 100%; }
          .index .box8 .boxNew .list .item {
            padding: 10px 15px;
            border-top: 1px solid #ccc; }
            .index .box8 .boxNew .list .item.on {
              background: none; }
              .index .box8 .boxNew .list .item.on a .con .tits {
                color: #000; }
              .index .box8 .boxNew .list .item.on a .con .tit {
                color: #646262; } }
.index .box9 {
  padding-top: 60px;
  padding-bottom: 50px; }
  .index .box9 .list {
    height: 65px;
    position: relative; }
    .index .box9 .list ul {
      display: flex;
      align-items: center; }
      .index .box9 .list ul li {
        padding: 0 40px;
        float: left;
        height: 65px;
        display: flex;
        align-items: center; }
        .index .box9 .list ul li img {
          max-height: 50%; }
  @media (max-width: 768px) {
    .index .box9 {
      padding-top: 25px;
      padding-bottom: 25px; }
      .index .box9 .list ul li {
        padding: 0 15px; } }

.footer .footerNew {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/footer_bg.jpg");
  padding-top: 70px;
  padding-bottom: 32px; }
  .footer .footerNew .footerLeft {
    width: 31%;
    float: left;
    padding-top: 10px; }
    .footer .footerNew .footerLeft .logo {
      width: 88.8%;
      margin: 0 auto; }
    .footer .footerNew .footerLeft .t {
      text-align: center;
      font-size: 14px;
      line-height: 25px;
      color: #fff;
      margin-top: 30px; }
    .footer .footerNew .footerLeft .share {
      display: flex;
      justify-content: center;
      margin-top: 40px; }
      .footer .footerNew .footerLeft .share a {
        width: 42px;
        height: 42px;
        border-radius: 100%;
        background-color: #fff;
        margin: 0 10px;
        -webkit-box-reflect: below 0% linear-gradient(transparent 40%, rgba(255, 255, 255, 0.08));
        box-reflect: below 0% linear-gradient(transparent 40%, rgba(255, 255, 255, 0.08)); }
  .footer .footerNew .footerCen {
    width: 29.6%;
    float: left;
    margin-left: 8%; }
    .footer .footerNew .footerCen dl {
      width: 40.6%;
      float: left; }
      .footer .footerNew .footerCen dl:nth-child(2) {
        width: 48.3%;
        float: right; }
        .footer .footerNew .footerCen dl:nth-child(2) dd a {
          width: 50%;
          float: left; }
      .footer .footerNew .footerCen dl dt {
        font-size: 20px;
        line-height: 22px;
        color: #fff;
        font-weight: bold;
        border-bottom: 1px solid #fff;
        padding-bottom: 12px; }
      .footer .footerNew .footerCen dl dd {
        font-size: 12px;
        line-height: 27px;
        color: #fff;
        margin-top: 7px; }
        .footer .footerNew .footerCen dl dd a {
          width: 100%;
          display: block;
          color: #fff; }
          @media (min-width: 1024px) {
            .footer .footerNew .footerCen dl dd a:hover {
              text-decoration: underline; } }
  .footer .footerNew .footerRight {
    width: 25.3%;
    float: right; }
    .footer .footerNew .footerRight .tits {
      font-size: 20px;
      line-height: 22px;
      color: #fff;
      font-weight: bold;
      padding-bottom: 12px;
      position: relative; }
      .footer .footerNew .footerRight .tits:after {
        width: 200px;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #fff;
        content: ''; }
    .footer .footerNew .footerRight .tit {
      margin-top: 8px; }
      .footer .footerNew .footerRight .tit .t {
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        line-height: 33px;
        color: #fff; }
        .footer .footerNew .footerRight .tit .t img {
          margin-right: 8px;
          display: block;
          margin-top: 6px; }
  .footer .footerNew .imgBox {
    display: flex;
    justify-content: center;
    margin-top: 32px; }
    .footer .footerNew .imgBox a {
      display: block;
      margin: 0 18px; }
      .footer .footerNew .imgBox a img {
        height: 54px; }
.footer .foot {
  background-image: url("../images/footer_bg1.jpg");
  text-align: center;
  font-size: 12px;
  line-height: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff; }
  .footer .foot a {
    color: #fff; }
@media (max-width: 1200px) {
  .footer .footerNew .footerLeft {
    width: 26%; }
    .footer .footerNew .footerLeft .t {
      font-size: 12px;
      line-height: 18px; }
    .footer .footerNew .footerLeft .share a {
      width: 30px;
      height: 30px;
      margin: 0 5px; }
      .footer .footerNew .footerLeft .share a img {
        width: 100%; }
  .footer .footerNew .footerCen {
    width: 40.5%;
    margin-left: 5%; }
  .footer .footerNew .imgBox a img {
    height: 40px; } }
@media (max-width: 1024px) {
  .footer .footerNew .footerLeft {
    width: 40%; }
  .footer .footerNew .footerCen {
    display: none; }
  .footer .footerNew .footerRight {
    width: 50%; }
    .footer .footerNew .footerRight .tits {
      font-size: 16px;
      line-height: 18px;
      padding-bottom: 8px; }
    .footer .footerNew .footerRight .tit .t {
      font-size: 12px;
      line-height: 26px; }
      .footer .footerNew .footerRight .tit .t img {
        margin-top: 3px; } }
@media (max-width: 768px) {
  .footer .footerNew {
    padding-top: 30px; }
    .footer .footerNew .footerLeft {
      width: 100%;
      padding-top: 0; }
      .footer .footerNew .footerLeft .logo {
        width: 200px;
        margin: 0; }
      .footer .footerNew .footerLeft .t {
        text-align: left;
        margin-top: 10px; }
      .footer .footerNew .footerLeft .share {
        justify-content: left;
        margin-top: 15px; }
    .footer .footerNew .footerRight {
      width: 100%;
      margin-top: 20px; }
    .footer .footerNew .imgBox {
      flex-wrap: wrap;
      width: 92%;
      margin: 10px auto 0; }
      .footer .footerNew .imgBox a {
        width: 32%;
        margin: 0;
        margin-right: 2%; }
        .footer .footerNew .imgBox a:nth-child(3) {
          margin-right: 0; }
        .footer .footerNew .imgBox a:nth-child(n + 3) {
          margin-top: 5px; }
        .footer .footerNew .imgBox a img {
          width: 100%;
          height: auto; }
  .footer .foot {
    font-size: 12px;
    line-height: 18px;
    padding: 8px 0; }
    .footer .foot a {
      display: block; } }

/*# sourceMappingURL=style.css.map */
