.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
.txet-over1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1004px) {
  nav {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 99;
  }
  nav .nav-main {
    width: 100%;
    height: 1.2rem;
    padding: 0 0.3rem;
    border-bottom: none;
    z-index: 59;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
  }
  nav .nav-main .main-cont .main-logo {
    position: relative;
    width: 2.2rem;
    height: auto;
  }
  nav .nav-main .main-cont .main-logo img {
    width: 100%;
  }
  nav .nav-main .main-cont .main-logo .img1 {
    display: none;
  }
  nav .nav-main .main-cont .main-logo .img2 {
    display: block;
  }
  nav .nav-main .main-cont .main-nav,
  nav .nav-main .main-cont .main-right {
    display: none;
  }
  nav .nav-main .main-cont .main-web-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: 100%;
  }
  nav .nav-main .main-cont .main-web-right .right-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 0.8rem;
    height: 100%;
    margin-left: 0.2rem;
    cursor: pointer;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-icon {
    width: 0.8rem;
    height: 0.8rem;
    font-size: 0.28rem;
    text-align: center;
    line-height: 0.8rem;
    color: #fff;
    border-radius: 50%;
    background: #ee7700;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-arrow {
    width: 8px;
    height: 5px;
    background: url(../images/icon/icon-lang-arrow.png) no-repeat center center;
    background-size: 8px 5px;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-list {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    width: 2rem;
    height: auto;
    margin-left: -1rem;
    padding: 0.05rem 0.2rem;
    overflow: hidden;
    z-index: 9;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    z-index: 0;
    transform: translatey(-103%);
    -o-transform: translatey(-103%);
    -moz-transform: translatey(-103%);
    -webkit-transform: translatey(-103%);
    transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-list .list-link {
    display: none;
    position: relative;
    width: 100%;
    margin: 0.1rem 0;
    font-size: 0.26rem;
    line-height: 0.48rem;
    text-align: center;
    color: #333;
    opacity: 0;
    z-index: 9;
  }
  nav .nav-main .main-cont .main-web-right .right-lang .lang-list .list-link:hover {
    color: #1e2188;
  }
  nav .nav-main .main-cont .main-web-right .right-lang:hover .lang-flag {
    background: url(../images/icon/icon-nav-lang-active.png);
    background-size: 100%;
  }
  nav .nav-main .main-cont .main-web-right .right-lang:hover .lang-list::before {
    transform: translatey(0);
    -o-transform: translatey(0);
    -moz-transform: translatey(0);
    -webkit-transform: translatey(0);
  }
  nav .nav-main .main-cont .main-web-right .right-lang:hover .lang-list .list-link {
    display: block;
    animation: navInUp50 0.6s ease;
    animation-fill-mode: forwards;
  }
  nav .nav-main .main-cont .main-web-right .right-serach {
    position: relative;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.35rem;
    background: #1e2188 url(../images/icon/icon-serach2.png) no-repeat center center;
    background-size: 0.35rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-web-right .right-menu {
    position: relative;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.35rem;
    background: #ee7700 url(../images/icon/icon-web-mune-active.png) no-repeat center center;
    background-size: 0.35rem;
    border-radius: 50%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-popup-suosou {
    position: absolute;
    top: 100px;
    left: 50%;
    display: none;
    width: 100%;
    height: auto;
    padding: 0.9rem 0 1.2rem;
    background: #fff;
    border-top: solid 1px #eee;
    z-index: 59;
    transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 15.36rem;
    height: 0.75rem;
    margin: 0 auto;
    border-bottom: solid 1px #1e2188;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box a {
    width: 16px;
    height: auto;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box a img {
    width: 100%;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box input {
    flex: 1;
    height: 0.75rem;
    padding: 0 0.5rem;
    font-size: 16px;
    color: #333;
    background: none;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box input::placeholder {
    font-size: 16px;
    color: #999;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden {
    width: 22px;
    height: auto;
    cursor: pointer;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden img {
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .nav-main .main-cont .main-popup-suosou .sousuo-box .box-hidden:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  nav .nav-main:hover {
    background: none;
  }
  nav .Whead-search {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #1e2188;
    z-index: 999;
    overflow: hidden;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-search .hide-pic {
    position: absolute;
    top: 0.2rem;
    right: 0.4rem;
    width: 0.45rem;
  }
  nav .Whead-search .search-input {
    position: absolute;
    bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.8rem;
  }
  nav .Whead-search .search-input .input-box {
    flex: 1;
  }
  nav .Whead-search .search-input .input-box input {
    width: 100%;
    height: 0.5rem;
    padding: 0.08rem 0;
    font-family: 'Arial';
    font-size: 0.26rem;
    color: #fff;
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid #fff;
  }
  nav .Whead-search .search-input .input-box input::-webkit-input-placeholder {
    font-family: 'Arial';
    color: #fff;
  }
  nav .Whead-search .search-input .input-box input:-moz-placeholder {
    font-family: 'Arial';
    color: #fff;
  }
  nav .Whead-search .search-input .input-box input:-ms-input-placeholder {
    font-family: 'Arial';
    color: #fff;
  }
  nav .Whead-search .search-input .input-icon {
    width: 0.3rem;
    margin-left: 0.2rem;
  }
  nav .sidebar-mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 119;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #fff;
    overflow: scroll;
    z-index: 399;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 1.2rem;
    padding: 0 0.3rem;
    background: #fff;
    border-bottom: solid 1px #1e2188;
  }
  nav .Whead-sidebar .sidebar-top .top-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 2.2rem;
    height: 100%;
    padding-left: 0;
  }
  nav .Whead-sidebar .sidebar-top .top-logo img {
    width: 100%;
  }
  nav .Whead-sidebar .sidebar-top .top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: 100%;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-suosou {
    position: relative;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.2rem;
    border-radius: 50%;
    border: solid 2px #d2d2d2;
    cursor: pointer;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-suosou img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.32rem;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 2.2rem;
    height: 100%;
    margin-right: 0.2rem;
    border-left: solid 1px rgba(255, 255, 255, 0.3);
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-flag {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-title {
    width: auto;
    margin: 0 0.15rem;
    font-size: 0.28rem;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-arrow {
    width: 8px;
    height: 5px;
    background: url(../images/icon/icon-lang-arrow-active.png) no-repeat center center;
    background-size: 8px 5px;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-list {
    position: absolute;
    top: 0.97rem;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0.05rem 0.2rem;
    overflow: hidden;
    z-index: 9;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    z-index: 0;
    transform: translatey(-100%);
    -o-transform: translatey(-100%);
    -moz-transform: translatey(-100%);
    -webkit-transform: translatey(-100%);
    transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-list .list-link {
    display: none;
    position: relative;
    width: 100%;
    margin: 0.15rem 0;
    font-size: 0.26rem;
    line-height: 0.44rem;
    text-align: center;
    color: #333;
    opacity: 0;
    z-index: 9;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang .lang-list .list-link:hover {
    color: #1e2188;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang:hover .lang-arrow {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang:hover .lang-list::before {
    transform: translatey(0);
    -o-transform: translatey(0);
    -moz-transform: translatey(0);
    -webkit-transform: translatey(0);
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-lang:hover .lang-list .list-link {
    display: block;
    animation: navInUp50 0.6s ease;
    animation-fill-mode: forwards;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-hide {
    position: relative;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #1e2188;
    cursor: pointer;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-right .right-hide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.32rem;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-top .top-icon2 {
    width: 0.4rem;
  }
  nav .Whead-sidebar .sidebar-top .top-icon2 img {
    width: 100%;
  }
  nav .Whead-sidebar .sidebar-top .box-lang {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.26rem;
    text-align: center;
    line-height: 0.55rem;
    color: #1c1d21;
    border-radius: 50%;
    border: solid 1px #1c1d21;
  }
  nav .Whead-sidebar .sidebar-nav {
    width: 100%;
    height: calc(100% - 1.3rem);
    padding: 0 0.15rem;
    overflow-y: overlay;
  }
  nav .Whead-sidebar .sidebar-nav::-webkit-scrollbar {
    width: 4px;
  }
  nav .Whead-sidebar .sidebar-nav::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.12);
  }
  nav .Whead-sidebar .sidebar-nav .nav-item {
    width: 100%;
    height: auto;
    border-bottom: solid 1px #e3e3e3;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.34rem 0.25rem;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 18px;
    width: 3px;
    height: 13px;
    background: #999;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 23px;
    width: 13px;
    height: 3px;
    background: #999;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-title {
    flex: 1;
    font-size: 0.32rem;
    font-weight: bold;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translatey(-50%);
    -o-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top .top-icon .img2 {
    opacity: 0;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-no::before {
    display: none;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-no::after {
    display: none;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active {
    border-bottom: solid 1px transparent;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active .top-title {
    color: #1e2188;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active::before {
    background: #1e2188;
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-top-active::after {
    background: #1e2188;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-subnav {
    display: none;
    width: 100%;
    height: auto;
    padding-bottom: 0.3rem;
  }
  nav .Whead-sidebar .sidebar-nav .nav-item .item-subnav .subnav-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.15rem 0.25rem;
    font-size: 0.3rem;
    color: #666;
  }
  header {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .head-banner {
    width: 100%;
    overflow: hidden;
  }
  header .head-banner .swiper-slide {
    width: 100%;
    height: auto;
  }
  header .head-banner .swiper-slide .slide-box {
    position: relative;
    width: 100%;
    height: 100%;
  }
  header .head-banner .swiper-slide .slide-box .slide-pic {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
  }
  header .head-banner .swiper-slide .slide-box .slide-pic video {
    display: none;
    width: auto;
    height: 5rem;
    background: #fff;
  }
  header .head-banner .swiper-slide .slide-box .slide-pic img {
    display: block;
    width: auto;
    height: 5rem;
  }
  header .head-banner .swiper-slide .slide-box .box-pic {
    display: none;
  }
  header .head-banner .swiper-slide .slide-box .box-web-pic {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  header .head-banner .swiper-slide .slide-box .box-web-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  header .head-banner .swiper-slide .slide-box .box-cent {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 0.3rem;
    z-index: 9;
    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-title {
    font-size: 0.66rem;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 0.6s;
    -o-transition: all 0.5s 0.6s;
    -moz-transition: all 0.5s 0.6s;
    -webkit-transition: all 0.5s 0.6s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-title span {
    position: relative;
    padding: 0 0.3rem;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 100%;
    background: url(../images/icon/icon-banner-pic1.png) no-repeat top left;
    background-size: 100%;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-title span::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.06rem;
    width: 19px;
    height: 100%;
    background: url(../images/icon/icon-banner-pic2.png) no-repeat bottom right;
    background-size: 100%;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-text {
    margin-top: 0.2rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    color: #fff;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 0.8s;
    -o-transition: all 0.5s 0.8s;
    -moz-transition: all 0.5s 0.8s;
    -webkit-transition: all 0.5s 0.8s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-English {
    width: 100%;
    margin-top: 0.2rem;
    font-size: 0.24rem;
    line-height: 0.3rem;
    color: #fff;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 1s;
    -o-transition: all 0.5s 1s;
    -moz-transition: all 0.5s 1s;
    -webkit-transition: all 0.5s 1s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent .cent-heng {
    width: 30px;
    height: 6px;
    margin-top: 0.45rem;
    background: #fff;
    border-radius: 0.45rem;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 1s;
    -o-transition: all 0.5s 1s;
    -moz-transition: all 0.5s 1s;
    -webkit-transition: all 0.5s 1s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 0.3rem;
    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-pic {
    width: 2.5rem;
    height: auto;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 0.6s;
    -o-transition: all 0.5s 0.6s;
    -moz-transition: all 0.5s 0.6s;
    -webkit-transition: all 0.5s 0.6s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-pic img {
    width: 100%;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-title {
    font-size: 0.5rem;
    font-weight: bold;
    line-height: 0.8rem;
    color: #fff;
    background: linear-gradient(90deg, #00a2e9, #005eac);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 0.6s;
    -o-transition: all 0.5s 0.6s;
    -moz-transition: all 0.5s 0.6s;
    -webkit-transition: all 0.5s 0.6s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-English {
    margin-top: 0.2rem;
    font-family: 'MONTSERRAT-REGULAR';
    font-size: 0.18rem;
    text-transform: uppercase;
    color: #8c9db2;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 1s;
    -o-transition: all 0.5s 1s;
    -moz-transition: all 0.5s 1s;
    -webkit-transition: all 0.5s 1s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-title2 {
    font-size: 0.45rem;
    font-weight: bold;
    line-height: 0.8rem;
    background: linear-gradient(0deg, #ce905d, #ffeecc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 0.6s;
    -o-transition: all 0.5s 0.6s;
    -moz-transition: all 0.5s 0.6s;
    -webkit-transition: all 0.5s 0.6s;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-title2 span {
    font-weight: 100;
  }
  header .head-banner .swiper-slide .slide-box .box-cent2 .cent-English2 {
    padding-bottom: 0.5rem;
    margin-top: 0.1rem;
    font-family: 'MONTSERRAT-REGULAR';
    font-size: 0.18rem;
    text-transform: uppercase;
    color: #cfa561;
    opacity: 0;
    transform: translatey(30px);
    -o-transform: translatey(30px);
    -moz-transform: translatey(30px);
    -webkit-transform: translatey(30px);
    transition: all 0.5s 1s;
    -o-transition: all 0.5s 1s;
    -moz-transition: all 0.5s 1s;
    -webkit-transition: all 0.5s 1s;
  }
  header .head-banner .banner-pic {
    width: 100%;
    height: 4rem;
    margin-top: 0;
    overflow: hidden;
    background: none;
  }
  header .head-banner .banner-pic img {
    width: auto;
    height: 100%;
    opacity: 1;
    transform: translateX(-25%);
    -o-transform: translateX(-25%);
    -moz-transform: translateX(-25%);
    -webkit-transform: translateX(-25%);
  }
  header .head-banner .banner-pic2 {
    position: relative;
    width: 100%;
    height: 4rem;
    margin-top: 1.2rem;
    overflow: hidden;
  }
  header .head-banner .banner-pic2 img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  header .head-banner .banner-pic3 {
    position: relative;
    width: 100%;
    height: 5rem;
    margin-top: 1.2rem;
    overflow: hidden;
  }
  header .head-banner .banner-pic3 img {
    width: auto;
    height: 100%;
  }
  header .head-banner .banner-cent {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 0.3rem;
    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  header .head-banner .banner-cent .cent-title {
    font-size: 0.66rem;
    font-weight: bold;
    color: #fff;
  }
  header .head-banner .banner-cent .cent-title span {
    position: relative;
    padding: 0 0.3rem;
  }
  header .head-banner .banner-cent .cent-title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background: url(../images/icon/icon-banner-pic1.png) no-repeat top left;
    background-size: 100%;
  }
  header .head-banner .banner-cent .cent-title span::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.06rem;
    width: 15px;
    height: 100%;
    background: url(../images/icon/icon-banner-pic2.png) no-repeat bottom right;
    background-size: 100%;
  }
  header .head-banner .banner-cent .cent-English {
    margin-top: 0.1rem;
    font-size: 0.36rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
  }
  header .head-banner .banner-cent2 {
    position: absolute;
    top: 1.2rem;
    right: 0;
    width: 100%;
    height: calc(100% - 1.2rem);
    padding-left: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  header .head-banner .banner-cent2 .cent-English {
    font-size: 0.48rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }
  header .head-banner .banner-cent2 .cent-English span {
    color: #1e2188;
  }
  header .head-banner .banner-cent2 .cent-title {
    margin-top: 0.3rem;
    font-size: 0.36rem;
    text-align: center;
    color: #fff;
  }
  header .head-banner .banner-cent2 .cent-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 0.85rem;
    margin: 0.5rem auto 0;
    font-size: 0.3rem;
    color: #fff;
    background: #1e2188;
    border-radius: 0.45rem;
  }
  header .head-banner .banner-cent2 .cent-button img {
    width: 0.35rem;
    margin-left: 0.18rem;
  }
  header .head-banner .banner-cent2 .cent-button:hover {
    background: #1e2188;
  }
  header .head-banner .banner-mouse {
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    width: 1.6rem;
    height: auto;
    z-index: 9;
    cursor: pointer;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  header .head-banner .banner-mouse .mouse-title {
    font-size: 0.26rem;
    text-align: center;
    color: #fff;
  }
  header .head-banner .banner-mouse img {
    display: block;
    width: 0.26rem;
    margin: 8px auto 0;
    animation: moveTop infinite 1.5s linear;
  }
  header .head-banner .swiper-pagination {
    top: auto;
    bottom: 0.3rem;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  header .head-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
    background: transparent;
    border-radius: 50%;
    border: solid 1px #fff;
  }
  header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
  header .head-banner .banner-swiper-button-prev,
  header .head-banner .banner-swiper-button-next {
    display: none;
  }
  header .head-banner .swiper-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0.35rem;
    left: 50%;
    width: 3rem;
    height: auto;
    margin-left: -1.5rem;
    z-index: 9;
  }
  header .head-banner .swiper-bottom .bottom-num {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 2rem;
    height: auto;
  }
  header .head-banner .swiper-bottom .bottom-num .one {
    font-size: 0.28rem;
    font-weight: bold;
    color: #fff;
  }
  header .head-banner .swiper-bottom .bottom-num .heng {
    position: relative;
    width: 1rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
  }
  header .head-banner .swiper-bottom .bottom-num .heng::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e2188;
  }
  header .head-banner .swiper-bottom .bottom-num .on::after {
    width: 100%;
    transition: all 5s;
    -o-transition: all 5s;
    -moz-transition: all 5s;
    -webkit-transition: all 5s;
  }
  header .head-banner .swiper-bottom .bottom-num .two {
    font-size: 0.28rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
  }
  header .head-banner .swiper-bottom .bottom-button {
    display: flex;
    justify-content: space-between;
    width: 0.8rem;
    height: auto;
  }
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-prev,
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-next {
    position: relative;
    width: 0.22rem;
    height: 0.26rem;
    cursor: pointer;
    outline: none;
  }
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-prev img,
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-next img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-prev .img2,
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-next .img2 {
    opacity: 0;
  }
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-prev:hover .img1,
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-next:hover .img1 {
    opacity: 0;
  }
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-prev:hover .img2,
  header .head-banner .swiper-bottom .bottom-button .banner-swiper-button-next:hover .img2 {
    opacity: 1;
  }
  header .mt0 {
    margin-top: 1.2rem !important;
  }
  header .head-Wnav {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #1e2188;
    z-index: 69;
  }
  header .head-Wnav .Wnav-top {
    font-family: 'MONTSERRAT-REGULAR';
    font-size: 0.32rem;
    text-transform: uppercase;
    color: #fff;
    background: url(../images/icon/icon-web-xiasanjiao.png) no-repeat 96% center;
    background-size: 0.24rem;
    padding: 0 0.2rem;
  }
  header .head-Wnav .top-on {
    background: url(../images/icon/icon-web-shangsanjiao.png) no-repeat 96% center !important;
    background-size: 0.24rem !important;
  }
  header .head-Wnav .Wnav-ul {
    position: relative;
    width: 100%;
    height: 0;
    background: #fff;
    overflow: hidden;
    z-index: 99;
    transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
  }
  header .head-Wnav .Wnav-ul .Wnav-li {
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.2rem;
    font-family: 'MONTSERRAT-MEDIUM';
    font-size: 0.26rem;
    text-transform: uppercase;
    color: #000;
    border-bottom: solid 1px #ccc;
  }
  header .head-strip,
  header .head-cont {
    display: none;
  }
  footer {
    width: 100%;
    height: auto;
    background: #333333;
  }
  footer .foot-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0.8rem 0.3rem;
  }
  footer .foot-main .main-left {
    width: 100%;
    height: auto;
  }
  footer .foot-main .main-left .left-logo {
    display: block;
    width: 2.2rem;
    margin-bottom: 0.4rem;
  }
  footer .foot-main .main-left .left-logo img {
    width: 100%;
  }
  footer .foot-main .main-left .left-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 0.25rem;
  }
  footer .foot-main .main-left .left-item .item-icon {
    width: 0.65rem;
    height: 0.65rem;
    text-align: center;
    line-height: 0.6rem;
    border: solid 1px #535353;
    border-radius: 50%;
  }
  footer .foot-main .main-left .left-item .item-icon img {
    width: 0.3rem;
  }
  footer .foot-main .main-left .left-item .item-cent {
    width: calc(100% - 0.65rem);
    height: auto;
    padding-left: 0.2rem;
  }
  footer .foot-main .main-left .left-item .item-cent .cent-title {
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #999;
  }
  footer .foot-main .main-left .left-item .item-cent .cent-text {
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 0.44rem;
    color: #fff;
  }
  footer .foot-main .main-left .left-item .item-cent .cent-tel {
    font-size: 0.3rem;
    font-weight: bold;
    line-height: 0.44rem;
    color: #fff;
  }
  footer .foot-main .main-nav {
    display: none;
    justify-content: flex-end;
    width: auto;
    height: auto;
  }
  footer .foot-main .main-nav .nav-item {
    width: 1.4rem;
    height: auto;
  }
  footer .foot-main .main-nav .nav-item .item-title {
    font-size: 0.15rem;
    font-weight: bold;
    color: #fff;
  }
  footer .foot-main .main-nav .nav-item .item-title:hover {
    color: #ee7700;
  }
  footer .foot-main .main-nav .nav-item .item-cent {
    width: 100%;
    height: auto;
    margin-top: 0.35rem;
  }
  footer .foot-main .main-nav .nav-item .item-cent .cent-link {
    display: block;
    font-size: 0.14rem;
    line-height: 0.37rem;
    color: #666666;
  }
  footer .foot-main .main-nav .nav-item .item-cent .cent-link:hover {
    color: #fff;
  }
  footer .foot-main .main-nav .nav-item:last-of-type {
    width: auto;
  }
  footer .foot-bottom {
    width: 100%;
    height: auto;
    padding: 0 0.3rem 0.48rem;
    border-top: none;
  }
  footer .foot-bottom .bottom-main {
    display: block;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  footer .foot-bottom .bottom-main .main-ewm {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
  }
  footer .foot-bottom .bottom-main .main-ewm .ewm-item {
    width: 2rem;
    height: auto;
    margin-left: 0;
    margin-right: 0.2rem;
  }
  footer .foot-bottom .bottom-main .main-ewm .ewm-item img {
    width: 100%;
  }
  footer .foot-bottom .bottom-main .main-ewm .ewm-item p {
    margin-top: 0.12rem;
    font-size: 0.26rem;
    text-align: center;
    color: #666;
  }
  footer .foot-bottom .bottom-main .main-link {
    width: 100%;
    height: auto;
    margin-top: 0.45rem;
  }
  footer .foot-bottom .bottom-main .main-link .link-title {
    margin-bottom: 0.2rem;
    font-size: 0.28rem;
    font-weight: bold;
    color: #fff;
  }
  footer .foot-bottom .bottom-main .main-link .link-box {
    position: relative;
    width: 80%;
    height: 0.8rem;
    padding-left: 0.15rem;
    font-size: 0.26rem;
    color: #666;
    line-height: 0.8rem;
    background: url(../images/icon/icon-foot-arrow.png) no-repeat 96% center;
    background-size: 18px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    cursor: pointer;
  }
  footer .foot-bottom .bottom-main .main-link .link-box .link-hidden {
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    padding-left: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  footer .foot-bottom .bottom-main .main-link .link-box .link-hidden a {
    display: inline-block;
    width: 100%;
    height: 0.5rem;
    font-size: 14px;
    color: #666;
    line-height: 0.5rem;
  }
  footer .foot-bottom .bottom-main .main-link .link-box .link-hidden a:hover {
    text-decoration: underline;
    color: #1e2188;
  }
  footer .foot-bottom .bottom-main .main-link .link-box:hover .link-hidden {
    opacity: 1;
    visibility: visible;
  }
  footer .foot-bottom .bottom-main .main-cent {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-share {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-share a {
    display: block;
    width: 34px;
    height: 34px;
    margin-right: 0.1rem;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: solid 1px #6f6f6f;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-share a img {
    width: 21px;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-share a:hover {
    border: solid 1px #ee7700;
    background: #ee7700;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-zizhi {
    margin-top: 0.3rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-zizhi a {
    color: #666;
  }
  footer .foot-bottom .bottom-main .main-cent .cent-zizhi a:hover {
    color: #fff;
  }
  .container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 0.7rem 0 0.8rem;
    border-bottom: solid 1px #e0e0e0;
  }
  .container .cont-plate1 .plate1-item {
    width: 50%;
    height: auto;
    padding: 0 0.3rem;
    margin-bottom: 0.3rem;
    border-right: solid 1px #e0e0e0;
  }
  .container .cont-plate1 .plate1-item .item-title {
    font-size: 0.3rem;
    font-weight: bold;
    text-align: center;
    color: #333;
  }
  .container .cont-plate1 .plate1-item .item-num {
    margin: 0.2rem 0;
    text-align: center;
  }
  .container .cont-plate1 .plate1-item .item-num span {
    font-size: 0.48rem;
    font-weight: bold;
    color: #ee7700;
  }
  .container .cont-plate1 .plate1-item .item-num em {
    position: relative;
    font-size: 0.26rem;
    color: #333;
  }
  .container .cont-plate1 .plate1-item .item-num em::after {
    content: '+';
    position: absolute;
    top: -0.25rem;
    left: 0;
    width: 0.24rem;
    height: 0.24rem;
    font-size: 0.24rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.18rem;
    color: #fff;
    border-radius: 50%;
    background: #1e2188;
  }
  .container .cont-plate1 .plate1-item .item-text {
    font-size: 0.26rem;
    line-height: 0.42rem;
    text-align: center;
    color: #333;
  }
  .container .cont-plate1 .plate1-item:last-of-type {
    border-right: none;
  }
  .container .cont-plate1 .plate1-item:nth-child(2n) {
    border-right: none;
  }
  .container .cont-plate2 {
    width: 100%;
    height: auto;
    padding-top: 1.2rem;
  }
  .container .cont-plate2 .plate2-mian {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.7rem auto 0;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide {
    width: 100%;
    height: auto;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    background: #000;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box .box-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box .box-pic img {
    width: 100%;
    opacity: 0.5;
    transition: all 0.8s;
    -o-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box .box-cent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.2rem 0.5rem 0;
    opacity: 0;
    transition: all 0.8s;
    -o-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box .box-cent .cent-ttile {
    font-size: 0.48rem;
    color: #fff;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box .box-cent .cent-English {
    margin-top: 0.1rem;
    font-size: 0.3rem;
    line-height: 0.35rem;
    text-transform: uppercase;
    color: #fff;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide .slide-box:hover .box-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .container .cont-plate2 .plate2-mian .swiper-slide-active .slide-box .box-pic img {
    opacity: 1;
  }
  .container .cont-plate2 .plate2-mian .swiper-slide-active .slide-box .box-cent {
    opacity: 1;
  }
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-prev,
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-next {
    position: absolute;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -0.25rem;
    text-align: center;
    line-height: 0.46rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-prev img,
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-next img {
    width: 12px;
  }
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-prev:hover,
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-next:hover {
    background: #1e2188;
  }
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-prev {
    left: -1.5rem;
  }
  .container .cont-plate2 .plate2-mian .plate2-swiper-button-next {
    right: -1.5rem;
  }
  .container .cont-plate3 {
    width: 100%;
    height: auto;
    padding: 1.2rem 0.3rem 0.86rem;
  }
  .container .cont-plate3 .plate3-main {
    width: 100%;
    height: auto;
    margin: 0.7rem auto 0;
  }
  .container .cont-plate3 .plate3-main .main-item {
    display: block;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-bottom: 0.52rem;
  }
  .container .cont-plate3 .plate3-main .main-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate3 .plate3-main .main-item .item-pic img {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate3 .plate3-main .main-item .item-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent {
    width: 100%;
    height: auto;
    padding-top: 0.6rem;
    padding-left: 0;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top .top-icon {
    width: 0.62rem;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top .top-icon img {
    width: 100%;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top .top-lump {
    width: calc(100% - 0.62rem);
    height: auto;
    padding-left: 0.2rem;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top .top-lump .lump-title {
    font-size: 0.38rem;
    font-weight: bold;
    color: #333;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-top .top-lump .lump-text {
    font-size: 0.28rem;
    color: #333;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-text {
    width: 100%;
    height: auto;
    padding-left: 0.84rem;
    margin-top: 0.4rem;
    font-size: 0.28rem;
    line-height: 0.46rem;
    color: #666;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-text span {
    position: relative;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-text span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -0.36rem;
    width: 0.15rem;
    height: 2px;
    margin-top: -1px;
    background: #bbbcdb;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-bottom {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-top: 0.65rem;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-bottom .bottom-button {
    width: 2.2rem;
    height: 0.7rem;
    margin-right: 0.1rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.66rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
  }
  .container .cont-plate3 .plate3-main .main-item .item-cent .cent-bottom .bottom-button:hover {
    background: #ee7700;
  }
  .container .cont-plate3 .plate3-main .main-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .container .cont-plate3 .plate3-main .main-item:nth-child(odd) .item-cent {
    padding-left: 0;
  }
  .container .cont-plate4 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1.25rem;
  }
  .container .cont-plate4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.02rem;
    background: url(../images/bg.jpg) no-repeat top left;
    background-size: cover;
  }
  .container .cont-plate4 .plate4-top {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    z-index: 9;
  }
  .container .cont-plate4 .plate4-top .page-title {
    color: #fff;
  }
  .container .cont-plate4 .plate4-top .page-English {
    color: #fff;
  }
  .container .cont-plate4 .plate4-top .page-English span::before,
  .container .cont-plate4 .plate4-top .page-English span::after {
    background: #fff;
  }
  .container .cont-plate4 .plate4-top .top-cent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
  }
  .container .cont-plate4 .plate4-top .top-cent .cent-item {
    position: relative;
    width: 33.33%;
    height: auto;
    font-size: 0.28rem;
    line-height: 0.52rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
  }
  .container .cont-plate4 .plate4-top .top-cent .cent-item::after {
    content: '/';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.16rem;
    font-weight: 500 !important;
    color: #fff;
  }
  .container .cont-plate4 .plate4-top .top-cent .cent-item:last-of-type::after {
    display: none;
  }
  .container .cont-plate4 .plate4-top .top-cent .cent-item:nth-child(3n)::after {
    display: none;
  }
  .container .cont-plate4 .plate4-top .top-cent .cent-item-active {
    font-weight: bold;
  }
  .container .cont-plate4 .plate4-top .top-cent span {
    margin: 0 0.5rem;
    font-size: 0.16rem;
    color: #fff;
  }
  .container .cont-plate4 .plate4-main {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.4rem auto 0;
    z-index: 9;
  }
  .container .cont-plate4 .plate4-main .main-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump {
    position: relative;
    width: 100%;
    height: auto;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    margin-bottom: 1.4rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide {
    width: 100%;
    margin-right: 0;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item {
    position: relative;
    width: 100%;
    height: auto;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-cent {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.3rem;
    box-shadow: none;
    background: #fff;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-cent .cent-text {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-cent .cent-button {
    width: 2.2rem;
    height: 0.7rem;
    margin-top: 0.35rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.7rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item .item-cent .cent-button:hover {
    background: #ee7700;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1e2188;
    transform: scale(0, 0) translateZ(0);
    -o-transform: scale(0, 0) translateZ(0);
    -moz-transform: scale(0, 0) translateZ(0);
    -webkit-transform: scale(0, 0 translateZ(0));
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .swiper-slide .slide-item:hover::after {
    transform: scale(1, 1) translateZ(0);
    -o-transform: scale(1, 1) translateZ(0);
    -moz-transform: scale(1, 1) translateZ(0);
    -webkit-transform: scale(1, 1 translateZ(0));
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-prev,
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-next {
    position: absolute;
    top: 43%;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -0.25rem;
    text-align: center;
    line-height: 0.46rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-prev img,
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-next img {
    width: 12px;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-prev:hover,
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-next:hover {
    background: #1e2188;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-prev {
    left: -0.8rem;
  }
  .container .cont-plate4 .plate4-main .main-box .box-lump .lump-swiper .plate4-swiper-button-next {
    right: -0.8rem;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-pic {
    width: 100%;
    height: auto;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-pic img {
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.65rem;
    height: auto;
    cursor: pointer;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-button img {
    width: 0.46rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-button span {
    font-size: 0.24rem;
    color: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-button:hover img {
    transform: rotate(235deg);
    -o-transform: rotate(235deg);
    -moz-transform: rotate(235deg);
    -webkit-transform: rotate(235deg);
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-video .video-button:hover span {
    color: #ee7700;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-top: 0.4rem;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #1e2188;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-title span {
    position: relative;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.6rem;
    width: 0.46rem;
    height: 1px;
    background: #ee7700;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-English {
    font-size: 0.42rem;
    font-weight: bold;
    color: #999;
    opacity: 0.9;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-subtitle {
    margin-top: 0.45rem;
    font-size: 0.42rem;
    font-weight: bold;
    color: #333;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-text {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-bottom {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-bottom .bottom-button {
    width: 2.2rem;
    height: 0.7rem;
    margin-right: 0.1rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.7rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
  }
  .container .cont-plate4 .plate4-main .main-box .box-cont .cont-cent .cent-bottom .bottom-button:hover {
    background: #ee7700;
  }
  .container .cont-plate4 .plate4-main .main-box-active {
    position: static;
    opacity: 1;
    visibility: visible;
    transition: all 1.2s;
    -o-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -webkit-transition: all 1.2s;
  }
  .container .cont-plate5 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1.3rem;
    background: #f5f5f5;
  }
  .container .cont-plate5 .plate5-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0.48rem auto 0;
  }
  .container .cont-plate5 .plate5-main .main-box {
    width: 100%;
    height: auto;
  }
  .container .cont-plate5 .plate5-main .main-box .box-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .container .cont-plate5 .plate5-main .main-box .box-top .top-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
  }
  .container .cont-plate5 .plate5-main .main-box .box-top a {
    font-size: 0.26rem;
    font-weight: bold;
    color: #1e2188;
  }
  .container .cont-plate5 .plate5-main .main-box .box-top a:hover {
    color: #ee7700;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
    overflow: hidden;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-pic img {
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent {
    width: 100%;
    height: auto;
    padding: 0.4rem 0.35rem;
    background: #fff;
    box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.1);
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent .cent-time {
    font-size: 0.3rem;
    font-weight: bold;
    color: #cccccc;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent .cent-title {
    margin-top: 0.05rem;
    font-size: 0.34rem;
    line-height: 0.54rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent .cent-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent .cent-link {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    color: #1e2188;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box .box-cent .cent-link span {
    text-decoration: underline;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box:hover .box-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box:hover .box-cent .cent-title {
    color: #1e2188;
  }
  .container .cont-plate5 .plate5-main .main-box .box-lump .swiper-slide .slide-box:hover::after {
    width: 100%;
  }
  .container .cont-plate5 .plate5-main .main-cont {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-top .top-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-top a {
    font-size: 0.26rem;
    font-weight: bold;
    color: #1e2188;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-top a:hover {
    color: #ee7700;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump {
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
    padding: 0.45rem 0.3rem 0.4rem;
    background: #fff;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-top {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 0.2rem;
    margin-bottom: 0.22rem;
    border-bottom: solid 1px #f2f2f2;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-top .top-title {
    font-size: 0.36rem;
    color: #4d4948;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-top .top-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-top .top-time {
    margin-top: 0.2rem;
    font-size: 0.3rem;
    font-weight: bold;
    color: #ccc;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-top:hover .top-title {
    color: #1e2188;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-link {
    display: block;
    width: 100%;
    font-size: 0.28rem;
    line-height: 0.55rem;
    color: #4d4948;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .container .cont-plate5 .plate5-main .main-cont .cont-lump .lump-link:hover {
    color: #1e2188;
  }
  .service {
    width: 100%;
    height: auto;
    padding: 1.2rem 0.3rem 1.35rem;
  }
  .service .service-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .service .service-main .main-cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.7rem;
  }
  .service .service-main .main-cont .cont-item {
    width: 100%;
    height: auto;
    margin-bottom: 0.7rem;
  }
  .service .service-main .main-cont .cont-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .service .service-main .main-cont .cont-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .service .service-main .main-cont .cont-item .item-cent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 0.4rem;
  }
  .service .service-main .main-cont .cont-item .item-cent .cent-title {
    width: calc(100% - 2.1rem);
    font-size: 0.34rem;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .service .service-main .main-cont .cont-item .item-cent .cent-button {
    width: 2rem;
    height: 0.65rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.65rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .service .service-main .main-cont .cont-item .item-cent .cent-button:hover {
    background: #ee7700;
  }
  .service .service-main .main-cont .cont-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .service .service-main .main-cont .cont-item:hover .item-cent .cent-title {
    color: #1e2188;
  }
  .service .service-main .main-load {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 0.9rem;
    margin: 0 auto;
    border-radius: 0.45rem;
    border: solid 1px #a0a0a0;
  }
  .service .service-main .main-load img {
    width: 0.35rem;
    margin-right: 0.2rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .service .service-main .main-load span {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .service .service-main .main-load:hover {
    border: solid 1px #ee7700;
  }
  .service .service-main .main-load:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .service .service-main .main-load:hover span {
    color: #ee7700;
  }
  .serviceDetail {
    width: 100%;
    height: auto;
  }
  .serviceDetail .serviceDetail-plate1 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1.2rem 0.3rem 1.2rem;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-top {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-top .top-item {
    width: 2.5rem;
    height: 0.8rem;
    margin: 0 0.08rem;
    font-size: 0.28rem;
    text-align: center;
    line-height: 0.8rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #333;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-top .top-item:hover {
    background: #1e2188;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-top .top-item-active {
    background: #1e2188;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.76rem;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-cent {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.3rem;
    background: #f5f5f5;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-cent .cent-title {
    font-size: 0.48rem;
    font-weight: bold;
    color: #333;
  }
  .serviceDetail .serviceDetail-plate1 .plate1-main .main-cent .cent-text {
    margin-top: 0.4rem;
    font-size: 0.26rem;
    line-height: 0.42rem;
    color: #333;
  }
  .serviceDetail .serviceDetail-plate2 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1.3rem;
    background: #f5f5f5;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont {
    width: 100%;
    height: auto;
    margin-top: 0.76rem;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item {
    width: 100%;
    height: auto;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 1rem;
    padding: 0 0.35rem;
    border-top: solid 1px #ccc;
    cursor: pointer;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top span {
    position: relative;
    width: 30px;
    height: 30px;
    border: solid 2px #e5e5e5;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -8px;
    width: 16px;
    height: 2px;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 16px;
    margin: -8px 0 0 -1px;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top p {
    margin-left: 0.35rem;
    font-size: 0.3rem;
    font-weight: bold;
    color: #666;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top-active {
    border-top: solid 1px #fff;
    background: #fff;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top-active span {
    border: solid 2px #fff;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-top-active span::after {
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box {
    display: none;
    width: 100%;
    height: auto;
    padding: 0.45rem 0.3rem 0.55rem;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-cent {
    width: 100%;
    height: auto;
    padding: 0.48rem 0.3rem;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #666;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-cent .cent-text {
    margin-top: 0.35rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-cent .cent-button {
    display: block;
    width: 2.2rem;
    height: 0.7rem;
    margin-top: 0.5rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.7rem;
    color: #fff;
    background: #1e2188;
    border-radius: 0.45rem;
  }
  .serviceDetail .serviceDetail-plate2 .plate2-main .main-cont .cont-item .item-box .box-lump .lump-cent .cent-button:hover {
    background: #ee7700;
  }
  .serviceDetail .serviceDetail-plate3 {
    width: 100%;
    height: auto;
    padding-top: 1.3rem;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.55rem;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0.2rem;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-pic {
    width: 100%;
    height: auto;
    background: #f1f1f1;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-pic img {
    width: 100%;
    height: auto;
    opacity: 0.1;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 2.3rem 0.8rem 0;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent .cent-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent .cent-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.45rem;
    height: 0.44rem;
    margin: -0.22rem 0 0 -0.225rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent .cent-icon .img2 {
    opacity: 0;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent .cent-title {
    margin-top: 0.35rem;
    font-size: 0.28rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item .item-cent .cent-text {
    margin-top: 0.35rem;
    font-size: 0.26rem;
    line-height: 0.42rem;
    text-align: center;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-pic {
    background: #000;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-pic img {
    opacity: 0.4;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-cent .cent-icon {
    background: #ee7700;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-cent .cent-icon .img1 {
    opacity: 0;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-cent .cent-icon .img2 {
    opacity: 1;
  }
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-cent .cent-title,
  .serviceDetail .serviceDetail-plate3 .plate3-main .main-item:hover .item-cent .cent-text {
    color: #fff;
  }
  .serviceDetail .serviceDetail-plate4 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1rem;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 0.55rem 0 0.45rem;
    overflow: hidden;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide {
    width: 100%;
    margin-right: 0;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item {
    position: relative;
    width: 100%;
    height: auto;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-cent {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.2rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    background: #fff;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-cent .cent-text {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.42rem;
    color: #666;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-cent .cent-button {
    width: 2.2rem;
    height: 0.75rem;
    margin-top: 0.35rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.75rem;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item .item-cent .cent-button:hover {
    background: #ee7700;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1e2188;
    transform: scale(0, 0) translateZ(0);
    -o-transform: scale(0, 0) translateZ(0);
    -moz-transform: scale(0, 0) translateZ(0);
    -webkit-transform: scale(0, 0 translateZ(0));
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .main-swiper .swiper-slide .slide-item:hover::after {
    transform: scale(1, 1) translateZ(0);
    -o-transform: scale(1, 1) translateZ(0);
    -moz-transform: scale(1, 1) translateZ(0);
    -webkit-transform: scale(1, 1 translateZ(0));
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-prev,
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-next {
    position: absolute;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    text-align: center;
    line-height: 0.8rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-prev img,
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-next img {
    width: 12px;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-prev:hover,
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-next:hover {
    background: #1e2188;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-prev {
    left: -0.25rem;
  }
  .serviceDetail .serviceDetail-plate4 .plate4-main .plate4-swiper-button-next {
    right: -0.25rem;
  }
  .introduce {
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate1 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1.1rem 0.3rem 1.2rem;
  }
  .introduce .introduce-plate1 .plate1-main {
    display: block;
    justify-content: flex-start;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .introduce .introduce-plate1 .plate1-main .main-video {
    position: relative;
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.2rem;
    height: auto;
    cursor: pointer;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-button img {
    width: 0.6rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-button span {
    font-size: 0.34rem;
    color: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-button:hover img {
    transform: rotate(235deg);
    -o-transform: rotate(235deg);
    -moz-transform: rotate(235deg);
    -webkit-transform: rotate(235deg);
  }
  .introduce .introduce-plate1 .plate1-main .main-video .video-button:hover span {
    color: #ee7700;
  }
  .introduce .introduce-plate1 .plate1-main .main-video:hover .video-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate1 .plate1-main .main-cent {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.2rem 0;
  }
  .introduce .introduce-plate1 .plate1-main .main-cent p {
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #666;
  }
  .introduce .introduce-plate2 {
    width: 100%;
    height: auto;
    padding: 1.1rem 0.3rem 0.9rem;
    background: #f5f5f5;
  }
  .introduce .introduce-plate2 .plate2-main {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.25rem auto 0;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper {
    width: 100%;
    height: auto;
    padding: 0.3rem 0;
    overflow: hidden;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide {
    width: 100%;
    height: auto;
    margin-right: 0.4rem;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide .slide-box {
    width: 100%;
    height: 100%;
    padding: 0.4rem 0.35rem 0.48rem;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-title {
    margin-top: 0.2rem;
    font-size: 0.28rem;
    text-align: center;
    color: #333;
  }
  .introduce .introduce-plate2 .plate2-main .main-swiper .swiper-slide .slide-box:hover .box-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-prev,
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-next {
    position: absolute;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: -0.25rem;
    text-align: center;
    line-height: 0.46rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-prev img,
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-next img {
    width: 12px;
  }
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-prev:hover,
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-next:hover {
    background: #1e2188;
  }
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-prev {
    left: -0.8rem;
  }
  .introduce .introduce-plate2 .plate2-main .plate2-swiper-button-next {
    right: -0.8rem;
  }
  .introduce .introduce-plate3 {
    width: 100%;
    height: auto;
    padding: 1.1rem 0.3rem 1.2rem;
    background: url(../images/introduce/bg.jpg) no-repeat left bottom;
    background-size: cover;
  }
  .introduce .introduce-plate3 .plate3-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .introduce .introduce-plate3 .plate3-main .page-title {
    color: #fff;
  }
  .introduce .introduce-plate3 .plate3-main .page-English {
    color: #fff;
  }
  .introduce .introduce-plate3 .plate3-main .page-English span::before,
  .introduce .introduce-plate3 .plate3-main .page-English span::after {
    background: #fff;
  }
  .introduce .introduce-plate3 .plate3-main .main-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.6rem;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.45rem;
    padding: 0.7rem 0.5rem;
    background: #fff;
    border-radius: 3px;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item:last-of-type {
    margin-right: 0;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-icon {
    width: 0.61rem;
    height: 0.65rem;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-icon img {
    width: 100%;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-cent {
    width: calc(100% - 0.61rem);
    height: auto;
    padding-left: 0.3rem;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-cent .cent-title {
    font-size: 0.34rem;
    font-weight: bold;
    color: #333;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-cent .cent-English {
    margin-top: 0.05rem;
    font-size: 0.34rem;
    color: #999;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-cent .cent-heng {
    width: 0.18rem;
    height: 1px;
    margin-top: 0.15rem;
    background: #b4b4b4;
  }
  .introduce .introduce-plate3 .plate3-main .main-box .box-item .item-cent .cent-text {
    margin-top: 0.15rem;
    font-size: 0.38rem;
    color: #1e2188;
  }
  .introduce .introduce-plate4 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1.1rem;
  }
  .introduce .introduce-plate4 .plate4-main {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.6rem auto 0;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr {
    position: relative;
    width: 100%;
    height: auto;
    padding: 3.2rem 0 0;
    overflow: hidden;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr::after {
    content: '';
    position: absolute;
    bottom: 7.5px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: solid 1px #082c7e;
    opacity: 0.3;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide {
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box {
    position: relative;
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-title {
    font-size: 0.34rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 17px;
    height: 17px;
    margin: 0.05rem auto 0;
    border-radius: 50%;
    background: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-icon span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b4bfd8;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-cont {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    bottom: 1rem;
    left: 5%;
    width: 90%;
    height: 2.8rem;
    padding: 0.25rem 0.22rem;
    margin-left: 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-cont::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: auto;
    height: auto;
    margin-left: -9px;
    border: solid 9px transparent;
    border-top: solid 9px #1e2188;
    opacity: 0.3;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-cont .cont-pic {
    width: 2rem;
    height: auto;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-cont .cont-pic img {
    width: 100%;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide .slide-box .box-cont .cont-cent {
    width: calc(100% - 2rem);
    height: 2.2rem;
    padding-left: 0.2rem;
    padding-top: 0.06rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #333;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide:nth-child(even) .slide-box .box-cont {
    bottom: 1rem;
    top: auto;
  }
  .introduce .introduce-plate4 .plate4-main .main-swiepr .swiper-slide:nth-child(even) .slide-box .box-cont::after {
    top: auto;
    bottom: -18px;
    left: 50%;
    border-top: solid 9px #1e2188;
    border-bottom: solid 9px transparent ;
  }
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-prev,
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-next {
    position: absolute;
    top: 95%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    text-align: center;
    line-height: 0.76rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-prev img,
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-next img {
    width: 12px;
  }
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-prev:hover,
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-next:hover {
    background: #1e2188;
  }
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-prev {
    left: -0.2rem;
  }
  .introduce .introduce-plate4 .plate4-main .plate4-swiper-button-next {
    right: -0.2rem;
  }
  .introduce .introduce-plate5 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem 1.2rem;
    background: url(../images/introduce/bg2.jpg) no-repeat top left;
    background-size: cover;
  }
  .introduce .introduce-plate5 .plate5-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .introduce .introduce-plate5 .plate5-main .main-pic {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 0.5rem;
    overflow: auto;
  }
  .introduce .introduce-plate5 .plate5-main .main-pic img {
    width: 850px;
  }
  .introduce .introduce-plate6 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1rem 0.3rem 1.15rem;
  }
  .introduce .introduce-plate6 .plate6-main {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .introduce .introduce-plate6 .plate6-main .main-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-bottom: 0.13rem;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0.13rem;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide {
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide .slide-box {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide .slide-box .box-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide .slide-box .box-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide .slide-box .box-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0.8rem 0.35rem 0.25rem;
    font-size: 0.3rem;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-slide .slide-box:hover .box-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-pagination {
    padding-right: 0.3rem;
    text-align: right;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    border: solid 1px #fff;
    background: transparent;
    opacity: 1;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .left-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right {
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-top {
    width: 100%;
    height: auto;
    margin-bottom: 0.14rem;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-top:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-bottom {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate6 .plate6-main .main-top .top-right .right-bottom:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom {
    position: relative;
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .bottom-swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .bottom-swiper .swiper-slide {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .bottom-swiper .swiper-slide .slide-box {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .bottom-swiper .swiper-slide .slide-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .bottom-swiper .swiper-slide .slide-box:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-prev,
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-next {
    position: absolute;
    top: 53%;
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.25rem;
    text-align: center;
    line-height: 0.76rem;
    background: #ee7700;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-prev img,
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-next img {
    width: 12px;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-prev:hover,
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-next:hover {
    background: #1e2188;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-prev {
    left: -0.2rem;
  }
  .introduce .introduce-plate6 .plate6-main .main-bottom .plate6-swiper-button-next {
    right: -0.2rem;
  }
  .introduce .introduce-plate7 {
    width: 100%;
    height: auto;
    padding: 1rem 0.3rem;
    background: #f5f5f5;
  }
  .introduce .introduce-plate7 .plate7-main {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0.55rem auto 0;
    padding-bottom: 0.3rem;
    overflow: hidden;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide {
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item {
    width: 48%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.45rem;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item:nth-child(5n) {
    margin-right: 0;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item .item-pic {
    position: relative;
    width: 100%;
    height: 1.65rem;
    padding: 0.15rem;
    background: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item .item-pic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e2188;
    transform: scale(0, 0) translateZ(0);
    -o-transform: scale(0, 0) translateZ(0);
    -moz-transform: scale(0, 0) translateZ(0);
    -webkit-transform: scale(0, 0 translateZ(0));
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item .item-title {
    margin-top: 0.2rem;
    font-size: 0.28rem;
    text-align: center;
    color: #333;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item:hover .item-pic::after {
    transform: scale(1, 1) translateZ(0);
    -o-transform: scale(1, 1) translateZ(0);
    -moz-transform: scale(1, 1) translateZ(0);
    -webkit-transform: scale(1, 1 translateZ(0));
  }
  .introduce .introduce-plate7 .plate7-main .swiper-slide .slide-box .box-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .introduce .introduce-plate7 .plate7-main .swiper-pagination {
    bottom: 0;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border: solid 1px #dadada;
    background: transparent;
    opacity: 1;
  }
  .introduce .introduce-plate7 .plate7-main .swiper-pagination .swiper-pagination-bullet-active {
    border: solid 1px #1e2188;
    background: #1e2188;
  }
  .supplier {
    width: 100%;
    height: auto;
    padding: 1.45rem 0.3rem;
  }
  .supplier .supplier-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .supplier .supplier-main .main-cent {
    width: 100%;
    height: auto;
    padding: 0.65rem 0.45rem;
    background: #f6f8f9;
  }
  .supplier .supplier-main .main-cent .cent-title {
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #999;
  }
  .supplier .supplier-main .main-cent .cent-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 0.55rem;
  }
  .supplier .supplier-main .main-cent .cent-item .item-icon {
    width: 0.71rem;
    height: auto;
  }
  .supplier .supplier-main .main-cent .cent-item .item-icon img {
    width: 100%;
  }
  .supplier .supplier-main .main-cent .cent-item .item-cent {
    width: calc(100% - 0.71rem);
    height: auto;
    padding-left: 0.3rem;
  }
  .supplier .supplier-main .main-cent .cent-item .item-cent .cent-title {
    font-size: 0.28rem;
    color: #666;
  }
  .supplier .supplier-main .main-cent .cent-item .item-cent .cent-tel {
    font-size: 0.4rem;
    font-weight: bold;
    color: #1d74d7;
  }
  .supplier .supplier-main .main-cent .cent-item .item-cent .cent-text {
    font-size: 0.32rem;
    font-weight: bold;
    color: #1d74d7;
  }
  .supplier .supplier-main .main-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .supplier .supplier-main .main-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .technology {
    width: 100%;
    height: auto;
  }
  .technology .technology-plate1 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 1.2rem;
  }
  .technology .technology-plate1 .plate1-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.55rem;
  }
  .technology .technology-plate1 .plate1-main .main-cent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 0.55rem 0.3rem 0.3rem;
    background: #f8f8f8;
  }
  .technology .technology-plate1 .plate1-main .main-cent .cent-item {
    width: calc(100% / 2 - 0.08rem);
    height: 0.8rem;
    margin-bottom: 0.16rem;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.8rem;
    color: #333;
    background: #fff;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .technology .technology-plate1 .plate1-main .main-cent .cent-item:hover {
    color: #fff;
    background: #ee7700;
  }
  .technology .technology-plate1 .plate1-main .main-cent .cent-item-active {
    color: #fff;
    background: #ee7700;
  }
  .technology .technology-plate1 .plate1-main .main-pic {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .technology .technology-plate1 .plate1-main .main-pic .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    overflow: hidden;
  }
  .technology .technology-plate1 .plate1-main .main-pic .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .technology .technology-plate1 .plate1-main .main-pic .imgOn {
    position: static;
    opacity: 1;
    transition: all 0.8s;
    -o-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
  }
  .technology .technology-plate1 .plate1-main .main-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .technology .technology-plate2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1.2rem 0.3rem 1.4rem;
  }
  .technology .technology-plate2 .plate2-text {
    width: 100%;
    height: auto;
    margin: 0.4rem auto 0;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.46rem;
    color: #333;
  }
  .technology .technology-plate2 .plate2-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.35rem;
  }
  .technology .technology-plate2 .plate2-main .main-item {
    width: 48%;
    height: auto;
    padding: 0.45rem 0.2rem 0.35rem;
    margin-right: 0;
    margin-bottom: 0.58rem;
    background: #f8f8f8;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .technology .technology-plate2 .plate2-main .main-item .item-pic {
    width: 100%;
    height: 4rem;
    overflow: hidden;
  }
  .technology .technology-plate2 .plate2-main .main-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .technology .technology-plate2 .plate2-main .main-item .item-title {
    margin-top: 0.25rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    text-align: center;
    color: #333;
  }
  .technology .technology-plate2 .plate2-main .main-item:nth-child(4n) {
    margin-right: 0;
  }
  .technology .technology-plate2 .plate2-main .main-item:hover {
    background: #fff;
    box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
  }
  .technology .technology-plate2 .plate2-table {
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .technology .technology-plate2 .plate2-table table {
    width: 16rem;
  }
  .technology .technology-plate2 .plate2-table table tr:nth-child(odd) {
    background: #f8f8f8;
  }
  .technology .technology-plate2 .plate2-table thead {
    width: 100%;
    height: auto;
  }
  .technology .technology-plate2 .plate2-table thead th {
    font-size: 0.28rem;
    text-align: center;
    color: #fff;
    background: #1e2188;
    border-right: solid 1px #e5e5e5;
  }
  .technology .technology-plate2 .plate2-table thead th:last-of-type {
    border-right: none;
  }
  .technology .technology-plate2 .plate2-table th,
  .technology .technology-plate2 .plate2-table td {
    padding: 0.15rem 0.25rem;
    font-size: 0.28rem;
    line-height: 0.46rem;
    color: #666;
    border: solid 1px #e5e5e5;
  }
  .technology .technology-plate2 .plate2-table th a,
  .technology .technology-plate2 .plate2-table td a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .technology .technology-plate2 .plate2-table th a .img2,
  .technology .technology-plate2 .plate2-table td a .img2 {
    display: none;
  }
  .technology .technology-plate2 .plate2-table th img,
  .technology .technology-plate2 .plate2-table td img {
    display: block;
    width: 0.24rem;
    margin: 0 auto;
  }
  .contact {
    width: 100%;
    height: auto;
    padding: 1.5rem 0.3rem 0.75rem;
  }
  .contact .contact-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .contact .contact-main .main-top {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .contact .contact-main .main-top .top-cent {
    width: 100%;
    height: auto;
    padding: 0.7rem 0.2rem 0.7rem;
    background: #1e2188;
  }
  .contact .contact-main .main-top .top-cent .cent-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 0.3rem;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-icon {
    width: 0.8rem;
    height: 0.8rem;
    text-align: center;
    line-height: 0.76rem;
    border: solid 1px rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-icon img {
    width: 0.35rem;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-cent {
    width: calc(100% - 0.8rem);
    height: auto;
    padding-left: 0.2rem;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-cent .cent-title {
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #fff;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-cent .cent-text {
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 0.46rem;
    color: #fff;
  }
  .contact .contact-main .main-top .top-cent .cent-item .item-cent .cent-tel {
    font-size: 0.3rem;
    font-weight: bold;
    line-height: 0.46rem;
    color: #fff;
  }
  .contact .contact-main .main-top .top-cent .cent-ewm {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    padding-left: 0.6rem;
  }
  .contact .contact-main .main-top .top-cent .cent-ewm img {
    width: 2rem;
    margin-right: 0.15rem;
    border-radius: 5px;
  }
  .contact .contact-main .main-top .top-map {
    width: 100%;
    height: 4.5rem;
  }
  .contact .contact-main .main-top .top-map img {
    width: 100%;
  }
  .contact .contact-main .main-cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
  }
  .contact .contact-main .main-cont .cont-item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
    padding: 0.36rem 0.2rem;
    background: #f8f8f8;
  }
  .contact .contact-main .main-cont .cont-item .item-icon {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
  }
  .contact .contact-main .main-cont .cont-item .item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact .contact-main .main-cont .cont-item .item-cent {
    width: 100%;
    padding-left: 0;
    margin-top: 0.3rem;
  }
  .contact .contact-main .main-cont .cont-item .item-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    text-align: center;
    color: #666666;
  }
  .contact .contact-main .main-cont .cont-item .item-cent .cent-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #666;
  }
  .contact .contact-main .main-cont .cont-item .item-add {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    bottom: 0.6rem;
    right: 0;
    width: 2.2rem;
    height: 0.7rem;
    margin: 0.2rem auto 0;
    font-size: 0.26rem;
    color: #fff;
    background: #ee7700;
    border-radius: 0.45rem;
  }
  .contact .contact-main .main-cont .cont-item .item-add img {
    width: 14px;
    margin-left: 0.12rem;
  }
  .contact .contact-main .main-cont .cont-item .item-add:hover {
    background: #1e2188;
  }
  .recruit {
    width: 100%;
    height: auto;
    padding: 1.45rem 0.3rem 1.4rem;
  }
  .recruit .recruit-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .recruit .recruit-main .main-item {
    width: 100%;
    height: auto;
    padding: 0.5rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .recruit .recruit-main .main-item .item-title {
    font-size: 0.38rem;
    font-weight: bold;
    color: #393435;
  }
  .recruit .recruit-main .main-item .item-title img {
    width: 0.32rem;
  }
  .recruit .recruit-main .main-item .item-heng {
    width: 20px;
    height: 3px;
    margin-top: 0.25rem;
    background: #dedede;
  }
  .recruit .recruit-main .main-item .item-text {
    margin-top: 0.3rem;
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #b1b1b1;
  }
  .recruit .recruit-main .main-item .item-button {
    width: 0.8rem;
    height: 0.5rem;
    margin-top: 0.48rem;
    border-radius: 0.45rem;
    border: solid 2px #595350;
    background: url(../images/icon/icon-arrow.png) no-repeat center center;
    background-size: 6px;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .recruit .recruit-main .main-item .item-button:hover {
    border: solid 2px #1e2188;
    background: #1e2188 url(../images/icon/icon-arrow2.png) no-repeat center center;
    background-size: 6px;
  }
  .recruit .recruit-main .main-item:hover {
    background: #fff;
    box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.04);
  }
  .recruit .recruit-main .main-item:nth-child(3n) {
    margin-right: 0;
  }
  .recruit .recruit-load {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 0.9rem;
    margin: 0 auto;
    border-radius: 0.45rem;
    border: solid 1px #a0a0a0;
  }
  .recruit .recruit-load img {
    width: 0.35rem;
    margin-right: 0.2rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .recruit .recruit-load span {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .recruit .recruit-load:hover {
    border: solid 1px #ee7700;
  }
  .recruit .recruit-load:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .recruit .recruit-load:hover span {
    color: #ee7700;
  }
  .device {
    width: 100%;
    height: auto;
    padding: 1.15rem 0.3rem 1.25rem;
  }
  .device .device-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0.65rem auto 0;
  }
  .device .device-main .main-item {
    width: 48%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  .device .device-main .main-item .item-pic {
    width: 100%;
    height: 5rem;
    box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
  .device .device-main .main-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .device .device-main .main-item .item-title {
    margin-top: 0.3rem;
    font-size: 0.28rem;
    text-align: center;
    color: #333;
  }
  .device .device-main .main-item:nth-child(3n) {
    margin-right: 0;
  }
  .device .device-main .main-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .device .device-load {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.6rem;
    height: 0.7rem;
    margin: 0.4rem auto 0;
    border-radius: 0.45rem;
    border: solid 1px #a0a0a0;
  }
  .device .device-load img {
    width: 0.27rem;
    margin-right: 0.2rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .device .device-load span {
    font-size: 0.14rem;
    font-weight: bold;
    color: #333333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .device .device-load:hover {
    border: solid 1px #ee7700;
  }
  .device .device-load:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .device .device-load:hover span {
    color: #ee7700;
  }
  .deviceDetail {
    width: 100%;
    height: auto;
  }
  .deviceDetail .deviceDetail-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0.3rem 1.45rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 1.45rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-top: 0.45rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-title {
    font-size: 0.48rem;
    font-weight: bold;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-text {
    height: auto;
    margin-top: 0.36rem;
    padding-bottom: 0.65rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
    border-bottom: solid 1px #e0e0e0;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-text span {
    font-size: 0.28rem;
    font-weight: bold;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel .tel-icon {
    width: 0.8rem;
    height: 0.8rem;
    text-align: center;
    line-height: 0.8rem;
    border-radius: 50%;
    background: #e1e1e1;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel .tel-icon img {
    width: 18px;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel .tel-lump {
    width: calc(100% - 0.8rem);
    height: auto;
    padding-left: 0.18rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel .tel-lump .lump-title {
    font-size: 0.3rem;
    line-height: 0.48rem;
    color: #666;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-tel .tel-lump .lump-num {
    font-size: 0.4rem;
    font-weight: bold;
    line-height: 0.48rem;
    color: #ee7700;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 0.8rem;
    margin-top: 0.64rem;
    border-radius: 0.76rem;
    background: #1e2188;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-button span {
    font-size: 0.28rem;
    color: #fff;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-button img {
    width: 0.35rem;
    margin-left: 0.32rem;
  }
  .deviceDetail .deviceDetail-main .main-plate1 .plate1-cent .cent-button:hover {
    background: #ee7700;
  }
  .deviceDetail .deviceDetail-main .main-plate2 {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .deviceDetail .deviceDetail-main .main-plate2 .plate2-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-plate2 .plate2-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  .deviceDetail .deviceDetail-main .main-plate2 .plate2-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.2rem;
  }
  .deviceDetail .deviceDetail-main .main-plate2 .plate2-box img {
    width: 100%;
  }
  .deviceDetail .deviceDetail-main .main-plate3 {
    width: 100%;
    height: auto;
    margin-top: 0.9rem;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table {
    width: 100%;
    height: auto;
    margin-top: 0.2rem;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table table {
    width: 100%;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table table tr:nth-child(odd) {
    background: #f8f8f8;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table th,
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table td {
    padding: 0.15rem 0.25rem;
    font-size: 0.28rem;
    line-height: 0.44rem;
    color: #333;
    border: solid 1px #e5e5e5;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table th a,
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table td a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table th a .img2,
  .deviceDetail .deviceDetail-main .main-plate3 .plate3-table td a .img2 {
    display: none;
  }
  .deviceDetail .deviceDetail-main .main-plate4 {
    width: 100%;
    height: auto;
    margin-top: 0.9rem;
  }
  .deviceDetail .deviceDetail-main .main-plate4 .plate4-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-plate4 .plate4-text {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
  }
  .deviceDetail .deviceDetail-main .main-plate5 {
    width: 100%;
    height: auto;
    margin-top: 0.9rem;
  }
  .deviceDetail .deviceDetail-main .main-plate5 .plate5-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-plate5 .plate5-pic {
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
    overflow: hidden;
  }
  .deviceDetail .deviceDetail-main .main-plate5 .plate5-pic img {
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .deviceDetail .deviceDetail-main .main-plate5 .plate5-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .deviceDetail .deviceDetail-main .main-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 0.85rem;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.67rem;
    height: 0.65rem;
    margin-right: 0.18rem;
    border-radius: 0.45rem;
    border: solid 1px #e5e5e5;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button span {
    position: relative;
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0.09rem;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button span .img2 {
    opacity: 0;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button em {
    margin: 0 0.09rem;
    font-size: 0.28rem;
    color: #333;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button:hover {
    border: solid 1px #1e2188;
    background: #1e2188;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button:hover span .img1 {
    opacity: 0;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button:hover span .img2 {
    opacity: 1;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button:hover em {
    color: #fff;
  }
  .deviceDetail .deviceDetail-main .main-bottom .bottom-button:last-of-type {
    margin-right: 0;
  }
  .news {
    width: 100%;
    height: auto;
    padding: 1.1rem 0.3rem;
  }
  .news .news-top {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .news .news-top .top-swiper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0.9rem;
    box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .news .news-top .top-swiper .swiper-slide {
    width: 100%;
    height: auto;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-pic:hover img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.55rem 0.3rem;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent .cent-time {
    font-size: 0.28rem;
    font-weight: bold;
    color: #999;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent .cent-title {
    font-size: 0.34rem;
    color: #1e2188;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent .cent-text {
    margin-top: 0.36rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent .cent-button {
    width: 2.2rem;
    height: 0.7rem;
    margin-top: 0.6rem;
    font-size: 0.26rem;
    font-weight: bold;
    text-align: center;
    line-height: 0.66rem;
    color: #fff;
    border-radius: 0.45rem;
    background-color: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent .cent-button:hover {
    background: #ee7700;
  }
  .news .news-top .top-swiper .swiper-slide .slide-box .box-cent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-top .top-swiper .top-boutton {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    width: 2rem;
    height: auto;
  }
  .news .news-top .top-swiper .top-boutton .top-swiper-button-prev,
  .news .news-top .top-swiper .top-boutton .top-swiper-button-next {
    width: 0.85rem;
    height: 0.85rem;
    text-align: center;
    line-height: 0.8rem;
    background: #1e2188;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-top .top-swiper .top-boutton .top-swiper-button-prev img,
  .news .news-top .top-swiper .top-boutton .top-swiper-button-next img {
    width: 12px;
  }
  .news .news-top .top-swiper .top-boutton .top-swiper-button-prev:hover,
  .news .news-top .top-swiper .top-boutton .top-swiper-button-next:hover {
    background: #ee7700;
  }
  .news .news-top .top-swiper:hover .swiper-slide .slide-box .box-cent::after {
    width: 100%;
  }
  .news .news-main {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0.75rem auto 0;
  }
  .news .news-main .main-item {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.65rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  }
  .news .news-main .main-item:nth-child(3n) {
    margin-right: 0;
  }
  .news .news-main .main-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .news .news-main .main-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-main .main-item .item-cent {
    width: 100%;
    height: auto;
    padding: 0.4rem;
  }
  .news .news-main .main-item .item-cent .cent-time {
    font-size: 0.3rem;
    font-weight: bold;
    color: #ccc;
  }
  .news .news-main .main-item .item-cent .cent-title {
    font-size: 0.34rem;
    line-height: 0.52rem;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-main .main-item .item-cent .cent-text {
    margin-top: 0.15rem;
    font-size: 0.26rem;
    line-height: 0.42rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news .news-main .main-item .item-cent .cent-link {
    margin-top: 0.2rem;
    font-size: 0.26rem;
    text-decoration: underline;
    color: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-main .main-item .item-cent .cent-link:hover {
    color: #ee7700;
  }
  .news .news-main .main-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .news .news-main .main-item:hover .item-cent .cent-title {
    color: #1e2188;
  }
  .news .news-load {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 0.9rem;
    margin: 0 auto;
    border-radius: 0.45rem;
    border: solid 1px #a0a0a0;
  }
  .news .news-load img {
    width: 0.35rem;
    margin-right: 0.2rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-load span {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .news .news-load:hover {
    border: solid 1px #ee7700;
  }
  .news .news-load:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .news .news-load:hover span {
    color: #ee7700;
  }
  .newsDetail {
    width: 100%;
    height: auto;
    padding: 1.15rem 0.3rem 1.45rem;
  }
  .newsDetail .newsDetail-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .newsDetail .newsDetail-main .main-box {
    width: 100%;
    height: auto;
  }
  .newsDetail .newsDetail-main .main-box .box-top {
    width: 100%;
    height: auto;
    padding-bottom: 0.38rem;
    border-bottom: solid 1px #ebebeb;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-title {
    font-size: 0.36rem;
    color: #1e2188;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.15rem;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-text {
    font-size: 0.26rem;
    color: #999;
    margin-right: 0.25rem;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-text span {
    font-size: 0.26rem;
    font-weight: bold;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share {
    display: flex;
    justify-content: flex-start;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-top: 0.3rem;
    font-size: 0.26rem;
    color: #999;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share a {
    position: relative;
    width: 21px;
    height: 17px;
    margin-left: 0.2rem;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share a .img2 {
    opacity: 0;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share a:hover .img1 {
    opacity: 0;
  }
  .newsDetail .newsDetail-main .main-box .box-top .top-cent .cent-share a:hover .img2 {
    opacity: 1;
  }
  .newsDetail .newsDetail-main .main-box .box-cent {
    width: 100%;
    height: auto;
    padding-top: 0.4rem;
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #666;
  }
  .newsDetail .newsDetail-main .main-box .box-cent img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }
  .newsDetail .newsDetail-main .main-cont {
    width: 100%;
    height: 100%;
    margin-top: 0.55rem;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top {
    width: 100%;
    height: auto;
    padding: 0.45rem 0.3rem 0.6rem;
    background: #f8f8f8;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top .top-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top .top-heng {
    width: 24px;
    height: 2px;
    margin-top: 0.3rem;
    background: #ee7700;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top .top-cent {
    width: 100%;
    height: auto;
    margin-top: 0.36rem;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top .top-cent .cent-link {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #333;
  }
  .newsDetail .newsDetail-main .main-cont .cont-top .top-cent .cent-link:hover {
    color: #1e2188;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button {
    width: 100%;
    height: auto;
    margin-top: 7px;
    padding: 0.6rem 0.45rem 0.55rem;
    background: #f8f8f8;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0.9rem;
    margin-bottom: 0.15rem;
    border-radius: 0.45rem;
    border: solid 1px #dfdfdf;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button span {
    position: relative;
    width: 22px;
    height: 22px;
    margin: 0 0.09rem;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button span .img2 {
    opacity: 0;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button em {
    margin: 0 0.09rem;
    font-size: 0.28rem;
    color: #333;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button:hover {
    border: solid 1px #1e2188;
    background: #1e2188;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button:hover span .img1 {
    opacity: 0;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button:hover span .img2 {
    opacity: 1;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button:hover em {
    color: #fff;
  }
  .newsDetail .newsDetail-main .main-cont .cont-button .button:last-of-type {
    margin-right: 0;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent {
    width: 100%;
    height: auto;
    padding: 0.45rem 0.4rem 0.45rem 0.35rem;
    margin-top: 7px;
    background: #f8f8f8;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-heng {
    width: 24px;
    height: 2px;
    margin-top: 0.3rem;
    background: #ee7700;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-ewm {
    width: 3.15rem;
    height: auto;
    margin-top: 0.3rem;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-ewm img {
    width: 100%;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-text {
    margin-top: 0.3rem;
    font-size: 0.26rem;
    line-height: 0.46rem;
    color: #333;
  }
  .newsDetail .newsDetail-main .main-cont .cont-cent .cent-text span {
    font-weight: bold;
  }
  .performance {
    width: 100%;
    height: auto;
    padding: 1.2rem 0.3rem 1.3rem;
  }
  .performance .performance-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .performance .performance-main .main-cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 0.7rem;
  }
  .performance .performance-main .main-cont .cont-item {
    position: relative;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0.65rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  }
  .performance .performance-main .main-cont .cont-item:nth-child(3n) {
    margin-right: 0;
  }
  .performance .performance-main .main-cont .cont-item .item-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .performance .performance-main .main-cont .cont-item .item-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .performance .performance-main .main-cont .cont-item .item-cent {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.2rem;
  }
  .performance .performance-main .main-cont .cont-item .item-cent .cent-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .performance .performance-main .main-cont .cont-item .item-cent .cent-text {
    margin-top: 0.35rem;
    font-size: 0.26rem;
    line-height: 0.44rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .performance .performance-main .main-cont .cont-item .item-cent .cent-button {
    width: 2.3rem;
    height: 0.7rem;
    margin-top: 0.4rem;
    font-size: 0.26rem;
    font-weight: bold;
    line-height: 0.7rem;
    text-align: center;
    color: #fff;
    border-radius: 0.45rem;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .performance .performance-main .main-cont .cont-item .item-cent .cent-button:hover {
    background: #ee7700;
  }
  .performance .performance-main .main-cont .cont-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1e2188;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .performance .performance-main .main-cont .cont-item:hover .item-pic img {
    transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -webkit-transform: scale(1.1, 1.1 translateZ(0));
  }
  .performance .performance-main .main-cont .cont-item:hover::after {
    width: 100%;
  }
  .performance .performance-main .main-load {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 0.9rem;
    margin: 0 auto;
    border-radius: 0.45rem;
    border: solid 1px #a0a0a0;
  }
  .performance .performance-main .main-load img {
    width: 0.35rem;
    margin-right: 0.2rem;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .performance .performance-main .main-load span {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333333;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .performance .performance-main .main-load:hover {
    border: solid 1px #ee7700;
  }
  .performance .performance-main .main-load:hover img {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .performance .performance-main .main-load:hover span {
    color: #ee7700;
  }
  .page-title {
    font-size: 0.48rem;
    font-weight: bold;
    text-align: center;
    color: #333;
  }
  .page-English {
    margin-top: 0.05rem;
    font-size: 0.28rem;
    text-align: center;
    color: #333;
  }
  .page-English span {
    position: relative;
  }
  .page-English span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -0.6rem;
    width: 0.46rem;
    height: 1px;
    background: #ee7700;
  }
  .page-English span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.6rem;
    width: 0.46rem;
    height: 1px;
    background: #ee7700;
  }
}
