﻿@charset "utf-8";

.head-page .service_item span{
    color: #fff;
}
.head-page .service_item>a:after {
    transform: scale(1);
    opacity: 1;
}
.head-page.show .service_item a span{
    color: #234497;
}

/* 知识中心 */
.uplode_content {
    height: 50px;
    position: relative;
    cursor: pointer;
    background: #F5F5F5;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
}
.uplode_content .uplode_titlle {
    width: calc(100% - 80px);
    padding: 0 15px 0 0;
    box-sizing: border-box;
}
.uplode_content .uplode_r {
    /* width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon_download.svg) no-repeat center/cover; */
    transition: all .4s;
}
.uplode_content .uplode_icon {
    width: 32px;
    height: 32px;
    background: url(../img/uplode_icon01.svg) no-repeat center/cover;
    transition: all .4s;
}
.uplode_content .uplode_tit {
    width: calc(100% - 32px);
    padding-left: 10px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .4s;
}
.uplode_content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff0000;
    transition: all .4s;
    z-index: -1;
}
.uplode_content:hover::before{
    width: 100%;
}
.uplode_content:hover .uplode_tit {
    color: #fff;
}
.uplode_content:hover .uplode_icon{
    background: url(../img/uplode_hicon01.svg) no-repeat center/cover;
}
.uplode_content:hover .uplode_r{
    color: #fff;
    /* background: url(../img/icon_download_hover.svg) no-repeat center/cover; */
}




/* 租赁 */
.service_lease .list{
    width: 23.5%;
    margin-right: 2%;
}
.service_lease .list:nth-child(4n){
    margin-right: 0;
}
.service_lease .list .title{
    height: 72px;
    background: #234497;
    border-radius: 6px 6px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
}
.service_lease .list .line_scale{
    width: 1px;
    height: 45px;
    background: #E5E5E5;
    position: relative;
    margin: 0 auto;
}
.service_lease .list .line_scale::after{
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #234497;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.service_lease .list .con{
    height: 144px;
    background: #FBFBFB;
    border-radius: 6px;
    padding: 42px 15px 42px 18px;
    box-sizing: border-box;
    box-shadow: 0px 0px 9px 6px rgba(142,142,142,0.15);
}
.service_lease .list .con_box{
    padding-right: 7px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 60px;
}
/* 计量 */
.service_measure .img{
    width: 40.25%;
}
.service_measure .texts{
    width: 55%;
}
.service_measure .texts .con{
    margin: 40px 0 50px;
}
.consult_btn{
    width: 148px;
    height: 50px;
    background: #234497;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 维修 */
.service_repair .page_contents .maxwidth{
    background: #F5F6F8;
}
.service_repair .page_contents .img{
    width: 44.5%;
}
.service_repair .page_contents .lists {
    width: 55.5%;
    padding: 20px 25px;
    box-sizing: border-box;
}
.service_repair .page_contents .list{
    height: 236px;
    background: #FFFFFF;
    border: 1px solid #F3F1F2;
    margin: 10px 0;
    width: 49%;
    margin-right: 2%;
    padding: 30px 25px 30px 35px;
    box-sizing: border-box;
}
.service_repair .page_contents .list:nth-child(2n){
    margin-right: 0;
}

.service_repair .page_contents .list .item_icon{
    margin-bottom: 9px;
}
.service_repair .page_contents .list .line{
    width: 51.1%;
    height: 1px;
    background: #EAEAEA;
    margin: 15px 0 22px;
}
.service_repair .page_contents .list .text_desc{
    max-height: 55px;
    overflow-y: auto;
    padding-right: 10px;
    box-sizing: border-box;
}
/* 二手回收 */
/* .service_recycling .bread{
    background: #f4f4f4;
} */
.service_recycling .page_contents {
    background: #f4f4f4;
}
.service_recycling .list{
    width: 23.5%;
    margin-right: 2%;
}
.service_recycling .list:nth-child(4n){
    margin-right: 0;
}
.service_recycling .list .text {
    margin: 30px 0 35px;
    text-align: center
}

.service_recycling .list .imgs{
    position: relative;
    height: 380px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}
.service_recycling .list .imgs img{
    display: block;
    max-height: 100%;
}
.service_recycling .list .advice{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 68, 151, .6);
    padding: 15px;
    box-sizing: border-box;
    transition: all .4s;
    transform: translateX(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_recycling .list .advice::before{
    content: "";
    display: block;
    border: 1px solid #FFFFFF;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    position: absolute;
    left: 15px;
    top: 15px;
    cursor: pointer;
}
.service_recycling .list .advice_box{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
}
.service_recycling .list .tit {
    margin: 15px 0;
    cursor: pointer;
}
.service_recycling .list span{
    width: 25px;
    height: 1px;
    background: #FFFFFF;
    transition: all .4s;
    transform: scale(0);
}
.service_recycling .list:hover .advice{
    transform: translateX(0);
}
.service_recycling .list .advice_box:hover span{
    transform: scale(1);
}
.tk{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, .0, .3);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 115;
    display: none;
    align-items: center;
    justify-content: center;
}
.tk.active{
    display: flex;
}
.tk .box{
    max-width: 600px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px 30px 40px;
    box-sizing: border-box;
    position: relative;
    width: 92%;
}
.enroll_content .item {
    margin-top: 10px;
}
.enroll_content .item .tit {
    font-weight: bold;
    color: #333333;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}
.enroll_content .item .tit::before{
    content: "*";
    display: block;
    color: red;
    margin-right: 5px;
    display: none;
}
.enroll_content .item.active .tit::before{
    display: block;
}
.enroll_content .item .import_box {
    position: relative;
}
.enroll_content .item input {
    width: 100%;
    outline: none;
    padding: 0 20px;
    box-sizing: border-box;
    color: #333;
    height: 46px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
}
.enroll_content .item .import_box textarea{
    height: 150px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
    width: 100%;
    padding: 16px 20px;
    box-sizing: border-box;
}
.close_btn{
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}
.close_btn img{
    transition: all .4s;
}
.close_btn img:hover{
    transform: rotate(180deg);
}
.tk a:hover{
    color: #fff!important;
}
.service_recycling .list .tit:hover{
    color: #fff;
}
.enroll_content .item .layui-input:focus, .enroll_content .item .layui-textarea:focus {
    border-color: #ff5722 !important;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, .08);
}
.enroll_content .layui-form-select dl dd.layui-this {
    background-color: #f8f8f8;
    color: #234497;
}
.checkcon {
    padding: 0px 20px;
}
.checkcon p {
    text-indent: 2em;
    padding-bottom: 10px;
}
.checkcon p a {
    color: #234497;
}
.recycling_submit_btn{
    width: 100%;
    height: 50px !important;
    background: #234497 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.metering_submit_btn{
    width: 150px;
    height: 50px !important;
    background: #234497 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
}
.privacy_policy{
    background: transparent!important;
    border: none!important;
    padding: 0!important;
    color: #234497!important;
    font-size: 16px!important;
}
.layui-layer-page .layui-layer-content {
    padding: 30px 15px;
    box-sizing: border-box;
    line-height: 1.875;
    height: auto!important;
}
.layui-layer-title{
    font-weight: 600;
    font-size: 16px!important;
}

.leave_word .layui-form-checkbox[lay-skin=primary]>div {
    padding-left: 0;
    padding-right: 0!important;
    font-size: 16px!important;
    color: #666!important;
}
.leave_word .layui-form-checked[lay-skin=primary]>i {
    border-color: #234497!important;
    background-color: #234497;
}
.layui-form-checked[lay-skin=primary]>i {
    border-color: #16b777!important;
    background-color: #234497;
}
.layui-form-checkbox[lay-skin=primary]:hover>i {
    border-color: #234497!important;
}
.leave_word .title {
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 28px;
    box-sizing: border-box;
}
@media only screen and (max-width: 1480px) {
    .service_recycling .list .imgs{
        height: 340px;
    }
}
@media only screen and (max-width: 1400px) {
    .service_recycling .list .imgs{
        height: 320px;
    }
}
@media only screen and (max-width: 1366px) {
    .service_repair .page_contents .list {
        height: 222px;
        padding: 25px 25px 25px 25px;
    }
}
@media only screen and (max-width: 1280px) {
    .service_measure .texts .con {
        margin: 30px 0 40px;
    }
    .service_recycling .list .imgs {
        height: 290px;
    }
}
@media only screen and (max-width: 1200px) {
    .service_repair .page_contents .list .text_desc {
        max-height: 50px;
    }
    .service_repair .page_contents .list {
        height: 204px;
        padding: 20px 25px 20px 25px;
    }
    .service_measure .texts .con {
        margin: 20px 0 35px;
    }
}
@media only screen and (max-width: 1043px) {
    .service_recycling .list {
        width: 32%;
        margin-right: 2%;
    }
    .service_recycling .list:nth-child(4n) {
        margin-right: 2%;
    }
    .service_recycling .list:nth-child(3n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 768px) {
    .service_repair .page_contents .img {
        width: 100%;
    }
    .service_repair .page_contents .list .text_desc {
        max-height: initial;
        padding-right: 0;
    }
    .service_repair .page_contents .list {
        height: auto;
        padding: 20px;
        margin-right: 0;
        width: 100%;
        margin: 7px 0;
    }
    .service_repair .page_contents .lists {
        width: 100%;
        padding: 20px 15px;
    }
    .service_lease .list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    .service_lease .list:last-child{
        margin-bottom: 0;
    }
    .service_lease .list .title{
        height: 50px;
    }
    .service_lease .list .con {
        height: auto;
        padding: 30px 15px 30px 18px;
    }
    .service_measure .img {
        width: 100%;
    }
    .service_measure .texts {
        width: 100%;
        margin-top: 25px;
    }
    .service_measure .texts .con {
        margin: 15px 0 25px;
    }
    .consult_btn {
        width: 120px;
        height: 43px;
        margin: 0 auto;
    }
    .metering_submit_btn {
        width: 120px;
        height: 43px !important;
        margin: 20px auto 0;
    }
    .layui-layer-rim{
        width: 92%!important;
    }
    .checkcon {
        padding: 0;
    }
    .layui-layer-page .layui-layer-content {
        padding: 20px 15px;
    }
    .service_recycling .list {
        width: 100%;
        margin-right: 0;
    }
    .service_recycling .list .text {
        margin: 20px 0 25px;
        text-align: center;
    }
    .service_recycling .list:last-child .text{
        margin-bottom: 0;
    }
    .tk .box {
        padding: 25px 15px;
    }
    .enroll_content .item input {
        padding: 0px 15px;
        height: 38px;
    }
    .recycling_submit_btn{
        margin-top: 20px;
    }
    .enroll_content .item .import_box textarea {
        width: 100%;
        padding: 16px 15px;
        height: 100px;
    }
    .enroll_content .item:first-child .tit{
        margin-top: 0;
    }
    .close_btn {
        right: 15px;
        top: 15px;
        max-width: 25px;
    }
    .recycling_submit_btn{
        height: 40px!important;
        line-height: 40px!important;
    }
    .enroll_content .item {
        margin-top: 5px;
    }
}