/* 首页 */

.menuNav {
    position: fixed;
    right: 1.5625%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    list-style: none;
}

.menuNav li a {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    color: #848484;
}

.menuNav li span {
    color: #848484;
    transition: 300ms;
    opacity: 0;
}

.menuNav li.active span {
    opacity: 1;
}

.menuNav li:hover span {
    opacity: 1;
}

.menuNav i {
    width: 8px;
    height: 2px;
    background-color: #BFBFBF;
    display: block;
    margin-left: 5px;
    transition: 300ms;
}

.menuNav li.active i {
    width: 20px;
}

.main-scroll {
    top: 0;
    left: 0;
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.main-scroll .main-page {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.top-banner .top-carousel {
    width: 100%;
    height: 100%;
}

.top-banner .top-carousel .swiper-slide {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.top-banner .top-carousel .controls {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 44px;
    width: 1600px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.top-banner .top-carousel .controls .btns {
    pointer-events: auto;
}

.top-banner .top-carousel .controls .next-btn {
    transform: rotateZ(180deg);
}

.top-banner .top-carousel .swiper-pagination {
    bottom: 70px;
}

.top-banner .top-carousel .swiper-pagination-bullet {
    transition: 300ms;
    background-color: #ffffff;
    opacity: 0.35;
}

.top-banner .top-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.top-banner .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 10;
    transform: translateX(-50%);
    animation: mouse-down 1.5s infinite;
}

@keyframes mouse-down {
    0% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(0px);
    }

    100% {
        transform: translateX(-50%) translateY(10px);
    }
}

.top-banner .switch-num {
    width: 156px;
    height: 40px;
    position: absolute;
    bottom: 43px;
    right: 240px;
    /*background-color: red;*/
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #ffffff;
}

.top-banner .switch-num .this-page {
    font-size: 30px;
}

.top-banner .switch-num .progress {
    display: block;
    width: 100px;
    height: 30px;
    margin-bottom: 8px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.top-banner .switch-num .total-num {
    font-size: 14px;
    margin-bottom: 4px;
}

.about .fbs {
    width: 100%;
    height: 550px;
    margin-top: 24px;
}

.about .fbs .left-item {
    width: 40%;
    height: 100%;
    float: left;
}

.about .fbs .left-item .red-block {
    width: 263px;
    height: 243px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/tuceng123.png);
    padding: 55px 23px;
}

.about .fbs .left-item .red-block p {
    font-size: 28px;
    line-height: 42px;
    color: #ffffff;
}

.about .fbs .left-item .content {
    width: 600px;
    height: 280px;
    margin-top: 28px;
    overflow: hidden;
}

.about .fbs .left-item .content p {
    font-size: 16px;
    line-height: 28px;
    color: #666666;
}

.about .fbs .right-item {
    width: 60%;
    height: 100%;
    float: left;
}

.video-player {
    width: 900px;
    height: 550px;
    margin-left: 56px;
    position: relative;
}

.about .fbs .right-item video {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.about .fbs .right-item .vjs-big-play-button {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    width: 63px;
    height: 63px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: transparent;
    background-image: url(../img/tuceng126.png);
    border: none;
}

.about .fbs .right-item .vjs-big-play-button .vjs-icon-placeholder::before {
    display: none;
}


.store .store-list {
    width: 100%;
    height: 530px;
    margin-top: 50px;
}

.store .store-list .swiper-slide {
    display: block;
    text-decoration: none;
    width: 510px;
    height: 457px;

}

.store .store-list .swiper-slide .img-box {
    width: 100%;
    height: 307px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.img-box {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.img-box .inset-img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 600ms;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.img-box:hover .inset-img-box {
    transform: scale(1.15);
}

.store .store-list .swiper-slide .msgs {
    width: 100%;
    height: 150px;
    padding: 20px 32px 0;
    background-color: #ffffff;
}

.store .store-list .swiper-slide .msgs .news-title {
    width: 100%;
    font-size: 20px;
    line-height: 38px;
    background-image: url(../img/tuceng143.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 49px 14px;
    margin-bottom: 11px;
    color: #333333;
}

.store .store-list .swiper-slide .msgs .path {
    width: 100%;
    font-size: 16px;
    margin-bottom: 11px;
    color: #333333;
}

.store .store-list .swiper-slide .msgs .phone {
    color: #999999;
    width: 100%;
    font-size: 14px;
}

.store .store-list .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.3;
    transition: 300ms;
}

.store .store-list .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}


.news .news-item {
    width: 100%;
    height: 528px;
    margin-top: -13px;
    position: relative;
}

.news .news-item .swiper-wrapper {
    height: 453px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news .news-item .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news {
    display: block;
    width: 650px;
    height: 453px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eeeeee;
    float: left;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news .msgs {
    width: 300px;
    height: 311px;
    background-color: #ffffff;
    margin-top: 66px;
    margin-left: 38px;
    padding: 28px 26px;
    color: #333333;
    position: relative;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news .msgs .news-title {
    width: 100%;
    font-size: 24px;
    line-height: 37px;
    height: 111px;
    margin-bottom: 8px;
    transition: 300ms;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news:hover .news-title {
    color: #ff0000;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news .msgs .date {
    font-size: 18px;
    line-height: 37px;
    color: #666666;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news .msgs .block {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #ce0e05;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    bottom: 28px;
    left: 26px;
}

.news .news-item .swiper-wrapper .swiper-slide .left-news .msgs .block i {
    font-size: 32px;
}

.news .news-item .swiper-wrapper .swiper-slide .right-news-item {
    width: 854px;
    height: 100%;
    float: right;
}

.news .right-news-item .n-link {
    display: block;
    width: 100%;
    height: 127px;
    margin-bottom: 42px;
}

.news .right-news-item .n-link .img-box {
    width: 200px;
    height: 113px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}

.news .right-news-item .n-link .data-box {
    width: 132px;
    height: 100%;
    float: left;
    padding-top: 20px;
}

.news .right-news-item .n-link .data-box p {
    width: 100%;
    text-align: center;
}

.news .right-news-item .n-link .data-box .day {
    font-size: 48px;
    line-height: 37px;
    margin-bottom: 10px;
    color: #333333;
}

.news .right-news-item .n-link .data-box .const {
    font-size: 16px;
    line-height: 37px;
    color: #666666;
}

.news .right-news-item .n-link .dets {
    width: 522px;
    float: left;
    height: 100px;
    border-left: solid 2px #dddddd;
    padding-left: 34px;
    transition: 300ms;
}

.news .right-news-item .n-link .dets .news-title {
    transition: 300ms;
    font-size: 18px;
    color: #333333;
    margin-bottom: 4px;
}

.news .right-news-item .n-link:hover .dets {
    border-left: solid 2px #ff0000;
}

.news .right-news-item .n-link:hover .news-title {
    color: #ff0000 !important;
}

.news .right-news-item .n-link .dets .detass {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.news .swiper-pagination {
    top: 0;
    bottom: auto;
    text-align: right;
}

.news .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    margin-right: 0;
    margin-left: 12px;
    background-color: #000000;
    opacity: 0.3;
    border-radius: 0;
}

.news .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.img-box:hover {
    background-size: ;
}


.product .center-box .list-boxs {
    width: 100%;
    height: 550px;
    margin-top: 40px;
}

.product .center-box .list-boxs .product-link {
    display: flex;
    width: 395px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    margin-right: 6px;
}

.product .center-box .list-boxs .product-link:last-child {
    margin-right: 0;
}

.product .center-box .list-boxs .product-link .icons {
    /*width: 80px;*/
    /*height: 80px;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
}

.product .center-box .list-boxs .product-link .link-btn {
    display: block;
    width: 226px;
    height: 54px;
    border: solid 1px #ffffff;
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.product .center-box .list-boxs .product-link .link-btn p {
    line-height: 52px;
    text-align: center;
    font-size: 24px;
    color: #ffffff;
}

.product .center-box .list-boxs .product-link .link-btn .mask {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    position: absolute;
    background-color: #ffffff;
    transition: all 600ms;
    overflow: hidden;
}

.product .center-box .list-boxs .product-link .link-btn .mask p {
    color: #333333;
    width: 300%;
    transition: all 600ms;
}

.product .center-box .list-boxs .product-link:hover .link-btn .mask {
    transform: translateX(0%);
}

.product .center-box .list-boxs .product-link:hover .link-btn .mask p {
    width: 100%;
}


.advantage .spaces {
    width: 100%;
    height: 540px;
    margin-top: 40px;
}

.advantage .spaces .img-box {
    width: 800px;
    height: 100%;
    float: left;
    border-radius: 6px;
}

.advantage .spaces .list-item {
    width: 780px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

.advantage .spaces .list-item li {
    width: 100%;
    height: 122px;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 17.4px;
    padding: 32px;
    padding-left: 24px;
}

.advantage .spaces .list-item li .mais {
    width: 150px;
    height: 100%;
    float: left;
}

.advantage .spaces .list-item li .mais h1 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    margin-bottom: 4px;
    color: #333333;
}

.advantage .spaces .list-item li .mais h2 {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.advantage .spaces .list-item li .dts {
    width: 566px;
    height: 100%;
    border-left: solid 2px #aa1b79;
    float: right;
    padding-left: 23px;
}

.advantage .spaces .list-item li:nth-child(2) .dts {
    border-left-color: #0093dd;
}

.advantage .spaces .list-item li:nth-child(3) .dts {
    border-left-color: #d50e05;
}

.advantage .spaces .list-item li:nth-child(4) .dts {
    border-left-color: #c95d58;
}

.advantage .spaces .list-item li .dts p {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.main-scroll .center-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 100px;
}


.footer {
    padding-top: 125px;
}

.footer .center-box {
    height: 100%;
    width: 1600px;
    margin: 0 auto;
}

.footer .center-box .alink-list {
    width: 100%;
    height: 270px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer .center-box .alink-list .link-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .center-box .alink-list .link-item li p {
    font-size: 18px;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer .center-box .alink-list .link-item li a {
    font-size: 16px;
    line-height: 40px;
    color: #c9c9c9;
}

.footer .center-box .list-msg {
    width: 100%;
    height: 154px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 60px;
}

.footer .center-box .list-msg .img-box {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    background-size: 40px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.footer .center-box .list-msg .det-ins {
    font-size: 16px;
    color: #c9c9c9;
    margin-bottom: 8px;
}

.footer .center-box .list-msg .infos {
    font-size: 16px;
    color: #ffffff;
}

.footer .center-box .list-msg .qr-code {
    width: 350px;
    height: 100%;
}

.footer .center-box .list-msg .qr-code .codes {
    width: 120px;
    height: 100%;
    margin-left: 40px;
    float: right;
}

.footer .center-box .list-msg .qr-code .codes .img-box {
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer .center-box .list-msg .qr-code .codes .tesx {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #cccccc;
}

.footer .center-box .botts {
    width: 100%;
    height: 170px;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    padding-top: 56px;
}

.footer .center-box .botts .links {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

.footer .center-box .botts .links a {
    color: #ffffff;
    font-size: 14px;
    margin-left: 4px;
    height: 14px;
    display: inline-block;
    line-height: 14px;
    padding-right: 8px;
    border-right: solid 1px #ffffff;
}

.footer .center-box .botts .info {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

.footer .center-box .botts .info a {
    color: #ffffff;
    font-size: 14px;
    margin-left: 4px;
    text-decoration: underline;
    height: 14px;
}

#promotion{
    width: 1340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}