@charset "utf-8";


/*
 * web
 * */
.wrap {
    margin: 0 auto;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1200px;
}


/*
 * pagination
 * */
.pagination {
    text-align: center;
}

.pagination a,
.pagination span {
    margin: 3px;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
}

.pagination a {
    border: 1px solid #ddd;
    background: #F9F9F9;
    border-radius: 5px;
}

.pagination a:hover {
    color: #ff6700;
}

.pagination .selected {
    color: #fff;
    background-color: #658DB3;
}

.pagination .disabled {
    color: #999;
    border-color: #ddd;
    background-color: #ddd;
    cursor: not-allowed;
}


/*
 * banner
 * */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner .items {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner .item {
    float: left;
    width: 100%;
    position: relative;
}

.banner .item .dl {
    width: 100%;
    position: relative;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    padding-bottom: 30%;
}

.banner .item .pic {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner .item img {
    width: 100%;
    max-height: 100%;
}

.banner .navi {
    position: absolute;
    bottom: 6%;
    left: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
    display: none;
}

.banner .navi a {
    width: 30px;
    height: 4px;
    line-height: 0;
    font-size: 0;
    text-decoration: none;
    background-color: #fff;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.banner .navi a.selected {
    background-color: #000;
    opacity: 0.8;
}

.banner .prev,
.banner .next {
    position: absolute;
    z-index: 100;
    top: 40%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    display: none;
}

.banner .prev {
    left: 30px;
}

.banner .next {
    right: 30px;
}

/*
header
*/
.header {
    min-height: 100px;
    background-color: #fff;
}

.header .logo {
    width: 338px;
    height: 100px;
    float: left;
}

.header .logo img {
    max-width: 100%;
    margin-top: 9px;
}

.header .header_nav {
    float: right;
}

@media (max-width: 992px) {
    .header .logo {
        float: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .header .logo {
        width: 280px;
        height: 82px;
    }
}

.header_nav .nav-item {
    float: left;
    width: 140px;
    height: 100px;
    line-height: 100px;
    font-size: 20px;
    text-align: center;
}

.header_nav .nav-link {
    width: 100%;
    height: 100%;
    line-height: 100px;
    display: block;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_nav .nav-item:hover .nav-link,
.header_nav .nav-item.hover .nav-link {
    color: #fff;
    background-color: #e61f42;
}

.header_nav .dropdown {
    position: relative;
}

@media (max-width: 992px) {
    .isAndroid .header_nav .dropdown .nav-link {
        pointer-events: none;
    }
}


.header_nav .dropdown::after {
    display: none;
    content: "";
    border-top: 6px solid #fff;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    position: absolute;
    top: 72px;
    left: 50%;
    margin-left: -3px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_nav .dropdown:hover::after,
.header_nav .dropdown.hover::after {
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 99px;
    left: 0;
    color: #fff;
    background-color: #e61f42;
    width: 100%;
    z-index: 1000;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.dropdown-menu .dropdown-item {
    border-top: 1px solid #f7c0ca;
    height: 38px;
    line-height: 38px;
    font-size: 13px;
    color: #fff;
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dropdown-menu .dropdown-item:hover {
    color: #f7c0ca;
    background-color: #e61f42;
}

.header_nav .dropdown:hover .dropdown-menu,
.header_nav .dropdown.hover .dropdown-menu {
    display: block;
}


@media (max-width: 992px) {
    .header .header_nav {
        float: none;
        height: 60px;
        background-color: #e9e9e9;
    }

    .header_nav .nav-item {
        width: 20%;
        font-size: 15px;
        height: 60px;
    }

    .header_nav .nav-link {
        height: 60px;
        line-height: 60px;
    }

    .dropdown-menu {
        top: 59px;
    }

    .header .container {
        padding: 0;
    }
}

/*
footer
*/
.footer {
    background-color: #fff;
    text-align: center;
    margin-top: 30px;
}

.footer_bg {
    background: url("/res/site/img/footer_bg3.jpg") no-repeat center center;
    height: 245px;
}

.footer_logo {
    background: url("/res/site/img/footer_bg_logo3b.png") no-repeat center top;
    height: 245px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .footer {
        margin-top: 0;
    }

    .footer_bg {
        height: 200px;
    }

    .footer_logo {
        height: 200px;
        background-position: center center;
        background-size: 100% auto;
    }
}

.footer_copyright {
    color: #9fa0a0;
    margin: 20px auto;
}

@media (max-width: 400px) {
    .footer_copyright {
        max-width: 96%;
        font-size: 9px;
    }
}


/**
gotop
 */
.gotop {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    opacity: 0.7;
    cursor: pointer;
}

.gotop:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .gotop {
        display: none;
    }
}


/*
 * section
 * */
.section {
    margin-bottom: 40px;
}

.section_title {
    position: relative;
    margin-bottom: 40px;
}

.section_title .tit {
    font-size: 28px;
}

.section_title .txt {
    font-size: 20px;
}

.section_title::before {
    content: ' ';
    background-color: #e61f42;
    width: 40px;
    height: 3px;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.section_title .more {
    position: absolute;
    right: 0;
    top: 10px;
    color: #999;
    border: 1px solid #999;
    font-size: 18px;
    text-align: center;
    height: 38px;
    line-height: 38px;
    width: 130px;
    border-radius: 6px;
    display: block;
    background-color: #fff;
}

.section_title .more:hover {
    color: #e61f42;
    border: 1px solid #e61f42;
}

@media (max-width: 576px) {
    .section {
        margin-bottom: 20px;
    }

    .section_title .more {
        width: 120px;
    }
}

/*
 * article_con
 * */
.article_con {
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 1.8;
}

.article_con img {
    max-width: 100%;
    height: auto;
}

.article_con video {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.article_con strong {
    font-weight: bold;
}

.article_con em {
    font-style: italic;
}

.article_con i {
    font-style: italic;
}

.article_con s {
    text-decoration: line-through;
}

.article_con u {
    text-decoration: underline;
}

.article_con ul {
    list-style: disc inside none;
}

.article_con ol {
    list-style: decimal inside none;
}

.article_con table td {
    padding: 5px;
}

.mapbar {
    width: 100%;
    height: 500px;
}

/*
pic_album
*/
.pic_album {
    margin-top: 20px;
    margin-left: -7px;
    margin-right: -7px;
}

.pic_album .items {
    position: relative;
}

.pic_album .item {
    float: left;
    width: 100%;
    margin-bottom: 14px;
    padding: 7px;
    position: relative;
}


.pic_album .item img {
    width: 100%;
    height: 100%;
}

.pic_album .item_2 .item {
    width: 50%;
}

.pic_album .item_3 .item {
    width: 33.33333%;
}

.pic_album .item_cert .item {
    height: 0;
    padding-bottom: 35.25%;
    width: 25%;
}

.pic_album .item_cert .pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px;
}

.pic_album .item_mission .item {
    width: 50%;
}

@media (max-width: 992px) {
    .pic_album .item_cert .item {
        width: 50%;
        padding-bottom: 70.5%;
    }

    .pic_album .item_mission .item {
        width: 50%;
    }
}


@media (max-width: 576px) {
    .pic_album {
        margin-left: 0;
        margin-right: 0;
    }

    .pic_album .item_1 .item,
    .pic_album .item_2 .item,
    .pic_album .item_3a .item {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .pic_album .item .pic {
        width: auto;
        height: auto;
        position: static;
        top: auto;
        left: auto;
    }
}

/*
index
*/
.index {

}

.more2 {
    color: #999;
    font-size: 16px;
}

.section_vod {
    width: 100%;
    padding-bottom: 31%;
}

.section_vod img {
    width: 100%;
    height: 100%;
}

.section_vod .left_con {
    width: 44%;
    float: left;
}

.section_vod .right_con {
    width: 55%;
    float: right;
}

@media (max-width: 576px) {
    .section_vod {
        padding-bottom: 0;
    }

    .section_vod .left_con {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .section_vod .right_con {
        float: none;
        width: 100%;
        padding-bottom: 0;
        margin-bottom: 20px;
    }
}


.layer_index_prd_view {
    background: #e9e9e9 !important;
}

/*
index_hot_product_cat
*/
.index_hot_product_cat {
    position: relative;
    width: 1200px;
    height: 945px;
    margin-bottom: 20px;
}

.index_hot_product_cat .items {
    position: absolute;

    width: 1200px;
    height: 945px;
}

.index_hot_product_cat .item {
    position: absolute;
    width: 380px;
    height: 295px;
}

.index_hot_product_cat .item img {
    width: 100%;
    height: 100%;
}


.index_hot_product_cat .item:nth-child(1) {
    top: 0;
    left: 0;
}

.index_hot_product_cat .item:nth-child(2) {
    top: 0;
    left: 400px;
}

.index_hot_product_cat .item:nth-child(3) {
    top: 0;
    left: 800px;
}

.index_hot_product_cat .item:nth-child(4) {
    top: 310px;
    left: 0;
    height: 605px
}


.index_hot_product_cat .item:nth-child(5) {
    top: 310px;
    left: 400px;
}

.index_hot_product_cat .item:nth-child(6) {
    top: 310px;
    left: 800px;
}

.index_hot_product_cat .item:nth-child(7) {
    top: 620px;
    left: 400px;
}


.index_hot_product_cat .item:nth-child(8) {
    top: 620px;
    left: 800px;
}


@media (max-width: 1280px) {
    .index_hot_product_cat {
        width: 94vw;
        height: 75vw;

    }

    .index_hot_product_cat .items {
        position: absolute;
        width: 94vw;
        height: 74vw;
    }

    .index_hot_product_cat .item {
        position: absolute;
        width: 29.766vw;
        height: 23.108vw;
    }

    .index_hot_product_cat .item:nth-child(1) {
        top: 0;
        left: 0;
    }

    .index_hot_product_cat .item:nth-child(2) {
        top: 0;
        left: 31.3333vw;
    }

    .index_hot_product_cat .item:nth-child(3) {
        top: 0;
        left: 62.666vw;
    }

    .index_hot_product_cat .item:nth-child(4) {
        top: 24.2833vw;
        left: 0;
        height: 47.39166vw;
    }


    .index_hot_product_cat .item:nth-child(5) {
        top: 24.2833vw;
        left: 31.3333vw;
    }

    .index_hot_product_cat .item:nth-child(6) {
        top: 24.2833vw;
        left: 62.666vw;
    }

    .index_hot_product_cat .item:nth-child(7) {
        top: 48.5666vw;
        left: 31.3333vw;
    }

    .index_hot_product_cat .item:nth-child(8) {
        top: 48.5666vw;
        left: 62.666vw;
    }
}

/*
video_list
*/
.video_list {

}

.video_list .items {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video_list .item {
    float: left;
    width: 50%;
    padding-bottom: 40%;
    position: relative;
    height: 0;
    overflow: hidden;
}

.video_list .dl {
    position: absolute;
    top: 0;
    width: 90%;
    height: 95%;
    overflow: hidden;
}

.video_list .item:nth-child(odd) .dl {
    left: 0;
}

.video_list .item:nth-child(even) .dl {
    right: 0;
}


.video_list .pic {
    width: 100%;
    height: 65%;
    margin-bottom: 5px;
    position: relative;
}

.video_list .pic img {
    width: 100%;
    height: 100%;
}

.video_list .dt {
    position: relative;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    padding-left: 20px;
}

.video_list .dt .dot {
    width: 6px;
    height: 6px;
    background-color: #e61f42;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    left: 5px;
}

.video_list .dd {
    font-size: 16px;
}

.video_list .item .bg {
    width: 100%;
    display: none;
    background-color: #000;
    text-align: center;
}

.video_list .item .con {
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

.video_list .active .pic {
    display: none;
}

.video_list .active .bg {
    display: block;
}


.vod_box {
    width: 100%;
    position: relative;
}

.vod_box img {
    width: 100%;
    height: 100%;
}

.vod_box .bg {
    width: 100%;
    display: none;
    background-color: #000;
    text-align: center;
}

.vod_box .con {
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

.vod_box .active .pic {
    display: none;
}

.vod_box .active .bg {
    display: block;
}


.play_icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    z-index: 100;
    border-radius: 50%;
    line-height: 0;
    background-color: rgba(100, 100, 100, 0.4);
    border: 2px solid #fff;
}

.play_icon i {
    position: absolute;
    top: -2px;
    left: -1px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 38px;
    text-align: center;
    color: #fff;
}


.vod_con {
    max-width: 100%;
}

.layui-layer .vod_con {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video_list .item {
        width: 100%;
        padding-bottom: 0;
        height: auto;
        float: none;
        position: relative;
        margin-bottom: 20px;
    }

    .video_list .dl {
        width: 100%;
        height: 100%;
        position: relative;
    }
}


/*
product_cat
*/
.product_cat {
    margin-left: -10px;
    margin-right: -10px;
}

.product_cat .item {
    float: left;
    width: 25%;
    height: 110px;
    padding: 10px;
    font-size: 16px;
    overflow: hidden;
}

.product_cat .item .dl {
    overflow: hidden;
    height: 100%;
}

.product_cat .item .item_link {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #c9caca;
    padding: 8px;
    border-radius: 6px;
}

.product_cat .item .item_link .dd {
    font-weight: bold;
}

.product_cat .active .item_link,
.product_cat .item .item_link:hover {
    background-color: #e61f42;
    color: #fff;
}


@media (max-width: 968px) {
    .product_cat .item {
        height: 100px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product_cat .item {
        width: 50%;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .product_cat .item {
        width: 50%;
        height: 100px;
        font-size: 14px;
    }

    .product_cat .dt {
        max-height: 44px;
        line-height: 22px;
        overflow: hidden;
    }

}


/*
product_list
*/
.product_list {
    margin-left: -10px;
    margin-right: -10px;
}

.product_list .item {
    float: left;
    width: 33.33333%;
    padding-bottom: 31.6%;
    position: relative;
    height: 0;
    overflow: hidden;
}


.product_list .dl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    padding: 10px;
}

.product_list .pic {
    width: 100%;
    height: 87%;
    margin-bottom: 10px;
    position: relative;
}

.product_list .pic img {
    width: 100%;
    height: 100%;
}

.product_list .dt {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    line-height: 40px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.product_list .dd {
    position: relative;
    width: 80%;
    font-weight: bold;
    height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.product_list .more {
    position: absolute;
    right: 0;
    top: 0;
    color: #999;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
}

.product_list .more:hover {
    color: #e61f42;
}

@media (max-width: 992px) {
    .product_list .item {
        width: 50%;
        padding-bottom: 46%;
    }

    .product_list .pic {
        height: 90%;
    }
}

@media (max-width: 576px) {
    .product_list .item {
        float: none;
        width: 100%;
        padding-bottom: 0;
        height: auto;
        margin-bottom: 30px;
    }

    .product_list .dl {
        position: relative;
        height: 100%;
    }
}


/*
product_view
*/
.page_product_view {
    background-color: #e9e9e9;
}

.page_product_view .footer {
    margin-top: 0;
}

.product_view {
    position: relative;
}

.product_base {
    width: 286px;
    position: absolute;
    left: 0;
    top: 0;
}

.product_cat_box {
    width: 100%;
    min-height: 70px;
}


.product_cat_box .item_link {
    display: block;
    width: 100%;
    background-color: #e61f42;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 6px;
}

.product_cat_box .item_link .dd {
    font-weight: bold;
}

.product_base_name {
    min-height: 40px;
    line-height: 40px;
    font-size: 18px;
    padding: 0 15px;
    border-bottom: 1px solid #000;
}

.product_con {
    margin-left: 340px;
    min-height: 500px;
    background-color: #e9e9e9;
}

.product_album {
    background-color: #e9e9e9;
}

.product_album .item {
    width: 100%;
    margin-bottom: 14px;
}

.product_album .item img {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: block;
    height: auto;
}


@media (max-width: 768px) {
    .product_base {
        position: relative;
    }

    .product_con {
        margin-left: 0;
    }
}

@media (max-width: 375px) {
    .product_base {
        width: 100%;
    }

}
