*{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
li{
    list-style-type: none;
}
button,input,textarea,select{
    outline: none;
}
button,.btn{
    cursor: pointer;
}
button{
    color: #fff;
    background-color: #D93A3A;
    font-size: 16px;
    font-weight: bold;
}
textarea{
    resize:none;
}
input::placeholder{
    color: #999999;
}
input::-webkit-input-placeholder{
    color: #999999;
}
input::-moz-placeholder{
    color: #999999;
}
.line{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.line2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.line3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.line4{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.line5{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.row-c-c{
    display: flex;
    align-items: center;
    justify-content:center;
}
.row-c-fs{
    display: flex;
    align-items: center;
    justify-content:flex-start;
}
.row-c-fe{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.row-fs-fs{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.row-c-sb{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row-fs-sb{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.row-fe-fs{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.col-fs-fs{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
#wrapper{
    background: #F5F5F5;
}
.wrap{
    width: 100%;
    min-width: 1200px;
}
.container{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

/* 框架 */
.frame .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.frame  .frame-left{
    width: 940px;
}
.frame  .frame-left .box{
    background-color: #fff;
    padding: 26px 30px 30px;
    margin-bottom: 20px;
}
.frame  .frame-left .box>.title-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.frame  .frame-left .box>.title-box .title-l{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.frame  .frame-left .box>.title-box .title-l .title{
    font-size: 22px;
    font-weight: bold;
    color: #222222;
}
.frame  .frame-left .box>.title-box .title-l  .text{
    font-size: 14px;
    color: #999999;
    margin-left: 8px;
}
.frame  .frame-left .box>.title-box .more-btn{
    font-size: 14px;
    color: #666666;
    position: relative;
    padding-right: 10px;
}
.frame  .frame-left .box>.title-box .more-btn::after{
    content: '';
    background-image: url('/Public/Home/images/shop/icon/drop-down3.png');
    width: 5px;
    height: 9px;
    position: absolute;
    top: calc(50% - 4.5px);
    right: 0;
}
.frame  .frame-right{
    width: 240px;
}
.frame  .frame-right .box{
    border-top: 2px solid #D93A3A;
    background-color: #fff;
    padding: 0 20px;
    margin-bottom: 20px;
}
.frame  .frame-right .box>.title{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    height: 58px;
    line-height: 57px;
    border-bottom: 1px solid #EEEEEE;
}

/* 模板一 */
.template-1 .content{
    overflow: hidden;
}
.template-1 .item{
    float: left;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 20px 11px 0;
}
.template-1 .item:nth-of-type(3n){
    margin-right: 0;
}
.template-1 .item .img-box{
    position: relative;
}
.template-1 .item .img-box,
.template-1 .item .img-box img{
    width: 280px;
    height: 210px;
}
.template-1 .item .img-box .img-mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(217, 058, 058, .7);
    display: none;
    align-items: center;
    justify-content: center;
}
.template-1 .item .img-box .img-mask .text{
    width: 148px;
    height: 32px;
    line-height: 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: right;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
}
.template-1 .item .img-box .img-mask .text::after{
    content: '';
    width: 5px;
    height: 9px;
    background-image: url('/Public/Home/images/shop/icon/drop-down4.png');
    position: absolute;
    top: calc(50% - 4.5px);
    right: 17px;
}
.template-1 .item:hover .img-mask{
    display: flex;
}
.template-1 .item .text-box{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
}
.template-1 .item .text-box .text-l{
    width: 220px;
}
.template-1 .item .text-box .text-l .title{
    font-size: 16px;
    color: #222222;
}
.template-1 .item .text-box .text-l .info{
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}
.template-1 .item .text-box .text-r{
    font-size: 12px;
    color: #666666;
}
.template-1 .item .text-box .text-r span{
    color: #D93A3A;
}

/* 模板二 */
.template-2 .title{
    border: 0 !important;
}
.template-2  .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 27px;
}
.template-2  .content .logo-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 70px;
    border: 1px solid #EEEEEE ;
}
.template-2 .content .number-box{
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 24px;
}
.template-2 .content .number-box .text-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.template-2 .content .number-box .text-box .num{
    font-size: 20px;
    font-weight: bold;
    color: #222222;
}
.template-2 .content .number-box .text-box .text{
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}
.template-2 .content button{
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #D93A3A;
}
.template-2 .content .link{
    font-size: 14px;
    font-weight: bold;
    color: #D93A3A;
    position: relative;
    padding-right: 10px;
    margin-top: 20px;
}
.template-2 .content .link::after{
    content: '';
    width: 5px;
    height: 10px;
    background-image: url('/Public/Home/images/shop/icon/drop-down5.png');
    background-size: 100% 100%;
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
}

/* 模板三 */
.template-3{
    padding: 20px 20px 18px !important;
}
.template-3 .title-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}
.template-3 .title-text .title{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
}
.template-3 .title-text .text{
    font-size: 14px;
    color: #666666;
}
.template-3 .title-text .text span{
    color: #D93A3A;
}
.template-3  input{
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: #333;
    background-color: #F5F5F5;
    padding: 0 14px;
    margin-bottom: 12px;
}
.template-3 .sel-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 3px 0 14px 0;
}
.template-3 .sel-box .text{
    font-size: 14px;
    color: #666666;
    margin-left: 6px;
}
.template-3 .sel-box img{
    cursor: pointer;
}
.template-3  button{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    height: 40px;
    margin-bottom: 14px;
}
.template-3 .tip{
    font-size: 12px;
    color: #666666;
    width: 213px;
    margin-left: -4px;
}

/* 文章模板 */
.article-template{
    background-color: #fff;
    padding: 50px 80px 0;
    margin-bottom: 20px;
}
.article-template>.title{
    /*font-size: 26px;*/
    font-weight: bold;
    color: #222222;
}
.article-template .base-info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0 25px;
}
.article-template .base-info .text{
    font-size: 14px;
    color: #666666;
    margin-right: 24px;
}
.article-template .base-info .icon-share{
    width: 17px;
    height: 14px;
    cursor: pointer;
}
.article-template .base-info .icon-collect{
    width: 16px;
    height: 15px;
    cursor: pointer;
    margin-left: 16px;
}
.article-template .abstract{
    font-size: 14px;
    color: #999999;
    background-color: #F7F7F7;
    width: 780px;
    line-height: 25px;
    padding: 18px 24px;
}
.article-template  .house-info{
    width: 100%;
    height: 80px;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 30px;
}
.article-template  .house-info .house-text{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: space-between;
    padding-left: 30px;
}
.article-template  .house-info .house-text .text{
    width: 155px;
    padding-right: 10px;
    font-size: 14px;
    color: #999999;
}
.article-template .rich-text {
    padding: 35px 0 20px;
}
.article-template .rich-text .p{
    color: #222222;
    margin-bottom: 20px;
}
.article-template .rich-text .p .title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.article-template .rich-text .p .text{
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 8px;
}
.article-template .rich-text .p img{
    width: 100%;
    margin: 11px 0 16px;
}
.article-template  .flip-over{
    height: 89px;
    border-top: 1px solid #EEEEEE;
}
.article-template  .flip-over .text-box{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.article-template  .flip-over .text-box .text{
    color: #333333;
}
.article-template  .flip-over .text-box  .link{
    color: #666666;
    width: 180px;
}
.article-template  .flip-over .text-box  .link:hover{
    color:#D93A3A ;
}

/* 预约新家装修方案模板 */
.plan-template  .form-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plan-template  .form-box input{
    width: 352px;
    border: 1px solid #EEEEEE;
    background-color: #F9F9F9;
    font-size: 14px;
    color: #333;
    border-radius: 2px;
    padding: 0 15px;
    height: 42px;
}
.plan-template  .form-box button{
   width: 136px;
   height: 42px;
   line-height: 42px;
   color: #fff;
   font-size: 16px;
   font-weight: bold;
}

/* 设计团队模板 */
.design-team-template .design-item{
    padding: 24px 0 8px;
    border-bottom: 1px solid #EEEEEE;
}
.design-team-template .design-item:last-of-type{
    border: 0;
}
.design-team-template .design-item .design-info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
}
.design-team-template .design-item .design-info img{
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-right: 20px;
}
.design-team-template .design-item .design-info .text-box .name{
    font-size: 18px;
    font-weight: bold;
    color: #222222;
}
.design-team-template .design-item .design-info .text-box .label{
    font-size: 14px;
    color: #666666;
    margin: 4px 0 8px;
}
.design-team-template .design-item .design-info .text-box  button{
    width: 70px;
    height: 27px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #F8D9D9;
    font-size: 13px;
    color: #D93A3A;
    background-color: #F9F0F0;
}
.design-team-template .design-item .design-text{
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}
.design-team-template .design-item .design-text span{
    color: #333333;
}
.design-team-template .design-item>.text-box{
    font-size: 14px;
    margin-bottom: 16px;
}
.design-team-template .design-item>.text-box .label{
    color: #666666;
    margin-bottom: 6px;
}
.design-team-template .design-item>.text-box .text{
    color: #333333;
    line-height: 22px;
}


/* 弹窗 */
.mask-box,.mask-success{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(000, 000, 000, .6);
    display: none;
}
.mask-form-template .mask-content{
    width: 460px;
    background-color: #fff;
    position: relative;
    padding: 38px 44px 0;
    position: absolute;
    left: calc(50% - 230px);
}
.mask-form-template .mask-content .title{
    font-size: 24px;
    font-weight: bold;
    color: #222222;
}
.mask-form-template .mask-content .title span,
.mask-form-template .mask-content .text span{
    color: #D93A3A;
}
.mask-form-template .mask-content .text{
    font-size: 16px;
    color: #666666;
    margin: 12px 0 22px;
}
.mask-form-template .mask-content  input{
    width: 100%;
    height: 42px;
    border: 1px solid  #EEEEEE;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}
.mask-form-template .mask-content  input:focus{
    border: 1px solid  #d93a3a;
}
.mask-form-template .mask-content .sel-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.mask-form-template .mask-content .sel-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 16px 0 10px;
}
.mask-form-template .mask-content .sel-box:nth-of-type(2){
    margin-left: 45px;
}
.mask-form-template .mask-content .sel-box .text{
    font-size: 14px;
    color: #666666;
    margin:0 0 0 6px;
    cursor: pointer;
}
.mask-form-template .mask-content .sel-box img{
    cursor: pointer;
}
.mask-form-template .mask-content button{
    width: 200px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-top: 22px;
}
.mask-form-template .mask-content .close{
    width: 37px;
    height: 37px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px
}
.mask-view-img .mask-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.mask-view-img .mask-content .img-box{
    position: relative;
}
.mask-view-img .mask-content .img-box  .close{
    width: 39px;
    height: 39px;
    position: absolute;
    top: -36px;
    right: -62px;
    cursor: pointer;
}
.mask-success{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* 滑块验证 */
.verify-wrap {
    margin: 0;
    height: 42px;
    background-color:#F5F5F5 ;
    border: 1px solid #EEEEEE;
}
.verify-wrap .drag-progress{
    height: 42px;
    line-height: 40px;
    background-color: #E4F3EF;
    border: 1px solid #44B397;
}
.verify-wrap .fix-tips{
    color:#999999;
}
.verify-wrap .fix-tips, .verify-wrap  .verify-msg {
    font-size: 14px;
    line-height: 40px;
}
.verify-wrap .verify-msg{
    color: #44B397;
    background-color: #E4F3EF;
}
.verify-wrap .drag-btn,.verify-wrap .suc-drag-btn{
    width: 42px;
    height: 42px;
}
.verify-wrap .drag-btn {
    background: #fff url('/Public/Home/images/shop/icon/verify_next.png') no-repeat center center;
}
.verify-wrap .suc-drag-btn{
    background: #fff url('/Public/Home/images/shop/icon/verify_success.png') no-repeat center center;
}

/* 分页 */
.pagination{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
/*.pagination>a>div{*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background-color: #fff;*/
/*    border: 1px solid #EEEEEE;*/
/*    font-size: 14px;*/
/*    color: #999999;*/
/*    text-align: center;*/
/*    line-height: 38px;*/
/*    cursor: pointer;*/
/*}*/

/*.pagination>div>span>div>a>div{*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background-color: #fff;*/
/*    border: 1px solid #EEEEEE;*/
/*    font-size: 14px;*/
/*    color: #999999;*/
/*    text-align: center;*/
/*    line-height: 38px;*/
/*    cursor: pointer;*/
/*}*/

.pagination>div>a{
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #EEEEEE;
    font-size: 14px;
    color: #999999;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
}

.pagination .current{
    background-color: #D93A3A;
    float: left;
    display: block;
    width: 40px;
    height: 40px;
   color: #fff;
    border: 1px solid #EEEEEE;
    font-size: 14px;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
}

.pagination>div>span{
    width: 40px;
    height: 40px;
    background-color: #D93A3A;
    border: 1px solid #EEEEEE;
    font-size: 14px;
    color: #999999;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
}
.pagination a{
    float: left;
    display: block;
}

/*.pagination>div{*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background-color: #fff;*/
/*    border: 1px solid #EEEEEE;*/
/*    font-size: 14px;*/
/*    color: #999999;*/
/*    text-align: center;*/
/*    line-height: 38px;*/
/*    cursor: pointer;*/
/*}*/
.pagination .action{
    border-color: #D93A3A;
    background-color: #D93A3A;
    color: #fff;
}
/*.pagination .prev,.pagination .next{*/
/*    position: relative;*/
/*}*/
/*.pagination .prev::after,.pagination .next::after{*/
/*    content: '';*/
/*    width: 5px;*/
/*    height: 9px;*/
/*    background-image: url('/Public/Home/images/shop/icon/drop-down3.png');*/
/*    background-size: 100% 100%;*/
/*    position: absolute;*/
/*    top: calc(50% - 4.5px);*/
/*    left: calc(50% - 2.5px);*/
/*}*/
/*.pagination .prev::after{*/
/*    transform: rotateY(180deg);*/
/*}*/

/* 面包屑 */
.crumbs{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.crumbs a{
    font-size: 12px;
    color: #999999;
    position: relative;
    margin-right: 20px;
}
.crumbs a:hover{
    color: #D93A3A;
}
.crumbs a::after{
    content: '';
    background-image: url('/Public/Home/images/shop/icon/drop-down.png');
    transform: rotate(-90deg);
    width: 8px;
    height: 4px;
    position: absolute;
    top: calc(50% - 2px);
    right: -14px;
}
.crumbs .text{
    font-size: 12px;
    color: #333333;
}

.mfhd-btn{
    cursor: pointer;
}
