/*头部*/
.header-mask{
    width: 100%;
    height: 131px;
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.56);
    opacity: 0.7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    z-index: 998;
}
header{
    width: 100%;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    z-index: 999;
}
header .header-container{
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header .header-left{
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    transition: 0.5s;
}
header .header-left .header-logo{
    width: 220px;
}
header .header-left .header-logo img{
    width: 100%;
    height: 100%;
}
header .header-left span{
    width: 1px;
    height: 23px;
    background: #C3C3C3;
    opacity: 0.5;
    margin-left: 6px;
    margin-right: 20px;
}
header .header-left .header-title{
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    background: linear-gradient(-80deg, #A6875F 0%, #C9B293 34.716796875%, #C9B293 78.8330078125%, #A6875F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
header .header-right{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

header .header-right .header-search{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 32px;
    overflow-y: hidden;
    margin-top: 25px;
    transition: 0.5s;
}
header .header-right .header-search .search{
    width: 278px;
    height: 32px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    margin-right: 30px;
}
header .header-right .header-search .search input{
    width: 245px;
    height: 32px;
    border: none;
    background-color: transparent;
}
header .header-right .header-search .search-icon{
    width: 14px;
    height: 14px;
    margin-right: 7px;
    margin-left: 19px;
    display: flex;
    align-items: center;
}
header .header-right .header-search .search-icon img{
    width: 100%;
    height: 100%;
}
header .header-right .header-search .call-icon{
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
header .header-right .header-search .call-icon img{
    width: 100%;
    height: 100%;
}
header .header-right .header-search .header-call{
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    font-weight: bold;
    padding-right: 12px;
    letter-spacing: 2px;
}

header .header-right .nav{
    display: flex;
    font-size: 18px;
    margin-top: 27px;
}
header .header-right .nav li{
    position: relative;
    margin-left: 5px;
}
header .header-right .nav li a{
    color: #ffffff;
    display: block;
    padding: 0 10px;
    padding-bottom: 28px;
    line-height: 18px;
    font-size: 16px;
}
header .header-right .nav li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 100%;
    border-bottom: 3px solid #C9A46D;
    transition: 0.6s all ease;
}
header .header-right .nav li:hover a, header .header-right .nav li.cur a{
    color: #C9A46D;
}
header .header-right .nav li:hover a::before, header .header-right .nav li.cur a::before{
    width: 100%;
    left: 0;
}
header .header-right .nav li:hover ~ li a::before {
    left: 0;
}

@media (min-width: 1920px){
    header .header-container {
        width: 1600px;
    }
    header .header-left .header-logo{
        width: 243px;
    }
    header .header-left .header-title{
        font-size: 22px;
        line-height: 22px;
    }
    header .header-right .nav li{
        margin-left: 30px;
    }
    header .header-right .nav li a{
        padding: 0 12px;
        line-height: 18px;
        font-size: 18px;
        padding-bottom: 28px;
    }
}

/*banner*/
.banner{
    position: relative;
    width: 100%;
}

.banner .bd li img{
    width: 100%;
    height: 100%;
}

.banner .prev {
    position: absolute;
    top: 55%;
    left: 7%;
    cursor: pointer;
    width: 28px;
    height: 48px;
}

.banner .next {
    position: absolute;
    top: 55%;
    right: 7%;
    cursor: pointer;
    width: 28px;
    height: 48px;
}

/*5大设计*/
.cad{
    background: url("../img/cad-bg.jpg") no-repeat;
    background-size: auto;
    background-position: center;
    height: 706px;
}
.cad .cad-list{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    width: 740px;
}
.cad .cad-list>a,.cad-list>div{
    width:370px ;
    height: 283px;
}

.cad .cad-item{
    width: 370px;
    height: 283px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 60px;
    justify-content: center;
    transition: all 0.6s;
    z-index: 9;
}

.cad .cad-item-title{
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 1px;
    color: #333333;
    font-family: Microsoft YaHei;
}
.cad .cad-item-line{
    width: 30px;
    height: 1px;
    background: #C9A46D;
    margin:20px 0;
}
.cad .cad-item-desc{
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1px;
    color: #666666;
    font-family: Microsoft YaHei;
}

.cad .cad-btn button{
    width: 168px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #C9A46D;
    color: #ffffff;
    font-size: 16px;
    font-family: Microsoft YaHei;
}

.cad .cad-item-bg{
    width: 370px;
    height: 283px;
    position: absolute;
    top: 283px;
    left: 0;
    z-index: 5;
    transition: top 0.6s;
}
.cad .cad-item-bg>img{
    width: 100%;
    height: 100%;
}
.cad .cad-item-box{
    position: relative;
    overflow: hidden;
    /*background: url("img/mz-bg.png");*/
}
.cad .active-back{
    top : 0px;
}
.cad .cad-item-box a.active-color p{
    color: #ffffff;
}

.cad .cad-item-icon{
    transition: all 0.6s;
}
.cad .cad-item-box:nth-child(1) .cad-item-icon{
    background: url("../img/cad-1.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 36px;
}
.cad .cad-item-box:nth-child(1) .cad-item-icon.icon-active{
    background: url("../img/cad-a1.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 36px;
}

.cad .cad-item-box:nth-child(2) .cad-item-icon{
    background: url("../img/cad-2.png") no-repeat center;
    background-size: 100% 100%;
    width: 39px;
    height: 35px;
}
.cad .cad-item-box:nth-child(2) .cad-item-icon.icon-active{
    background: url("../img/cad-a2.png") no-repeat center;
    background-size: 100% 100%;
    width: 39px;
    height: 35px;
}

.cad .cad-item-box:nth-child(3) .cad-item-icon{
    background: url("../img/cad-3.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 36px;
}
.cad .cad-item-box:nth-child(3) .cad-item-icon.icon-active{
    background: url("../img/cad-a3.png") no-repeat center;
    background-size: 100% 100%;
    width: 40px;
    height: 36px;
}
.cad .cad-item-box:nth-child(4) .cad-item-icon{
    background: url("../img/cad-4.png") no-repeat center;
    background-size: 100% 100%;
    width: 35px;
    height: 36px;
}
.cad .cad-item-box:nth-child(4) .cad-item-icon.icon-active{
    background: url("../img/cad-a4.png") no-repeat center;
    background-size: 100% 100%;
    width: 35px;
    height: 36px;
}
.cad .cad-box{
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 100px;
}
.cad .cad-left{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cad .cad-left-title{
    font-weight: bold;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: 1px;
    font-family: Microsoft YaHei;
    color: #333333;
}
.cad .cad-left-desc{
    font-size: 24px;
    color: #666666;
    letter-spacing: 1px;
    line-height: 24px;
    margin-top: 20px;
    font-family: Microsoft YaHei;
}
.cad .cad-tel{
    background: url("../img/cad-call.png") no-repeat left;
    background-size:32px 32px;
    margin: 80px 0 40px 0;
    padding-left: 42px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    height: 32px;
    line-height: 32px;
}
.cad .cad-line-left{
    width: 1px;
    height: 515px;
    background: #C9C9C9;
    right: 740px;
    position: absolute;
}
.cad .cad-line-right{
    width: 1px;
    height: 515px;
    background: #C9A46D;
    right: 370px;
    position: absolute;
}

/*全屋整配*/
.classify {
    padding-top: 100px;
    margin-bottom: 100px;
}
.classify .title h2 {
    font-size: 38px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    line-height: 38px;
    text-align: center;
}
.classify .title h3 {
    font-size: 26px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    text-align: center;
    margin: 20px 0px 70px 0px;
}
.classify .list {
    position: relative;
}
.classify .list ul {
    display: flex;
    justify-content: center;
}
.classify .list ul a {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 22px;
    margin-right: 72px;
}
.classify .list ul a li {
    line-height: 18px;
    font-size: 18px;
    font-family: Microsoft YaHei;
    color: #333333;
}
.classify .list ul a:last-child li {
    margin-right: 0;
}
.classify .list ul a.on li {
    color: #c9a46d;
}
.classify .list ul a.on {
    border-bottom: 4px solid #c9a46d;
}
.classify .list .cut {
    width: 100%;
    height: 2px;
    background: #d9d9d9;
}
.classify .list .wapper {
    display: flex;
    margin-top: 38px;
}
.classify .list .wapper .left {
    width: 698px;
    height: 478px;
    position: relative;
}
.classify .list .wapper .left img {
    width: 100%;
    height: 100%;
}
.classify .list .wapper .left .img-name {
    position: absolute;
    left: 30px;
    bottom: 20px;
    flex-wrap: wrap;
    width: 129px;
    height: 73px;
    line-height: 73px;
    text-align: center;
    background: #C9A46D;
    opacity: 0.9;
}
.classify .list .wapper .left .img-name .img-name-title {
    font-size: 24px;
    line-height: 24px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    margin-top: 15px;
}
.classify .list .wapper .left .img-name .img-name-subtitle {
    margin-top: 5px;
    font-size: 14px;
    line-height: 14px;
    font-family: Microsoft YaHei;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.classify .list .wapper .right {
    width: 502px;
}
.classify .list .wapper .right .top {
    padding: 59px 0px 0px 73px;
    width: 502px;
    height: 302px;
    background: #f2f2f2;
}
.classify .list .wapper .right .top p:nth-of-type(1) {
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    line-height: 25px;
}
.classify .list .wapper .right .top .br {
    width: 332px;
    height: 1px;
    background: #bfbfbf;
    margin: 23px 0px 27px 0px;
}
.classify .list .wapper .right .top p:nth-of-type(2) {
    width: 336px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    text-align: justify;
    color: #666666;
    line-height: 25px;
}
.classify .list .wapper .right .bottom {
    width: 502px;
    height: 176px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.classify .list .wapper .right .bottom .img-one {
    width: 235px;
    height: 160px;
}
.classify .list .wapper .right .bottom .img-one img {
    width: 100%;
    height: 100%;
}
.classify .list .wapper .right .bottom .img-two {
    width: 235px;
    height: 160px;
    margin-left: 16px;
}
.classify .list .wapper .right .bottom .img-two img {
    width: 100%;
    height: 100%;
}

.classify .list .pagebtn {
    position: absolute;
    left: 0;
    right: 0;
    top: 300px;
    display: flex;
    justify-content: space-between;
}

.classify .list .pagebtn .btn-prev {
    width: 35px;
    height: 60px;
    margin-right: 10px;
    cursor: pointer;
}

.classify .list .pagebtn .btn-prev img {
    width: 100%;
    height: 100%;
}

.classify .list .pagebtn .btn-next {
    width: 35px;
    height: 60px;
    cursor: pointer;
}

.classify .list .pagebtn .btn-next img {
    width: 100%;
    height: 100%;
}

/*案例*/
.case{
    background: url("../img/case-bg.jpg") no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 100px 0;
}
.case-top{
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.case-top-left{
    display: flex;
    flex-direction: column;
    color: #FFFFFF;

}
.case-top-title{
    font-weight:bold ;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
.case-top-title>span{
    color: #C9A46D;
}
.case-top-desc{
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 2px;
}
.case-more{
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1px;
}

.case .swiper-container {
    width: 100%;
    margin-top: 130px ;
}
.swiper-wrapper .swiper-slide{
    width: 1200px!important;
    margin: 0 50px;
}
.swiper-box{
    display: flex;
}
.swiper1{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}
.swiper2{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}
.swiper3{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}
.swiper4{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}
.swiper5{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}
.swiper6{
    background: url("../img/case-1.jpg") no-repeat;
    width: 758px;
    height: 554px;
}

.swiper-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.swiper-right-top{
    width: 100%;
    height: 244px;
    background: #404040;
    border-radius: 0px 117px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.swiper-title{
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #FFFFFF;
}
.swiper-desc{
    display: flex;
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.swiper-type{
    margin-right: 40px;
}
.swiper-right-bottom{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 45px 45px 80px;
    background: #FFFFFF;
    flex: 1;
}
.swiper-right-last-all{
    display: flex;
    justify-content: space-between;
}
.swiper-right-last-all .connect-designer-btn{
    display: inline-block;
    width: 140px;
    height: 40px;
    background-color: #C9A46D;
    color: white;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    font-size: 16px;
}
.swiper-right-last-all .swiper-right-last{
    width: 57px;
    height: 45px;
}
.swiper-right-last-all .swiper-right-last>img{
    width: 100%;
    height: 100%;
}

.swiper-header-box{
    display: flex;
}
.swiper-header-img{
    width: 103px;
    height: 103px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -52px;
}
.swiper-header-img>img{
    width: 100%;
    height: 100%;
}
.swiper-header-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 5px;
    margin-left: 15px;
}
.swiper-header-name{
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: 3px;
}
.swiper-header-post{
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    letter-spacing: 1px;
}
.swiper-img-desc{
    width: 503px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 22px 22px;
    letter-spacing: 2px;
}
.swiper-img-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.swiper-right-desc{
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    text-align: justify;
}
/*.swiper-btn{*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    display: flex;*/
/*    align-self: flex-end;*/
/*    color: #ffffff;*/
/*    font-size: 25px;*/
/*    !*margin-right: 15px;*!*/
/*    !*margin-top: auto;*!*/
/*    !*margin-bottom: 15px;*!*/
/*    margin: auto 15px 15px 0;*/
/*}*/
.swiper-btn-prev, .swiper-btn-next{
    width: 48px;
    height: 48px;
    cursor: pointer;
}
.swiper-btn-prev>img, .swiper-btn-next>img{
    width: 100%;
    height: 100%;
}
.swiper-btn-prev{
    margin-right: 10px;
}

/*免费设计*/
.design {
    height: 816px;
    background: url("../img/design-bg.jpg") no-repeat;
    background-size: auto;
    background-position: center;
    padding-top: 95px;
    overflow: hidden;
}
.design .subtitle {
    float: right;
}
.design .subtitle .header {
    width: 355px;
}
.design .subtitle .header img {
    width: 100%;
    height: 100%;
}
.design .subtitle .br {
    width: 53px;
    height: 4px;
    background: #ffffff;
    margin: 25px 0px 50px 0px;
}
.design .subtitle p:nth-of-type(1) {
    font-size: 38px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #ffffff;
    line-height: 38px;
    margin-bottom: 21px;
}
.design .subtitle .text {
    width: 272px;
    height: 49px;
}
.design .img {
    display: flex;
    margin-top: 86px;
    float: right;
}
.design .img .item {
    width: 210px;
    height: 218px;
    position: relative;
    margin-right: 15px;
}
.design .img .item img {
    width: 100%;
    height: 100%;
}
.design .img .item .introduce {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.design .img .item .introduce p:nth-of-type(1) {
    font-size: 20px;
    font-family: Microsoft YaHei;
    color: #ffffff;
    line-height: 20px;
    letter-spacing: 10px;
}
.design .img .item .introduce p:nth-of-type(2) {
    font-size: 14px;
    font-family: Microsoft YaHei;
    color: #ffffff;
    line-height: 14px;
    margin-top: 10px;
}
.design .btn {
    display: block;
    width: 210px;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 620px;
    right: 285px;
    z-index: 1;
}

/*我们的优势*/
@font-face {
    font-family: 'inside-title-en';
    font-display: swap;
    src: url('./inside-title-en.ttf');
}
.serve {
    padding-top: 100px;
    height: 1071px;
    background: url("../img/serve-bg.jpg") no-repeat;
    background-size: auto;
    background-position: center;
}
.serve .subtitle h2 {
    font-size: 78px;
    font-weight: bold;
    color: #d9d9d9;
    line-height: 78px;
    text-align: center;
    font-family: 'inside-title-en';
    letter-spacing: 2px;
}
.serve .subtitle .text {
    margin: -40px 0px 72px 0px;
    text-align: center;
    font-family: Microsoft YaHei;
}
.serve .subtitle .text span {
    font-size: 38px;
    font-weight: bold;
    color: #333333;
    line-height: 38px;
}
.serve .subtitle .text .as {
    color: #c9a46d;
}
.serve .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.serve .list .item {
    width: 590px;
    height: 294px;
    background: #ffffff;
    padding: 44px 0px 0px 46px;
    position: relative;
}
.serve .list .item .msg .header {
    width: 57px;
    height: 43px;
}
.serve .list .item .msg .header img {
    width: 100%;
    height: 100%;
    margin-top: 15px;
}
.serve .list .item .msg p:nth-of-type(1) {
    width: 190px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    line-height: 32px;
}
.serve .list .item .msg .br {
    width: 20px;
    height: 2px;
    background: #333333;
    margin: 14px 0px 21px 0px;
}
.serve .list .item .msg p:nth-of-type(2) {
    width: 235px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #666666;
    line-height: 28px;
}
.serve .list .item .img {
    width: 265px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 265px;
}
.serve .list .item .img img {
    width: 100%;
    height: 100%;
}
.serve .list .item-it {
    width: 590px;
    height: 294px;
    background: #ffffff;
    padding: 44px 0px 0px 314px;
    position: relative;
}
.serve .list .item-it .msg .header {
    width: 57px;
    height: 43px;
}
.serve .list .item-it .msg .header img {
    width: 100%;
    height: 100%;
    margin-top: 15px;
}
.serve .list .item-it .msg p:nth-of-type(1) {
    width: 190px;
    height: 54px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    line-height: 32px;
}
.serve .list .item-it .msg .br {
    width: 20px;
    height: 2px;
    background: #333333;
    margin: 14px 0px 21px 0px;
}
.serve .list .item-it .msg p:nth-of-type(2) {
    width: 235px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #666666;
    line-height: 28px;
    text-align: justify;
}
.serve .list .item-it .img {
    width: 265px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 265px;
}
.serve .list .item-it .img img {
    width: 100%;
    height: 100%;
}
.serve .list .botm {
    margin-top: 20px;
}
.serve .list .botm .img {
    top: 0;
}
.serve .btn {
    display: block;
    width: 283px;
    height: 70px;
    background: #c9a46d;
    font-size: 20px;
    font-family: Microsoft YaHei;
    color: #ffffff;
    line-height: 70px;
    text-align: center;
    margin: 60px auto 0px auto;
}

/*关于我们*/
.about{
    background: url("../img/about-bg.jpg") no-repeat;
    padding-top: 467px;
    background-size: 100% 100%;
}
.about .about-line{
    margin: 0 50px 0 33px;
    width: 1px;
    height: 130px;
    background: #D3D3D3;
    box-shadow: 0px 7px 10px 0px rgba(202, 202, 202, 0.25);
}
.about .about-box{
    background: black;
    opacity: 0.79;
    display: flex;
    align-items: center;
    padding: 40px 70px;
    transform: translateY(105px);
}
.about .about-left{
    background: url('../img/about-eng.png') no-repeat center;
    background-size: 100% 100%;
    width: 290px;
    height: 58px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.about .about-left-title{
    font-size: 38px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 3px;
    color: #ffffff;
    font-family: Microsoft YaHei;
}
.about .about-left-title>span{
    color: #C9A46D;
}
.about .about-right {
    display: flex;
    flex-direction: column;
}
.about .about-desc{
    color: #ffffff;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 这里是超出几行省略 */
    overflow: hidden;
    line-height: 30px;
    width: 671px;
    letter-spacing: 2px;
    text-align: justify;
    font-size: 16px;
}
.about .about-more{
    align-self: flex-end;
    margin-top: 25px;
    font-weight: bold;
    color: #C9A46D;
    background: url("../img/more-gold.png") no-repeat center right;
    width: 150px;
    font-size: 16px;
    letter-spacing: 1px;
}

/*新闻资讯*/
.new{
    margin-top:205px;
}
.new .new-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.new .new-top-left{
    background: url('../img/news-eng.png') no-repeat right top ;
    background-size: 245px 100%;
    width: 297px;
    height: 58px;
    display: flex;
    align-items: flex-end;
}
.new .new-title{
    font-size: 38px;
    line-height: 38px;
    font-weight: bold;
    letter-spacing: 3px;
}
.new .new-title>span{
    color: #C9A46D;
}
.new .new-top-right{
    display: flex;
}
.new .new-top-right li{
    font-size: 20px;
    letter-spacing: 1px;
    padding:0 27px;
    border-right: 1px solid #C9A46D;
}
.new .new-bottom{
    margin-top: 35px;
}
.new .new-bottom-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.new .new-item{
    display: flex;
    margin-top: 25px;
}
.new .new-item-img{
    width: 275px;
    height: 200px;
}
.new .new-item-img>img{
    width: 100%;
    height: 100%;
}
.new .new-item-right{
    width: 313px;
    height: 200px;
    padding: 40px 35px 30px 40px;
    background-color: #ffffff;
    box-shadow: #d4d2d2 0px 0px 10px;
}
.new .new-item-title{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333333;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.new .new-item-time{
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    margin-top: 15px;
    margin-bottom: 10px;
}
.new .new-item-desc{
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这里是超出几行省略 */
    overflow: hidden;
    color: #666666;
    line-height: 20px;
    font-size: 16px;
    height: 40px;
    text-align: justify;
}
.new .new-item-more{
    margin-top: 19px;
    font-size: 14px;
    line-height: 14px;
    color: #666666;
}
.new .new-btn{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 100px;
}
.new .new-btn button{
    width: 180px;
    height: 50px;
    background: #C9A46D;
    border-radius: 4px;
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 16px;
}
.new .new-green a{
    color: #C9A46D;
}

/*懂生活懂设计立即预约*/
.order{
    background: url("../img/order-bg.jpg") no-repeat center;

    padding-top:382px ;
    padding-bottom: 135px;
}
.order .container{
    display: flex;
    align-items: center;
}
.order-desc{
    font-size: 70px;
    letter-spacing: 20px;
    color: #ffffff;
}
.order-eng{
    margin: 10px 0 50px 0;
    color: #666666;
    letter-spacing: 20px;
}
.order-btn button{
    width: 180px;
    height: 50px;
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 2px;
    border-radius: 4px;
    background: none;
    border: 1px solid #ffffff;
}

/*最下面图片*/
.popout{
    background: url('../img/done-bg.png') no-repeat center;
    height: 245px;
    width: 100%;
    transition: 0.6s;
    position: fixed;
    bottom: 0;
    z-index: 100;
    display: none;
}
.popout>.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    height: 100%;
}
.popout-top-btn{
    font-size: 16px;
    line-height: 16px;
    color: #C9A46D;
    letter-spacing: 2px;
    position: relative;
    top: 135%;
    left: 47.5%;
}
.popout-top-box{
    font-size: 45px;
    line-height: 45px;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 6px;
    position: relative;
    top: 330%;
    left: 12%;
    display: flex;
    align-items: center;
}

.popout-img{
    position: absolute;
    right: -40px;
    margin-left: 15px;
    width: 28px;
    height: 34px;
    animation:arrows 1s ease-in-out infinite;
    -webkit-animation:arrows 1s ease-in-out infinite; /*Safari and Chrome*/
    animation-direction: alternate;
}
@keyframes arrows{
    from{
        top: 40%;
    }
    to{
        top: -40%;
    }

}
.popout-img>img{
    width: 100%;
    height: 100%;
}
.popout-bottom{
    height: 0;
    position: absolute;
    top: 40%;
    display: none;
}
.pop-bottom-box{
    display: flex;
}
.popout-right{
    width: 401px;
    height: 390px;
    background: #ffffff;
}

/*改变背景*/
.active-popout{
    background: url('../img/done-ac-bg.png') no-repeat center;
    height: 661px;
    width: 100%;
    transition: 0.6s;
    position: fixed;
    bottom: 0;
    z-index: 100;
}
.popout-top{
    position: relative;
    width: 100%;
    display: flex;
}

/*分页器样式*/
.swiper-pagination-bullet{
    width: 135px!important;
    height: 35px!important;
    background: rgba(255, 255, 255, 0)!important;
    border: 1px solid #C9C9C9!important;
    border-radius: 18px!important;
    font-size: 18px;
    color: #ffffff;
    opacity:1!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
}
.swiper-pagination-bullet-active{
    background: #C9A46D!important;
    border: 1px solid #C9A46D!important;
}
.swiper-pagination{
    display: flex;
    justify-content: space-around;
    top: 40px;
    flex-wrap: wrap;
}
.swiper-wrapper{
    position: relative;
}
.swiper-btn{
    position: absolute;
    bottom: 4%;
    left: 52%;
    z-index: 99;
    display: flex;
}
.swiper-page{
    position: relative;
}
.case-more{
    width: 105px;
    background: url("../img/more-white.png") no-repeat center right;
}