@import url(font.css);

/* 下载download */
.download {
    display: flex;
    flex-wrap: wrap;
    margin-left: 300px;
}

.download .container {
    box-sizing: border-box;
    margin-left: 40px;
    width: calc(50% - 40px);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Roboto Regular";
    background-color: #fff;
    border: 1px solid rgb(234, 235, 241);
    box-shadow:
        0px 0px 0px 0px rgba(0, 0, 0, 0.05),
        0px 1px 3px 0px rgba(0, 0, 0, 0.05),
        0px 5px 5px 0px rgba(0, 0, 0, 0.04),
        0px 10px 6px 0px rgba(0, 0, 0, 0.03),
        0px 18px 7px 0px rgba(0, 0, 0, 0.01),
        0px 29px 8px 0px rgba(0, 0, 0, 0);
    margin-bottom: 40px;
}

.down_title {
    color: #333333;
    font-size: 22px;
    line-height: 26px;
}

.down_desc {
    color: rgb(119, 119, 119);
    font-size: 16px;
    line-height: 28px;
    max-width: 360px;
    margin-top: 20px;
}

.down_right {
    flex-shrink: 0;
}

.down_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.down_title2 {
    color: #e98105;
    font-size: 16px;
}

.down_img {
    flex-shrink: 0;
}

@media only screen and (max-width: 1280px) {
    .down_title {
        font-size: 20px;
    }

    .down_desc {
        font-size: 14px;
    }

    .download .container {
        padding: 20px 30px;
    }

    .down_img {
        max-width: 75%;
    }
}

@media only screen and (max-width: 1024px) {
    .down_title {
        font-size: 18px;
    }

    .down_desc {
        font-size: 14px;
        line-height: 20px;
        margin-top: 10px;
    }

    .down_img {
        max-width: 50%;
    }

    .down_title2 {
        font-size: 12px;
    }
}

@media only screen and (max-width: 920px) {
    .down_title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .download {
        margin-left: 0;
    }

    .download .container {
        margin-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .down_title {
        font-size: 14px;
    }
}










/* 案例列表cases */
.cases .pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.cases .bgimg {
    width: 100%;

}

.cases .upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.cases .pic:hover .upimg {
    transform: scale(1.03);
}

.case_box {
    margin-bottom: 50px;
    position: relative;
}

.cases .cover {
    position: absolute;
    background: #fff;
    right: 0;
    bottom: 0;
    padding: 50px 40px 0px 40px;
    box-sizing: border-box;
}

.case_title {
    font-family: "Roboto Black";
    color: #222;
    position: relative;
    font-size: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-weight: 700;
}

.case_title::before {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #e98105;
    position: absolute;
    bottom: 0;
    left: 0;
}

.case_desc {
    color: rgb(119, 119, 119);
    font-family: "Roboto Black";
    font-size: 16px;
    line-height: 30px;
    max-width: 500px;
    font-weight: 400;
}

.case_more {
    font-family: "Roboto Regular";
    color: #000;
    position: relative;
    font-size: 22px;
    padding-left: 40px;
    transition: all .3s;
    margin-top: 30px;
    font-weight: 400;
}

.case_more:hover {
    color: #e98105;
}

.case_more::before {
    content: "+";
    width: 30px;
    height: 30px;
    background-color: #e98105;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
}

@media only screen and (max-width: 1280px) {
    .case_title {
        font-size: 24px;
    }

    .cases .cover {
        padding: 30px 20px 0px 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .case_title {
        margin-bottom: 15px;
    }

    .case_desc {
        line-height: 24px;
    }
}

@media only screen and (max-width: 920px) {
    .case_title {
        font-size: 20px;
    }

    .case_title::before {
        width: 60px;
    }

    .case_title {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .case_more::before {
        width: 20px;
        height: 20px;
    }

    .case_more {
        font-size: 16px;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .case_desc {
        max-width: 300px;
        line-height: 20px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .case_more {
        margin-top: 15px;
    }

    .case_title {
        text-overflow: ellipsis;
        white-space: nowrap;
    }

}

@media only screen and (max-width: 500px) {
    .case_title {
        font-size: 18px;
    }

    .cases .cover {
        position: static;
        padding: 10px;
        border: 1px solid #f0f4f7;
        border-top: none;
    }

    .case_desc {
        max-width: 500px;
        -webkit-line-clamp: 3;
    }

    .case_box {
        margin-bottom: 20px;
    }
}








/* 案例详情casedetail */
.cd_bg {
    background: url(../images/casedetail.png) no-repeat top;
    padding-bottom: 80px;
    background-size: 100% !important;
}

.cd_top {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
}

.cd_title {
    font-family: "Roboto Black";
    color: #fff;
    position: relative;
    font-size: 40px;
    padding-bottom: 33px;
    margin-bottom: 60px;
    line-height: 40px;
    font-weight: 700;
}

.cd_title::before {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #e98105;
    position: absolute;
    bottom: 0;
    right: 0;
}

.cd_back {
    background: rgb(240, 130, 0);
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd_back img {
    margin-right: 10px;
}

.cd_back .back {
    color: rgb(255, 255, 255);
    font-family: "Roboto Black";
    font-size: 24px;
    font-weight: 300;
    line-height: 43px;
    text-transform: uppercase;
}

.cd_main {
    background: #fff;
    padding: 95px;
}

.cd_desc {
    color: rgb(119, 119, 119);
    font-family: "Roboto Black";
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}


.cd_img img {
    max-width: 100%;
    margin: 30px 0;
}

.cd_table table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto Black";
    font-weight: 400;
}

.cd_table th,
.cd_table td {
    padding: 10px 0;
    padding-left: 50px;
}

.cd_table table thead tr {
    background-color: #e98105;
    color: #fff;
    height: 50px;
    font-size: 18px;
    text-align: left;
}

.cd_table table tbody {
    font-size: 16px;
    color: #333333;
}

.cd_table table tbody tr:nth-child(odd) {
    background: rgb(245, 245, 245);
}

.up_down {
    margin-top: 50px;
    margin-left: -40px;
    display: flex;
}

.ud_box {
    width: calc(50% - 40px);
    margin-left: 40px;
    padding: 40px 70px;
    font-family: "Roboto Black";
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    background: #F5F5F5;
    position: relative;
}


.ud_box .title {
    color: #e98105;
}

.ud_box .name {
    color: #000;
}

.ud_box:nth-child(2) {
    text-align: right;
}

.ud_arrow {
    width: 60px;
    height: 60px;
    background-color: #d6d6d6;
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translateY(-50%);
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .3s;
}

.prev {
    background-image: url(../images/CaretRight.svg);
    left: -30px;
}

.next {
    background-image: url(../images/Caretleft.svg);
    right: -30px;
}

.prev_btn:hover .prev {
    background-color: #e98105;
}

.next_btn:hover .next {
    background-color: #e98105;
}

.cd_title2 {
    color: #000;
}


.owl-detail .owl-dots .owl-dot span {
    background: #828282;
}

.owl-detail .owl-dots .owl-dot.active span,
.owl-detail .owl-dots .owl-dot:hover span {
    background: #F08200;
}

.owl-detail .owl-dots .owl-dot.active span {
    width: 92px;
}

.cd_box .pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.cd_box .bgimg {
    width: 100%;

}

.cd_box .upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.cd_box .pic:hover .upimg {
    transform: scale(1.05);
}

.od_title {
    color: rgb(0, 0, 0);
    font-family: "Roboto Black";
    font-size: 16px;
    font-weight: 400;
    /* height: 36px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 8px;
}

.od_name {
    color: rgb(240, 130, 0);
    font-family: "Roboto Black";
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
}

@media only screen and (max-width: 1280px) {
    .cd_title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .cd_back {
        height: 56px;
        width: 140px;
    }

    .cd_back .back {
        font-size: 20px;
    }

    .ud_box {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1024px) {
    .ud_box {
        font-size: 22px;
    }

    .ud_arrow {
        width: 50px;
        height: 50px;
    }

    .next {
        right: -25px;
    }

    .prev {
        left: -25px;
    }

    .cd_title {
        font-size: 26px;
    }

    .cd_back {
        height: 50px;
        width: 120px;
    }

    .cd_back .back {
        font-size: 16px;
    }

    .cd_back img {
        max-width: 20%;
    }

    .cd_main {
        padding: 50px;
    }
}

@media only screen and (max-width: 920px) {
    .ud_box {
        padding: 20px 40px;
        font-size: 20px;
    }
    .cd_desc{
        font-size: 14px;
    }

}

@media only screen and (max-width: 768px) {
    .ud_box {
        line-height: 26px;
        font-size: 18px;
    }

    .ud_box:nth-child(1) {
        padding-right: 10px;
    }

    .ud_box:nth-child(2) {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .cd_main {
        padding: 10px;
    }

    .cd_desc {
        font-size: 14px;
    }

    .cd_img img{
        margin: 10px 0;
    }

    .cd_title {
        font-size: 20px;
        padding-bottom: 12px;
        margin-bottom: 30px;
    }

    .cd_title::before {
        width: 75px;
    }

    .cd_back {
        height: 40px;
        width: 100px;
    }

    .cd_back .back {
        line-height: 1;
        font-size: 14px;
    }

    .cd_back img {
        max-width: 18%;
    }

    .ud_arrow {
        width: 30px;
        height: 30px;
        background-size: 50%;
    }

    .prev {
        left: -15px;

    }

    .next {
        right: -15px;
    }

    .cd_table th,
    .cd_table td {
        padding: 10px 0;
        padding-left: 10px;
    }

    .cd_table table thead tr {
        font-size: 14px;
    }

    .cd_table table tbody {
        font-size: 12px;
    }

    .ud_box {
        font-size: 14px;
        padding: 10px 25px;
        width: calc(50% - 10px);
        margin-left: 10px;
    }

    .up_down {
        margin-left: -10px;
    }
}








/* 联系我们 */
.contact_title {
    color: #f08200;
    font-size: 30px;
    text-transform: uppercase;
    font-family: "Roboto Black";
    font-weight: 500;    margin-bottom: 30px;
}

.contact_box {
    border: 1px solid rgb(234, 235, 241);
    color: rgb(139, 139, 139);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    padding: 30px 30px 30px 30px;
    margin-top: 8px;
    cursor: pointer;
}

.contact_box:hover {
    background: #e98105;
    color: #fff;
}


.owl-contact .item.on .contact_box {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    background: #e98105;
    margin-top: 0px;
}


.owl-contact .owl-prev,
.owl-contact .owl-next {
    width: 112px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    background: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    filter: Alpha(Opacity=100);
    opacity: 1;
    font-size: 0px !important;
    line-height: 0px !important;
}

.owl-contact .owl-prev {
    position: absolute;
    left: -130px;
    background: url(../images/ArrowLeft.svg) no-repeat !important;
}

.owl-contact .owl-next {
    position: absolute;
    right: -130px;
    background: url(../images/ArrowRight.svg) no-repeat !important;
}

.contact {
    max-width: 1030px;
    margin: 0 auto;
}

.contact_footer {
    margin: 80px 0;
}









/* household */
.distributors {
    color: rgb(240, 130, 0);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
}

.overseas_box {
    border: 1px solid rgb(234, 235, 241);
    padding: 40px;
    font-size: 18px;
    line-height: 27px;
}

.overseas_box dl {
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 16px;
}

.overseas_box dl dt {
    color: #000;
    font-weight: 600;

}

.overseas_box dl dd {
    color: #555555;
    font-weight: 400;
}


@media only screen and (max-width: 1024px) {
    .distributors {
        font-size: 28px;
    }
}

@media only screen and (max-width: 920px) {
    .distributors {
        font-size: 26px;
    }
}

@media only screen and (max-width: 920px) {
    .distributors {
        font-size: 26px;
    }

    .overseas_box dl {
        font-size: 14px;
    }
}









/* 视频 */
.videobox .item-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-out;
    opacity: 0;
    background: #000000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    filter: alpha(opacity=0);
}

.videobox:hover .item-mask {
    opacity: .5;
    background: #000000;
    filter: alpha(opacity=50);
}


.videobox .btn-link__hover_i {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    background: url(../images/play-circle.png) no-repeat;
    transform: scale(2);
    backface-visibility: hidden;
    transition: all .25s ease-out;
}

.videobox:hover .btn-link__hover_i {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: scale(1);
}


.videobox .pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.videobox .bgimg {
    width: 100%;

}

.videobox .upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .6s;
}


.main_video {
    margin-top: 80px;
    padding-bottom: 0;
}

.video_desc {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 20px;
}

.video_name {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.video_date {
    border-radius: 34px;
    background-color: #e98105;
    font-size: 12px;
    font-weight: 400;
    padding: 3px 15px;
    flex-shrink: 0;
}


