﻿/*通用样式*/
*{font-family: "Microsoft YaHei", Helvetica, Arial, sans-serif;}
.overflow{overflow: hidden;}
.vertical{vertical-align: middle;}
.transition{transition: all .2s ease-out}
.pointer{cursor: pointer}
body{position:relative;max-width: 1920px;margin: 0 auto;background-color: #f4f4f4;}
ul{list-style: none;margin: 0;padding: 0;}
button,input{border: 0;outline: 0;}
a{color: #333;}
a:hover{text-decoration: none;color: #333;}
a:link{text-decoration: none;}
a:focus{outline: 0;}
.vertical-mid{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.horizontal-mid{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.all-mid{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}
@font-face {
    font-family: 'din';
    src: url('../font/DINCond-Light.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'didot';
    src: url('../font/Didot-Italic.ttf');
    font-weight: normal;
    font-style: normal;
}

/*头部*/
.navbar{
    position: absolute;
    width: 100%;
    max-width: 1920px;
    top: 0;
    left: 0;
    z-index: 9999;
    border-top: 5px solid #D1A962;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.navbar-brand{
    height: 150px;
    line-height: 150px;
    padding: 0;
}
.navbar-brand img{
    display: inline-block;
}
.navbar-nav{
    height: 150px;
}
.navbar-nav li{
    height: 100%;
    width: 115px;
    padding: 0 20px;
}
.navbar-nav .zh-title{
    color: #fff;
    font-size: 16px;
    text-align: center;
    transition: all .2s ease-out;
    margin-top: 41px;
}
.navbar-nav .en-title{
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: lighter;
    text-align: center;
    transition: all .2s ease-out;
    margin-top: 8px;
}
.nav>li>a{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
}
.nav>li>a:hover,.nav>li>a:focus{
    background-color: transparent;
}
.nav>li>a:hover .en-title{
    color: #d1a962;
}
.nav>li>a:hover .zh-title{
    color: #d1a962;
}
.nav>li.active>a{
    border-bottom: 4px solid #d1a962;
}
.nav>li.active .zh-title{
    color: #d1a962;
}
.nav>li.active .en-title{
    color: #d1a962;
}
.navbar .link-px{
    height: 150px;
    line-height: 150px;
    margin-left: 30px;
}

/*底部*/
.foot{
    background: #222;
    padding-top: 50px;
    overflow: hidden;
}
.foot .foot-head{
    height: 35px;
    margin-bottom: 30px;
}
.foot .foot-head .phone{
    color: #d1a962;
    font-size: 20px;
}
.foot .wx img{
    width: 132px;
}
.foot .foot-head .link-oa{
    display: inline-block;
    height: 34px;
    line-height: 30px;
    width: 180px;
    border: 2px solid #d1a962;
    border-radius: 34px;
}
.foot .foot-head .link-oa .txt{
    color: #d1a962;
}
.foot .foot-head .link-oa .iconfont{
    color: #d1a962;
    font-size: 30px;
}
.foot .foot-tip{
    line-height: 20px;
    color: #777;
    padding: 20px 5%;
    border-top: 1px solid #323232;
}
.foot .foot-content{
    padding: 0 5%;
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;
}
.foot .foot-content .name{
    color: #777;
}
.foot .foot-content .link-aqua{
    width: 340px;
    text-align: right;
    padding: 20px 0;
    border-bottom: 1px solid #2E2E2E;
}
.foot .foot-content .link-aqua .iconfont{
    color: #fff;
}
.foot .foot-content .contact-us{
    width: 450px;
}
.foot .contact-us .tip{
    color: #f4f4f4;
    font-size: 16px;
    margin-bottom: 25px;
}
.foot .contact-us .email{
    height: 35px;
    line-height: 34px;
    border-bottom: 1px solid #2E2E2E;
}
.foot .contact-us .email .name{
    margin-left: 10px;
    display: inline-block;
    white-space: nowrap;
}
.foot .contact-us .email .iconfont{
    color: #777;
    font-size: 20px;
}
.foot .contact-us .email .del{
    color: #777;
}
.foot .foot-nav{
    margin-right: 50px;
    height: 210px;
}
.foot .bottom-logo{
    margin-top: 40px;
    margin-right: 20px;
    background-color: #222222;
}
.foot .foot-nav .bg-nav{
    margin-bottom: 30px;
}
.foot .foot-nav .bg-nav a{
    font-size: 16px;
    color: #fff;
}
.foot .foot-nav .sm-nav-list a{
    color: #777;
    line-height: 26px;
    transition: all .2s ease-out;
}
.foot .foot-nav .sm-nav-list a:hover{
    color: #fff;
}

/*首页*/
.index-banner .swiper-slide img{
    width: 100%;
}
.index-banner .swiper-slide{
    position: relative;
}
.index-banner .swiper-slide .slide-txt{
    position: absolute;
    left: 16%;
    top: 34%;
}
.index-banner .slide-txt .title{
    font-size: 50px;
    color: #fff;
    letter-spacing: .1em;
    margin-bottom: 20px;
    font-weight: lighter;
}
.index-banner .slide-txt .en-txt{
    font-size: 16px;
    color: #fff;
    width: 1000px;
    line-height: 22px;
    font-family: Arial;
    font-weight: lighter;
}
.index-banner .slide-txt h4 span{
    font-size: 50px !important;
    color: #fff;
    letter-spacing: .1em;
    margin-bottom: 20px;
    font-weight: lighter;
}
.index-banner .slide-txt p{
    font-size: 16px;
    color: #fff;
    width: 550px;
    line-height: 22px;
    font-family: Arial;
    font-weight: lighter;
}
.index-banner .slide-txt .know-more a{
    font-size: 16px;
    color: #fff;
}
.index-banner .slide-txt .know-more{
    margin-top: 40px;
}
.index-banner .swiper-pagination{
    text-align: left;
    padding: 0 16%;
    bottom: 2.5%;
}
.index-banner .swiper-pagination-bullet{
    position: relative;
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 15px !important;
    opacity: 1;
}
.index-banner .swiper-pagination-bullet-active{
    border: 1px solid #d1a962;
}
.index-banner .swiper-pagination-bullet:before{
    position: absolute;
    right: -15px;
    top: -19px;
    content: "· ·";
    color: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.index-banner .swiper-pagination-bullet-active:before{
    color: #d1a962;
}
.index-banner .swiper-pagination-bullet:last-child:before{
    display: none;
}
.index-news{
    padding: 50px 5%;
    background: #F4F4F4;
}
.model-en-title{
    font-size: 12px;
    font-family: "didot";
    color: #999;
    font-style: italic;
}
.model-zh-title{
    font-size: 36px;
    color: #333;
    font-weight: bold;
    line-height: 36px;
}
.index-news .tab-change{
    display: inline-block;
    border: 1px solid #C9C9C9;
    border-radius: 30px;
}
.index-news .change-item{
    width: 120px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease-out;
}
.index-news .change-item:hover{
    color: #d1a962;
}
.index-news .change-item.active{
    background: #d1a962;
    color: #fff;
}

.news-content .news-slide-pagination{
    text-align: left;
    height: 40px;
    line-height: 40px;
    bottom: 0;
}
.news-content .swiper-pagination-bullet-active{
    display: inline-block;
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    border: 5px solid #d1a962;
    vertical-align: middle;
}
.see-detail-btn{
    position: absolute;
    right: 50px;
    bottom: 80px;
    display: inline-block;
    height: 30px;
    width: 120px;
    line-height: 30px;
    color: #fff;
    background: #333;
    text-align: center;
    transition: all .3s ease-out;
}
.see-detail-btn:hover{
    background: #d1a962;
    color: #fff;
}
.more-btn:hover{
    color: #d1a962;
}
.more-btn .iconfont{
    color: #d1a962;
    font-size: 50px;
    margin-left: 20px;
}
.index-news .news-content-box{
    display: none;
}
.index-news .news-content-box.active{
    display: block;
}
.index-news .news-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-news .news-content .news-slide {
    max-width: 848px;
    flex: 1 1 848px;
}
.index-news .news-content .news-slide .swiper-slide {
    background-color: #f4f4f4;
    width: 100%!important;
}
.index-news .news-content .news-slide .news-prev {
    width: 36px;
    height: 36px;
    color: #FFFFFF;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    z-index: 6;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}
.index-news .news-content .news-slide .news-next {
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -15px;
    z-index: 6;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}
.index-news .news-content .news-pic{
    height: 460px;
    overflow: hidden;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.index-news .news-content .news-pic .news-title {
    width: 100%;
    height: 90px;
    background-color: rgba(0,0,0,0.7);
    line-height: 90px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding: 0 30px;
    color: #FFFFFF;
    font-size: 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.index-news .news-content .news-pic img{
    width: 100%;
}
.index-news .news-content-right{
    padding-top: 90px;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    min-height: 380px;
}
.index-news .news-list{
    max-width: 760px;
    flex: 1 1 760px;
    margin-left: 80px;
    height: 490px;
    padding: 15px 0;
}
.index-news .news-list .swiper-container {
    height: 100%;
}
.index-news .news-list .swiper-slide {
    display: flex;
    align-items: center;
    border-bottom: 1px dotted #6d6d6d;
}
.index-news .news-list-item{
    position: relative;
    transition: all .2s ease-out;
    font-size: 20px;
    color: #787878;
    line-height: 30px;
    display: block;
}
.index-news .news-list-item:nth-child(5){
    border-bottom: 0;
}
.index-news .news-list .swiper-slide-active {
    border-top: 1px dotted #6d6d6d;
}

.index-news .news-list .swiper-slide-active .news-list-item {
    color: #b68a00;
    font-weight: bold;
}

.index-news .news-list-item .news-title{
    height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 15px;
}

.index-news .more-btn-tip{
    margin-top: 50px;
}
.index-strategy{
    position: relative;
    overflow: hidden;
}
.index-strategy .model-en-title{
    color: #d1a962;
}
.index-strategy .model-zh-title{
    color: #d1a962;
}
.index-strategy .intro{
    color: #fff;
    font-size: 18px;
}
.index-strategy img{
    position: relative;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1920px;
}
.index-strategy .title-box{
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 100;
}
.index-distribute{
    position: relative;
    padding: 0 20px;
    background: #FAFAFA;
}
.index-strategy .over-site-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index-strategy .over-site-box .over-site{
    position: relative;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}
.index-strategy .over-site-box .sub-pro{
    opacity: 0;
    transition: all .3s ease-out;
}
.index-strategy .over-site-box .site{
    position: absolute;
    cursor: pointer;
}
.index-strategy .over-site-box .site1{
    left: 78%;
    top: 25.1%;
}
.index-strategy .over-site-box .site2{
    left: 44.5%;
    top: 32.8%;
    padding-right: 20px;
}
.index-strategy .over-site-box .site3{
    left: 63.4%;
    top: 28.4%;
}
.index-strategy .over-site-box .site4{
    left: 65.2%;
    top: 43.1%;
}
.index-strategy .over-site-box .site5{
    left: 81%;
    top: 44%;
}
.index-strategy .over-site-box .site6{
    left:71.2%;
    top: 52%;
}
.index-strategy .over-site-box .site7{
    left:58.5%;
    top: 56.8%;
}
.index-strategy .over-site-box .site8{
    left:64%;
    top: 69.5%;
}
.index-strategy .over-site-box .site9{
    left: 58%;
    top: 89%;
    padding-left: 30px;
}
.index-strategy .over-site-box .site10{
    left: 83.5%;
    top: 31.6%;
    padding-left: 30px;
}
.index-strategy .over-site-box .site11{
    left: 35%;
    top: 74.6%;
}
.index-strategy .over-site-box .site12{
    left: 79%;
    top: 50.5%;
    padding-left: 40px;
}
.index-strategy .over-site-box .city{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
    cursor: pointer;
    transition: all .3s ease-out;
}
.index-strategy .over-site-box .big {
    color: #d1a962;
    font-size: 40px;
}
.index-strategy .over-site-box .color {
    color: #d1a962;
}
.index-strategy .over-site-box .site:hover .city{
    color: #d1a962;
}
.index-strategy .over-site-box .site:hover .sub-pro{
    opacity: 1;
}
.index-strategy .over-site-box .sub-pro{
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
    line-height: 18px;
}
.index-strategy .over-site-box .site1{
    position: absolute;
}
.index-distribute .distribute-left{
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 17.5%;
    padding-top: 80px;
    background: #fff url("../images/index-distribute-bg.jpg") left bottom no-repeat;
}
.distribute-left .model-en-title{
    padding-left: 12%;
}
.distribute-left .model-zh-title{
    padding-left: 12%;
}
.index-distribute .distribute-list{
    margin-top: 50px;
    width: 80%;
}
.index-distribute .distribute-list li{
    height: 45px;
    line-height: 45px;
    color: #333;
    font-size: 20px;
    padding-left: 12%;
    margin-top: 20px;
    cursor: pointer;
}
.index-distribute .distribute-list li.active{
    background: #d1a962;
}
.index-distribute .distribute-list li.active{
    color: #fff;
}
.index-distribute .distribute-list li:hover{
    background: #d1a962;
    color: #fff;
}
.index-distribute .distribute-right{
    width: 82.5%;
    display: none;
    padding-top: 80px;
    background: #fff;
}
.index-distribute .distribute-right.active{
    display: block;
}
.index-distribute .swiper-slide img{
    width: 100%;
}
.index-distribute .swiper-slide{
    position: relative;
}
.index-distribute .swiper-slide .link-btn{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.index-distribute .swiper-slide a {
    display: block;
    color: inherit;
}
.index-distribute .swiper-slide a:hover {
    text-decoration: underline;
}
.index-distribute .swiper-slide .model{
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    transition: all .2s ease-out;
}
.index-distribute  .swiper-button-prev, .index-distribute .swiper-button-next{
    background: none;
    font-size: 40px;
    color: #333;
    font-weight: bold;
    top: 35px;
    left: -10px;
}
.index-distribute .swiper-button-next{
    left: 60px;
}
.index-distribute .swiper-button-next:hover{
    color: #d1a962;
}
.index-distribute  .swiper-button-prev:hover{
    color: #d1a962;
}
.index-distribute .inner-title{
    position: absolute;
    width: 100%;
    top: 10%;
    /*-webkit-transform: translateY(-50%);*/
    /*-moz-transform: translateY(-50%);*/
    /*-ms-transform: translateY(-50%);*/
    /*-o-transform: translateY(-50%);*/
    /*transform: translateY(-50%);*/
    padding: 0 10%;
}
.index-distribute .inner-title .title{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: #d1a962;
    margin-bottom: 30px;
    transition: all .2s ease-out;
}
.index-distribute .inner-title .del{
    position: absolute;
    color: #fff!important;
    line-height: 24px;
    left: 10%;
    top: 65px;
    z-index: 2;
}
.index-distribute .more-btn{
    position: absolute;
    right: 0;
    left: auto;
    top: 35px;
    color: #333;
    font-weight: bold;
}
.index-distribute .swiper-slide:hover .model{
    background: rgba(209,169,98,.8);
    outline-offset: -15px;
    outline: 1px solid #fff;
}
.index-distribute .swiper-slide:hover .title{
    color: #fff;
    animation: aniDown 0.5s ease-out;
}
.index-distribute .swiper-slide:hover .more-btn{
    color: #fff;
}
.index-distribute .swiper-slide:hover .del{
    animation: aniUp .5s ease-out;
}
.index-distribute .swiper-slide:hover .iconfont{
    color: #fff;
}

/*宣传视频*/
.index-video {
    width: 100%;
    position: relative;
    max-width: 1700px;
    padding: 0 10px;
    margin: 50px auto;
    overflow: hidden;
}

.index-video .video-cover {
    position: relative;
    z-index: 6;
}

.index-video .video-cover .icon_play {
    width: 114px;
    height: 114px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -57px;
    margin-left: -57px;
    z-index: 2;
    cursor: pointer;
}
.index-video .video-wrapper {
    width: 100%;
    padding: 0 5%;
    display: none;
}
.index-video .video-wrapper video {
    width: 100%;
}
.none-background {
    background: transparent!important;
}
.layer-video {
    width: 100%;
}

.layer-video video {
    width: 100%;
}

@keyframes aniDown{
    0%{
        opacity: 0;
        top: -50px;
    }
    100%{
        opacity: 1;
        top: 0;
    }
}
@keyframes aniUp{
    0%{
        opacity: 0;
        transform:  translateY(50px);
    }
    100%{
        opacity: 1;
        transform:  none;
    }
}
.more-wonderful{
    padding: 50px 20px;
    background: #F9F9F9;
}
.more-wonderful .intro{
    max-width: 800px;
    margin: 0 auto;
    color: #777;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
}
.more-wonderful .more-btn-tip{
    margin-top: 30px;
}


/*2.1集团介绍*/
.top-lg-banner img{
    width: 100%;
}
.bread-nav{
    height: 70px;
    background: #fff;
    line-height: 70px;
    padding: 0 120px;
}
.bread-nav .bread-list li{
    float: left;
    margin-right: 50px;
}
.bread-nav .bread-list li a{
    display: inline-block;
    height: 70px;
    font-size: 16px;
    color: #666;
    transition: all .2s ease-out;
}
.bread-nav .bread-list li a:hover{
    color: #d1a962;
}
.bread-nav .bread-list li.active a{
    border-bottom: 2px solid #d1a962;
    color: #d1a962;
}
.bread-nav .navigate-list a{
    color: #999;
}
.bread-nav .navigate-list a:hover{
    color: #d1a962;
}
.bread-nav .navigate-list .iconfont{
    color: #999;
    vertical-align: middle;
}
.bread-nav .navigate-list a.active{
    color: #666;
}
.bread-nav .navigate-list a:last-child{
    color: #666;
}
.land-intro{
    padding-top: 50px;
    padding-bottom: 120px;
    background: #f4f4f4;
}
.land-intro .land-content{
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
    background: url("../images/sm-tip-bg.jpg") no-repeat left top;
    margin-bottom: 50px;
}
.land-intro .land-content .pic img{
    max-width: 100%;
   
}
.land-intro .txt .name-zh-tip{
    font-size: 34px;
    color: #333;
}
.land-intro .txt .name-en-tip{
    color: #bbb;
    font-size: 16px;
    letter-spacing: .2em;
    margin-bottom: 45px;
}
.land-intro .txt .top-tip{
    font-size: 16px;
    color: #333;
    line-height: 24px;
    margin-bottom: 40px;
    text-align: justify;
}
.land-intro .txt p{
    color: #777;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 30px;
}
.land-intro .pic {
    padding-top: 115px;
}
.land-intro .no-paddingTop {
    padding-top: 0;
}
.land-intro .land-slide{
    width: 70.5%;
}
.land-intro .land-slide .swiper-slide{
    position: relative;
}
.land-intro .land-slide .swiper-slide img{
    width: 100% !important;
    height: auto!important;
}
.land-intro .land-slide .bottom-tip{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0,0,0,.6);
}
.land-intro .land-slide .hover-show{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #d1a962;
    display: none;
}
.land-intro .land-slide .hover-show .name{
    font-size: 20px;
    color: #fff;
}
.land-intro .land-slide .hover-show img{
    width: auto;
}
.land-intro .land-slide .hover-show .inner-box {
    margin-top: 70px;
}
.land-intro .land-slide .swiper-slide:hover .hover-show{
    display: block;
}
.land-intro .slide-box{
    position: relative;
}
.land-intro .slide-box .swiper-button-next{
    background: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #888;
    text-align: center;
    right: 8%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);

}
.land-intro .slide-box .swiper-button-next .iconfont{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.land-intro .slide-box .swiper-button-prev{
    background: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #888;
    text-align: center;
    left: 8%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.land-intro .slide-box .swiper-button-prev .iconfont{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.land-intro .slide-box .swiper-button-prev:hover{
    background: #d1a962;
}
.land-intro .slide-box .swiper-button-next:hover{
    background: #d1a962;
}

/*2.2董事长寄语*/
.president-speech .position-box{
    font-size: 16px;
    color: #333;
    line-height: 26px;
    font-weight: bold;
}
.president-speech .position{
    color: #333;
    font-weight: normal;
    font-size: 14px;
    display: inline-block;
    width: 230px;
}
.president-speech .land-content{
    margin-bottom: 0;
}


/*2.3总裁致辞*/
.president-speech .top-tip{
    position: relative;
}
.president-speech .top-tip:after{
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    display: inline-block;
    width: 20px;
    border-bottom: 3px solid #d1a962;
}

/*2.4组织架构*/
.organizational-structure{
    width: 100%;
    position: relative;
    background: #F4F4F4;
    padding: 50px 0;
    overflow: hidden;
}
.organizational-structure .title-box{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.organizational-structure .pic img{
    width: 100%;
    max-width: 100%;
}

/*2.5发展历程*/
.px-content{
    padding-top: 50px;
    background: #F4F4F4;
    padding-bottom: 120px;
}
.development-history {
    padding: 50px;
}
.development-history .wrapper {
    max-width: 1688px;
    margin: 0 auto;
    /*background-color: #FFFFFF;*/
    padding: 0 20px 70px;
}
.development-history .inner-box{
    width: 1300px;
    margin: 0 auto;
    /*padding-top: 60px;*/
    /*background: #FFFFFF;*/
}
.development-history .inner-box .model-zh-title {
    margin-bottom: 60px;
}
.development-history .part-price {
    max-width: 800px;
    margin: 0 auto;
}
.development-history .part-price .title{
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
}
.development-history .price-list li{
    color: #666;
    line-height: 36px;
    font-size: 16px;
}
.development-history .price-list li .iconfont{
    display: inline-block;
    margin-right: 5px;
}
.development-history .progress-txt-slide{
    margin-bottom: 50px;
}
.development-history .progress-txt-slide .swiper-slide {
    background-color: #F4F4F4;
}
.development-history .progress-txt-slide .time{
    font-size: 20px;
    color: #d1a962;
    font-weight: bold;
    margin-bottom: 20px;
}
.development-history .progress-txt-slide .year{
    padding-right: 5px;
    font-family: Arial;
    font-style: italic;
}
.development-history .progress-txt-slide .describe{
    color: #666;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 44px;
}
.development-history .progress-txt-slide img{
    width: 100%;
}
.development-history .slide-box{
    position: relative;
}
.development-history .progress-pic-slide{
    width: 80%;
}
.development-history .progress-pic-slide img{
    width: 100%;
}
.part-price .swiper-button-next{
    background: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #888;
    text-align: center;
    right: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);

}
.part-price .swiper-button-next .iconfont{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.part-price .swiper-button-prev{
    background: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #888;
    text-align: center;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.part-price .swiper-button-prev .iconfont{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.part-price .swiper-button-prev:hover{
    background: #d1a962;
}
.part-price .swiper-button-next:hover{
    background: #d1a962;
}


/*2.6集团荣誉*/
.honors-alert{
    display: none;
}
.layui-layer img{
    display: block;
    width: 100%;
}
.honors-box{
    background: url("../images/honors-bg.jpg") no-repeat;
    background-size: cover;
}
.honors-box .honors-list{
    padding: 0 20px;
    padding-bottom: 105px;
    max-width: 1400px;
    margin: 0 auto;
}
.honors-box .honors-item .inner-box{
    position: relative;
    width: 80%;
    float: left;
    height: 90px;
    padding: 3px;
    padding-right: 20px;
}
.honors-box .honors-item:hover .dot{
    color: #d1a962;
}
.honors-box .honors-item:hover:after{
    border-color: #d1a962;
}
.honors-box .honors-item.item-left{
    text-align: right;
}
.honors-box .honors-item{
    position: relative;
    height: 90px;
    width: 50%;
}
.honors-box .honors-item .time{
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 0;
}
.honors-box .honors-item .del{
    font-size: 20px;
    color: #333;
    width: 100%;
    height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

}
.honors-box .honors-item .sm-pic{
    position: relative;
    height: 100%;
    width: 140px;
    overflow: hidden;
    display: none;
}
.honors-box .honors-item .sm-pic .iconfont{
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 24px;
    cursor: pointer;
}
.honors-box .honors-item .sm-pic img{
    display: inline-block;
    width: 100%;
}
.honors-box .honors-item .inner-box:hover{
    background: #d1a962;
}
.honors-box .honors-item .inner-box:hover .time{
    color: #fff;
}
.honors-box .honors-item .inner-box:hover .del{
    color: #fff;
}
.honors-box .honors-item .inner-box:hover .sm-pic{
    display: block;
}
.honors-box .honors-item .dot{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -moz-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    -o-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    right: 0;
    margin: 0 auto;
    font-size: 24px;
    color: #bbb;
    width: 24px;
}
.honors-box .item-left:after{
    position: absolute;
    top: 50%;
    right: 2%;
    content: "";
    display: inline-block;
    width: 18%;
    border-top: 1px dashed #A9A9A9;

}
.honors-box .honors-item .inner-box:hover .dot{
    color: #d1a962;
}
.honors-box .honors-item .inner-box:hover:after{
    border-color: #d1a962;
}
.honors-box .honors-item.item-right .inner-box {
    position: relative;
    width: 80%;
    float: right;
    height: 90px;
    padding: 3px;
    padding-left: 20px;
}
.honors-box .honors-item.item-right .dot{
    left: 0;
    right: auto;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.honors-box .item-right:after{
    position: absolute;
    top: 50%;
    left: 2%;
    content: "";
    display: inline-block;
    width: 18%;
    border-top: 1px dashed #A9A9A9;
}
.honors-box .honors-item .dot:after{
    position: absolute;
    left: 47%;
    bottom: -63px;
    content: "";
    display: inline-block;
    height: 70px;
    border: 1px solid #C7C7C7;
}
.honors-box .honors-item-box:last-child .dot:after{
    height: 140px;
    bottom: -133px;
}
.honors-more-btn{
    display: inline-block;
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #d1a962;
    margin-top: 35px;
}
.honors-more-btn:hover{
    color: #fff;
}

/*3.1水游城系列*/
.estate-development .top-tip{
    font-size: 16px;
    color: #666;
    left: 24px;
}
.estate-development .estate-content{
    width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
}

.estate-development .estate-content .intro {
}

.estate-development .estate-content .intro p {
    display: flex;
    justify-content: center;
    align-items: center;
}
.estate-development .intro .pic {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.estate-development .intro .pic p {
    width: 50%;
    padding: 0 10px;
}
.estate-development .intro .pic p img{
    height: auto!important;
    width: 100%!important;
}
.estate-development .estate-item{
    width: 23.5%;
    float: left;
    margin-right: 2%;
    cursor: pointer;
    margin-bottom: 50px;
}
.estate-development .estate-item.right-none{
    margin-right: 0;
}
.estate-development .estate-item:nth-child(4n){
    margin-right: 0;
}
.estate-development .estate-item .pic{
    overflow: hidden;
    /*height: 340px;*/
    margin-bottom: 15px;
}
.estate-development .estate-item .pic img{
    /*min-height: 100%;*/
    min-width: 100%;
    transition: all .2s ease-out;
}
.estate-development .estate-item .pic:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.estate-development .estate-item .name{
    line-height: 22px;
    height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.estate-development .estate-item .name a{
    font-size: 16px;
    color: #666;
    transition: all .2s ease-out;
}
.estate-development .estate-item .state{
    margin-top: 5px;
    color: #999;
    line-height: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
    transition: all .2s ease-out;
}
.estate-development .estate-item .iconfont{
    font-size: 20px;
    vertical-align: middle;
    color: #999;
    transition: all .2s ease-out;
}
.estate-development .estate-item:hover .name a{
    color: #d1a962;
}
.estate-development .estate-item:hover .state{
    color: #d1a962;
}
.estate-development .estate-item:hover .iconfont{
    color: #d1a962;
}
.pagination>li>a{
    display: inline-block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
    border: 0;
    background: transparent;
    font-size: 18px;
    color: #999;
    padding: 0;
    margin: 0 5px;
}
.pagination>li>a:hover{
    background: #d1a962;
    color: #fff;
    border-color: #d1a962;
}
.pagination>li.active>a{
    color: #fff;
    border-color: #d1a962;
    background: #d1a962;
}
.pagination>li.active>a:hover{
    background: #d1a962;
}
.page-list .prev-btn,.page-list .next-btn{
    position: relative;
    float: left;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #B1B1B1;
    border-radius: 0 !important;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 20px;
    margin-top: 2px;
}
.page-list .prev-btn a,.page-list .next-btn a{
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
}
.page-list .prev-btn a:hover,.page-list .next-btn a:hover{
    background: transparent;
}
.page-list .prev-btn span,.page-list .next-btn span{
    display: none;
}
.page-list .prev-btn:hover,.page-list .next-btn:hover{
    color: #fff;
    border-color: #d1a962;
    background: #d1a962;
}
.page-list .iconfont{
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*4.1企业精神*/
.spirit-enterprise{
    position: relative;
    background: #F4F4F4 url("../images/sm-tip-bg.jpg") no-repeat 10% 50px;
    padding-left: 120px;
    padding-right: 120px;
}
.spirit-enterprise:before{
    position: absolute;
    right: 0;
    top: 20px;
    content: "";
    display: inline-block;
    width: 150px;
    height: 300px;
    background: url("../images/sm-tip-02.jpg");
    background-size: cover;
}
.spirit-enterprise .spirit-content{
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}
.spirit-enterprise .spirit-content .pic{
    height: 480px;
    overflow: hidden;
    padding: 0;
}
.spirit-enterprise .spirit-content .pic img{
    min-width: 100%;
    min-height: 100%;
    max-width: 150%;
    max-height: 150%;
}
.spirit-content .txt{
    position: relative;
    height: 480px;
    padding: 0;
}
.spirit-content .txt .inner-box{
    display: inline-block;
}
.spirit-content .txt .lg-title{
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}
.spirit-content .txt b{
    color: #d1a962;
}
.spirit-content .txt .tip{
    font-size: 20px;
    color: #666;
    margin-bottom: 0;
}
.spirit-content .txt:before{
    position: absolute;
    left: -40px;
    top: 35%;
    content: "";
    display: inline-block;
    border: 20px solid transparent;
    border-right: 20px solid #F4F4F4;
}
.spirit-content .txt:after{
    position: absolute;
    right: 0;
    top: 35%;
    content: "";
    display: inline-block;
    height: 40px;
    border-right: 4px solid #d1a962;
}
.spirit-content .txt.txt-left:before{
    right: -40px;
    left: auto;
    border: 20px solid transparent;
    border-left: 20px solid #F4F4F4;
}
.spirit-content .txt.txt-left:after{
    left: 0;
    right: auto;
}
.spirit-enterprise .spirit-bottom .tip{
    font-size: 26px;
    color: #333;
    font-weight: bold;
}
.spirit-enterprise .spirit-bottom .del{
    font-size: 24px;
    color: #666;
}
.spirit-enterprise .spirit-bottom{
    margin-top: 60px;
}

/*4.2社会责任*/
.social-responsible{
    background: #F4F4F4 url("../images/sm-tip-bg.jpg") no-repeat 10% 50px;
}
.responsible-box{
    margin-bottom: 50px;
}
.social-responsible .bottom-pic{
    height: 200px;
    background: #d1a962;
}
.responsible-item.item-right .bottom-pic{
    text-align: left;
}
.responsible-item.item-left .bottom-pic{
    text-align: right;
}
.responsible-item .item-content{
    width: 73%;
    margin: 0 auto;
    background: #fff;
}
.responsible-item.item-right .bottom-pic{
    width: 86.5%;
    margin-left: 13.5%;
}
.responsible-item.item-left .bottom-pic{
    width: 86.5%;
}
.responsible-item .content-pic{
    padding: 0;
}
.responsible-item .pic-box{
    overflow: hidden;
    height: 500px;
    margin-bottom: 30px;
}
.responsible-item .pic-box{
    min-width: 100%;
    min-height: 100%;
    margin-top: -100px;
}
.responsible-item .pic-del .txt{
    font-size: 20px;
    color: #333;
    margin-bottom: 0;
    height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.responsible-item .pic-del .iconfont{
    display: inline-block;
    font-size: 30px;
    margin-bottom: 20px;
    opacity: 0;
}
.responsible-box{
    margin-top: 80px;
}
.responsible-box{
    padding-top: 100px;
}
.responsible-item .content-txt{
    padding: 0 80px;
}
.responsible-item .content-txt .title{
    font-size: 20px;
    color: #333;
    margin-top: 100px;
}
.responsible-item .content-txt .detail{
    color: #999;
    line-height: 24px;
    margin-top: 40px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.responsible-item .content-txt .view-more{
    display: inline-block;
    height: 45px;
    width: 180px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    background: #333;
    transition: all .2s ease-out;
    margin-top: 110px;
}
.responsible-item .content-txt .view-more:hover{
    background: #d1a962;
}

/*4.3活动详情*/
.responsible-detail-box{
    width: 780px;
    margin: 0 auto;
    margin-top: 50px;
}
.responsible-detail-box .title{
    font-size: 22px;
    color: #333;
}
.responsible-detail-box .sub-title{
    margin-bottom: 50px;
    font-size: 22px;
    color: #333;
}
.responsible-detail-box a:hover {
    text-decoration: underline;
}
.responsible-detail-box p{
    color: #666;
    line-height: 2em;
    margin-bottom: 0;
    text-align: justify;
    font-size: 16px;
    /*text-indent: 32px;*/
}
.responsible-detail-box .txt{
    color: #666;
    line-height: 2em;
    margin-bottom: 0;
    text-align: justify;
    font-size: 16px;
    text-indent: 32px;
}
.responsible-detail-box img{
    width: 100%;
    margin: 20px 0;
}
.responsible-detail-box .bottom-tip{
    color: #666;
    text-align: right;
    margin-top: 20px;
}
.responsible-detail-box .page-change{
    margin-top: 50px;
}
.responsible-detail-box .page-change .page-item a{
    display: inline-block;
    color: #999;
    transition: all .2s ease-out;
}
.responsible-detail-box .page-change .page-item a:hover{
    color: #d1a962;
}

/*5.1人才战略*/
.talent-strategy{
    background: #F4F4F4 url("../images/sm-tip-bg.jpg") no-repeat 10% 50px;
}
.talent-strategy .talent-content{
    width: 780px;
    margin: 0 auto;
    margin-top: 50px;
}
.talent-strategy .talent-content img{
    width: 100%;
    margin: 20px 0;
}
.talent-strategy .txt{
    color: #666;
    line-height: 24px;
}

/*5.2人才招聘*/
.recruitment-content{
    width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
}
.recruitment-content .job-box{
    display: none;
}
.recruitment-content .job-box.active{
    display: block;
}
.recruitment-content .tab-change{
    display: inline-block;
    border: 1px solid #C9C9C9;
    border-radius: 30px;
}
.recruitment-content .change-item{
    width: 120px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease-out;
}
.recruitment-content .change-item:hover a{
    color: #d1a962;
}
.recruitment-content .change-item.active{
    background: #d1a962;
    color: #fff;
}
.recruitment-content .change-item.active a{
    color: #fff;
}
.recruitment-content .job-name-list{
    width: 29%;
}
.recruitment-content .job-name-item{
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    background: #fff;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #d1a962;
    cursor: pointer;
    transition: all .2s ease-out;
}
.recruitment-content .job-name-item:last-child{
    border-bottom: 0;
}
.recruitment-content .job-name-item:hover{
    color: #d1a962;
}
.recruitment-content .job-name-item.active{
    background: #d1a962;
    color: #fff;
}
.recruitment-content .job-del-box{
    width: 70%;
    background: #fff;
    display: none;
}
.recruitment-content .job-del-box.active{
    display: block;
}
.recruitment-content .job-del-box .top-txt{
    padding: 20px 40px;
    min-height: 450px;
    background: url("../images/sm-tip-03.jpg") no-repeat right center;
}
.recruitment-content .top-txt .name{
    color: #d1a962;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 40px;
}
.recruitment-content .top-txt .sm-name{
    color: #666;
    font-weight: bold;
}
.recruitment-content .top-txt .txt{
    color: #999;
    line-height: 24px;
    margin-bottom: 0;
}
.recruitment-content .top-txt .require{
    margin-bottom: 50px;
    margin-top: 15px;
}
.recruitment-content .bottom-txt{
    padding: 40px;
    background: #FAFAFA;
}
.recruitment-content .bottom-txt .contact-box{
    margin-bottom: 30px;
}
.recruitment-content .bottom-txt .contact{
    width: 50%;
}
.recruitment-content .bottom-txt .contact:last-child{
    padding-left: 35px;
    border-left: 1px solid #E9E9E9;
}
.recruitment-content .bottom-txt .txt{
    color: #666;
    margin-bottom: 5px;
}
.recruitment-content .bottom-txt .del{
    color: #666;
    margin-bottom: 0;
    font-weight: bold;
}
.recruitment-content .delivery{
    display: inline-block;
    width: 110px;
    height: 35px;
    line-height: 35px;
    background: #d1a962;
    color: #fff;
    text-align: center;
}

/*6.1新闻资讯*/
.latest-information{
    background: #F4F4F4 url("../images/sm-tip-bg.jpg") no-repeat 10% 50px;
}
.latest-information .info-content{
    width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
}
.latest-information .info-item{
    position: relative;
    padding: 30px;
}
.latest-information .info-item .pic{
    width: 235px;
    height: 165px;
    overflow: hidden;
}
.latest-information .info-item .pic img{
    min-height: 100%;
    min-width: 100%;
    max-width: 150%;
    max-height: 150%;
}
.latest-information .info-item .txt{
    width: 950px;
    margin-left: 35px;
}
.latest-information .info-item .title{
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.latest-information .info-item .title a{
    font-size: 20px;
    color: #333;
}
.latest-information .info-item .sub-title{
    margin-bottom: 40px;
}
.latest-information .info-item .sub-title a{
    font-size: 20px;
    color: #333;
}
.latest-information .info-item .tip{
    display: inline-block;
    width: 25px;
    border-bottom: 2px solid #bbb;
    margin-bottom: 20px;
}
.latest-information .info-item .del{
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.latest-information .info-item .time{
    width: 100px;
}
.latest-information .info-item .month{
    font-size: 20px;
    color: #888;
    font-family: Arial;
}
.latest-information .info-item .year{
    color: #888;
}
.latest-information .info-item .iconfont{
    position: absolute;
    right: 35px;
    bottom: 35px;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #8E8E8E;
    line-height: 33px;
    text-align: center;
}
.latest-information .info-item .iconfont a{
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.latest-information .info-item:hover{
    background: #d1a962;
}
.latest-information .info-item:hover .title a{
    color: #fff;
}
.latest-information .info-item:hover .sub-title a{
    color: #fff;
}
.latest-information .info-item:hover .tip{
    border-color: #fff;
}
.latest-information .info-item:hover .del{
    color: #fff;
}
.latest-information .info-item:hover .month{
    color: #fff;
}
.latest-information .info-item:hover .year{
    color: #fff;
}
.latest-information .info-item:hover .iconfont{
    border-color: #fff;
    background: #fff;
    color: #d1a962;
}
.latest-information .page-list{
    margin-top: 40px;
}

/*7.联系我们*/
.contact-us{
    padding-bottom: 0;
}
.contact-list{
    display: inline-block;
    margin-top: 50px;
    padding-bottom: 70px;
}
.contact-list .contact-item{
    float: left;
    margin: 0 50px;
    cursor: pointer;
}
.contact-list .contact-item .iconfont{
    font-size: 60px;
    color: #999;
}
.contact-list .contact-item .name{
    font-size: 18px;
    color: #666;
}
.contact-list .contact-item .txt{
    font-family: "Century Gothic";
    font-size: 18px;
    color: #666;
}
.contact-list .contact-item .en-address{
    font-size: 12px;
}
.contact-list .contact-item:hover .iconfont{
    color: #d1a962;
}
.contact-list .contact-item:hover .name{
    color: #d1a962;
}
.contact-list .contact-item:hover .en-address{
    color: #d1a962;
}
.contact-list .contact-item:hover .txt{
    color: #d1a962;
}
.contact-input{
    background: url("../images/contact-us-bg.jpg");
    background-size: cover;
    padding-top: 75px;
    padding-bottom: 120px;
}
.contact-input .inner-box{
    width: 660px;
    margin: 0 auto;
}
.contact-input .inner-box input{
    height: 50px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}
.contact-input .inner-box input:focus{
    box-shadow: 0 0 10px #ccc;
    border-color: #ccc;
}
.contact-input .inner-box textarea{
    height: 130px;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 0;
    outline: 0;
    resize: none;
}
.contact-input .inner-box textarea:focus{
    box-shadow: 0 0 10px #ccc;
}
.contact-input .submit-btn{
    display: inline-block;
    width: 180px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #d1a962;
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}
/*404页面*/
.error-box{
    padding-top: 300px;
    padding-bottom: 300px;
    background: #F4F4F4;
}
.error-box .pic img{
    width: 100%;
}
.back-index-btn{
    display: inline-block;
    width: 170px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: #d1a962;
    margin-top: 10px;
}
.back-index-btn:hover{
    color: #fff;
}







/*@media (max-width: 1850px){*/
    /*.foot .left-box{*/
        /*margin-top: 50px;*/
        /*float: left !important;*/
    /*}*/
/*}*/
@media (max-width: 1700px){
    .foot .foot-nav {
        margin-right: 30px;
    }
}
@media (max-width: 1600px){
    .navbar{
        padding: 0 2%;
    }
    .navbar-nav li{
        width: 105px;
    }
    .navbar-brand img{
        width: 100px;
    }
    .development-history .inner-box{
        width: 90%;
    }
    .honors-box .honors-list{
        padding: 0 20px;
    }
    .honors-box .honors-item .inner-box{
        width: 90%;
    }
    .honors-box .honors-item.item-right .inner-box{
        width: 90%;
    }
    .honors-box .honors-item:after{
        width: 8%;
    }
    .estate-development .estate-content{
        width: 95%;
    }
    .latest-information .info-content{
        width: 1200px;
    }
    .latest-information .info-item .txt{
        width: 750px;
    }
    .contact-list .contact-item .name{
        font-size: 14px;
    }
    .contact-list .contact-item .txt{
        font-size: 14px;
    }
    .contact-list .contact-item .iconfont{
        font-size: 50px;
    }
    .contact-list .contact-item{
        margin: 0 30px;
    }
    .index-news .news-content .top-time{
        height: 40px;
    }
    .index-news .news-content-right{
        padding-top: 40px;
    }
    .index-news .news-list {
        height: 430px;
    }
    .index-news .news-list-item .news-title {
        margin-bottom: 5px;
    }
    .index-news .news-content .news-pic{
        height: 400px;
        line-height: 300px;
    }
}
@media (max-width: 1540px){
    .foot .foot-nav{
        margin-right: 20px;
    }
    .foot .foot-content .contact-us {
        width: 360px;
    }
    .foot .bottom-logo {
        margin-right: 0;
    }
}
@media (max-width: 1370px){
    .foot .foot-nav{
        display: none;
    }
    .navbar-nav li {
        width: 90px;
        padding: 0 10px;
    }
}
@media (max-width: 1300px){
    .navbar .link-px{
        display: none;
    }
    .honors-box .honors-item .inner-box:hover .sm-pic{
        display: none;
    }
}
@media (max-width: 1200px){
    .estate-development .intro .pic p {
        max-width: 150px;
    }
    .foot .foot-nav{
        margin-bottom: 20px;
    }
    .foot .right-box{
        float: left !important;
        margin-bottom: 30px;
    }
    .navbar-brand{
        height: 75px;
        line-height: 75px;
        padding: 0;
    }
    .navbar-brand img{
        height: 60px;
        margin-left: 20px;
        width: auto;
    }
    .navbar .link-px{
        height: 75px;
        line-height: 75px;
        margin-right: 20px;
    }
    .link-px img{
        height: 35px;
    }
    .navbar-nav{
        height: 75px;
        width: 100%;
    }
    .navbar-nav .zh-title{
        margin-top: 0;
        font-size: 12px;
        height: 100%;
        line-height: 40px;
    }
    .navbar-nav li{
        width: 11.1%;
    }
    .navbar-nav .en-title{
        display: none;
    }
    .navbar .link-px{
        display: block;
    }
    .index-banner .slide-txt .title{
        font-size: 30px;
    }
    .index-banner .swiper-slide .slide-txt{
        top: 45%;
    }
    .index-banner .slide-txt .know-more{
        margin-top: 20px;
    }
    .index-strategy .title-box{
        top: 20px;
    }
    .index-distribute .distribute-left{
        position: relative;
        width: 100%;
        padding-top: 40px;
        text-align: center;
        background: none;
        left: 0;
    }
    .distribute-left .model-zh-title{
        padding: 0;
    }
    .distribute-left .model-en-title{
        padding: 0;
    }
    .index-distribute .distribute-list li{
        display: inline-block;
        width: 150px;
        padding: 0;
        text-align: center;
    }
    .index-distribute .distribute-list{
        display: inline-block;
        width: 100%;
        white-space: nowrap;
        overflow-y: auto;
    }
    .index-distribute .distribute-right{
        width: 100%;
        margin: 0 auto;
        float: none !important;
        padding-top: 60px;
        background: transparent;
    }
    .index-distribute .swiper-button-prev{
        top: 25px;
    }
    .index-distribute .swiper-button-next{
        top: 25px;
    }
    .bread-nav{
        height: 140px;
        padding: 0 30px;
    }
    .bread-nav .navigate-list{
        width: 100%;
    }
    .land-intro .slide-box .swiper-button-prev{
        left: 3%;
    }
    .land-intro .slide-box .swiper-button-next{
        right: 3%;
    }
    .president-speech .bottom-del{
        margin-bottom: 30px;
    }
    .development-history .part-price{
        margin-bottom: 40px;
    }
    .honors-box .honors-item .inner-box:hover .sm-pic{
        display: block;
    }
    .honors-box .honors-item:after{
        display: none;
    }
    .honors-box .honors-item .dot{
        bottom: -40px;
        top: auto;
        height: 24px;
    }
    .honors-box .honors-item{
        width: 100%;
        text-align: center !important;
        height: auto;
        margin-bottom: 50px;
    }
    .honors-box .honors-item .inner-box{
        width: 100%;
        height: auto;
        padding: 0;
        padding-bottom: 20px;
        background: #d1a962;
    }
    .honors-box .honors-item .sm-pic{
        display: block;
        float: none !important;
        margin: 0 auto;
        margin-top: 20px;
    }
    .honors-box .honors-item .txt{
        float: none !important;
    }
    .honors-box .honors-item .del{
        width: 100%;
    }
    .honors-box .honors-item.item-right .inner-box{
        width: 100%;
    }
    .honors-box .honors-item .dot{
        display: none;
    }
    .honors-box .honors-item.item-right .inner-box{
        height: auto;
    }
    .honors-box .honors-item .time{
        color: #fff;
        font-size: 14px;
    }
    .honors-box .honors-item .del{
        color: #fff;
        font-size: 14px;
    }
    .estate-content .intro{
        width: 100%;
    }
    .estate-content .estate-list{
        width: 100%;
        margin-left: 0;
    }
    .estate-content .intro .pic{
        margin: 20px 0;
    }
    .responsible-item .pic-box{
        height: 400px;
    }
    .responsible-item .content-txt .title{
        margin-top: 40px;
    }
    .responsible-item .content-txt .view-more{
        margin-top: 50px;
    }
    .recruitment-content{
        width: 100%;
        padding: 0 20px;
    }
    .recruitment-content .job-name-list{
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        margin-bottom: 20px;
    }
    .recruitment-content .job-name-list .job-name-item{
        display: inline-block;
        width: 200px;
        border-bottom: 0;
        margin-left: -5px;
    }
    .recruitment-content .job-name-list .job-name-item:first-child{
        margin-left: 0;
    }
    .recruitment-content .job-del-box{
        width: 100%;
    }
    .latest-information .info-content{
        width: 800px;
    }
    .latest-information .info-item .txt{
        width: 350px;
    }
    .contact-list{
        width: 100%;
        padding: 0 20px;
        padding-bottom: 70px;
    }
    .contact-list .contact-item{
        width: 25%;
    }
}
@media (max-width: 992px){
    .responsible-item .item-content{
        width: 100%;
    }
    .responsible-item .content-pic{
        width: 60%;
        margin: 0 auto;
    }
    .responsible-item .content-txt .title{
        margin-top: 0;
    }
    .responsible-item.item-right .bottom-pic{
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
    .responsible-item.item-left .bottom-pic{
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
    .responsible-item .content-txt{
        padding-bottom: 40px;
    }
    .responsible-detail-box{
        width: 100%;
        padding: 0 20px;
    }
    .talent-strategy .talent-content{
        width: 100%;
        padding: 0 20px;
    }
    .latest-information .info-content{
        width: 100%;
        padding: 0 20px;
    }
    .latest-information .info-item .txt{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    .latest-information .info-item .time{
        width: 100%;
        margin-top: 20px;
    }
    .latest-information .info-item .date-box{
        float: left;
    }
    .latest-information .info-item .month{
        text-align: left;
    }
    .latest-information .info-item .year{
        text-align: left;
    }
    .error-box{
        padding: 100px 0;
    }
    .index-news .more-btn{
        margin-right: 15px;
    }
    .news-content .news-slide-pagination{
        text-align: center;
        bottom: 10px;
    }
    .foot .bottom-logo {
        margin-right: 0;
    }
    .foot .bottom-logo img {
        width:  220px;
    }
}
@media (max-width: 767px){
    .navbar{
        position: relative;
        background: #fff;
        margin-bottom: 0;
        border-top: 0;
        padding: 0;
    }
    .navbar-header{
        padding: 0 15px;
    }
    .navbar-brand{
        height: 60px;
        padding: 0;
        line-height: 58px;
    }
    .navbar-brand img{
        height: 40px;
        width: auto;
        margin-left: 0;
    }
    .navbar-toggle{
        border: 1px solid #d1a962;
        padding: 10px;
        margin-top: 13px;
        margin-right: 0;
    }
    .navbar-toggle .icon-bar{
        background: #d1a962;
    }
    .navbar-nav{
        height: auto;
        width: 100%;
        margin: 0 auto;
    }
    .navbar-nav li{
        float: none;
        height: 40px;
        width: 100%;
        transition: all .2s ease-out;
    }
    .navbar-nav li a{
        padding: 0;
        line-height: 40px;
    }
    .navbar-nav li.active{
        border-bottom: 0;
        background: #fff;
    }
    .navbar-nav li.active .zh-title{
        color: #d1a962;
    }
    .navbar-nav li:hover{
        background: #fff;
    }
    .navbar-collapse{
        background: #d1a962;
        padding: 0;
        border-top: 1px solid #d1a962;
    }
    .navbar-nav .zh-title{
        margin: 0;
        text-align: center;
    }
    .navbar-nav .en-title{
        display: none;
    }
    .foot .foot-head{
        height: 60px;
        line-height: 60px;
        margin-bottom: 0;
    }
    .foot .foot-head .link-oa{
        float: left !important;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .foot {
        padding: 0;
    }
    .foot .foot-content .wx {
        float: left!important;
    }
    .foot .foot-content .wx img{
        width: 100px;
    }
    .foot .foot-content .link-aqua{
        width: 100%;
        text-align: left;
    }
    .foot .foot-content .right-box{
        width: 100%;
    }
    .foot .foot-content .left-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .foot .foot-content .contact-us{
        width: 100%;
    }
    .foot .foot-tip{
        height: auto;
        line-height: normal;
        padding: 10px 5%;
    }
    .foot .foot-content{
        flex-direction: column;
        padding: 20px;
    }
    .foot .bottom-logo {
        margin: 0;
    }
    .foot .contact-us .email{
        height: auto;
        line-height: 20px;
        border-bottom: 0;
        display: flex;
        margin-bottom: 10px;
    }
    .foot .contact-us .email .del{
        float: left !important;
        margin-left: 10px;
    }
    .index-banner .slide-txt .title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .index-banner .swiper-slide .slide-txt{
        top: 20%;
        left: 10%;
    }
    .index-banner .slide-txt .know-more{
        display: none;
    }
    .index-banner .slide-txt .en-txt{
        font-size: 14px;
        letter-spacing: 0;
        width: 300px;
    }
    .index-banner .swiper-pagination{
        text-align: center;
    }
    .index-news .news-content-right{
        border: 0;
        padding-top: 20px;
        min-height: 100px;
    }
    .more-btn{
        bottom: 20px;
        left: 15px;
    }
    .index-distribute .distribute-right{
        position: relative;
    }
    .index-news .news-content .news-pic img{
        width: 100%;
        min-height: 50px;
    }
    .index-news .news-content{
        padding: 0;
        min-height: auto;
    }
    .index-news .news-content .top-time{
        height: 45px;
    }
    .index-news .news-content .news-slide {
        margin-top: 0;
    }
    .index-news .news-content .news-pic{
        height: 270px;
    }
    .index-news .news-content .news-pic .news-title {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        font-size: 14px;
    }
    .index-news .list-item{
        width: 100%;
    }
    .index-news .more-btn-tip{
        margin-top: 20px;
    }
    .index-strategy .title-box{
        position: relative;
        top: 0;
        padding: 20px 0;
    }
    .index-strategy .title-box .intro{
        color: #666;
        font-size: 12px;
    }
    .index-distribute .swiper-button-next{
        font-size: 30px;
        top: 40px;
    }
    .index-distribute .swiper-button-prev{
        left: 0;
        font-size: 30px;
        top: 40px;
    }
    .index-distribute .distribute-list li{
        width: 100px;
    }
    .bread-nav .bread-list{
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
    }
    .bread-nav .bread-list li{
        display: inline-block;
        float: none;
    }
    .bread-nav{
        padding: 0 20px;
    }
    .land-intro .land-content{
        width: 100%;
        padding: 30px 5px;
    }
    .land-intro .land-slide{
        width: 90%;
    }
    .land-intro .slide-box .swiper-button-prev{
        left: 10%;
    }
    .land-intro .slide-box .swiper-button-next{
        right: 10%;
    }
    .president-speech .bottom-del .pull-left{
        margin-top: 0;
    }
    .president-speech .bottom-del .pull-right{
        text-align: left;
        width: 100%;
    }
    .land-intro{
        padding-bottom: 50px;
    }
    .organizational-structure .title-box{
        position: relative;
        top: 0;
    }
    .organizational-structure{
        padding-top: 20px;
    }
    .development-history .inner-box{
        width: 100%;
        padding-top: 0;
    }
    .development-history .wrapper {
        padding-bottom: 0px;
    }
    .px-content{
        padding-bottom: 50px;
    }
    .estate-content .intro{
        padding: 0 20px;
    }
    .estate-content .estate-list{
        padding: 0 20px;
    }
    .estate-development .estate-item{
        width: 100%;
    }
    .page-list .prev-btn, .page-list .next-btn{
        margin: 0 5px;
        margin-top: 2px;
    }
    .pagination>li>a, .pagination>li>span{
        margin: 0;
    }
    .spirit-content .txt:before{
        top: -40px;
        right: auto;
        left: 50%;
        z-index: 100;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        border: 20px solid transparent;
        border-bottom: 20px solid #F4F4F4;
    }
    .spirit-content .txt.txt-left:before{
        top: -40px;
        right: auto;
        left: 50%;
        z-index: 100;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        border: 20px solid transparent;
        border-bottom: 20px solid #F4F4F4;
    }
    .spirit-enterprise{
        padding-right: 20px;
        padding-left: 20px;
    }
    .spirit-content .txt:after{
        display: none;
    }
    .spirit-enterprise .spirit-content .pic{
        height: 300px;
    }
    .spirit-content .txt{
        height: 300px;
    }
    .spirit-enterprise .spirit-bottom{
        padding-top: 30px;
        margin-top: 0;
        border-top: 1px solid #999
    }
    .spirit-content .txt .lg-title{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .spirit-content .txt .tip{
        font-size: 18px;
    }
    .responsible-item .content-pic{
        width: 100%;
        padding: 0 20px;
    }
    .responsible-item .pic-box{
        height: 300px;
    }
    .responsible-item .pic-box img{
        max-height: 150%;
        max-width: 150%;
    }
    .responsible-item .content-txt{
        padding: 0 20px;
        padding-bottom: 40px;
    }
    .recruitment-content .bottom-txt .contact{
        width: 100%;
    }
    .recruitment-content .bottom-txt .contact:last-child{
        padding-left: 0;
        border-left: 0;
        margin-top: 20px;
    }
    .recruitment-content .job-del-box .top-txt{
        padding: 20px;
    }
    .recruitment-content .bottom-txt{
        padding: 20px;
    }
    .recruitment-content .job-name-list .job-name-item{
        width: auto;
        padding: 0 30px;
    }
    .recruitment-content .change-item{
        width: 100%;
        border-radius: 0;
    }
    .recruitment-content .tab-change{
        border-radius: 0;
        width: 100%;
    }
    .latest-information .info-item .pic{
        width: 100%;
        height: auto;
    }
    .latest-information .info-item{
        padding: 0;
        margin-bottom: 50px;
    }
    .latest-information .info-item .iconfont{
        right: 0;
        bottom: 0;
    }
    .contact-list{
        padding-bottom: 30px;
    }
    .contact-list .contact-item{
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .contact-input .inner-box{
        width: 100%;
        padding: 0 20px;
    }
    .contact-us{
        padding-bottom: 0;
    }
    .contact-input{
        padding-bottom: 50px;
        padding-top: 30px;
    }
    .contact-list .contact-item .iconfont{
        font-size: 40px;
        margin-bottom: 0;
        height: 50px;
    }
    .index-banner .swiper-pagination-bullet:before{
        display: none;
    }
    .see-detail-btn{
        bottom: 20px;
        right: 15px;
    }
    .spirit-enterprise:before{
        display: none;
    }
    .responsible-item .pic-box{
        margin-top: 20px;
    }
    .social-responsible .bottom-pic{
        height: auto;
    }
    .responsible-item.item-right .bottom-pic img{
        width: 100%;
    }
    .responsible-item.item-left .bottom-pic img{
        width: 100%;
    }
    .responsible-box{
        padding-top: 0;
    }
    #contactmodel-captcha{
        width: 55%;
    }
    .index-news .more-btn{
        right: 0;
    }
    .news-content .news-slide-pagination{
        bottom: 0;
    }

    .index-news .news-see-slide{
        padding-bottom: 50px;
    }
    .foot .right-box{
        margin-bottom: 0;
    }
    .contact-us .map-show iframe{
        height: 200px !important;
    }
    .index-video {
        margin: 20px auto;
    }
    .index-video .video-cover .icon_play {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }
    .development-history {
        padding: 40px 10px;
    }

    .estate-development .estate-content .intro {
        margin: 0 auto 30px;
        flex-direction: column;
    }
    .estate-development .estate-content .intro .logo-left {
        flex: 1 1 100%;
        margin-right: 0;
    }
    .land-intro .land-content .pic img {
        max-width: 100%;
        width: 100% !important;
        height: auto!important;
    }
}


