.header-container {
    width: 100%;
    height: 100px;
    transition: background 0.2s linear;
    z-index: 111111;
    position: fixed;
    top: 0;
    left: 0;
}
.app-container{display:none;}
.header-container.hover,.header-container.on,
.header-container:hover {
    background: #fff;
}
.header {
    width: 76%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.header .logo {
    width: 300px;
    height: 60px;
    position: relative;
}
.header .logo img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s linear;
}
.header .logo img:nth-child(1) {
    opacity: 0;
}
.header-container.hover .header .logo img:nth-child(1),.header-container.on .header .logo img:nth-child(1),
.header-container:hover .header .logo img:nth-child(1) {
    opacity: 1;
}
.header-container.hover .header .logo img:nth-child(2),.header-container.on .header .logo img:nth-child(2),
.header-container:hover .header .logo img:nth-child(2) {
    opacity: 0;
}
.header .nav {
    display: flex;
    justify-content: center;
    align-content: center;
}
.header .nav li {
    padding: 0 0.16rem;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
}
.header .nav li>a {
    padding: 0.06rem .2rem;
    color: #fff;
    font-size: .16rem;
    transition: all 0.3s linear;
    font-weight: bold;
    position: relative;
}
.header .nav li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background: #234078;
    transition: height 0.15s linear;
    z-index: -1;
}
.header-container.hover .header .nav li>a,.header-container.on .header .nav li>a,
.header-container:hover .header .nav li>a {
    color: #3a3939;
}
.header-container.hover .header .nav li:hover>a,.header-container.on .header .nav li:hover>a,
.header-container:hover .header .nav li:hover>a {
    color: #fff;
}
.header-container.hover .header .nav li:hover>a::before,.header-container.on .header .nav li:hover>a::before,
.header-container:hover .header .nav li:hover>a::before {
    height: 100%;
}
.menu-button {
    position: fixed;
    top: calc(50px - 0.425rem);
    right: 5%;
    padding: 0.15rem;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #234078;
    display: none;
}

.menu-button .bar:nth-of-type(1) {
    margin-top: 0px;
}

.menu-button .bar:nth-of-type(3) {
    margin-bottom: 0px;
}

.bar {
    position: relative;
    display: block;
    width: 0.5rem;
    height: 0.05rem;
    margin: 0.1rem auto;
    background-color: #fff;
    border-radius: 0.1rem;

    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/*.menu-button:hover .bar:nth-of-type(1) {*/
/*    -webkit-transform: translateY(0.015rem) rotate(-4.5deg);*/
/*    -ms-transform: translateY(0.015rem) rotate(-4.5deg);*/
/*    transform: translateY(0.015rem) rotate(-4.5deg);*/
/*}*/

/*.menu-button:hover .bar:nth-of-type(2) {*/
/*    opacity: 0.9;*/
/*}*/

/*.menu-button:hover .bar:nth-of-type(3) {*/
/*    -webkit-transform: translateY(-0.015rem) rotate(4.5deg);*/
/*    -ms-transform: translateY(-0.015rem) rotate(4.5deg);*/
/*    transform: translateY(-0.015rem) rotate(4.5deg);*/
/*}*/

.cross .bar:nth-of-type(1) {
    -webkit-transform: translateY(0.15rem) rotate(-45deg);
    -ms-transform: translateY(0.15rem) rotate(-45deg);
    transform: translateY(0.15rem) rotate(-45deg);
}

.cross .bar:nth-of-type(2) {
    opacity: 0;
}

.cross .bar:nth-of-type(3) {
    -webkit-transform: translateY(-0.15rem) rotate(45deg);
    -ms-transform: translateY(-0.15rem) rotate(45deg);
    transform: translateY(-0.15rem) rotate(45deg);
}

.cross:hover .bar:nth-of-type(1) {
    -webkit-transform: translateY(0.135rem) rotate(-40.5deg);
    -ms-transform: translateY(0.135rem) rotate(-40.5deg);
    transform: translateY(0.135rem) rotate(-40.5deg);
}

.cross:hover .bar:nth-of-type(2) {
    opacity: 0.1;
}

.cross:hover .bar:nth-of-type(3) {
    -webkit-transform: translateY(-0.135rem) rotate(40.5deg);
    -ms-transform: translateY(-0.135rem) rotate(40.5deg);
    transform: translateY(-0.135rem) rotate(40.5deg);
}

.m-nav-bg {
    position: fixed;
    left: 100%;
    top: 100px;
    width: 100%;
    height: calc(100% - 100px);
    transition: all 0.5s;
    display: flex;
    flex-direction: row-reverse;
    z-index: 5;
}
.m-nav-mask {
    position: fixed;
    left: 0;
    top: 100px;
    width: 100%;
    height: calc(100% - 100px);
    transition: all 0.3s;
    display: none;
    z-index: -11;
    opacity: 0;
    background: rgba(0, 0, 0, .6);
}
.m-nav-bg.show {
    left: 0;
}
.m-nav-mask.show {
    z-index: 4;
    opacity: 1;
}
.m-nav,
.m-nav-sub {
    background: #fff;
    width: 50%;
}
.m-nav .submenu {
    display: none;
}
.m-nav-sub {
    display: none;
    transition: all 0.3s;
    transform: translateX(-100%);
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) inset;*/
    background: #f7f7f7;
}
.m-nav-sub.show {
    transform: translateX(0);
}
.m-nav-sub .submenu {
    width: 100%;
}
.m-nav li {
    width: 100%;
    height: 6vh;
    line-height: 6vh;
    font-size: 0.3rem;
}
.m-nav li a,
.m-nav-bg .m-nav-sub dd a {
    display: block;
    font-size: 0.32rem;
    font-weight: bold;
    text-align: center;
    color: #3a3939;
}
.m-nav-bg .m-nav-sub dd a {
    height: 6vh;
    line-height: 6vh;
    text-align: left;
    padding-left: 20%;
    font-weight: normal;
}
.m-nav li.on {
    background: #f7f7f7;
}
/*.m-nav li.on a {*/
/*    color: #fff;*/
/*}*/

.nav .submenu {
    left: 0;
    width: 100%;
    max-height: 0;
    position: absolute;
    top: 100%;
    z-index: 0;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px
}

.nav .submenu dd {
    opacity: 0;
    background-color: rgba(232, 236, 241, 0.9);
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s, background-color 0.3s linear;
    height: 0.68rem;
    width: 100%;
    display: flex;
    align-items: center;
}
.nav .submenu dd a {
    color: #5a5b5b;
    position: relative;
    font-size: 0.16rem;
    line-height: 0.32rem;
    padding-left: 0.32rem;
    font-weight: bold;
    transition: all 0.3s linear;
}
.nav .submenu dd a:before {
    content: '';
    width: 0.03rem;
    height: 0.16rem;
    background: #496cad;
    position: absolute;
    left: 0.2rem;
    top: 50%;
    margin-top: -0.08rem;
    transition: all 0.3s linear;
}
.nav .submenu dd:hover {
    color: #fff;
    background: #ad8b69;
}
.nav .submenu dd:hover a:before {
    background: #fff;
}

.nav .submenu dd:hover a {
    color: #fff;
}

.nav > li:focus .submenu,
.nav > li:hover .submenu {
    max-height: 2000px;
    z-index: 10
}

.nav > li:focus .submenu dd,
.nav > li:hover .submenu dd {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

.nav li:hover .submenu dd:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.nav li:hover .submenu dd:nth-child(2) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms
}

.nav li:hover .submenu dd:nth-child(3) {
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    -ms-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.nav li:hover .submenu dd:nth-child(4) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms
}

.nav li:hover .submenu dd:nth-child(5) {
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -ms-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

.nav li:hover .submenu dd:nth-child(6) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms
}

.nav li:hover .submenu dd:nth-child(7) {
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -ms-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.nav li:hover .submenu dd:nth-child(8) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms
}

.nav dd:nth-child(1) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms
}

.nav dd:nth-child(2) {
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -ms-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.nav dd:nth-child(3) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms
}

.nav dd:nth-child(4) {
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -ms-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

.nav dd:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms
}

.nav dd:nth-child(6) {
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    -ms-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.nav dd:nth-child(7) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms
}

.nav dd:nth-child(8) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}
.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.banner .swiper1,
.banner .swiper-m{
    width: 100%;
    height: 100vh;
    position: relative;
    opacity: 1;
}
.banner .swiper1 .swiper-slide,
.banner .swiper-m .swiper-slide {
    width: 100%;
    overflow: hidden;
}
.banner .swiper1 .swiper-slide .box,
.banner .swiper-m .swiper-slide .box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner .swiper1 .swiper-slide .box .img,
.banner .swiper-m .swiper-slide .box .img {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    margin: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}
.banner .swiper1 .swiper-slide .box .img video {
    position: relative;
    height: 100vh;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    z-index: -1;
}
.banner .swiper1 .swiper-slide .box .text,
.banner .swiper-m .swiper-slide .box .text {
    position: absolute;
    left: 14%;
    top: 45%;
    height: 2rem;
    overflow: hidden;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.banner .swiper1 .swiper-slide .box .text span,
.banner .swiper-m .swiper-slide .box .text span {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1rem;
    color: #ffffff;
}
.banner .swiper1 .swiper-slide .box .s-text,
.banner .swiper-m .swiper-slide .box .s-text {
    position: absolute;
    left: 14%;
    top: calc(44% + 54px + 0.6rem);
    height: 0.3rem;
    overflow: hidden;
}
.banner .swiper1 .swiper-slide .box .s-text span,
.banner .swiper-m .swiper-slide .box .s-text span {
    display: block;
    font-size: 0.3rem;
    line-height: 0.3rem;
    color: #ffffff;
    opacity: 0.5;
}
.banner .swiper1 .swiper-pagination-bullets,
.banner .swiper-m .swiper-pagination-bullets {
    bottom: 12vh;
    left: 14%;
    width: auto;
}
.banner .swiper1 .swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-m .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
    display: inline-block;
    border-radius: 0;
    background: white;
    opacity: 1;
    margin: 0 12px;
    transition: 0.5s;
}
.banner .swiper1 .swiper-pagination-bullets .swiper-pagination-bullet-active,
.banner .swiper-m .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 100px;
    height: 4px;
    background: #0c3582;
    opacity: 1;
}
.banner .swiper1 .swiper-button-next,
.banner .swiper1 .swiper-button-prev,
.banner .swiper-m .swiper-button-next,
.banner .swiper-m .swiper-button-prev {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100vh;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.banner .swiper1 .swiper-button-next::after,
.banner .swiper1 .swiper-button-prev::after {
    content: "";
}
.banner .swiper-m .swiper-button-next::after,
.banner .swiper-m .swiper-button-prev::after {
    display: none;
}
.banner .swiper1 .swiper-button-next1 {
    cursor: url(../images/pc-next.png) 0 0, pointer;
    opacity: 0.8;
}
.banner .swiper1 .swiper-button-prev1 {
    cursor: url(../images/pc-prev.png) 0 0, pointer;
    opacity: 0.8;
}
.m-banner {
    display: none ;
}
.banner-placeholder {
    width: 100%;
    height: 100vh;
}
.z-index-up {
    width: 100%;
    background-color: white;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.index-title1 {
    width: 100%;
    text-align: center;
    padding: 0.34rem 0;
    background: #fff;
}
.index-title1 h2 {
    font-size: 0.34rem;
    color: #4c4d4d;
    font-weight: bold;
}
.index-title1 h4 {
    font-size: 0.2rem;
    color: #4c4d4d;
    font-weight: bold;
}
.product-box {
    display: flex;
    flex-direction: row;
    height: 6.6rem;
    overflow: hidden;
}
.product-box a {
    cursor: url(../images/add.png) 0 0, pointer;
    overflow: hidden;
}
.product-box img {
    display: block;
    width: 100%;
    transition: all 0.5s;
}
.product-box a:hover img{
    transform: scale(1.1);
    opacity: .95;
}
.product-img {
    position: relative;
}
.product-img-title {
    position: absolute;
    left: 20%;
    top: 50%;
    margin-top: -0.62rem;
    transition: all 0.5s;
}
.product-box a:hover .product-img-title {
    transform: scale(0.96);
}
.product-img-title p {
    font-size: 0.44rem;
    color: #fffefe;
    line-height: 0.76rem;
}
.product-img-title span {
    font-size: 0.24rem;
    color: #dee0e0;
    line-height: 0.48rem;
}
.product-img1,
.product-img2,
.product-img3,
.product-right-box {
    overflow: hidden;
}
.product-img1,
.product-right-box {
    width: 50%;
}
.product-img1 {
    height: 6.6rem;
}
.product-img2,
.product-img3 {
    height: 3.3rem;
}
.accord {
    display: flex;
    flex-direction: row;
    height: 8rem;
    overflow: hidden;
    padding-bottom: 3px;
    position: relative;
}
.accord li {
    position: absolute;
    width: 25%;
    height: 8rem;
    overflow: hidden;
}
.accord li:nth-child(1) {
    left: 0;
}
.accord li:nth-child(2) {
    left: 25%;
}
.accord li:nth-child(3) {
    left: 50%;
}
.accord li:nth-child(4) {
    left: 75%;
}
.accord li a:before {
    content: '';
    height: 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: height 0.5s;
}
.accord li a {
    position: relative;
    display: block;
    height: 100%;
}
.accord li a img {
    display: block;
    height: 100%;
    width: 100%;
}
.accord li:hover a:before {
    height: 100%;
}
.accord-title {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -0.46rem;
    text-align: center;
    z-index: 1;
}
.accord-title h3 {
    font-size: 0.52rem;
    text-align: center;
    line-height: 0.64rem;
    color: #fff;
    width: 100%;
}
.accord-title span {
    font-size: 0.18rem;
    text-align: center;
    line-height: 0.28rem;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
}
.accord li abbr {
    position: absolute;
    top: 20%;
    font-size: 0.4rem;
    display: block;
    text-align: center;
    width: 100%;
    color: #fff;
    opacity: 0;
    transition: all 0.5s;
}
.accord li:hover abbr {
    top: 10%;
    opacity: 1;
}
.accord li p {
    position: absolute;
    left: 50%;
    top: 30%;
    height: 0;
    width: 2px;
    background: #fff;
    transition: all 0.5s;
}
.accord li:hover p {
    top: 20%;
    height: 10%;
}
.index-banner-fixed {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    background: white;
}
.index-banner {
    width: 100%;
    /*height: 100vh;*/
    height: 0;
    overflow: hidden;
    background: white;
}
.index-banner .swiper-index {
    width: 100%;
    height: 100vh;
    position: relative;
    opacity: 1;
}
.index-banner .swiper-index .swiper-slide {
    width: 100%;
    overflow: hidden;
}
.index-banner .swiper-index .swiper-slide .box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.index-banner .swiper-index .swiper-slide .box .img {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -1000px;
    right: -1000px;
    margin: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}
.index-banner .swiper-index .swiper-slide .box .swiper-index-text {
    position: absolute;
    left: 14%;
    top: 23.68%;
}
.index-banner .swiper-index .swiper-slide .box .swiper-index-text span {
    display: block;
    font-size: 0.52rem;
    font-weight: bold;
    line-height: 0.6rem;
    color: #ffffff;
    text-align: center;
}
.index-banner .swiper-index .swiper-slide .box .swiper-index-text abbr {
    display: block;
    font-size: 0.17rem;
    font-weight: bold;
    line-height: 0.32rem;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}
.index-banner .swiper-index .swiper-slide .box .swiper-index-s-text {
    position: absolute;
    left: 14%;
    top: 75.49%;
}
.index-banner .swiper-index .swiper-slide .box .swiper-index-s-text span {
    display: block;
    font-size: 0.27rem;
    line-height: 0.48rem;
    color: #ffffff;
}
.index-banner .swiper-index .swiper-pagination-bullets {
    top: 42.59%;
    left: 14%;
    width: auto;
}
.index-banner .swiper-index .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #797a7a;
    opacity: 1;
    margin: 0 6px;
    transition: 0.5s;
    border-radius: 50%;
}
.index-banner .swiper-index .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}
.index-title2 {
    width: 76%;
    margin: 0 auto;
    position: relative;
    padding-top: 0.28rem;
}
.index-title2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #1e3367;
    width: 2px;
}
.index-title2 h4 {
    line-height: 0.76rem;
    font-size: 0.46rem;
    color: #1a1a1a;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
    font-weight: normal;
}
.index-title2 span {
    line-height: 0.34rem;
    font-size: .32rem;
    color: #d7d7d7;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
}
.index-title2 h4 abbr,
.index-title2 span abbr{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
    display: block;
    background: #fff;
    top: 0;
}
.index-data {
    padding-bottom: 0.8rem;
}
.index-data-box {
    width: 76%;
    margin: 0 auto;
}
.index-data-title {
    width: 100%;
    text-align: center;
    font-size: .54rem;
    line-height: .72rem;
    color: #2a2a2a;
    font-weight: normal;
}
.index-data-desc {
    width: 76%;
    margin: 0 auto 0.76rem;
    text-align: center;
    line-height: .36rem;
    font-size: .18rem;
    color: #444343;
}
.index-data-list {
    width: 76%;
    margin: 0 auto;
    padding-top: 0.3rem;
    display: flex;
    justify-content: center;
}
.index-data-list>div {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0.17rem 0.3rem 0.07rem rgba(89, 89, 90, 0.09);
    width: 17.5%;
    height: 3.84rem;
    transition: transform 0.5s !important;
}
.index-data-list>div:nth-child(1) { z-index: 5; margin-top: 0.86rem; }
.index-data-list>div:nth-child(2) { z-index: 4; margin-top: 1.5rem; }
.index-data-list>div:nth-child(3) { z-index: 3; box-shadow: none; height: 4.34rem; background: url("../images/number_img.jpg") 0 0 no-repeat; background-size: auto 100%; }
.index-data-list>div:nth-child(4) { z-index: 2; margin-top: 0.86rem; }
.index-data-list>div:nth-child(5) { z-index: 1; margin-top: 1.5rem; }
.index-data-list>div:hover {
    transform: translateY(-5%) !important;
}
.index-data-number {
    width: 100%;
    display: flex;
    padding-top: 0.64rem;
    line-height: 0.88rem;
    text-align: center;
    justify-content: center;
    align-items: baseline;
    transition: padding-top 0.5s;
}
.index-data-number .timer {
    font-size: 0.62rem;
    color: #060606;
    transition: color 0.5s;
    font-weight: bold;
}
.index-data-number span {
    color: #383737;
    font-size: 0.22rem;
}
.index-data-number-desc {
    color: #383737;
    font-size: 0.22rem;
    text-align: center;
}
.index-data-list>div:hover .index-data-number .timer {
    color: #0c3582;
}
.index-data-flag {
    padding-top: .62rem;
    line-height: .76rem;
    color: #fff;
    text-align: center;
    font-size: 0.44rem;
}
.index-title3 {
    width: 76%;
    margin: 0 auto;
    position: relative;
    padding-top: 0.28rem;
}
.index-title3 h4 {
    line-height: 0.66rem;
    font-size: 0.46rem;
    color: #0d0d0d;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
    font-weight: normal;
}
.index-title3 span {
    line-height: 0.42rem;
    font-size: .32rem;
    color: #d9dadb;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
}
.index-title3 h4 abbr,
.index-title3 span abbr{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
    display: block;
    background: #fff;
    top: 0;
}
.index-news-title {
    width: 76%;
    display: flex;
    justify-content: space-between;
    margin: -0.4rem auto 0;
}
.index-news-tabs {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.index-news-tabs p {
    position: relative;
    height: 0.4rem;
    line-height: 0.36rem;
    cursor: pointer;
    font-size: 0.26rem;
    color: #949495;
    margin: 0.34rem;
    transition: color 0.5s;
}
.index-news-tabs p:after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0c3582;
    transition: width 0.5s;
}
.index-news-tabs p.on,
.index-news-tabs p:hover {
    color: #0c3582;
}
.index-news-tabs p.on:after,
.index-news-tabs p:hover:after {
    width: 100%;
}
.index-news-title a {
    display: block;
    width: 11%;
    height: 0.48rem;
    background: #f1f1f1;
    text-align: center;
    line-height: 0.48rem;
    font-size: 0.2rem;
    color: #777778;
    transition: background-color, color 0s cubic-bezier(0.50, 0.06, 0.16, 1) 0s;
    position: relative;
    overflow: hidden;
}
.index-news-title a span {
    position: relative;
    z-index: 2;
}

.index-news-title a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 110%;
    height: 100%;
    background-color: #0c3582;
    transition: -webkit-transform 0.55s cubic-bezier(0.50, 0.06, 0.16, 1);
    transition: transform 0.55s cubic-bezier(0.50, 0.06, 0.16, 1);
    transition: transform 0.55s cubic-bezier(0.50, 0.06, 0.16, 1), -webkit-transform 0.55s cubic-bezier(0.50, 0.06, 0.16, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: translateX(-101%) skewX(-18deg);
    transform: translateX(-101%) skewX(-18deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.index-news-title a:hover {
    background-color: #0c3582;
    transition: background-color 0.1s linear 0.35s;
    color: #fff;
}
.index-news-title a:hover::after {
    -webkit-transform: translateX(0) skewX(-18deg);
    transform: translateX(0) skewX(-18deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.index-news-content {
    width: 76%;
    margin: 0 auto;
    display: flex;
    padding-bottom: 0.6rem;
}
.index-news-cont {
    width: 100%;
}
.index-news-cont2 {
    display: none;
}
.index-news-flex-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.index-news-left {
    width: 50%;
}
.index-news-left .swiper-container,
.news-top .swiper-container {
    width: 100%;
    box-shadow: 0 0 0.27rem 0 rgba(0, 0, 0, 0.1);
}
.index-news-left .swiper-container .swiper-slide,
.news-top .swiper-container .swiper-slide {
    width: 100%;
}
.index-news-left .swiper-container .swiper-slide a,
.news-top .swiper-container .swiper-slide a {
    display: block;
}
.index-news-left .swiper-container .swiper-slide a .img-box,
.news-top .swiper-container .swiper-slide a .img-box {
    display: block;
    width: 100%;
    height: 4.24rem;
    position: relative;
    overflow: hidden;
}
.index-news-left .swiper-container .swiper-slide a .img-box .img,
.news-top .swiper-container .swiper-slide a .img-box .img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: -100px;
    bottom: -100px;
    margin: auto;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    transform: scale(1.0001);
}
.index-news-left .swiper-container .swiper-slide a .swiper-news-title,
.news-top .swiper-container .swiper-slide a .swiper-news-title {
    height: 0.6rem;
    overflow: hidden;
    line-height: 0.6rem;
    display: flex;
    justify-content: space-between;
    padding: 0 0.2rem;
}
.swiper-news-title span:nth-child(1) {
    font-size: 0.24rem;
    color: #0c3582;
}
.swiper-news-title span:nth-child(2) {
    font-size: 0.2rem;
    color: #353636;
}
.index-news-left .swiper-container .swiper-slide a:hover .img-box .img,
.news-top .swiper-container .swiper-slide a:hover .img-box .img {
    transform: scale(1.1);
}
.index-news-left .swiper-container .swiper-pagination-bullets {
    bottom: 0.8rem;
    right: 0.315rem;
    left: auto;
    width: auto;
}
.index-news-left .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.65rem;
    height: 0.04rem;
    display: inline-block;
    border-radius: 0;
    background: #c4c3c2;
    opacity: 1;
}
.index-news-left .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0c3582;
}
.news-swiper-btns {
    position: absolute;
    background: url(../images/news_btns.png) 0 0 no-repeat;
    width: 88px;
    height: 28px;
    right: 0.24rem;
    bottom: 0.24rem;
    cursor: pointer;
    display: flex;
    z-index: 3;
}
.news-swiper-btns>div{
    display: block;
    width: 44px;
    height: 28px;
    cursor: pointer;
}
.swiper-sub-news-title {
    position: absolute;
    bottom: 10%;
    color: #fff;
}
.sub-news-swiper-pagination {
    position: absolute;
    bottom: 0.34rem;
    color: #fff;
    z-index: 1;
    font-size: 0.12rem;
    left: 0.5rem;
/*	background: rgba(0, 0, 0, 0.6);*/
}
.swiper-sub-news-title {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
	background: rgba(0, 0, 0, 0.6);
	padding: 10px;
}
.swiper-sub-news-title abbr {
    display: block;
    width: 80%;
    line-height: 0.78rem;
    height: 0.78rem;
    color: #ffffff;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.26rem;
}
.swiper-sub-news-title span {
    display: block;
    width: 80%;
    line-height: 0.32rem;
    height: 0.64rem;
    color: #ffffff;
    overflow: hidden;
    font-size: 0.18rem;
}
.news-right {
    width: 46%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-right li {
    height: 33%;
    border-bottom: 1px solid #e7e7e8;
    display: flex;
}
.news-right li:nth-child(2),
.news-right li:nth-child(3) {
    padding-top: 0.2rem;
    box-sizing: border-box;
}
.news-right li:last-child {
    border-bottom: 0;
}
.news-right-img {
    display: block;
    width: 1.76rem;
    height: 1.21rem;
    overflow: hidden;
}
.news-right-img img {
    display: block;
    width: 1.76rem;
    height: 1.21rem;
    transition: 0.5s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    transform: scale(1.0001);
}
.news-cont-right {
    padding-left: 5%;
}
.news-right li:hover .news-right-img img {
    transform: scale(1.2);
}
.news-right-title {
    display: block;
    width: 100%;
    line-height: 0.46rem;
    height: 0.92rem;
    overflow: hidden;
    color: #2d2d2d;
    transition: all 0.5s;
    font-size: 0.24rem;
}
.news-right-title:hover {
    color: #0c3582;
    text-decoration: underline;
}
.news-cont-right span {
    font-size: 0.16rem;
    color: #4e4f4f;
}
.index-partner {
    background: url(../images/parnet_bg.jpg) 0 0 no-repeat #fff;
    background-size: 100% auto;
    height: 7.2rem;
    width: 100%;
    animation: scaleBackground 30s infinite;
    background-position: center;
}
@keyframes scaleBackground {
    0% {
        background-size: 100% 100%;background-position: center;
    }
    50% {
        background-size: 120% 120%;background-position: center;
    }
    100% {
        background-size: 100% 100%;background-position: center;
    }
}
.index-partner-title {
    width: 76%;
    margin: 0 auto;
    position: relative;
    padding-top: 0.28rem;
}
.index-partner-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #4f8eef;
    width: 2px;
}
.index-partner-title h4 {
    line-height: 0.76rem;
    font-size: 0.46rem;
    color: #fff;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
    font-weight: normal;
}
.index-partner-title span {
    line-height: 0.34rem;
    font-size: .32rem;
    color: #b1c5f8;
    padding-left: 0.25rem;
    position: relative;
    overflow: hidden;
}
.index-partner-list {
    width: 76%;
    padding-top: 0.78rem;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    flex-wrap: wrap;
}
.index-partner-list li {
    width: 20%; flex-shrink: 0;
}
.index-partner-list li a {
    display: block;
    width: 80%;
    margin: 0 auto 0.3rem;
    height: 1.16rem;
    overflow: hidden;
}
.index-partner-list li a img {
    display: block;
    width: 100%;
}
.back-up {
    width: 100%;
    height: 0.37rem;
    background: url(../images/go_top.jpg) center center no-repeat #0c3582;
    background-size: auto 0.14rem;
    cursor: pointer;
}
.footer-bg {
    width: 100%;
    padding: 0.8rem 0 0.6rem;
    background: #2d2d2d;
}
.footer-bar {
    width: 100%;
    height: 0.54rem;
    background: #181818;
}
.footer {
    width: 76%;
    margin: 0 auto;
}
.footer-infos {
    display: flex;
    justify-content: space-between;
}
.footer-infos ul {
    width: 76%;
    padding-top: 0.52rem;
    display: flex;
    flex-wrap: wrap;
}
.footer-infos ul li {
    width: 33%;
    padding-right: 6%;
    box-sizing: border-box;
    min-height: 0.88rem;
}
.footer-infos ul li p,
.footer-infos ul li p a {
    line-height: 0.3rem;
    font-size: 0.18rem;
    color: #707070;
}
.footer-infos ul li h4,
.footer-infos ul li h4 a{
    line-height: 0.3rem;
    font-size: 0.2rem;
    color: #238bd4;
}
.footer-qr-code {
    display: block;
    width: 10%;
    align-self: baseline;
    margin-top: 0.52rem;
}

.sub-banner {
    width: 100%;
    height: 6.32rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
.sub-banner-container {
    width: 100%;
    height: 6.32rem;
    position: relative;
    background-size: cover !important;
}
.sub-banner img {
    display: block;
    height: 100%;
}
.sub-banner-placeholder {
    width: 100%;
    height: 6.32rem;
}
.sub-banner-center {
    width: 76%;
    position: absolute;
    left: 12%;
    top: 0;
    overflow: hidden;
}
.sub-banner-center h3 {
    color: #fff;
    padding-top: 3.12rem;
    font-size: 0.72rem;
    line-height: 0.9rem;
    text-transform: uppercase;
}
.sub-banner-center h4 {
    color: #fff;
    font-size: 0.48rem;
    line-height: 0.64rem;
    text-transform: uppercase;
}
.contact {
    display: flex;
    /*padding-top: 0.13rem;*/
    align-items: center;
    background: #e4e5e9;
}
.contact-map {
    box-shadow: 0.05rem 0px 0.15rem 0.02rem rgba(31, 32, 31, 0.09);
    width: 50%;
    position: relative;
    height: 100%;
}
.contact-map img {
    display: block;
    width: 100%;
}
.maps {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.contact-form {
    padding-top: 0.13rem;
    width: 50%;
}
.contact-form-tips {
    width: 70%;
    margin: 0 auto;
    line-height: 0.4rem;
    color: #133270;
    font-size: 0.24rem;
}
.contact-form-cont {
    width: 70%;
    margin: 0.34rem auto;
    color: #14387a;
}
.contact-form-cont input[type=text] {
    border: 0;
    border-left: 6px solid #1c418a;
    background: #fff;
    display: block;
    margin-bottom: 0.3rem;
    height: .44rem;
    width: 100%;
    text-indent: 0.28rem;
    font-size: 0.2rem;
    color: #14387a;
}
.contact-form-cont input::placeholder {
    color: #14387a;
}
.contact-form-cont input[type=button] {
    border: 0;
    background: url(../images/submit.jpg) 0 0 no-repeat;
    background-size: 100% 100%;
    display: block;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    height: .44rem;
    width: 100%;
    text-indent: 0.28rem;
    font-size: 0.2rem;
    color: #fff;
    cursor: pointer;
}
.contact-earth {
    width: 100%;
    position: relative;
    padding-top: 1.84rem;
    overflow: initial;
}
.contact-earth-img {
    display: block;
    width: 100%;
}
.contact-type {
    border-radius: 10px;
    background-color: rgb(28, 65, 138);
    position: absolute;
    width: 70%;
    left: 15%;
    top: -0.63rem;
    height: 1.26rem;
    display: flex;
    align-items: center;
}
.contact-type-item {
    width: 40%;
    padding-left: 10%;
}
.contact-type-title {
    line-height: 0.48rem;
    color: #fff;
    font-size: 0.22rem;
    padding-left: 10%;
}
.contact-type-number a {
    color: #fff;
    font-size: .16rem;
}
.contact-type-title.tel {
    background: url(../images/tel.jpg) 0 0 no-repeat;
    background-size: 7%;
}
.contact-type-title.mail {
    background: url(../images/mail.jpg) 0 26% no-repeat;
    background-size: 8.2%;
}
.earth-point {
    position: absolute;
    width: 4.58%;
    top: 50%;
    left: 50%;
    color: #303030;
}
.earth-point span {
    position: relative;
}
.earth-point img {
    display: block;
    width: 100%;
}
.earth-point-1 {
    left: 21.61%;
    top: 43%;
}
.earth-point-2 {
      left: 45%;
    top: 46.59%;
}
.earth-point-3 {
    left: 21.04%;
    top: 53.91%;
}
.earth-point-4 {
        left: 73.5%;
    top: 55.14%;
}
.earth-point-5 {
        left: 63.77%;
    top: 56.03%;
}
.earth-point-1 span {
    left: -70%;
    top: -1rem;
}
.earth-point-2 span {
    left: 32%;
    top: -1.3rem;
}
.earth-point-3 span {
    left: -40%;
    top: 0.3rem;
}
.earth-point-4 span {
    left: 100%;
    top: -0.6rem;
}
.earth-point-5 span {
    left: 100%;
    top: -0.6rem;
}
.sub-title {
    width: 100%;
    height: 0.68rem;
    border-bottom: 1px solid #afb3b3;
    background: #fff;
}
.sub-title-center {
    width: 70%;
    margin: 0 auto;
    display: flex;
    line-height: 0.68rem;
    font-size: 0.2rem;
    overflow: hidden;
}
.sub-page-title {
    color: #0f100f;
}
.sub-title-center p,
.sub-title-center a {
    padding: 0 0.48rem;
    height: 0.68rem;
    line-height: 0.68rem;
    position: relative;
    color: #0f100f;
    transition: color 0.3s;
}
.sub-page-line {
    background: url(../images/honor_line.jpg) center center no-repeat;
    background-size: auto 27%;
}
.sub-title-center a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: height 0.3s;
    background: #1c418a;
}
.sub-title-center a span {
    position: relative;
    z-index: 1;
}
.sub-title-center a:hover:after,
.sub-title-center a.on:after {
    height: 100%;
}
.sub-title-center a:hover,
.sub-title-center a.on {
    color: #fff;
}
.honor-box {
    width: 70%;
    margin: 1.1rem auto 0;
}
.honor-box-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.22rem;
}
.honor-box-item {
    border-width: 1px;
    border-color: rgb(97, 141, 208);
    border-style: solid;
    border-radius: 0.07rem;
    box-shadow: 0px 0.07rem 0.07rem 0px rgba(116, 126, 145, 0.27);
    height: 2.6rem;
    overflow: hidden;
}
.honor-box-item1 {
    width: 43.25%;
    background: url(../images/honor_img1.jpg) right 0 no-repeat rgb(255, 255, 255);
    background-size: 28.76% auto;
}
.honor-box-item2,
.honor-box-item3 {
    width: 26.81%;
    background: url(../images/honor_img2.jpg) right 0 no-repeat rgb(255, 255, 255);
    background-size: 33.76% auto;
}
.honor-box-item4 {
    width: 49.18%;
    background: url(../images/honor_img3.jpg) right 0 no-repeat rgb(255, 255, 255);
    background-size: 18.52% auto;
    height: 1.46rem;
}
.honor-box-item span {
    font-size: 0.16rem;
    color: #cacbcc;
    display: block;
    padding-left: 8%;
    text-transform: uppercase;
}
.honor-box-item p {
    font-size: 0.34rem;
    color: #1c418a;
    display: block;
    padding-left: 8%;
    text-transform: uppercase;
}
.honor-box-item1 span {
    margin: 1.4rem 0 0.2rem;
}
.honor-box-item2 span {
    margin: 0.66rem 0 0.5rem;
}
.honor-box-item4 span {
    margin: 0.44rem 0 0.1rem;
}
.honor-bg {
    width: 100%;
    height: 11rem;
    background: url(../images/honor_bg.jpg) 0 0 no-repeat #fff;
    background-size: 100%;
    overflow: hidden;
}
.honor-title {
    text-align: center;
}
.honor-title h4 {
    color: #1672d0;
    font-size: 0.26rem;
    line-height: 0.44rem;
    text-align: center;
}
.honor-title span {
    color: #cacbcc;
    font-size: 0.18rem;
    text-align: center;
    text-transform: uppercase;
}
.m-t-84 {
    margin-top: 0.44rem;
}
.m-t-34 {
    margin-top: 0.14rem;
}
.honor-swiper-box {
    position: relative;
    width: 58%;
    margin: 0.28rem auto 0.36rem;
    overflow: hidden;
}
.honor-swiper-img img {
    display: block;
    width: 74%;
    margin: 0 auto;
}
.honor-swiper-box .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
    color: #fff;
}
.honor-swiper-box .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
    color: #fff;
}
.warper{max-width:1800px;margin:0 auto;}
.fl{float:left}
.fr{float:right}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:before,.clearfix:after{content:" ";display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;}
.clearfix{*zoom:1;}
.pr{position: relative;}
.warper{max-width: 1800px; margin: 0 auto;}
.about-main2{height: 890px;width: 100%;overflow: hidden;}
.about-main2 .licheng-bg{background-color: rgba(255,255,255,.8);width: 100%;height: 100%;position: relative;}
.about-main2 .licheng-bg .warper{height: 100%;}
.about-main2 .licheng-bg img{height: 518px;position: absolute;bottom: 180px;left: 0;}
.about-main2 .ny-title{padding-top: 80px;}
.ny-title .title-en{font-size: 36px; color: #b4b4b4; font-family: arial; line-height: 36px; font-weight: normal;}
.ny-title .title-ch{font-size: 26px; color: #333333; margin: 15px 0; font-weight: normal;}
.ny-title i{display: block; width: 42px; height: 1px; background-color: #b5b5b5;}
.about-main2 .licheng-content{position: absolute;width: 100%;height: 100%;}
.about-main2 .licheng-content .swiper-wrapper,.about-main2 .licheng-content .swiper-slide,.about-main2 .licheng-content ul{width: 100%;height: 100%;}
.about-main2 .licheng-content ul li{width: 20%;float: left;height: 100%;}
.about-main2 .licheng-content ul li a{display: block;width: 100%;position: relative;height: 320px}
.about-main2 .licheng-content ul li .date{color: #0a3875;font-size: 30px;}
.about-main2 .licheng-content ul li.item1 .line,.about-main2 .licheng-content ul li.item3 .line,.about-main2 .licheng-content ul li.item5 .line{margin-bottom: 30px;}
.about-main2 .licheng-content ul li.item2 .line,.about-main2 .licheng-content ul li.item4 .line{margin-top: 30px;}
.about-main2 .licheng-content ul li.item1 .line:after,.about-main2 .licheng-content ul li.item3 .line:after,.about-main2 .licheng-content ul li.item5 .line:after{width: 25px;height: 25px;background-color: rgba(10, 56, 117, 0.8);display: block;content: "";border-radius: 50%;text-align: center;vertical-align: middle;position: absolute;}
.about-main2 .licheng-content ul li.item2 .line:before,.about-main2 .licheng-content ul li.item4 .line:before{width: 25px;height: 25px;background-color: rgba(10, 56, 117, 0.8);display: block;content: "";border-radius: 50%;text-align: center;vertical-align: middle;position: absolute;}
.about-main2 .licheng-content ul li .lc-left{position: absolute;}
.about-main2 .licheng-content ul li .line{height: 250px;width: 1px;display: block;background-color: #0A3875;position: relative;left: 30px;}
.about-main2 .licheng-content ul li .lc-right{position: absolute;left: 30px;width: 400px;height:100%;display: table;}
.about-main2 .licheng-content ul li.item5 .lc-right{width: 200px;}
.about-main2 .licheng-content ul li.item2 .lc-right, .about-main2 .licheng-content ul li.item4 .lc-right{width: 400px;}
.about-main2 .licheng-content ul li .lc-right .right-text{padding: 20px;display: table-cell;vertical-align: middle;}
.about-main2 .licheng-content ul li.item1 a{top: 72px;}
.about-main2 .licheng-content ul li.item1 .lc-left .line:after{bottom: -25px;left: -11px;}
.about-main2 .licheng-content ul li.item1 .lc-right{bottom: 68px;}
.about-main2 .licheng-content ul li.item2 a{top: 224px;}
.about-main2 .licheng-content ul li.item2 .lc-left .line:before{top: -25px;left: -11px;}
.about-main2 .licheng-content ul li.item2 .lc-right{top: 80px;}
.about-main2 .licheng-content ul li.item3 a{top: 136px;}
.about-main2 .licheng-content ul li.item3 .lc-left .line:after{bottom: -25px;left: -11px;}
.about-main2 .licheng-content ul li.item3 .lc-right{bottom: 100px;}
.about-main2 .licheng-content ul li.item4 a{top: 278px;}
.about-main2 .licheng-content ul li.item4 .lc-left .line:before{top: -25px;left: -11px;}
.about-main2 .licheng-content ul li.item4 .lc-right{top: 70px;}
.about-main2 .licheng-content ul li.item5 a{top: 99px;}
.about-main2 .licheng-content ul li.item5 .lc-left .line:after{bottom: -25px;left: -11px;}
.about-main2 .licheng-content ul li.item5 .lc-right{bottom: 100px;}
.about-main2 .licheng-content .right-text h3{font-size: 24px;margin-bottom: 10px;}
.about-main2 .licheng-content .right-text .right-content{font-size: 16px;}
.about-main2 .licheng-content .right-text p{font-size: 16px;}
.lc-swiper-btn{width: 100%;position: absolute;top: 370px;z-index: 2;}
.lc-swiper-btn a{display: block;position: absolute;}
.lc-swiper-btn .btn-prev{position: absolute;left: 15px;top: 50px;cursor: pointer;}
.lc-swiper-btn .btn-next{position: absolute;right: 0;top: 50px;cursor: pointer;}
.lc-swiper-btn .iconfont{font-size: 30px;}
.culture-img-box {
    position: relative;
    margin: 0.48rem auto 0.1rem;
}
.culture-img-box img:nth-child(1) {
    display: block;
    width: 100%;
}
.culture-img-title {
    position: absolute;
    width: 10.72%;
    top: 24.85%;
    left: 44.64%;
}
.culture-img-desc {
    position: absolute;
    width: 38%;
    top: 41.83%;
    left: 31%;
}
.about {
    background: url("../images/word2.jpg") 0 bottom no-repeat #fff;
    background-size: 100% auto;
    padding-bottom: 3.6rem;
    min-height: 7rem;
}
.about-pages {
    width: 76%;
    margin: 0 auto;
}
.about-img {
    display: block;
    width: 48.9%;
    margin: 1.2rem 0 0.6rem;
}
.about-words {
    font-size: 0.22rem;
    line-height: 0.4rem;
    color: #191919;
    padding-bottom: 2.6rem;
}
.about-main2 .mobile{display: none !important;}
.product-list {
    width: 70%;
    margin: 0.6rem auto 0.4rem;
    display: flex;
    flex-wrap: wrap;
}
.product-list li {
    width: 48%;
    margin-bottom: 0.32rem;
    margin-right: 2%;
    overflow: hidden;
    height: 1.56rem;
}
.product-list li a {
    display: block;
    position: relative;
    overflow: hidden;
}
.product-list li a img {
    display: block;
    width: 100%;
    height: 1.56rem;
    transition: all 0.3s;
}
.product-list li:hover a img {
    transform: scale(1.2);
}
.product-list li a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    transition: right 0.3s;
}
.product-filter {
    z-index: 2;
    transition: all 0.4s;
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    font-size: 0.26rem;
    color: #464545;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-list li a:hover:after {
    right: -70%;
}
.product-list li a:hover .product-filter {
    width: 100%;
    color: #fff;
}
.pages {
    display: flex;
    width: 70%;
    margin: 0.2rem auto 0.8rem;
    justify-content: center;
    align-items: center;
}
.pages li {
    padding: 0 0.08rem;
}
.pages li a {
    display: flex;
    width: 0.48rem;
    height: 0.48rem;
    text-align: center;
    border-width: 1px;
    border-color: rgb(203, 201, 201);
    border-style: solid;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    font-size: 0.26rem;
    color: #8e8e90;
    transition: all 0.3s;
}
.pages li a:hover,
.pages li a.on {
    background: #1c418a;
    border-color: #1c418a;
    color: #fff;
}
.product-view {
    width: 70%;
    margin: .6rem auto;
    overflow: hidden;
}
.product-view-title {
    width: 100%;
    position: relative;
}
.product-view-title:before {
    content: '';
    position: absolute;
    width: 0.04rem;
    height: 0.66rem;
    background: #3d5d96;
    left: 0;
    top: 0.06rem;
}
.product-view-title p,
.product-view-title h4 {
    font-size: 0.26rem;
    line-height: 0.34rem;
    color: #373231;
    text-indent: 0.3rem;
}
.views {
    margin: 0.4rem auto;
    font-size: 0.2rem;
    line-height: 0.34rem;
    color: #101010;
    overflow: hidden;
}
.views img {
    display: block;
    max-width: 100%;
}
.news-title {
    margin: 0.2rem auto 0.4rem;
    width: 70%;
}
.news-title h4 {
    width: 100%;
    font-size: 0.26rem;
    line-height: 0.4rem;
    color: #2b2929;
}
.news-title p {
    width: 100%;
    font-size: 0.16rem;
    line-height: 0.2rem;
    color: #6f6f6f;
    text-transform: uppercase;
}
.news-top {
    width: 70%;
    margin: 0.2rem auto;
    display: flex;
    justify-content: space-between;
}
.news-top-left {
    width: 65.57%;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0.3rem;
}
.news-item-img {
    display: block;
    width: 100%;
    height: 2.24rem;
    overflow: hidden;
}
.news-item-img img {
    display: block;
    width: 100%;
    height: 2.24rem;
}
.news-date {
    padding: 0.12rem 0 0;
    width: 80%;
    margin: 0 auto;
    color: #737373;
    font-size: 0.18rem;
    line-height: 0.4rem;
}
.sub-news-title {
    width: 80%;
    margin: 0 auto;
    color: #0f0f0f;
    font-size: 0.24rem;
    line-height: 0.4rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 0.4rem;
}
.news-view-detail {
    position: relative;
    width: 76%;
    margin: 0.1rem auto;
    color: #6a6b6b;
    font-size: 0.16rem;
    line-height: 0.32rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 0.32rem;
    display: block;
    padding-left: 0.16rem;
}
.news-view-detail:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0.02rem;
    background: #3d5d96;
}
.sub-news-content {
    width: 80%;
    margin: 0 auto;
    color: #4c4d4d;
    font-size: 0.14rem;
    line-height: 0.2rem;
    height: 0.4rem;
    overflow: hidden;
}
.news-item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 11.16px 0.84px rgba(131, 131, 132, 0.17);
    width: 31.57%;
    height: 4.24rem;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.sub-news-list {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sub-news-list .news-item {
    height: 3.34rem;
}
.news-detail {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}
.news {
    overflow: initial;
    padding: 20px 0;
}
.news-detail-left {
    width: 76%;
}
.news-detail-left-top {
    position: relative;
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 11.16px 0.84px rgba(131, 131, 132, 0.17);
    top: -1.4rem;
    z-index: 9;
    padding: 0.5rem 0;
}
.news-detail-right {
    width: 20%;
}
.w-80 {
    width: 80%;
    margin: 0 auto;
}
.news-detail-eng {
    font-size: 0.2rem;
    line-height: 0.4rem;
    color: #aeabab;
    text-decoration: none;
    text-transform: uppercase;
}
.news-detail-title {
    line-height: 0.7rem;
    font-size: 0.48rem;
    color: #2b2929;
    margin-bottom: 0.2rem;
}
.news-detail-date {
    color: #1c418a;
    line-height: 0.4rem;
    font-size: 0.2rem;
    background: #f5f4f3;
    text-indent: 0.2rem;
    margin-bottom: 0.4rem;
}
.news-detail-container {
    font-size: 0.24rem;
    line-height: 0.44rem;
    overflow: hidden;
    color: #101010;
    font-weight: normal;
}
.news-detail-container img {
    display: block;
    max-width: 100%;
}
.news-detail-right-title {
    width: 100%;
    border-bottom: 1px solid #999797;
    line-height: 1rem;
    padding-top: 1rem;
    color: #1c418a;
    font-size: 0.34rem;
}
.news-item-recommend {
    width: 100%;
    background: none;
    margin-top: 0.4rem;
    box-shadow: 0 0 0;
    border-bottom: 1px solid #999797;
}
.news-item-recommend .news-date,
.news-item-recommend .sub-news-title,
.news-item-recommend .sub-news-content {
    width: 100%;
}
.news-detail-link {
    width: 100%;
    display: flex;
    margin-bottom: 0.4rem;
}
.news-detail-link p {
    width: 27.44%;
    height: 0.6rem;
    line-height: 0.6rem;
    border-right: 1px solid #c9cacb;
    font-size: 0.32rem;
    color: #2b2929;
    text-align: center;
}
.news-detail-link-right {
    padding-left: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-detail-link-right a {
    color: #2b2929;
    font-size: 0.26rem;
}
.news-detail-link-right span {
    color: #b2b1b1;
    font-size: 0.18rem;
}
@media screen and (max-width: 1000px) {
    .header .nav ,.swiper1{
        display: none;
    }
    .m-banner {
        display: block !important;
    }
    .header .logo { width: 80% }
    .header .logo img {display: block;width: 100%}
    .menu-button {display: block;}
    .header {margin: 0 5%;}
    .product-box img{width: auto;height: 100%}
    .index-data-list {flex-wrap: wrap;}
    .index-data-list>div{width: 50%;margin-top:0 !important;}
    .index-data-list>div:nth-child(3) {display: none}
    .index-news-title,
    .index-news-tabs {width: 100%; flex-wrap: wrap; flex-direction: row-reverse;
        position: relative;}
    .index-news-tabs {justify-content: center;}
    .index-news-title a {width:20%;
        position: absolute;right: 6%;bottom: 1.04rem}
    .index-news-left, .news-right {width: 100%}
    .index-news-flex-box {flex-wrap: wrap}
    .news-right {height: auto; margin-top: 0.4rem;}
    .news-right li{padding-bottom: 0.16rem}
    .index-partner {background:url(../images/parnet_bg.jpg) 0 0 no-repeat #fff;background-size: auto 100%}

    @keyframes scaleBackground {
        0% {
            background-size: auto 100%;background-position: center;
        }
        50% {
            background-size: auto 120%;background-position: center;
        }
        100% {
            background-size: auto 100%;background-position: center;
        }
    }
    .index-partner-list li {width: 50%}
    .index-partner-list {height: 4.38rem;overflow: hidden;}
    .footer-infos ul{width: 100%}
    .footer-infos {flex-wrap: wrap}
    .footer-infos ul li {width: 100%}
    .footer-infos ul li p, .footer-infos ul li p a{font-size: 0.32rem;line-height: 0.6rem}
    .footer-infos ul li h4, .footer-infos ul li h4 a{font-size: 0.4rem;line-height: 0.6rem}
    .footer-qr-code{width: 40%;}
    .footer a img {display: block;max-width: 100%;}
    .contact{flex-direction: column}
    .contact-map ,.contact-form{width: 100%;}
    .contact-form{padding-bottom: 1rem;}
    .accord-title h3{font-size: 0.26rem;}
    .index-data-desc{font-size: 0.28rem;line-height: 0.56rem;}
    .sub-title-center {width: 100%;font-size: 0.22rem}
    .sub-title-center p, .sub-title-center a {padding: 0 0.2rem;}
    .honor-box-row {flex-wrap: wrap; margin-bottom: 0;}
    .honor-box-item1, .honor-box-item2, .honor-box-item3, .honor-box-item4, .honor-box-item5 {width: 100%;margin-bottom: 0.3rem;}
    .honor-box-item2 span { margin: 0.3rem 0; }
    .honor-box-item2, .honor-box-item3, .honor-box-item1 {background-size: 23.76% auto;}
    .honor-box-item {height: 2rem;}
    .honor-box-item1 span {margin: 0.54rem 0 0.2rem }
    .honor-bg {height: auto;
        min-height: 11rem; background: url(../images/honor_bg.jpg) center 0 no-repeat #fff;background-size: auto 100%;}
    .about-main2 .licheng-content ul li { width: 50%; }
    .about-main2 .licheng-content ul li .lc-right,
    .about-main2 .licheng-content ul li.item2 .lc-right, .about-main2 .licheng-content ul li.item4 .lc-right{ width: 82%; }
    .licheng-content.pc{display: none}
    .about-main2 .mobile{display: block !important;}
    .about-main2 .licheng-content ul li.item2 .lc-right{top: 32px}
    /*.about-main2 .licheng-content ul li.item1 .lc-right{bottom: 20px}*/
    .product-list li,
    .news-item,
    .news-top-left{ width: 100% }
    .news-detail-right {display: none}
    .news-detail-left {width: 100%}
    .news-detail{width: 85%;}
}