html,body{height: 100%;line-height: 2.2rem;}

html, body, a, p, span, ul, img {
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    font-family: "Microsoft Yahei", "Arial";
    color: #666;
    
}

*, ::after, ::before {
    box-sizing: border-box;
}
/*  */
.left-to-right,
.right-to-left,
.top-to-bottom,
.bottom-to-top {
    opacity: 0;
    transition: all 0.8s ease;
}

.left-to-right {
    transform: translateX(-50px);
}

.right-to-left {
    transform: translateX(50px);
}

.top-to-bottom {
    transform: translateY(-50px);
}

.bottom-to-top {
    transform: translateY(50px);
}
.left-to-right.show {
    opacity: 1;
    transform: translateX(0) !important;
}

.right-to-left.show {
    opacity: 1;
    transform: translateX(0) !important;
}

.top-to-bottom.show {
    opacity: 1;
    transform: translateY(0) !important;
}

.bottom-to-top.show {
    opacity: 1;
    transform: translateY(0) !important;
}
.flex-center{display: flex;justify-content: center;}
.about .item1{width: 50%;}
.about .tip{padding: 80px 0;gap: 100px;text-align: center;color: #E70011;}
.about .tip small{margin:0;font-size: 16px;color: #E70011;}
.about .tip p{color: #E70011;text-indent: 0;text-align: center;margin-top: 0;}
.about p{text-indent: 2rem;margin: 13px 0;}
.about-bottom{text-align: center;font-size: 32px;font-weight:600;margin-top:100px;}
.cmpname{font-size: 36px;font-weight: 600;color: #000;}
/* ---------- */
.header{position: fixed; width: 100%;top: 0;z-index: 999;}
.box{display: flex;justify-content: space-between;}
.header .menu ul{display: flex;justify-content:end;color: #fff;height: 70px;line-height: 70px;}
.top-banner{height: 100%;}

.top-banner .item{position: relative;}
.top-banner .item,.swiper,.swiper-wrapper{width: 100%;height: 100%;}
.ny-top-banner{height: 350px;}
.mainbox{width: 1380px;margin: 0 auto;}
.contentBox,.about{padding: 50px;font-size: 16px;}
.flex-between{display: flex;justify-content: space-between;}
h1{color: #E70011;font-size: 42px;font-weight: bold;line-height: 1.2;}
h1 small{color: #DADADB;font-size: 20px;font-weight: 100;margin-left: 15px;}
a {
    text-decoration: none;
    outline: none;
}
a:hover{color:#D81F27;}
.gap10{gap:10px}
.gap25{gap:25px}
.gap45{gap:45px}
.flex{display:flex;}
.title{margin: 35px 0;}
.more a {
    position: relative;
    display: block;
    font-size: 16px;
    padding-left: 30px;
    width: 172px;
    height: 50px;
    line-height: 50px;
    background: #E6E9EE;
    border-radius: 25px;
}
/* 首页banner */
.top-banner .item .banner-word {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
    opacity: 0;
    transition: ease 1s;
}

.top-banner .item .banner-word.word1 {
    bottom: 440px;
    bottom: 50%;
    left: 0;
}

.top-banner .item.swiper-slide-active .banner-word.word1 {
    left: 50%;
    opacity: 1;
}

.top-banner .item.swiper-slide-active .banner-word.word2 {
    bottom: 253px;
    opacity: 1;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
  }
/*  */
.font16{font-size: 16px !important;}
.topnew{color: #D81F27;font-size: 30px !important;}
.topnew:hover{text-decoration: underline;}
/* .news-box1 .newsimg-box{width: 640px;height: 375px;}
.news-box1 .newslist{width: calc(100% - 680px)} */
.news-box1,.news-box1 a{font-size: 18px;}
.news-box1 .n{width: 50%;height: 375px;}
.news-box1 .newslist .title{text-align: center;color: #D81F27;font-size: 30px;font-weight: 600;margin: 0;height: 70px;margin-bottom: 15px;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.news-box1 .item{display: flex;justify-content: space-between;}
.news-box1 .item a{width: calc(100% - 130px);white-space:nowrap;text-overflow: ellipsis;overflow: hidden;}
.news-box1 .item a:hover{text-decoration: underline;}
.news-box1 .des{font-size: 16px;color: darkgray;line-height: 1.8rem;border-bottom: 1px dotted;padding-bottom: 15px;margin-bottom: 15px;}
.news-box1 .item span{width: 120px;text-align: right;color: darkgray;font-size: 16px;}

.fade-in {
    animation: fadeIn 0.3s ease forwards; 
}

@keyframes fadeIn {
    from {
        opacity: 0; /* 初始透明度为0，隐藏状态 */
    }
    to {
        opacity: 1; /* 最终透明度为1，完全显示状态 */
    }
}
.fade-in-down {
    animation: fadeInDown 0.3s ease forwards; /* 定义动画名称为fadeInDown，持续时间0.3秒，缓动函数为ease，forwards表示动画结束后保持最后一帧的状态 */
}

@keyframes fadeInDown {
    from {
        opacity: 0; /* 初始透明度为0，隐藏状态 */
        transform: translateY(-100%); /* 初始沿Y轴向上偏移100%，使其在顶部不可见 */
    }
    to {
        opacity: 1; /* 最终透明度为1，完全显示状态 */
        transform: translateY(0); /* 回到原始位置，沿Y轴向下展开到正常位置 */
    }
}

.center{text-align: center;}
.more a{position:relative;display:block;font-size:16px;padding-left:30px;width:172px;height:50px;line-height:50px;background:#E6E9EE;border-radius:25px;}
.more a:before{position:absolute;content:"";width:30px;height:30px;right:10px;top:0;bottom:0;margin:auto;background:url("../images/aboutmore.png") no-repeat 55% 50%;background-color:#D0D3D6;border-radius:50%;background-size:30%;-webkit-transition:.5s ease-in-out;-o-transition:.5s ease-in-out;transition:.5s ease-in-out;}
.more a:hover:before{transform:translateX(-10px);-ms-transform:translateX(-10px);-moz-transform:translateX(-10px);-webkit-transform:translateX(-10px);-o-transform:translateX(-10px);-webkit-transition:.5s ease-in-out;-o-transition:.5s ease-in-out;transition:.5s ease-in-out;background-color:#A8151B;}
.more a:hover{background:#D81F27;color:#fff;}
.clear{clear: both;}
.project{padding:15px 0 50px 0;}
.project-list{height: 500px;}
.project-list .item{float: inline-start;overflow: hidden;position: relative;}
.project-list .item:nth-child(1){width: calc(100% - 395px);margin-right: 10px;height: 500px;}
.project-list .item:nth-child(2){margin-bottom: 10px;}
.project-list .item:nth-child(2),.project-list .item:nth-child(3){width: 385px;height: 245px;}
.project-list .img{width: 100%;height: 100%;}
.project-list img,.news-box1 .newsimg-box img{width: 100%;height: 100%;object-position: center;object-fit: cover;}
.project-list img,.news-box1.newsimg-box img,.news-box2 .item .img img {
    transition: transform 0.3s ease; /* 添加过渡效果，让图片变化更平滑，这里设置过渡时间为0.3秒，缓动函数为ease */
}
.arrbar .left:hover,.arrbar .right:hover{background-color: #D81F27;}

.project-list img:hover,.news-box1.newsimg-box img:hover,.news-box2 .item .img img:hover {
    transform: scale(1.1); /* 当鼠标悬停时，将图片放大到原来的1.1倍，你可以根据需要调整这个放大倍数 */
}
.project-list .item .text{position: absolute;bottom: 0;width: 100%;color: #FFF;height: 50px;line-height: 50px;text-align: center;background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.project-list .item h3{font-weight: 400;}
.project-list .item:nth-child(1) .text{height: 70px;line-height: 70px;font-size: 20px;}
.arrbar{padding-top: 50px;}
.arrbar .center{display: flex;justify-content: center;gap:30px}
.arrbar .left,.arrbar .right{width: 64px;height:64px;background-color: #fff;line-height: 64px;cursor: pointer;}
.arrbar img{width: 23px;height: 23px;}

.news-box2{display: flex;justify-content: space-between;gap:20px}
.news-box2 .item{width: 33.33%;overflow: hidden;background-color: #F8F8F8;transition:.3s;}
.news-box2 .item:hover{background-color:#E70011;transform:translateY(-4px);color: #ffffff;box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);}
.news-box2 .item:hover a{color: #fff;}
.news-box2 .item .img{height: 250px;}
.news-box2 .item .img img{width: 100%;height: 100%;object-position: center;object-fit: cover;}
.news-box2 .item .content{padding:30px 22px;}
.news-box2 .item .title{margin: 0;font-size: 20px;font-weight: 600;height: 52px;}
.news-box2 .item .time{margin: 10px 0;color: #999;}
.news-box2 .item .des{height: 80px;overflow: hidden;line-height: 26px;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}

.bottom-line{height: 60px;}

footer .bottom{height: 70px;line-height: 70px;color: #F9C4C6;}
footer .bottom span{color: #F9C4C6;}
footer .bottom .ba{gap:15px}

.bottomNav .nav,.menu .nav{margin: 0 10px;line-height: 30px;}
.bottomNav .nav .parent,.menu .nav .parent{font-weight: 600;font-size: 16px;}
.bottomNav .nav li,.menu .nav li{display: inline-block;margin-left: 60px;}
.bottomNav .child-nav li,.menu .child-nav li{display:table;margin-left: 0;font-weight: 400;font-size: 14px;}
.ercode .item{transition: transform 100ms ease; cursor: pointer;}
.ercode .t{background-color: #F02E2E;color: #fff;text-align: center;font-size: 12px;line-height: 20px;}



.info-title{border-bottom:1px solid #e2e2e2;    display: block;
    margin-bottom: 12px;padding: 30px 0;text-align: center;
    line-height: 1.2;
    color: #000000;
    font-size: 1.56vw;
    font-weight: normal;}
.info-content{font-size: 16px;padding: 10px 30px 50px 10px;}
.info-content img{max-width: 100%;}
/* .infobox .left{width: calc(100% - 195px) !important;} */
.infobox .right{width: 195px;border-left: 1px solid #e2e2e2;padding: 30px 0 50px 50px;color: #a5a5a5;font-size: 18px;}
.infobox .right .year{display: flex;align-items: center;justify-content: center;}
.infobox .right .line{width: 26px;height: 1px;background: #a5a5a5;}
.infobox .right .date{font-size: 30px;color: #000;text-align: center;}
.infobox .right .day{text-align: center;}
.infobox .right span{margin: 0 5px;color:  #a5a5a5;}
.posites{padding: 10px;}
.posites b {
    margin: 0 3px;
}
.posites span, .posites a, .posites b {
    display: inline-block;
    color: #999999;
    font-size: 14px;
    font-weight: normal;
}
.vbox-t{margin-top: 50px;text-align: center;}
.vbox-b{background-color: #f5f5f5;border-radius: 1rem;padding: 3px 10px;text-align: center;}
.shareBox{text-align: center;margin-top: 50px;font-size: 14px;}
.to-top-box {
    width: 60px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: -54px;
    right: 50px;
    background: #D81F27;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 10px;
    z-index: 10;
    flex-wrap: wrap;
    transition: all 0.4s linear;
    cursor: pointer;
}
.to-top-box p{color: #fff !important;}
.to-top-box.fixed {
    bottom: 50px;
}
.header{height: 70px;line-height: 70px;}
.header .pa,.bottomNav .child-nav a{position: relative; transition: color 0.3s ease;}
.header .nav .pa:hover {
    color: red !important; /* 鼠标悬停时文字变为红色 */
}
/* .header .nav .pa:hover +.child-nav {
    display: block !important;
} 
*/

.header .pa::after,.bottomNav .child-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* 初始宽度为0，后面通过动画来增加宽度 */
    height: 4px; /* 边框高度，可以根据需求调整 */
    background-color: red; /* 边框颜色设置为红色，和文字悬停变色一致，可按需修改 */
    transition: width 0.3s ease; /* 边框宽度变化添加过渡效果，时间0.3秒，缓动函数为ease */
}
.bottomNav .child-nav a::after{height: 2px;background-color: #D81F27;bottom:-2px}

.header .pa:hover::after,.bottomNav .child-nav a:hover::after {
    width: 100%; /* 鼠标悬停时，边框宽度变为100%，实现从左到右出现的效果 */
}

.header .parent{font-weight: 400 !important;}
.header .child-nav{display: none !important;position: absolute;background-color:rgba(255,255,255,.9);left: 0;width: 100%;height: 50px;line-height: 50px;border-top: 1px solid rgba(0, 0, 0, 0.1);border-bottom: 1px solid rgba(0, 0, 0, 0.1);gap: 65px;}

.header.fixed,.header:hover{background-color: #fff;box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);}
.header:hover .pa,.header:hover .svg svg{color: #000 !important;}
.extInfo{border-top: 1px solid rgba(0, 0, 0, .1);padding-top: 15px;}
.extInfo li{color:#999999}
.extInfo li a{text-decoration: underline;}

.header .pa{color: #fff;height: 70px;line-height: 70px;display: block;}
/* ny */
.listbox .item{margin: 40px 20px;box-shadow: 0 0 24px rgba(193, 200, 214, 0.22);padding: 30px;transition: transform 0.3s ease;}
.listbox .item:hover{box-shadow: 0 14px 28px rgba(193, 200, 214, 1);transform: translateY(-6px);}
.listbox .item a{display:flex}
.listbox .item .date {
    width: 180px;
    text-align: center;
    border-right: 1px solid #ddd;
    color: #888;
}
.listbox .item .date span {
    font-size: 50px;
    font-family: Arial, Ravvi, sans-serif;
    color: #333;
    border-bottom: 1px solid #cccccc;
}
.listbox .item .con{flex: 1;overflow: hidden;padding-left: 40px;}
.listbox .item .d1{font-size: 22px;color: #1f1a17;}
.listbox .item .d2{font-size: 14px;color:#666;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.listbox .item .more {display: flex;gap:8px}
.listbox .item .more span{color: #999;}
.listbox .item .more .jt{transition: transform 0.3s ease;position: relative; }
.listbox .item:hover .jt{transform: translateX(15px);}
.listbox .item:hover .more span{color: #D81F27;} 
.pagination{display: flex;justify-content: center;gap: 20px;}
.pagination li{height: 45px;line-height: 45px;min-width: 45px;text-align: center;border-radius: 28px;color: #949494;font-size: 14px;cursor: pointer;transition: background 0.3s ease;}
.pagination .active,.pagination li:hover{background-color:#D81F27 ;color: #fff;}
.pagination .active span,.pagination li:hover span,.pagination li:hover a{color: #fff;}
.pagination a{display: block;}
.navtab{display: flex;justify-content: center;gap: 50px;height: 60px;border-bottom: 1px solid rgba(193, 200, 214, .5);line-height: 60px;}
.navtab .act{border-bottom: 3px solid #D81F27;color: #D81F27;}
.navtab div:hover{color: #D81F27;}

.navtab div {
    position: relative; /* 设置相对定位，方便后续给li元素添加伪元素作为底部边框 */
    /* padding-bottom: 5px; 预留一点空间，避免边框出现时撑开布局 */
    /* overflow: hidden; 隐藏超出元素范围的内容，防止动画过程中边框显示异常 */
}

.navtab div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* 初始位置在元素底部中间，通过left: 50%和transform: translateX(-50%)来居中对齐 */
    width: 0; /* 初始宽度为0，即不可见 */
    height: 2px; /* 设置边框高度，可根据需要调整 */
    background-color: #D81F27; /* 设置边框颜色，这里以黑色为例 */
    transition: width 0.3s ease; /* 添加过渡效果，让宽度变化更平滑，动画时间0.3秒，缓动函数为ease */
    transform: translateX(-50%); /* 沿X轴向左偏移自身宽度的50%，确保初始位置在中间 */
}

.navtab div:not(.act):hover::before {
    width: 100%; /* 当鼠标悬停时，宽度变为100%，从中间往两边展开 */
}
/* 联系我们 */
.contact-us h2,.about h2{color: #333;font-size: 30px;
    text-align: center;
    position: relative;
    padding: 0;
    padding-bottom: 8px;
    display: inline-block;
    margin: 0;
    float: none !important;
    max-width: 80%;}
.contact-us h2:after,.about h2:after {
    content: '';
    width: 30%;
    height: 2px;
    background-color: #c7000b;
    position: absolute;
    left: 50%;
    margin-left: -15%;
    bottom: 0;
    min-width: 35px;
}
/*  */
.tpbox{display: flex;justify-content: space-between;}
.tpbox .i1{width: 55%;}
.tpbox .i2{width: 38%;display: flex;align-items: end;}
.tpbox img{width: 100%;}
.whwsiper{position: absolute !important;top: 180px;width: 500px;left: 50%;transform: translateX(-50%);height: 300px;border-radius: 6px;overflow: hidden;box-shadow: 0 0 24px rgba(193, 200, 214, 0.22);transition: transform 0.3s ease;}
.whwsiper:hover{box-shadow: 0 0 24px rgba(193, 200, 214, 1);}
.whwsiper .swiper-slide{background-color: #fff;border-radius: 5px;width: 500px;padding: 20px 30px;}
.whwsiper .swiper-slide p{text-indent: 0;}
.whwsiper h3 {
    font-size: 24px;
    font-weight: bold;
    color: #D81F27;
    padding-bottom: 20px;
    position: relative;
}
.whwsiper h3:after {
    content: '';
    width: 22px;
    height: 2px;
    background: #D81F27;
    position: absolute;
    bottom: 0;
    left: 0;
}
/* 项目中心 */
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        -ms-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.index_01{padding: 115px 0 100px 0;/*overflow: hidden; */ display: table;width: 100%;}

.index_01 .pub_title{margin-bottom: 90px;}

.index_01 ul{margin: 0 -10px;}

.index_01 ul li{float: left;width:25%;*margin-left: -1px;}

.index_01 ul li dl{padding: 0 10px;color: #6b6b6f;}

.index_01 ul li a{color: #6b6b6f;}

.index_01 ul li dd{
    border-bottom: 1px solid #6b6b6f;border-top: 1px solid #6b6b6f;overflow: hidden;padding: 6px 0;
    transition:all 0.6s;-webkit-transition:all 0.6s;-moz-transition:all 0.6s;-o-transition:all 0.6s;-ms-transition:all 0.6s;
    opacity:0;filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0;
    -webkit-transform: translateY(50px); -moz-transform: translateY(50px);-o-transform: translateY(50px);-ms-transform: translateY(50px);transform: translateY(50px);

}
.index_01 ul li dd p{/*float: left;width: calc(100% - 70px);*/line-height: 1.7em;height: 3.4em;overflow: hidden;}

.index_01 ul li dd span{font-family: "Arial";float: right;line-height: 60px;}

.index_01 ul li dt{margin-bottom: 50px;position: relative;/*overflow: hidden;*/}

.index_01 ul li dt p{ text-transform: uppercase;}

.index_01 ul li dt p,.index_01 ul li dt h3{white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

.service_p{width:50%; height: 50px; color: #fff; padding: 3px;border: 2px solid #f6f6f7;transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);-o-transform: translate(-50%,-50%); position:absolute; left:50%; top:50%;  z-index: 2; text-align: center;background-color: rgba(0, 0, 0, .2);}

.service_p p{margin-top: 28px;}

.apartment_index .index_01 ul li {
    width: 33.33%;float: left;
}
.index_01 ul li dl {
    padding: 0 10px;
    color: #6b6b6f;
}
.ratio-img, .ratio-img img {
    width: 100%;
}
.tran_scale img {
    -webkit-transition: opacity .4s ease-in, -webkit-transform .6s linear;
    transition: opacity .4s ease-in, transform .6s linear;
}
.tran_scale {
    overflow: hidden;
    display: block;
}
.index_0 a {
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
    }

.index_01 ul dt{overflow: inherit;}

.index_01 ul dt .slew_01{position: absolute;top:0;left: 0;width: 100%;height: 100%;opacity:0;filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0;
transition:all 0.3s;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;-ms-transition:all 0.3s;}
.index_01 ul dt .slew_01 img{width: 100%;height: 100%;}
.index_01 ul dl:hover{position: relative;z-index:9;}

.index_01 ul dl:hover .slew_01,.index_01 ul dl:hover dd{opacity:1;filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity:1;}

.index_01 ul dl:hover img{transform:scale(1.07,1.07); -webkit-transform:scale(1.07,1.07);-moz-:scale(1.07,1.07);-o-transform:scale(1.07,1.07);-ms-transform:scale(1.07,1.07);}

.index_01 ul dl:hover dd,.index_02:hover p,.index_02:hover .pub_more{-webkit-transform: translateY(0); -moz-transform: translateY(0);-o-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);opacity:1;filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity:1;}

.tran_scale:hover img{transform:scale(1.1,1.1); -webkit-transform:scale(1.1,1.1);-moz-:scale(1.1,1.1);-o-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);}

.index_01 ul dl .slew_01 img{transform:scale(1.1,1.1); -webkit-transform:scale(1.1,1.1);-moz-:scale(1.1,1.1);-o-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);}

/*  */

.svg{width: 24px;padding-top: 3px;}
.svg svg{width: 100%;color: #fff;}
.babox{display: flex;gap:20px;margin-top:10px}
.pcShow{display: none;}
.wapShow{display: none;}
.mask{width: 100%;height: 100%;position: fixed;z-index: 999;top: 0;left: 0;background-color: rgba(0, 0, 0, .7);display: none;}
.show{display: block;}
.ny-top-banner{background-size: 100%;background-repeat: no-repeat;background-position: center center;}
.header .logo img{height: 50px;}
@media screen and (max-width: 1380px){
    .mainbox{width: calc(100% - 24px);margin: 0 auto;}
    .info-title{font-size: 30px;}
    .bottomNav .nav li, .menu .nav li {
        margin-left: 30px;
    }
    .bottomNav .child-nav li, .menu .child-nav li{
        margin-left: 0;
    }
}

@media screen and (max-width: 678px){
    .mainbox{width: calc(100% - 24px);}
    .top-banner{height: 370px;}
    .info-title{font-size: 22px;}
    .pcShow{display: block!important;}
    .wapHide{display: none!important;}
    .wapShow{display: block !important;}
    .flex-between{display: block;justify-content: center;}
    .project-list{height: 300px;}
    .project-list .item:nth-child(1){width: 100%;height: 270px;}
    .project-list .item:nth-child(2),.project-list .item:nth-child(3){display: none;}
    .banner-word.word1 img{width: 130%;}
    .top-banner .item.swiper-slide-active .banner-word.word1 {
        left: 40%;
    }
    footer .bottom{height: auto;line-height:28px;}
    .mainbox.bottom.flex-between .flex{display: grid;gap: 0;}
    .ercode{justify-content: center;padding-top: 20px;}
    .babox{justify-content: center;margin-top: 20px;}
    .news-box2{display: grid;grid-template-columns: repeat(2, 1fr);gap:10px}
    .news-box2 .item{width: 100%;}
    .news-box2 .item .content {
        padding: 8px 15px;
    }
    .news-box2 .item .img {
        height: 170px;
    }
    /* .header{background-color: #fff;} */
    .flex-between.title{display:flex;justify-content: space-between;}
    .more a{width: 120px;height: 40px;line-height: 40px;font-size: 14px;padding-left: 18px;}
    h1{font-size: 30px;}
    .to-top-box{right: 15px;}
    .news-box2 .item .title{font-size: 16px;font-weight: 500;height: 90px;line-height: 30px;}
    .project-list h3{font-weight: 400;font-size: 20px;}
    .news-box1 .n{width: calc(100% - 12px);height: 240px;}
    .topnew{font-size: 22px !important;}
    .top-banner .swiper-pagination .item{height: 40px !important;line-height: 40px !important;}
    .top-banner .swiper-pagination-bullet img{width: 120px;}
    .top-rightbar{display: flex;gap:25px;}
    .header .menu{background-color: #fff;position: fixed;height: 100%;left: -100%;width: 60%;transition: all .4s ease-out;opacity: 0;z-index: 9999;}
    .header .menu.act{left: 0;opacity: 1;}
    .header .menu ul{display:inline-grid;}
    .header .pa{color: #000;}
    .header.fixed, .header:hover{background-color: transparent;box-shadow: none;}
    .header:hover .svg svg{color: #fff !important;}
    .ny-top-banner{background-size: cover;}
    .listbox .item .date{width: 80px;}
    .listbox .item .date span{font-size: 26px;}
    .listbox .item .d1{font-size: 16px;line-height: 26px;}
    .listbox .item .con{padding-left: 15px;}
    .listbox .item{margin: 20px 0;padding: 15px 20px 15px 0;}
    .navtab{gap:15px}
    .cmpname{font-size: 24px;}
    .contentBox, .about{padding: 40px 12px;}
    .about .tip { padding: 30px 0;gap: 20px;}
    .about .tip p{font-size: 12px;}
    .pagination{gap:0}
    .apartment_index .index_01 ul li{width: 100%;}
    .apartment_index .index_01 ul li{margin-bottom: 0;}
    .header .logo img{height: 40px;}
}