

.main {
    /*padding-top: 100px;*/
    background-color: rgb(246,246,246);
    /*min-width: 1260px;*/
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 95px;
}

/*.main {
    padding-top: 100px;
    background-color: rgb(246,246,246);
    min-width: 1260px;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 95px;
}*/

.main .title{
    font-size: 32px;
    color: rgba(49,51,54,0.90);
    font-weight: 500;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
}

.banner {
    margin-top: 27px;
    margin-bottom: 27px;
    box-shadow: 0 0 3px rgba(0,0,0,.01);
    height: 520px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    z-index: 5;
    transform: translateZ(0px);
}
.banner .arrow-left {
    background: url(https://p0.ssl.qhimg.com/t0154549ea6f2ba1b1b.png) no-repeat left top;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    z-index: 10;
    transition: .3s;
}
.banner .arrow-right {
    background: url(https://p0.ssl.qhimg.com/t01c74d1c3e1099afd1.png) no-repeat left bottom;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    z-index: 10;
    transition: .3s;
}
.banner .arrow-left:hover, .banner .arrow-right:hover {
    transform: scale(1.1);
}
.swiper-container {
    height: 520px;
}
.swiper-container .swiper-slide {}
.swiper-container .swiper-slide a {
    display: block;
    height: 100%;
    width: 100%;
}
.swiper-container .swiper-slide a img {
    display: block;
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.pagination {
    position: absolute;
    left: 0;
    text-align: center;
    bottom: 5px;
    width: 100%;
    z-index: 10;
}
.swiper-pagination-switch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .3);
    margin: 0 8px;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,.2);
}
.swiper-active-switch {
    background: #fff;
}

.main .new-product {
    margin-bottom: 30px;
    box-sizing: border-box;
    padding-top: 30px;
}
/*.main .new-product .title {
    font-size: 32px;
    color: #313336;
    opacity: .9;
    font-weight: 500;
    margin-bottom: 28px;
}*/
.main .product{
    padding-bottom: 20px;
}
.main .product .name {
    color: #313336;
    opacity: .9;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 5px;
}
.main .product .desc {
    color: #313336;
    opacity: .6;
    font-size: 12px;
    line-height: 17px;
    height: 34px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 8px 5px;
}
.main .product .price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.main .product .price .current {
    color: #FF3939;
    font-size: 16px;
    line-height: 16px;
    margin-right: 10px;
}
.main .product .price .current:before {
    content: '￥';
    font-size: 14px;
}
.main .product .price .origin {
    text-decoration: line-through;
    color: #313336;
    opacity: .6;
    font-size: 12px;
    line-height: 16px;
}
.main .product .price .origin:before {
    content: '￥';
}
.main .new-product .product-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.main .new-product .product-list .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 10px #ddd;
}
.main .new-product .product-list .product {
    transition: .3s;
    /*height: 315px;*/
    /*padding-bottom: 20px;*/
    width: 228px;
    display: block;
    text-decoration: none;
    /*background-image: radial-gradient(50% 66%, #FFFFFF 34%, #F9F9F9 66%);*/
    background-color: white;
}
.main .new-product .product-list .product .product-icon {
    display: block;
    margin: 24px auto;
    height: 160px;
    width: 160px;
    transition: .5s;
}
.main .new-product .product-list .product:hover .product-icon {
    transform: scale(1.1);
}
/*.main .new-product .product-list .product .name {
    color: #313336;
    opacity: .9;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main .new-product .product-list .product .desc {
    color: #313336;
    opacity: .6;
    font-size: 12px;
    line-height: 17px;
    height: 34px;
    margin: 8px 0;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.main .new-product .product-list .product .price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.main .new-product .product-list .product .price .current {
    color: #FF3939;
    font-size: 16px;
    line-height: 16px;
    margin-right: 10px;
}
.main .new-product .product-list .product .price .current:before {
    content: '￥';
    font-size: 14px;
}
.main .new-product .product-list .product .price .origin {
    text-decoration: line-through;
    color: #313336;
    opacity: .6;
    font-size: 12px;
    line-height: 16px;
}
.main .new-product .product-list .product .price .origin:before {
    content: '￥';
}
*/


.main .hot-product {
    margin-bottom: 30px;
    box-sizing: border-box;
    padding-top: 30px;
}
/*.main .hot-product .title {
    font-size: 32px;
    color: #313336;
    opacity: .9;
    font-weight: 500;
    margin-bottom: 28px;
}*/
.main .hot-product .inner-container {
    width: 100%;
    /*display: flex;*/
    overflow: hidden;
}
.main .hot-product .inner-container .product-main-list {
    width: 470px;
    height: 975px;
    float: left;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*margin-right: 16px;*/
}
.main .hot-product .inner-container .product-main-list .product-main:hover {
    filter: hue-rotate(360deg);
    transition: 1.5s;
}
.main .hot-product .inner-container .product-main-list .product-main:first-child {
    margin-bottom: 16px;
}
.main .hot-product .inner-container .product-main-list .product-main {
    width: 470px;
    height: 480px;
    cursor: pointer;
}
.main .hot-product .inner-container .product-main-list .product-main a {

}
.main .hot-product .inner-container .product-main-list .product-main a img {
    display: block;
    height: 100%;
    width: 100%;
}
.main .hot-product .product-list {
    /*flex-grow: 1;*/
    /*flex-wrap: wrap;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*float: right;*/
    float: right;
    height: 975px;
    width: 730px;
}
.main .hot-product .product-list .product {
    margin-left: 15px;
    float: left;
    cursor: pointer;
    /*height: 315px;*/
    width: 228px;
    display: block;
    text-decoration: none;
    /*background-image: radial-gradient(50% 66%, #FFFFFF 34%, #F9F9F9 66%);*/
    background-color: white;
    margin-bottom: 15px;
    /*padding-bottom: 20px;*/
}
.main .hot-product .product-list .product:nth-child(n+7) {
    margin-bottom: 0;
}
.main .hot-product .product-list .product:hover .product-icon {
    transform: scale(1.1);
}
.main .hot-product .product-list .product .product-icon {
    display: block;
    margin: 24px auto;
    height: 160px;
    width: 160px;
    transition: .5s;
}
/*.main .hot-product .product-list .product .name {
    color: #313336;
    opacity: .9;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/
/*.main .hot-product .product-list .product .desc {
    color: #313336;
    opacity: .6;
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 24px;
    text-align: center;
}*/
.main .hot-product .product-list .product .price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.main .hot-product .product-list .product .price .current {
    color: #FF3939;
    font-size: 16px;
    line-height: 16px;
    margin-right: 10px;
}
.main .hot-product .product-list .product .price .current:before {
    content: '￥';
    font-size: 14px;
}
.main .hot-product .product-list .product .price .origin {
    text-decoration: line-through;
    color: #313336;
    opacity: .6;
    font-size: 12px;
    line-height: 16px;
}
.main .hot-product .product-list .product .price .origin:before {
    content: '￥';
}


.main .nice-video {
    /*width: 1200px;
    margin: 0 auto;*/
    padding-top: 30px;
}
/*.main .nice-video .title {
    font-size: 32px;
    color: rgba(49,51,54,0.90);
    font-weight: 500;
    margin-bottom: 28px;
}*/

.main .nice-video .view-all {
    color: rgba(49,51,54,0.90);
    font-size: 16px;
    display: flex;
    align-items: center;
    float: right;
    /*transform: translateY(-50px);
    margin-bottom: -50px;*/
    font-weight: normal;
    position: absolute;
    right: 0;
    bottom: 2px;
    cursor: pointer;
    text-decoration: none;
}
.main .nice-video .view-all .icon-s {
    margin-left: 3px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(https://p0.ssl.qhimg.com/t0179f02a7a3aa758e9.png) no-repeat;
    background-size: contain;
}

.main .nice-video .video-list {
    display: flex;
    width: 100%;
}
.main .nice-video .video-list .video-option {
    background-color: white;
    border-right: thin solid #ebebeb;
    box-sizing: border-box;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}
.main .nice-video .video-list .video-option:last-child {
    border: 0;
}
.main .nice-video .video-list .video-option .video-face {
    width: 260px;
    height: 148px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.main .nice-video .video-list .video-option .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -24px;
    margin-top: -24px;
    /*margin-top: -95px;
    margin-bottom: 70px;*/
    transition: transform .5s;
    cursor: pointer;
    height: 48px;
    width: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://p0.ssl.qhimg.com/t0172e3bb7384657418.png");
}
.main .nice-video .video-list .video-option .play-btn:hover {
    transform: scale(1.2);
}
.main .nice-video .video-list .video-option:hover .name {
    color: #00CAC4;
}
.main .nice-video .video-list .video-option .name {
    color: rgba(49,51,54,0.90);
    font-size: 16px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 10px;
}
.main .nice-video .video-list .video-option .desc {
    color: rgba(49,51,54,0.90);
    height: 34px;
    font-size: 16px;
    font-weight: 500;
}


.video-player-container {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    z-index: 30;
}
.video-player-container .close-btn {
    height: 50px;
    width: 100px;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(358px, -50%);
    cursor: pointer;
    transition: .2s;
    background-color: gray;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
}
.video-player-container .close-btn:hover {
    transform: translate(380px, -50%);
}
.video-player-container .close-btn:before {
    content: '';
    display: block;
    height: 35px;
    width: 3px;
    background-color: white;
    transform: rotate(45deg);
    margin-left: 70px;
    margin-top: 8px;
}
.video-player-container .close-btn:after {
    content: '';
    display: block;
    height: 35px;
    width: 3px;
    background-color: white;
    transform: rotate(-45deg);
    margin-top: -35px;
    margin-left: 70px;
}
.video-player-container .video-player {
    position: absolute;
    left: 50%;
    top: 53%;
    transform: translate3d(-50%,-50%,0);
    width: 800px;
    height: 600px;
}
.video-player-container .video-player .video-player-option.current {
    display: block;
}
.video-player-container .video-player .video-player-option {
    width: 100%;
    height: 100%;
    display: none;
    outline: none;
    background-color: black;
}




.main .news-info {
    padding-top: 30px;
}
/*.main .news-info .title {
    font-size: 32px;
    color: rgba(49,51,54,0.90);
    font-weight: 500;
    margin-bottom: 28px;
    margin-top: 20px;
}*/
.main .news-info .content {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: white;
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
}
.main .news-info .content .primary {
    float: left;
    height: 330px;
    width: 480px;
    overflow: hidden;
    margin-right: 40px;
}
.main .news-info .content .primary a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}
.main .news-info .content .primary a .face {
    display: block;
    height: 100%;
    width: 100%;
    transition: .5s;
}
.main .news-info .content .primary a .face:hover {
    transform: scale(1.01);
}
.main .news-info .content .primary a .desc {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 40px;
    background: rgba(0,0,0,0.40);
    line-height: 40px;
    box-sizing: border-box;
    padding: 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: white;
}
.main .news-info .content .inner-container {
    overflow: hidden;
    /*width: 640px;*/
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.main .news-info .content .inner-container .news-list {
    width: 100%;
}
.main .news-info .content .inner-container .news-list .news-option {
    /*width: 100%;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 22px;
    margin-bottom: 12px;
    /*height: 22px;*/
    white-space: nowrap;
}
.main .news-info .content .inner-container .news-list .news-option .name {
    color: #333741;
    font-size: 14px;
    /*width: 480px;*/
    display: block;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.main .news-info .content .inner-container .news-list .news-option .name:hover {
    color: #00CAC4;
}
.main .news-info .content .inner-container .news-list .news-option .date {
    font-size: 12px;
    color: rgba(51,55,65,0.60);
}
.main .news-info .content .inner-container .view-more {
    /*width: 640px;*/
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: rgba(51,55,65,0.90);
    text-align: center;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

/*           h5-index         */
.main .product-floor-h5 .product-floor-icon {
    display: none;
    position: absolute;
    left: -5px;
    right: -5px;
    height: 100%;
    z-index: 1;
}

@media (max-width: 991px){
    body {
        min-width: 320px;
    }

    .swiper-container,
    .banner {
        height: 60vw;
    }

    .pagination {
        bottom: 5px;
    }

    .swiper-pagination-switch {
        width: 6px;
        height: 6px;
    }

    .banner {
        border-radius: 0;
        margin: 0;
    }

    .banner .arrow-left,
    .banner .arrow-right {
        display: none;
    }

    .main {
        padding-bottom: 0;
    }

    .main .new-product,
    .main .hot-product {
        padding-top: 30px;
        margin-bottom: 0;
    }

    .main .title {
        font-size: 20px;
        margin-bottom: 17px;
        padding-left: 15px;
        padding-right: 15px;
        font-weight: bold;
    }

    .main .product {
        padding-bottom: 10px;
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-transition: none !important;
        transition: none !important;
        box-shadow: none !important;
    }

    .main .product .name {
        font-size: 12px;
    }

    .main .product .desc {
        margin-top: 1px;
        margin-bottom: 1px;
        font-size: 10px;
        line-height: 12px;
        height: 24px;
        overflow: hidden;
    }

    .main .product .price .current {
        font-size: 14px;
    }

    .main .product .price .current:before {
        font-size: 10px;
    }

    .main .product .price .origin {
        font-size: 10px;
    }

    .main .product-floor-h5 {
        background-color: transparent !important;
        width: 100% !important;
        height: 48.93333vw;
        padding: 0;
        position: relative;
    }

    .main .product-floor-h5 .product-floor-icon {
        display: block;
    }

    .main .product-floor-h5 .product-icon,
    .main .product-floor-h5 .name,
    .main .product-floor-h5 .desc,
    .main .product-floor-h5 .price {
        display: none !important;
    }

    .main .product-floor-h5:first-child {
        margin-top: -20px !important;
    }

    .main .new-product .product-list {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        width: auto;
        margin: -5px 5px 0;
    }

    .main .new-product .product-list .product {
        margin-top: 5px;
        width: 49.315%;
    }
    .main .new-product .product-list .product:first-child{
        display: none;
    }

    .main .new-product .product-list .product .product-icon {
        margin-top: 12px;
        margin-bottom: 12px;
        width: 26.6667vw;
        height: 26.6667vw;
    }

    .main .hot-product .inner-container .product-main-list,
    .main .hot-product .product-list {
        float: none;
    }

    .main .hot-product .inner-container .product-main-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    .main .hot-product .inner-container .product-main-list,
    .main .hot-product .inner-container .product-main-list .product-main {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        width: auto;
        height: auto;
    }

    .main .hot-product .inner-container .product-main-list .product-main {
        margin-left: 5px;
        margin-bottom: 0 !important;
    }

    .main .hot-product .inner-container .product-main-list .product-main:first-child {
        margin-left: 0;
    }

    .main .hot-product .product-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: auto;
        height: auto;
        margin: 0 5px;
    }

    .main .hot-product .product-list .product {
        float: none;
        margin-left: 0;
        margin-top: 5px;
        margin-bottom: 0;
        width: 32.328767%;
    }

    .main .hot-product .product-list .product .product-icon {
        margin-top: 9px;
        margin-bottom: 9px;
        width: 24.5333vw;
        height: 24.5333vw;
    }

    .main .nice-video .view-all {
        right: 12px;
        font-size: 12px;
    }

    .main .nice-video .view-all .icon-s {
        width: 12px;
        height: 12px;
        background-image: url(https://p4.ssl.qhimg.com/t015c1a418e7ffee540.png);
    }

    .main .nice-video .video-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: auto;
        margin-top: -5px;
    }

    .main .nice-video .video-list .video-option {
        padding: 0;
        width: 49.3333%;
        margin-top: 5px;
        border-right: none;
    }

    .main .nice-video .video-list .video-option .video-face {
        width: 100%;
        height: 28vw;
    }

    .main .nice-video .video-list .video-option .play-btn {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
        background-image: url(https://p0.ssl.qhimg.com/t01575adb58e8c758d1.png);
    }

    .main .nice-video .video-list .video-option .name {
        text-align: center;
    }

    .main .news-info .content {
        background-color: transparent;
        padding: 0;
    }

    .main .news-info .content .primary {
        width: auto;
        height: auto;
        float: none;
        margin-right: 0;
    }

    .main .news-info .content .inner-container {
        padding: 10px 15px 43px;
        background: white;
        height: auto;
    }

    .main .news-info .content .inner-container .news-list .news-option {
        display: block;
        margin-bottom: 17px;
    }

    .main .news-info .content .inner-container .news-list .news-option .name {
        font-weight: 500;
        white-space: normal;
        font-size: 14px;
        line-height: 21px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .main .news-info .content .inner-container .news-list .news-option .date {
        font-size: 11px;
    }

    .main .news-info .content .inner-container .view-more {
        height: 33px;
        line-height: 33px;
        font-size: 12px;
        border: 1px solid rgba(51, 55, 65, 0.2);
        color: rgba(49, 51, 54, 0.6);
    }

    .video-player-container .video-player {
        width: 90vw;
        height: 60vw;
    }

    .video-player-container .video-player .video-player-option {
        object-fit: fill;
    }

    .video-player-container .close-btn {
        width: 50px;
        border-radius: 50%;
        -webkit-transform: translate(-50%, 40vw) !important;
        transform: translate(-50%, 40vw) !important;
    }

    .video-player-container .close-btn:after,
    .video-player-container .close-btn:before {
        margin-left: 23.5px;
    }
}

.quc-wrapper .quc-form-agreement input{
    -webkit-appearance:auto;
    appearance:auto;
}