@charset 'utf-8';
/*css重置*/
*{
    padding:0;
    margin:0;
    font-family: 微软雅黑;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
input,textarea{
    border:none;
    outline: none;
}
/*主体内容开始*/
body{
    width: 100%;
    height: 100%;
    background:#f8f9fb;
    overflow-x: hidden;
}
.wrapper{
    width: 100%;
    height:100%;
    position: relative;
}
/* header start */
.header{
    height: 80px;
    background: #b0263b;
    /* border-bottom: 1px solid #eeeeee; */
    position: relative;
}
.header .logo{
    width: 195px;
    text-align: center;
    padding: 0 12px;
    margin: 5px 0;
    float: left;
    padding-left: 0;
    margin-bottom: 0;
}
.navBarList{
    display: none;
}
.header nav{
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}
.header nav li{
    float: left;
    height: 100%;
    line-height: 80px;
    padding: 0 6px;
    position: relative;
    transition: 0.1s all ease;
}
.header nav li:hover{
    background: #fff;
}
.header nav li.active{
    background: #fff;
}
.header nav li:hover>a{
    color: #b0263b;    
}
.header nav li.active>a{
    color: #b0263b;
}
.header nav li>a{
    padding: 0 18px;
    font-size: 18px;
    color: #fff;
    display: block;
}
.header nav li .jt-icon{
    background:url(/web/20220327172757im_/http://weofficecidea.com/images/jt.png) no-repeat 93% center;
}
.header nav li:hover .jt-icon {
    background:url(/web/20220327172757im_/http://weofficecidea.com/images/jt_active.png) no-repeat 93% center;
}
.header nav li.active .jt-icon {
    background:url(/web/20220327172757im_/http://weofficecidea.com/images/jt_active.png) no-repeat 93% center;
}
.header nav li .dropdown_menu{
    min-width: 120px;
    padding:7px 0;
    background: #fff;
    position: absolute;
    left:0;
    top:100%;
    display: none;
    z-index: 100;
}
.header nav li .dropdown_menu div{
    line-height: 40px;
    text-align: center;
}
.header nav li .dropdown_menu div a{
    color: #333;
    display: block;
    transition: 0.2s all ease;
    /*text-align:right;
    padding-right:25px;*/
}
.bd_weixin_popup{
    height:340px !important;
}
.header nav li .dropdown_menu div a:hover {
    color: #b0263b;
}
.project-list div{
    width: 120px;
}
.project-list div span{
    width: 60px;
    float: left;
}
.header .phone {
    float: left;
}
.header .phone span{
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/phone.png) no-repeat left center;
    padding-left: 30px;
    line-height: 80px;
}
.header .search {
    float: right;
    margin-top: 26px;
}
.header .search span{
    width: 20px;
    height: 20px;
    display: inline-block;
    background :url(/web/20220327172757im_/http://weofficecidea.com/images/search.png) no-repeat 6% center;
}
.header .search input{
    width: 180px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #adadad;
    padding-left: 36px;
    padding-right: 1%;
    border-radius: 14px;
    background:#eeeeee url(/web/20220327172757im_/http://weofficecidea.com/images/search.png) no-repeat 6% center;
}
/*手机导航样式*/
.enlarge{
    position: absolute; 
    display:block; 
    cursor:pointer; 
    z-index:30; 
    height:20px; 
    width:30px;
    right:15px;
    top:20px;
    border-radius: 2px;
    display: none;
}
.enlarge .icon::before, 
.enlarge .icon::after {
    background-color: #fff;
    border-radius: 2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition-duration: 0.5s;
    width: 30px;
}
.enlarge .icon::before {
    top: -8px;
}
.enlarge .icon::after {
    top: 8px;
}
.enlarge .icon {
    background-color: #fff;
    border-radius: 2px;
    height:2px;
    position: absolute;
    top: 10px;
    transition-duration: 0.5s;
    width: 80%;
}
.enlargeSelect.enlarge .icon::before {
    transform: translateY(8px) rotate(45deg);
}
.enlargeSelect.enlarge .icon::after {
    transform: translateY(-8px) rotate(-45deg);
}
.enlargeSelect.enlarge .icon {
    width: 0;
}
.navBarList{ 
    width:100%;
    max-height:100%;
    height:100%;
    background: #fff;
    position: fixed;
    left:0;
    z-index: 101;
    overflow: auto;
    display: none;
    /* overflow-y: scroll !important; */
    margin-top:60px;
}
.navBarList nav{
    width:94%;
    margin:0 auto;
    padding-bottom: 100px;
}
.navBarList nav li{
    width:100%;
    border-bottom:1px solid #f1f1f1;
    line-height: 42px;
    height: auto;
}
.navBarList nav li a{
    color: #333;
    font-weight: bold;
    display: block;
}
.navBarList nav li .dropdown_menu{
    padding-left: 10%;
}
.navBarList nav li .dropdown_menu div{
    line-height: 30px;
}
.navBarList nav li .dropdown_menu a{
    display: block;
    font-weight: normal;
}
.navBarList nav li .dropdown_menu a:hover{
    color: #b0263b;
}
.navBarList nav li a:hover{
    color: #b0263b;
}
.navBarList nav li:last-child{
    border-bottom: none;
}
/* header end */
/* footer start */
footer{
    background: #302e2e;
    padding: 50px 0 70px;
}
footer .nav-info nav,footer .nav-info>div{
    padding-left: 5%;
}
footer nav{
    margin-top: 30px;
}
footer nav li a{
    float: left;
    font-size: 14px;
    color: #fff;
    margin-right: 8%;
}
footer nav li:last-child a{
    margin-right: 0;
}
footer nav li a:hover{
    color: #b0263b;
}
.logo-bot{
    border-right: 2px solid #454343;
}
.logo-bot img{
    max-width: 100%;
}
footer .address p{
    color: #d2d2d2;
    font-size: 14px;
    margin-top:28px;
}
footer .zx-info{
    float: right;
}
footer .zx-info .phone {
    float: left;
    width: 66%;
}
footer .zx-info .phone h3{
    width: 73px;
    color: #d2d2d2;
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/phone_2.png) no-repeat left center;
    padding-left: 18px;
    font-size: 13px;
    margin-top: 46px;
    text-align: right;
    float: right;
}

footer .zx-info .phone b{
    font-size: 24px;
    color: #fff;
    width: 100%;
    text-align: right;
    float: right;
}
footer .zx-info .ewm-box{
    font-size: 12px;
    color: #d2d2d2;
    line-height: 32px;
    text-align: center;
    float: right;
}
footer .zx-info .zc{
    font-size: 14px;
    color: #d2d2d2;
    float: right;
}
footer .zx-info .zc a{
    color: #d2d2d2;
}
/* footer end */
/* news detail start */
.newsDetailCon{
    max-width: 1200px;
    padding-bottom: 20px;
    margin:0 auto;
}
.newsContentT{
    font-size: 13px;
    line-height: 53px;
}
.newsContentT a{
    color:#454b54;
}
.newsContentT span{
    color:#454b54;
}
.newsContentT a.active{
    color:#b0263b;
    font-weight: bold;
    cursor: default;
}
.newsContentT a:hover{
    color:#b0263b;
}
.newsContentDetail{
    width: 100%;
    margin-top: 50px;
    padding:0;
}
.newsContentDetail_con1 .title{
    border-bottom: 1px solid #dcdcdc;
    text-align: center;
    padding-bottom: 20px;
}
.newsContentDetail_con1 .title h3{
    font-size: 30px;
    color: #222;
    font-weight: normal;
    line-height: 40px
}
.newsContentDetail_con1 .title p{
    font-size: 13px;
    color:#6f7e92;
    line-height: 26px;
    margin-top: 22px;
}
.newsContentDetail_con1 .title p span:first-of-type{
    margin-right: 20px;
}
.newsContentDetail_con1 .con{
    font-size: 14px;color:#666;
    line-height: 30px;
    padding-top: 30px;
    padding-bottom: 58px;
    border-bottom: 1px solid #dcdcdc;
}
.newsContentDetail_con1 .con p{
    margin-bottom: 30px;
}
.newsContentDetail_con1 .con p:last-of-type{
    margin-bottom: 0px;
}
.newsContentDetail_con1 .con img{display: block;
    margin:20px auto;
    max-width: 100%;
}
.newsContentDetail_con1 .con .img{
    position: relative;
}
.newsContentDetail_con1 .con .play{
    position: absolute;
    left:50%;
    top:50%;
    width: auto;
    height: auto;
    margin:-22.5px 0 0 -22.5px;
}
.page2{
    padding:40px 0 0px;
}
.page2 a{
    font-size: 13px;
    color:#333;
    line-height: 32px;
    display: block;
}
.page2 a:hover{
    color:#b0263b;
    text-decoration: underline;
}
/*分享*/
.news_share{
    float:right;
    width:auto;
    color:#666;
    font-size:13px;
    line-height:42px;
    margin-top:50px;
}
.news_share a {
    display:inline-block;
    width:32px !important;
    height:32px !important;
    margin-left:10px !important;
    vertical-align:bottom !important;
    transition: 0.8s transform;
    -webkit-transition: 0.8s transform;
    -moz-transition: 0.8s transform;
    -ms-transition: 0.8s transform;
    cursor: pointer;
}

/*.news_share a:hover {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}*/
.news_share .share01 {
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -0px -70px no-repeat;
}
.news_share .share02 {
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -45px -70px no-repeat;
}
.news_share .share03 {
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -90px -70px no-repeat;
}
.news_share .share04 {
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -130px -70px no-repeat;
}

.share-3 .bds_weixin{
	  background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -0px -70px no-repeat !important;
}
.share-3 .quan{
	  background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -45px -70px no-repeat !important;
}
.share-3 .bds_tsina{
	 background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -90px -70px no-repeat !important;
}
.share-3 .bds_qzone{
	 background: url(/web/20220327172757im_/http://weofficecidea.com/images/share.png) -130px -70px no-repeat !important;
}
/* news detail end */
/* banner start */
/* .banner{
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */
.banner img{
    max-width: 100%;
}
/* banner end */
/* project start */
.project-content{
    margin:60px 0;
    margin-top:0;
}
.project-content .list{
    margin:30px auto;
}
.project-content .list-link{
    margin-bottom: 30px;
}
.project-content img{
    max-width: 100%;
}
.project-content .text h3{
    font-size: 16px;
    color: #222;
    font-weight: bold;
    margin:10px 0 6px;
}
.project-content li{
    margin-bottom: 26px;
}
.project-content li:hover img{
    transform: scale(1.1)
}
.project-content li:hover h3{
    color: #b0263b;
}
.project-content li:hover span{
    opacity: 1;
    transform: translateX(0px);
}
.project-content img{
    transition: 0.5s ease;
}
.project-content .img-box{
    overflow: hidden;
}
.project-content .text{
    position: relative;
}
.project-content .text p{
    font-size: 14px;
    color: #666;
}
.project-content .text span{
    position: absolute;
    right: 0;
    top:0;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.5s all ease;
}
/* project end */
/* page start*/
#page {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}
#page a{
    padding: 6px 11px;
    font-size: 13px;
    color: #6b6b6b;
    border:1px solid #999999;
    background: #fff;
    margin-right: 10px;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    cursor: pointer;
}
#page span {
    margin-right: 10px;
}
#page a.RepeaterNumberList_Now {
    color: #b0273b;
    border:1px solid #b0273b;
}
#page a.RepeaterNumberList_sw {
    margin-left:0px !important;
}
#page a:hover {
    color: #b0273b;
    border:1px solid #b0273b;
}
/* page end*/
/* news list start */
.newsContentList{
    margin:0 auto;
}
.newsContentList li:after{
    display: block;
    clear: both;
    content: ''
}
.newsContentList li:hover img{
    transform: scale(1.05);
}
.newsContentList li:hover{
    box-shadow: 0 0 8px 2px rgba(187,187,187,0.1);
}
.newsContentList li{
    padding:20px 0px;
    padding-bottom: 0px;
    background: #fff;
    transition: 0.2s all ease;
    margin-bottom: 20px;
}
.newsContentList li .img{
    padding-left: 0px;
    overflow:hidden;
    height: 100%;
}
.newsContentList li .img a{
    width: 100%;
    overflow: hidden;
    display: block;
}
.newsContentList li .font{
    padding-right: 0px;
}
.newsContentList li .img img{
    max-width: 100%;
    min-height: 100px;
    transition: 0.6s all ease;
}
.newsContentList li .font h4{
    font-size: 24px;
    color:#333;
    font-weight: bold;
    margin-bottom: 18px;
    font-weight: normal;
    margin-top: 22px;
}
.newsContentList li .font h4:hover a{
    color:#b0263b;
}
.newsContentList li .font h4:after{
    display: block;
    clear: both;
    content: ''}
.newsContentList li .font h4 i{
    font-style: normal;
    font-size: 13px;
    color:#999;
    float: right;
    font-weight: normal;
}
.newsContentList li .font h4 a{
    color:#333;
    display: block;
    float: left;
    width: 100%;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}
.newsContentList li .font p{
    font-size: 14px;
    color:#666;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
}
.newsContentList li .font p a{
    color:#666;
    transition: 0.3s;
}
.newsContentList li .font>a{
    font-size: 13px;
    color: #666;
    margin-top: 30px;
    display:block;
    transition: 0.3s;
    float: right;
}
.newsContentList li .font>a:hover{
    color:#b0263b;
}
.newsContentList li .font p a:hover{
    color:#b0263b;
}
.newsContentList li>div{
    height: 100%;
    margin:0 15px;
    padding-bottom:20px;
}
.newsContentList li>div:after{
    display: block;
    clear: both;
    content: ''}
.newsContentList>ul{
    margin-top: 42px;
}
.newsContentList li .font>span{
    font-size: 13px;
    color:#666;
    margin-right: 16px;
    margin-top:30px;
    float: left;
}
/* news list end */
/* honor list start */
.honor_list{
    margin:0 auto;
    margin-top:30px;
}
.honor_list li{
    margin-bottom: 50px;
}
.honor_list .img{
    text-align: center;
}
.honor_list img{
    max-width: 100%;
}
.honor_list .text h3{
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top:15px;
}
.honor_list .text p{
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top:5px;
}
/* honor list end */
/* company profile start*/
.public-title{
    text-align: center;
}
.public-title h3{
    font-size: 30px;
    color: #222;
    padding: 6px 0;
    margin-bottom: 8px;
    position: relative;
}
.public-title h3:after{
    display: block;
    content: '';
    clear: both;
    width: 25px;
    height: 4px;
    background: #b0263b;
    position: absolute;
    left:50%;
    top:100%;
    margin-left: -12.5px;
}
.public-title span{
    font-size: 16px;
    color: #666;
    text-transform:uppercase;
}
.desc-content .text{
    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-indent: 2em;
    margin:40px 0;
}
.desc-content>img{
    max-width: 100%;
    margin:0 auto;
    display: block;
}
.company-culture{
    background: #fff;
    margin-top:80px;
    padding:80px 0 120px;
}
.company-culture .public-title{
    margin-bottom: 60px;
}
.company-culture .culture-img{
    text-align: center;
}
.company-culture .culture-img img{
    max-width: 100%;
    margin-bottom: 20px;
}
/* company profile end*/
/* member benefits start */
.member-list{
    margin-top: 50px;
    margin-bottom: 110px;
    position:relative;
}
.member-list .swiper-container{
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 10px;
}
.member-list .swiper-button-prev{
    width: 40px;
    height: 40px;
    position: absolute;
    left: 5px;
    top: 40%;
    margin-top: -30px;
    display: block;
    background: rgba(0, 0, 0, 0.5) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_l.png) no-repeat center center;
    z-index: 1000;
    transition: 0.1s all ease;
}
.member-list .swiper-button-next {
    width: 40px;
    height: 40px;
    left: auto;
    top: 40%;
    right: 5px;
    background: rgba(0, 0, 0, 0.5) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_r.png) no-repeat center center;
}
    .member-list .d-swiper{
        margin-bottom:20px;
    }
    .member-list .list {
        min-height: 700px;
        background: #fff;
        padding: 15px;
        box-shadow: 0 0 8px 2px rgba(187,187,187,0.2);
    }
    .member-list .list.swiper-slide-active+.list{
        box-shadow: rgba(187,187,187,1) 0px 0px 30px 3px;
    }
    .member-list .swiper-pagination{
        width:100%;
    }
    .member-list .swiper-pagination-clickable .swiper-pagination-bullet{
        margin:0 6px;
    }
    .member-list img {
        max-width: 100%;
        text-align: center;
    }
.member-list h3{
    margin:20px 0;
    font-size: 24px;
    color: #b0263b;
    text-align: center;
}
.member-list p{
    font-size: 14px;
    color: #6f7e92;
    line-height: 25px;
    margin-bottom: 30px;
}
.member-list .list ul li{
    font-size: 14px;
    color: #666666;
    line-height: 26px;
    list-style-type: upper-alpha;
    list-style-position: inside;
}
.company-desc .public-title{
    margin-top:30px;
}
/* member benefits end */
/* member ctivities start*/
.actives-list{
    margin-top:68px;
    margin-bottom: 60px;
}
.actives-list .tab h3{
    font-size: 24px;
    margin:16px 0 8px;
    color: #333;
    text-align: center;
}
.actives-list .tab div{
    padding:114px 0 30px;
    background: #fff;
    border:1px solid #e7e7e7;
    cursor: pointer;
}
.actives-list .tab li div{
    background-position: center 27%;
    background-repeat: no-repeat;
    border-radius: 4px;
    position: relative;
}
.actives-list .tab li div:after{
    display: block;
    content: '';
    position: absolute;
    left:50%;
    bottom: -8px;
    border:8px solid #b0263b;
    transform: rotate(-135deg);
    margin-left: -4px;
    background: #b0263b;
    display: none;
}
.actives-list .tab li.active div:after{
    display: block
}
.actives-list .tab li:first-child div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_1_2.png);
}
.actives-list .tab li:first-child:hover div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_1_1.png);
}
.actives-list .tab li:first-child.active div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_1_1.png);
}
.actives-list .tab li:nth-child(2) div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_2_2.png);
}
.actives-list .tab li:nth-child(2):hover div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_2_1.png);
}
.actives-list .tab li:nth-child(2).active div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_2_1.png);
}
.actives-list .tab li:nth-child(3) div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_3_2.png);
}
.actives-list .tab li:nth-child(3):hover div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_3_1.png);
}
.actives-list .tab li:nth-child(3).active div{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_3_1.png);
}
.actives-list .tab li:hover div{
    background-color: #b0263b;
    border-color:#b0263b;
}
.actives-list .tab li.active div{
    background-color: #b0263b;
    border-color:#b0263b;
}
.actives-list .tab li:hover div::after{
    display: block;
}
.actives-list .tab li:hover h3{
    color: #fff;
}
.actives-list .tab li:hover p{
    color: #fff;
}
.actives-list .tab li.active h3{
    color: #fff;
}
.actives-list .tab li.active p{
    color: #fff;
}
.actives-list .tab p{
    font-size: 16px;
    color: #666;
    text-align: center;
}
.actives-list .tab-content{
    margin-top:20px;
    border-radius: 4px;
    padding: 70px;
    background: #fff;
    box-shadow: 0 0 8px 2px rgba(187,187,187,0.1);
}
.actives-list .tab-content li{
    background: #fff;
    display: none;
}
.actives-list .tab-content li.active{
    display: block;
}
.actives-list .tab-content li img{
    max-width: 100%;
}
.tab-content .day span{
    width: 18%;
    height: 40px;
    line-height: 40px;
    background: #b0263b;
    display: block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-bottom: 4px;
}
.tab-content .actives span{
    background: #f6f6f6;
    color: #333;
}
.tab-content .text{
    margin-top:10px;
}
.tab-content .text h3{
    font-size: 24px;
    color: #b0263b;
    margin-bottom: 15px;
}
.tab-content .text p{
    font-size: 16px;
    line-height: 26px;
    color: #666;
}
/* member ctivities end*/
/* team operation start*/
.team_con .boss h3{
    font-size: 42px;
    color: #454b54;
    margin-top:40px;
    position: relative;
    padding-bottom: 20px;
}
.team_con .boss h3:after , .team_con .boss p:after{
    position: absolute;
    display: block;
    content: '';
    clear: both;
    width: 60%;
    height: 2px;
    background: #b0263b;
    left: 0;
    bottom: 0;
}
.team_con .boss p{
    font-size:30px;
    color: #666;
    margin-top:40px;
    position: relative;
    padding-bottom: 25px;
}
.team_con .boss p:after{
    width: 6%;
}
.team_con .boss .text{
    font-size:18px;
    color: #6f7e92;
    line-height: 30px;
    margin-top:40px;
}
.team_con .boss img{
    max-width: 100%;
}
.staff{
    background: #f8f9fb;
    padding: 80px 0;
}
.staff li{
    margin-bottom: 40px;
}
.staff li img{
    max-width: 100%;
}
.staff li h3{
    font-size: 30px;
    color: #454b54;
    margin:30px 0 20px;
}
.staff li span{
    font-size: 20px;
    color: #b0263b;
    margin-bottom: 10px;
    display: block;
}
.staff li p{
    font-size:14px;
    color: #666;
    line-height: 30px;
}
.staff li:nth-child(2n) .img{
    float: right;
}
.staff li:nth-child(2n) .text{
    float: right;
    text-align: right;
}
/* team operation end*/
/* join us start */
.careerBox1 h3{
    font-size: 30px;
    color:#333;
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.careerBox1 p{
    max-width: 80%;
    font-size: 16px;
    color:#666;
    margin:0 auto;
}
.careerBox1{
    max-width: 1200px;
    margin:40px auto 56px;
}
.careerBox2{
    width: 100%;
    height: 198px;
    background: #fff;
    margin-bottom: 60px;
}
.careerBox2>div{
    position: relative;
    max-width:962px;
    margin:0 auto;
    padding-top: 40px;
    font-size: 14px;
    color: #666;
}
.careerBox2>div h3{
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;    
    margin-top: 10px;
}
.careerBox2 .line{
    width: 1px;
    height: 125px;
    background:#b0263b ;
    position: absolute;
    left:49%;
    top:39px;
}
.careerBox2>div p{
    max-height: 100px;
    overflow: hidden;
    font-size: 14px;
    color: #333;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.careerBox3{
    margin-bottom: 100px;
}
.careerBox3 .title{
    font-size: 14px;
    color: #666;
    border:1px solid #ebebeb;
    line-height: 38px;
    background: #fff;
    padding:0 20px;
    display: flex;
    cursor: pointer;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.careerBox3 .job-content{
    background: #fff;
    padding: 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid  #f8f0f2;
    border-top:none;
    display: none;
}
.careerBox3 li:first-child .job-content{
    display: block;
}
.careerBox3 .job-content h3{
    font-size: 14px;
    color: #333;
    line-height: 26px;
}
.careerBox3 .job-content p{
    font-size: 14px;
    color: #666;
    line-height: 22px;
    margin-bottom: 30px;
}
.careerBox3 .job-content p:last-child{
    margin-bottom: 0;
}
.careerBox3 li{
    margin-bottom: 23px;
}
.careerBox3 .title.active{
    background: #b0263b;
    color: #fff;
}
.careerBox3 .title span{
    flex: 1;
    text-align: center;
}
.careerBox3 .title span i{
    transform: rotate(180deg);
    display: inline-block;
    font-style: normal;
    margin-left: 5px;
    position: relative;
    top: -2px;
}
/* join us end */
/* product start */
.picBtnTop {
    width: 100%;
    height: auto;
    padding: 5px;
    position: relative;
    overflow: hidden;
    zoom: 1;
    margin:0 auto;
}

.picBtnTop .hd {
    width: 100%;
    margin-bottom: 20px;
    right: 5px;
    overflow: hidden;
    padding-bottom: 10px;
}

.picBtnTop .hd ul li {
    width: 228px;
    height: 143px;
    text-align: center;
    margin-right: 5px;
    float: left;
    position: relative;
}
.picBtnTop .hd ul li span{
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 16px;
    color: #fff;
    line-height: 56px;
    display: block;
    clear: both;
    content: '';
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.picBtnTop .hd ul li:last-child {
    margin-right: 0;
}

.picBtnTop .hd ul li img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    vertical-align: bottom;
}

.picBtnTop .hd ul li.on:after {
    border: 10px solid transparent;
    border-top-color: #b0263b;
    display: block;
    clear: both;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -20px;
}

.picBtnTop .hd ul li.on img {
    border: 2px solid #b0263b;
}

.picBtnTop .bd {
    width: 100%;
    position: relative;
}

.picBtnTop .bd li {
    position: relative;
    zoom: 1;
    vertical-align: middle;
}

.picBtnTop .bd li .pic {
    position: relative;
    z-index: 0;
}

.picBtnTop .bd li .pic img {
    width: 100%;
    /* height: 895px; */
    vertical-align: bottom;
}
.picBtnTop .bd li .desc{
    width: 100%;
    /* height: 165px; */
    background: #fff;
    padding: 30px;
}
.picBtnTop .bd li .desc_detail div{
    float: left;
    /* margin-left: 30px; */
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    width: 49%;
}
.picBtnTop .bd li .desc_detail div:nth-child(2n-1){
    margin-right: 2%;
}
.picBtnTop .bd li .desc_detail div::before{
    display: block;
    clear: both;
    content: '';
    width: 10px;
    height: 10px;
    background: #b0263b;
    position: absolute;
    left: 0;
    top:5px;
    transform: rotate(45deg)
}
.picBtnTop .bd li .title {
    padding: 40px 24px;
    width: 100%;
    height: 170px;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 100;
    background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.picBtnTop .bd li .price{
    width: 226px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    border-radius: 36px;
    border:1px solid #b0263b;
    display: block;
    font-size: 18px;
    color: #222;
    float: left;
}
.picBtnTop .bd li .active{
    width: 226px;
    height: 68px;
    background: #b0263b;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 68px;
    display: block;
    border-radius: 36px;
    margin-left: 26px;
    margin-top:0;
    margin:30px auto;
}
.picBtnTop .bd li .price i{
    color: #b0263b;
    font-style: normal;
    font-size: 24px;
    /*font-size: 38px;*/
}
.picBtnTop .bd li .price span{
    position: relative;
    top:-3px;
}
.picBtnTop .bd li .title h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 17px;
}

.picBtnTop .bd li .title p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
}

.picBtnTop .prev,
.picBtnTop .next {
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -30px;
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_l.png) no-repeat center center;
    z-index: 1000;
    transition: 0.1s all ease;
}
#demo2 .prev,
#demo2 .next{
    top:35%;
}
.picBtnTop .next {
    left: auto;
    right: 5px;
    background: rgba(0, 0, 0, 0.5) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_r.png) no-repeat center center;
}

.picBtnTop .prev:hover,
.picBtnTop .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#demo1 {
    margin-top: 24px;
    margin-bottom: 70px;
}
/* product end */
/* service start */
.service-content .picBtnTop{
    margin-top:50px;
}
.service-content .picBtnTop .bd ul{
    margin-bottom: 20px !important;
}
.service-content .picBtnTop .bd li .pic {
    width: 100%;
}
.service-content .picBtnTop .bd li .pic .img{
    float: left;
    width: 60%;
}
.service-content .picBtnTop .bd li .pic .text{
    width: 38%;
    height: 490px;
    overflow-y: auto;
    float: right;
    background: #fff;
    padding: 30px;
    position: relative;
}
/* .service-content .picBtnTop .bd li .pic .text i{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46px;
    height: 46px;
    background: #b0263b;
    display: block;
    color: #fff;
    text-align: center;
    line-height: 46px;
} */
.service-content .picBtnTop .bd li .pic .text h3{
    font-size: 30px;
    color: #222;
}
.service-content .picBtnTop .bd li .pic .text .t{
    font-size: 18px;
    line-height: 48px;
    color: #222;
    position: relative;
}
.service-content .picBtnTop .bd li .pic .text .t:after{
    display: block;
    clear: both;
    width: 42px;
    height: 2px;
    background: #b0263b;
    position: absolute;
    left: 0;
    bottom: 0;
    content: ''
}
.service-content .picBtnTop .bd li .pic .text h4{
    font-size: 16px;
    color: #b0263b;
    margin:30px 0 10px;
}
.service-content .picBtnTop .bd li .pic .text .description{
    font-size: 14px;
    color: #333;
    line-height: 24px;
}
.service-content .picBtnTop .bd li .pic .text .description p{
    text-indent: 2em;
}
.service-content .picBtnTop .hd ul li.on:after {
    display: none;
}
/* service end */
/* index start */
.picFocus .prev,
.picFocus .next {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -30px;
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_l.png) no-repeat center center;
    z-index: 1000;
    transition: 0.1s all ease;
}

.picFocus .next {
    left: auto;
    right: 0;
    background: rgba(255, 255, 255, 0.4) url(/web/20220327172757im_/http://weofficecidea.com/images/jt_r.png) no-repeat center center;
}

.picFocus .prev:hover,
.picFocus .next:hover {
    background-color: #b0263b;
}
.office-content{
    margin-top:80px;
}
.office-content .title{
    text-align: center;
}
.office-content .title h3{
    font-weight: bold;
    font-size: 36px;
    color: #222;
    text-transform:uppercase;
}
.office-content .title p{
    font-weight: bold;
    font-size: 36px;
    color: #b0263b;
    margin:30px 0 20px;
}
.office-content .title span{
    font-size: 16px;
    color: #666;
}
.office-info{
    margin:40px auto 80px;
}
.office-info li{
    width: 19.2%;
    margin-right: 1%;
    float: left;
    background: #fff;
    border:1px solid #d5d5d5;
}
.office-info li p{
    font-size: 14px;
    color: #222;
    text-align: center;
    margin:20px 0 36px;
}
.office-info li:last-child{
    margin-right: 0;
}
.office-info .advantage-title {
    max-width: 86%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    position: relative;
}
.office-info li .advantage-title h3 {
    border: 1px solid #b0263b;
    line-height: 70px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 24px;
    color: #b0273b;
    text-align: center;
}
.office-info  li .advantage-title i {
    display: block;
    width: 50px;
    height: 33px;
    position: absolute;
    top: -19px;
    left: 50%;
    margin-left: -27px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
}
.office-info .img-box{
    overflow: hidden;
}
.office-info  li:hover{
    background: #b0263b
}
.office-info li img{
    transition: 0.1s ;
}
.office-info li:hover img{
    transform: scale(1.05);
}
.office-info  li:hover h3{
    color: #fff;
    border-color: #fff;
}
.office-info  li:hover p{
    color: #fff;
}
.office-info  li:hover .advantage-title i{
    background-color: #b0263b !important;
}
.office-info  li:nth-child(1) .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office1.png);
}
.office-info  li:nth-child(1):hover .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office1_2.png);
}
.office-info  li:nth-child(2) .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office2.png);
}
.office-info  li:nth-child(2):hover .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office2_2.png);
}
.office-info  li:nth-child(3) .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office4.png);
}
.office-info  li:nth-child(3):hover .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office4_2.png);
}
.office-info  li:nth-child(4) .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office3.png);
}
.office-info  li:nth-child(4):hover .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office3_2.png);
}
.office-info  li:nth-child(5) .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office5.png);
}
.office-info  li:nth-child(5):hover .advantage-title i{
    background-image: url(/web/20220327172757im_/http://weofficecidea.com/images/icon_office5_2.png);
}
.partner{
    padding: 60px 0 90px;
}
.partner .public-title{
    margin-bottom: 60px;
}
.partner a{
    /* width: 246px; */
    height: 124px;
    background: #fff;
    display: block;
    border:1px solid #e3e3e3;
    text-align: center;
    position: relative;
    margin-bottom:10px;
}
.partner a+p{
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    color: #454b54;
}
.partner a:hover {
    box-shadow: 0 0 8px rgba(0,0,0,0.1)
}
.partner a img{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%)
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #fff;
    border:1px solid #333;
}
.swiper-pagination-bullet-active{
    background: #b0263b;
    border-color: #b0263b;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 0;
}
.service-con{
    background: #fff;
    padding: 50px 0 90px;
}
.index-service{
    display: flex;
    margin:36px auto 60px;
}
.index-service>div{
    flex:1;
    text-align: center;
}
.index-service .img{
    width: 125px;
    height: 125px;
    background: #b0263b;
    border:3px solid #eeeeee;
    border-radius: 50%;
    text-align: center;
    display: block;
    margin:0 auto;
    position: relative;
}
.index-service .img img{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
}
.index-service .text{
    margin-top:15px;
}
.index-service .text h3{
    font-size: 18px;
    color: #222;
    text-align: center;
    margin-bottom: 16px;
}
.index-service .text p{
    font-size: 14px;
    color: #666;
    text-align: center;
}
.list-link{
    width: 185px;
    height: 36px;
    line-height: 36px;
    margin:0 auto;
    display: block;
    text-align: center;
    box-shadow: 0 8px 10px rgba(128,128,1280,0.1);
    transition: 0.2s ;
    color: #666;
}
.list-link:hover{
    box-shadow: 0 8px 10px rgba(128,128,1280,0.25);
    color: #666;
}
.picBtnTop2 .img img{
    width: 255px;
}
.member-content{
    padding-top: 80px;
    padding-bottom: 100px;
    background: #fff;
}
.member-content .picBtnTop2{
    margin-top:40px;
    height: 255px;
}
.member-content .text h3{
    font-size: 18px;
    color: #454b54;
    margin-top:36px;
}
.member-content .pic .img{
    padding-left: 0;
}
.member-content .pic .text{
    padding-bottom: 23px;
}
.member-content .text span{
    font-size: 14px;
    color: #eda801;
    line-height: 30px;
}
.member-content .text p{
    font-size: 14px;
    color: #828282;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
    overflow: hidden;
}
.member-content .hd,.member-content .bd{
    padding: 0;
    height: 255px;
    overflow: hidden;
}
#demo3 .hd{
    position: relative;
}
#demo3 .hd ul{
    position: absolute;
    transition: 0.35s all ease;
}
.member-content .hd li{
    padding: 8px;
    background: #efefef;
    cursor: pointer;
    transition: 0.2s ;
}
.member-content .hd li.on{
    background: #b0263b;
}
.member-content .hd li.on h3{
    color: #fff;
}
.member-content .hd li.on p{
    color: #fff;
}
.member-content .hd .member-img{
    padding: 0;
    height: 69px;
    overflow: hidden;
}
.member-content .hd .info h3{
    font-size: 16px;
    color:#454b54;
    line-height: 26px;
}
.member-content .hd .info p{
    font-size: 14px;
    color: #6f7e92;
    line-height: 22px;
}
.picBtnTop2 {
    position: relative;
}
.member-content .prev,
.member-content .next {
    position: absolute;
    margin-top: -30px;
    display: block;
    width: 18px;
    height: 12px;
    background: url(/web/20220327172757im_/http://weofficecidea.com/images/jt_t.png) no-repeat center center;
    z-index: 1000;
}
.member-content .prev{
    top: 0;
    right: 12%;
}
.member-content .next{
    bottom: -30px;
    right: 12%;
    transform: rotate(180deg);
}
.reservation{
    width: 354px;
    height: 300px;
    background: #fff;
    padding: 22px;
    position: absolute;
    bottom: 20%;
    right: 11%;
}

.reservation h3{
    font-size: 20px;
    color: #333333;
    text-align: center;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 20px;
}
.reservation ul{
    display: flex;
    margin-top:40px;
}
.reservation ul li{
    flex: 1;
    text-align: center;
}
.reservation ul li p{
    line-height: 40px;
    color:#333;
    font-size: 16px;
}
.layerBtn{
    width: 286px;
    height: 48px;
    background: #b0263b;
    line-height: 48px;
    margin:24px auto 0;
    display: block;
    font-size: 20px;
    color: #fff;
    text-align: center;
    outline: none;
    border: none;
}
.phone-show{
    width:50%;
    height: 36px;
    line-height: 36px;
}
.picFocus {
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
    zoom: 1;
}

.picFocus .bd li {
    vertical-align: middle;
}

.picFocus .bd img {
    width: 100%;
    display: block;
}
.layui-layer-demo{
    width: 460px !important;
    height: 460px;
}
.layer-content{
    display: none;
}
.layer-content ul{
    width: 90%;
    margin:0 auto;
}
.layer-content ul li{
    margin-bottom: 30px;
}
.layer-content h3{
    font-size: 30px;
    line-height: 70px;
    color: #b0263b;
    text-align: center;
}
.layer-content img{
    display:inline-block;
    margin: 9px 13px;
}
.layer-content input[type="text"]{
    width: 360px;
    height: 40px;
    display: inline-block;
    border:1px solid #ccc;
    border-radius: 5px;
    padding: 0 20px;
    float: right;
}
.layer-content input[type="text"]:focus{
    border-color: #b0263b;
}
.layer-content ul li .yzm{
    width: 109px;
    height: 40px;
    line-height: 40px;
    background: #b0263b;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    border:none;
    outline: none;
    float: right;
    cursor: pointer;
}
.layer-content .submit-btn{
    width: 200px;
    height: 50px;
    border-radius: 5px;
    margin:40px auto 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background: #b0263b;
    cursor: pointer;
}
.phone-show{
    display: none;
    margin:0 auto;
}
/* index end */
/* project-detail start */
.banner{
    position: relative;
}
.banner .pos{
    position: absolute;
    top:0;
}
.banner .pos a,.banner .pos span,.banner .pos i{
    color: #fff;
}
.banner .pos i{
    font-style: normal;
}
.project-detail-con .contact{
    position: relative;
    top:-268px;
}
.project-detail-con .contact>h3{
    font-size: 46px;
    color: #fff;
    margin-bottom: 28px;
}
.project-detail-con .contact-detail{
    background: #fff;
    padding: 54px 0 54px 54px;
}
.project-detail-con .desc h3{
    font-size: 18px;
    color: #222;
    position: relative;
    padding-left: 10px;
    margin-bottom: 20px;
}
.project-detail-con .desc h3::before{
    display: block;
    content: '';
    position: absolute;
    left:0;
    bottom: 5px;
    border:5px solid #b0263b;
    transform: rotate(-135deg);
    margin-left: -5px;
}   
.project-detail-con .desc p{
    font-size: 14px;
    color: #666;
    line-height: 22px;
    margin-bottom: 26px;
}
.project-detail-con .address li{
    font-size: 14px;
    color: #b0263b;
    margin-bottom: 25px;
}
.contact-detail .person{
    margin-bottom: 50px;
}
.contact-detail .person>img{
    float: left;
}
.contact-detail .person .text{
    float: left;
    margin-left: 22px;
}
.contact-detail .border iframe{
    width: 100%;
    height: 280px;
}
.contact-detail .border button{
    border:none;
    outline: none;
    width: 289px;
    height: 69px;
    background: #b0263b;
    font-size: 20px;
    color:#fff;
    text-align: center;
    border-radius: 32px;
    display: block;
    margin: 30px auto 0;
}
.contact-detail .border{
    border-left: 1px dashed #dbdbdb;
    padding-left: 0;
    padding-right: 0;
}
.contact-detail .border h3{
    font-size: 20px;
    color: #b0263b;
    margin:30px 0 40px;
}
.contact-detail .person .text h3{
    font-size: 18px;
    color: #222;
    line-height: 55px;
}
.contact-detail  .border h3 span{
    display: inline-block;
    padding-left: 10px;
    position: relative;
}
.contact-detail  .border h3  i{
    width: 6px;
    height: 6px;
    background: #a0a0a0;
    display: inline-block;
    margin:0 7px;
    border-radius: 50%;
    position: relative;
    top: -4px;
}
/* .contact-detail  .border h3 span::before{
    width: 6px;
    height: 6px;
    background: #a0a0a0;
    content: '';
    clear: both;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top:8px;
} */

.contact-detail .person .text .contact-info img{
    margin-right: 20px;
}
.contact-detail .person .text div{
    width: 270px;
    padding: 0 30px;
    height: 30px;
    line-height: 30px;
    background: #b0263b;
    color: #fff;
}
.office-hj{
    position: relative;
    top: -150px;
}
.office-hj .public-title{
    margin-bottom: 40px;
}
.office-tab ul{
    width: 80%;
    float: left;
}
.office-tab ul .tab{
    width: 20%;
    float: left;
}
.office-tab .tab li{
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    color: #333;
    border-top:1px solid #dddddd;
    border-bottom: none;
    text-indent: 44px;
    cursor: pointer;
}
.office-tab .tab li:last-child{
    border-bottom:1px solid #dddddd;
}
.office-tab .tab li.active{
    background: #b0263b;
    color: #fff;
    border-top: none;
}
.office-tab ul li{
    display: none;
}
.office-tab ul li.active{
    display: block;
}
.facilities-service{
    /* position: relative;
    top:-150px; */
    background: #fff;
    padding: 66px 0 100px;
}
.facilities-service .icon{
    margin-top:70px;
}
.facilities-service .row-one,.facilities-service .row-two{
    display: flex;
}
.facilities-service .row-one li,.facilities-service .row-two li{
    flex: 1;
    text-align: center;
}
    .facilities-service .row-one li .img, .facilities-service .row-two li .img{
        width:99px;
        height:94px;
        margin:0 auto;
        background-repeat:no-repeat;
        background-position:center;
    }
    .facilities-service .row-one li p, .facilities-service .row-two li p {
        line-height: 48px;
    }
.facilities-service .row-two{
    margin-top:50px;
}
/* project-detail end */
.rightBar{
    position: fixed;
    right: 65px;
    top:50%;
    transform: translateY(-50%);
    z-index: 20000;
}
.rightBar li{
    width: 66px;
    height: 66px;
    background: #b0263b;
    border-radius: 4px;
    margin-bottom: 2px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    margin-top:0;
    line-height: 12px;
}
.rightBar li a{
    color: #fff;
}
.rightBar li>a>img,.rightBar .logo img{
    margin:8px 0 6px;
}
.rightBar .logo{
    border:1px solid #b0263b;
    background: #fff;
}
.wx-box{
    position: relative;
}
.phone-box .r_telfont{
    left: -150px;
    top: 0;
    line-height: 30px;
    background: #fff;
    border:6px solid rgb(66,70,79);
    color: #333;
    font-weight: bold;
}
.r_telfont{
    position: absolute;
    left: -120px;
    top: 0;
    opacity: 1;
    -webkit-transition: all 1s ease;
    -webkit-transform: scale(0,0);
    -moz-transition: scale(0,0);
    -ms-transition: scale(0,0);
    -o-transition: scale(0,0);
    transition: scale(0,0);
    -webkit-transform-origin: center right;
    -moz-transform-origin: center right;
    -ms-transform-origin: center right;
    -o-transform-origin: center right;
    transform-origin: center right;
    background:rgb(66,70,79);
    padding: 10px;
    color:#fff;
    font-size: 16px;line-height: 60px;
    text-align: center;
    border-radius: 4px;
}
.wx-box:hover .r_telfont {
    opacity: 1;
    -webkit-transform: scale(1,1);
    -moz-transition: scale(1,1);
    -ms-transition: scale(1,1);
    -o-transition: scale(1,1);
    transition: scale(1,1);
}
/* 百度商桥 wrap */
#nb_icon_wrap{
    width: 40px;
    height: 40px;
}
#newBridge .nb-icon-right-center{
    right: 10px !important;
    top: 40.5% !important;
    width: 40px !important;
    height: 40px !important;
    opacity: 0 !important;
}
#newBridge .icon-right-bottom {
    right: 20px !important;
    bottom: auto !important;
    top: 29% !important;
    left: auto !important;
    opacity: 0 !important;
    width: 66px !important;
    height: 66px !important;
    margin-top: 5px;
}
#newBridge .nb-icon-skin-0 .nb-icon-bridge0{
    width: 66px !important;
    height: 66px !important;
    margin-left: auto;
}
#newBridge .nb-icon-base .nb-icon-bridge-base{
    left: auto !important;
    right: 0 !important;
}
.citys a{
    width: 100%;
    float: right;
    text-align: right;
    padding-right: 23px;
}
.citys span+a{
    width: 50%;
    float: right;
}


.pic{
    height: 100%;
}
/*
     FILE ARCHIVED ON 17:27:57 Mar 27, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 03:20:04 Jul 02, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.666
  exclusion.robots: 0.032
  exclusion.robots.policy: 0.022
  esindex: 0.013
  cdx.remote: 213.708
  LoadShardBlock: 501.283 (3)
  PetaboxLoader3.datanode: 186.16 (4)
  PetaboxLoader3.resolve: 491.589 (2)
  load_resource: 206.444
*/