@import url(animate.css);
@import url(../../fontawesome/css/all.min.css);
@import url(../../fontawesome/css/v4-shims.min.css);
/*animation*/
@keyframes fadeInUps {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(0, 50px, 0);

        transform: translate3d(0, 50px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInLefts {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(50px, 0px, 0);

        transform: translate3d(50px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
@keyframes fadeInRights {

    0% {

        opacity: 0;

        -webkit-transform: translate3d(-150px, 0px, 0);

        transform: translate3d(-150px, 0px, 0)

    }



    to {

        opacity: 1;

        -webkit-transform: none;

        transform: none

    }

}
.fadeInUp{

    animation-name: fadeInUps;

    animation-delay: .1s;

}
.fadeInLeft{

    animation-name: fadeInLefts;

    animation-delay: .1s;

}
.fadeInRight{

    animation-name: fadeInRights;

    animation-delay: .1s;

}

*{
	padding:0px;
	margin:0px;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
}
body{
	font-size:16px;
	overflow-x:hidden;
}
body,input,textarea,button{
	font-family:"Microsoft YaHei","微软雅黑",Arial,Helvetica,sans-serif,"宋体";
	-webkit-font-smoothing: subpixel-antialiased;
}
img{
	border:none;
	max-width: 100%;
	height: auto;
}
a{
	text-decoration:none;
	color: #000;
}
a:hover{
	text-decoration:none;
	color: #540000;
}
ul{
	list-style:none;
}
.clear{
    width: 100%;
    clear: both;
    overflow: hidden;
}
.zone{
    width:100%;
    clear: both;
}
.main{
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
.pt80{
    padding-top: 80px;
}
.pb80{
    padding-bottom: 80px;
}
.mt60{
    margin-top: 60px;
}
.mt40{
    margin-top: 40px;
}
.mt30{
    margin-top: 30px;
}
.pt30{
    padding-top: 30px;
}
.pt40{
    padding-top: 40px;
}
.pb40{
    padding-bottom: 40px;
}
.pb60{
    padding-bottom: 60px;
}
.yuanjiao5{
	-moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
}
.yuanjiao10{
	-moz-border-radius: 10px;      /* Gecko browsers */
    -webkit-border-radius: 10px;   /* Webkit browsers */
    border-radius:10px;            /* W3C syntax */
}
.yuanjiao25{
	-moz-border-radius: 25px;      /* Gecko browsers */
    -webkit-border-radius: 25px;   /* Webkit browsers */
    border-radius:25px;            /* W3C syntax */
}
.yuanjiao45{
	-moz-border-radius: 45px;      /* Gecko browsers */
    -webkit-border-radius: 45px;   /* Webkit browsers */
    border-radius:45px;            /* W3C syntax */
}
.yuanjiao{
	-moz-border-radius: 100%;      /* Gecko browsers */
    -webkit-border-radius: 100%;   /* Webkit browsers */
    border-radius:100%;            /* W3C syntax */
}
.content{
    line-height: 40px;
}
.header_zone{
    box-shadow: 2px 2px 5px #999;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#menu_btn{
    display: none;
}
.logo{
    padding-bottom: 10px;
    padding-top: 10px;
}
.logo img{
    height: 80px;
    width: auto;
}
.nav{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.nav > .nLi{
    margin-left: 10%;
    flex-shrink: 0;
    position:relative; 
    z-index:9999;
    height: 100px;
}
.nav > .nLi:first-child{
    margin-left: auto;
}
.nav > .nLi > h3{
    font-weight: normal;
}
.nav > .nLi > h3 > a{
    display: block;
    line-height: 100px;
}
.nav .sub{ 
    display:none; 
    width:200px; 
    left:50%;
    margin-left: -100px;
    top:100%; 
    position:absolute; 
    z-index: 9999;
    background:rgba(255,255,255,0.8);  
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.nav .sub li{
    zoom:1;
    position: relative;
}
.nav .sub a{
    display:block;
    padding:0 10px;
    line-height: 45px;
    text-align: center;
}
.nav .sub a:hover{ 
    background:#540000; 
    color:#fff;  
    transition: 0.6s;
}
.nav .sub li .sanji{
    width:200px;
    position: absolute;
    left:100%;
    top:0;
    display: none;
    background:rgba(255,255,255,0.9);
}
.nav .sub li:hover .sanji{
    display: block;
}
.nav .on h3 a{
    color:#540000;
}
.common_title_a{
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.common_title_a h2{
    font-size: 38px;
}
.common_title_a p{
    margin-top: 10px;
    color: #666;
}
.banner{
    position: relative;
}
.banner-prev,
.banner-next{
    position: absolute;
    z-index: 999;
    top:50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.banner-next{
    right:2%;
}
.banner-prev{
    left:2%;
}
.banner-prev .iconfont,
.banner-next .iconfont{
    font-size: 60px;
    color: #fff;
    opacity: 0.8;
}
.banner-next:hover .iconfont,
.banner-prev:hover .iconfont{
    opacity: 1;
}
#shaixuan{
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    background:#f9f9f9;
    padding-left: 15px;
    padding-right: 15px;
}
#rencaicate,
#zhiyelist{
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}
#rencaicate{
    border-bottom: 1px solid #ddd;
}
#shaixuan .item{
    padding: 5px 20px;
    background: #eee;
    cursor: pointer;
    transition:0.6s;
    text-align: center;
    margin-left: 2%;
}
#rencaicate .item:first-child,
#zhiyelist .item:first-child{
    margin-left: 0;
}
#shaixuan .active{
    background: #540000;
    color: #fff;
}

#rencaiBox{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rencai{
    margin-top: 30px;
    width:32%;
    background: #f7f7f7;
    display: flex;
    cursor: pointer;
    transition: 0.6s;
    overflow: hidden;
	border: 1px solid #ddd;
}
.rencai:last-child:nth-child(3n + 2) {
    margin-right: calc((100% - 32%) / 2);
}
.rencai:hover{
    box-shadow: 0px 0px 5px #ccc;
}
.rencai .zhaopian{
    width:45%;
    max-height:260px;
    overflow: hidden;
}
.rencai .info{
    width:55%;
    padding:20px 5% 0 5%;
    display: flex;
    flex-direction: column;
}
.rencai .info h3{
    font-size: 18px;
}
.rencai p{
    color:#666;
    line-height: 35px;
}
.rencai .enname{
    margin-top: 5px;
    margin-bottom:15px;
    font-size: 14px;
}
.about_zone{
    background: url(../images/about_zone.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.about_main{
    padding: 40px 7%;
    background:rgba(0,0,0,0.8);
    
}
.about_title h2,
.about_title p{
    color: #fff;
}
.about_txt{
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.advantage{
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: flex-start;
}
.advantage .item{
    width:23%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.advantage .item .iconfont{
    font-size: 100px;
    margin-left: auto;
    margin-right: auto;
}
.advantage .item p{
    margin-top: 30px;
}

.grey_zone{
    background: #f9f9f9;
}

.team_list{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.team_list .item{
    width:32%;
}
.team_list .item .touxiang{
    position: relative;
    z-index: 1;

}
.team_list .item .touxiang img{
    width:150px;
    border: 5px solid #ddd!important;
    display:block;
    margin-left: auto;
    margin-right: auto;  
    box-shadow: 0px 0px 5px 5px #eee;
}
.team_list .item .info_box{
    background: #fff;
    box-shadow: 0px 0px 5px 5px #eee;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    margin-top: -75px;
}
.team_list .item .info_box .ewm{
    width:150px;
    flex-shrink: 0;
}
.team_list .item .info_box .info{
    flex-grow: 1;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.team_list .item .info_box .info h3{
    font-size: 18px;
    margin-bottom: 10px;
}
.team_list .item .info_box .info p{
    line-height: 40px;
    color: #666;
}
.footer_zone{
    padding-top:50px;
    background:url(../images/footer_zone.jpg) top center no-repeat;
    background-size:cover;
}
.footer{
    display:flex;
    justify-content:space-between;
}
.footer_left{
    width:48%;
}
.footer_right{
    width:48%;
}
.footer_logo{
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,0.3);
}
.footer_address{
    margin-top:20px;
    padding-left:50px;
    background:url(../images/address.png) left center no-repeat;
    line-height:40px;
    color:#fff;
}
.footer_txt{
    margin-top:20px;
    line-height:40px;
    color:rgba(255,255,255,0.8);
}
.footer_right form{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.footer_right form .item{
    width:48%;
    margin-bottom:25px;
}
.footer_right form .ftext{
    width:100%;
    display:block;
    height:40px;
    line-height:40px;
    background:none;
    padding-left:20px;
    padding-right:20px;
    border:1px solid rgba(255,255,255,0.2);
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    color:#fff;
    outline:none;
    font-size:16px;
}
.footer_right form .layui-select-title .layui-input{
    background:none!important;
    height:40px!important;
    line-height:40px!important;
    border:1px solid rgba(255,255,255,0.2)!important;
    -moz-border-radius: 5px!important;      /* Gecko browsers */
    -webkit-border-radius: 5px!important;   /* Webkit browsers */
    border-radius:5px!important;            /* W3C syntax */
    color:#fff!important;
}
.footer_right form .fcontent{
    width:100%;
    display:block;
    height:120px;
    line-height:40px;
    background:none;
    padding-left:20px;
    padding-right:20px;
    border:1px solid rgba(255,255,255,0.2);
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    color:#fff;
    outline:none;
     font-size:16px;
}
.footer_right form .fbtn{
    width:200px;
    height:40px;
    background:#540000;
    color:#fff;
    font-size:16px;
    text-align:center;
    line-height:40px;
    -moz-border-radius: 5px;      /* Gecko browsers */
    -webkit-border-radius: 5px;   /* Webkit browsers */
    border-radius:5px;            /* W3C syntax */
    border:none;
    margin-top:30px;
    cursor:pointer;
    transition:0.6s;
    margin-left:auto;
}
.footer_right form .fbtn:hover{
    background:#c1141a;
}
.copyright{
    padding-top:20px;
    padding-bottom:20px;
    border-top:1px solid rgba(255,255,255,0.2);
    display:flex;
    justify-content:space-between;
    color:rgba(255,255,255,0.7);
    font-size:14px;
}
.copyright a{
    color:rgba(255,255,255,0.7);
}
.ny_main{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
}
.left_wrap{
    width:270px;
    flex-shrink: 0;
}
.lmmc{
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #540000;
    
}
.lmmc h2{
    font-size:20px;
    color:#fff;
    font-weight: normal;
    display: block;
    text-align: center;
}
.zlm{
    border: 1px solid #ddd;
    border-top: none;
}
.zlm dl dt{
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
}
.zlm dl dt a{
    height: 45px;
    line-height: 45px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}
.left_lxxx{
    border: 1px solid #ddd;
    border-top: none;
    line-height: 35px;
    padding: 15px;
    overflow: hidden;
}
.right_wrap{
    flex-grow: 1;
    padding-left: 30px;
}
.right_wrap .right_title{
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.right_wrap .right_title h2{
    font-size: 20px;
    color: #540000;
}
.right_wrap .right_title .position{
    color:#666;
    font-size:14px;
}
.right_wrap .right_title .position a{
    color: #666;
}
.right_wrap .right_title .position a:hover{
    color: #540000;
}
.service_items{
    display: flex;
    justify-content: space-between;
}
.service_items .item{
    width: 24%;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 5px 5px #eee;
}
.service_items .item .num{
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    font-family: Arial Black;
    color: #fff;
    
}
.service_items .item:first-child .num{
    background-color: #a4c169;
}
.service_items .item:nth-child(2) .num{
    background-color: #10a689;
}
.service_items .item:nth-child(3) .num{
    background-color: #f67b14;
}
.service_items .item:last-child .num{
    background-color: #e6272c;
}
.service_items .item .info h3{
    display: block;
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
}
.service_items .item .info .description{
    padding: 20px;
    overflow: hidden;
    line-height: 35px;
    color: #666;
}
.rencai-detail-table tr th{
    background: #f9f9f9;
    font-weight: bold;
    width:140px;
}
.rencai-detail-table tr td video{
    margin-right: 15px;
    max-width: 30%;
    height: auto;
}
.rencai-layui-container .inner_box{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}
.rencai-layui-container .rencai-layui-row{
    background-color: #f5f5f5;
}
.rencai-layui-container .rencai-layui-row:nth-child(even){
    background-color: #f9f9f9;
}
.show_mobile{
    display: none;
}
.kunrao{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.kunrao .item{
    width: 32%;
    margin-top: 30px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
}
.kunrao .item .title{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.kunrao .item .title .fa{
    margin-right: 15px;
}
.kunrao .item .txt{
    color: #666;
    line-height: 35px;
    margin-top: 15px;
}
.whylist{
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}
.whylist .item{
    display: flex;
    flex-direction: column;
    width: 24%;
    border: 1px solid #ddd;
    padding:30px 20px;
    text-align: center;
    background-color: #f8f8f8;
}
.whylist .item .icon .fa{
    font-size: 60px;
}
.whylist .item:nth-child(1) .icon{
    background-color: #E8E9FF;
}
.whylist .item:nth-child(2) .icon{
    background-color: #E4F3FF;
}
.whylist .item:nth-child(3) .icon{
    background-color: #FFE9EB;
}
.whylist .item:nth-child(4) .icon{
    background-color: #F1EEFC;
}
.whylist .item:nth-child(1) .icon .fa{
    color: #696CFD;
}
.whylist .item:nth-child(2) .icon .fa{
    color: #34A7FF;
}
.whylist .item:nth-child(3) .icon .fa{
    color: #FE5F8A;
}
.whylist .item:nth-child(4) .icon .fa{
    color: #6D5DA6;
}
.whylist .item .icon{
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.whylist .item h3{
    font-size: 20px;
    margin-top: 25px;
}
.whylist .item .txt{
    color: #666;
    line-height: 35px;
    margin-top: 20px;
}
#mobile_shaixuan{
    display: none;
}
#shipin-box{
    max-width:300px;
}
/*小于1630*/
@media (max-width:1630px) {
    .header{
        padding-left: 15px;
        padding-right: 15px;
    }
    .rencai-main{
        padding-left: 15px;
        padding-right: 15px;
    }
    .about_main{
        margin-left: 15px;
        margin-right: 15px;
    }
    .team_list{
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer{
        padding-left: 15px;
        padding-right: 15px;
    }
    .copyright{
        padding-left: 15px;
        padding-right: 15px;
    }
    .ny_main{
        padding-left: 15px;
        padding-right: 15px;
    }
    .service_items{
        padding-left: 15px;
        padding-right: 15px;
    }
    .kunrao{
        padding-left: 15px;
        padding-right: 15px;
    }
    .whylist{
        padding-left: 15px;
        padding-right: 15px;
    }
	.rencai-layui-container .content{
		padding-left: 15px;
        padding-right: 15px;
	}
}
/*小于1024*/
@media (max-width:1024px) {
    body{
        font-size: 14px;
    }
    .nav > .nLi{
        margin-left: 7%;
    }
    #shaixuan .item{
        padding-left: 15px;
        padding-right: 15px;
    }
    .common_title_a h2{
        font-size: 30px;
    }
    .team_list{
        flex-wrap: wrap;
        margin-top: 0;
    }
    .team_list .item{
        width:100%;
        margin-top:40px;
    }
    .service_items.mt40{
        margin-top: 0!important;
    }
    .service_items{
        flex-wrap: wrap;
    }
    .service_items .item{
        width: 48%;
        margin-top: 35px;
    }
    
}
/*小于960*/
@media (max-width:960px){
    .show_mobile{
        display: inline-block;
        *display: inline;
        *zoom:1;
        font-weight: bold;
        width:135px;
    }
    .hidden_mobile{
        display: none;
    }
}
/*小于768*/
@media (max-width:768px) {
    .header_zone{
        position: relative;
        z-index: 9999;
    }
    .logo img{
        height: 40px;
    }
    .nav{
        width: 100%;
        position: absolute;
        left:0;
        top:100%;
        z-index: 9999;
        background: #f0f0f0;
        flex-direction: column;
        display: none;
    }
    .nav > .nLi{
        margin-left: 0;
        border-bottom: 1px solid #ddd;
        height: 45px;
        width: 100%;
    }
    .nav > .nLi:first-child{
        margin-left: 0;
    }
    #menu_btn{
        display: block;
        font-size: 30px;
    }
    .nav > .nLi > h3 > a{
        line-height: 45px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .banner-prev .iconfont, .banner-next .iconfont{
        font-size: 30px;
    }
    .pt80{
        padding-top: 40px;
    }
    .pb80{
        padding-bottom: 40px;
    }
    .common_title_a h2{
        font-size: 26px;
    }
    #shaixuan .item{
        padding-left: 9px;
        padding-right: 9px;
    }
    #shaixuan .item{
        margin-left: 1%;
    }
    .rencai{
        width:48%;
        border: 1px solid #ddd;
    }
    .rencai .info{
        padding-top: 10px;
        border: none;
    }
    .rencai .info h3{
        font-size: 16px;
    }
    .rencai p{
        line-height: 30px;
    }
    .rencai .zhaopian img{
        height:100%;
    }
    .kunrao .item{
        width:48%;
    }
    .whylist{
        flex-wrap: wrap;
        margin-top: 0;
    }
    .whylist .item{
        width:48%;
        margin-top: 30px;
    }
}

/*小于600手机端*/
@media (max-width:600px) {
    .nav > .nLi > h3 > a{
        font-size: 14px;
    }
    #mobile_shaixuan{
        display: block;
    }
    #shaixuan{
        display: none;
    }
    .pt80{
        padding-top: 30px;
    }
    .pb80{
        padding-bottom: 30px;
    }
    .common_title_a h2{
        font-size: 18px;
    }
    .rencai{
        width:100%;
        margin-top: 20px;
    }
    .advantage{
        flex-wrap: wrap;
        padding-top: 0;
    }
    .advantage .item{
        width: 48%;
        margin-top: 30px;
    }
    .advantage .item p{
        margin-top: 10px;
    }
    .team_list .item .info_box{
        padding-left: 15px;
        padding-right: 15px;
    }
    .team_list .item .info_box .ewm{
        width:120px;
    }
    .team_list .item .info_box .info{
        padding-left: 15px;
        padding-top: 0;
    }
    .team_list .item .info_box .info p{
        line-height: 30px;
    }
    .footer{
        flex-wrap: wrap;
    }
    .footer_left{
        width:100%;
    }
    .footer_right{
        width:100%;
        margin-top: 30px;
    }
    .footer_address{
        line-height: 30px;
    }
    .footer_txt{
        line-height: 30px;
    }
    .footer_zone{
        padding-top: 30px;
    }
    .copy_left{
        text-align: center;
        line-height: 30px;
    }
    .copy_right{
        display: none;
    }
    .footer_right form .fbtn{
        width:100%;
    }
    .ny_main{
        flex-direction: column;
        margin-top: 30px;
    }
    .left_wrap .lmmc,
    .left_lxxx{
        display: none;
    }
    .left_wrap,
    .right_wrap{
        width:100%;
    }
    .zlm{
        display: flex;
        flex-wrap: wrap;
        border: none;
        justify-content: space-between;
    }
    .zlm dl{
        width: 48%;
    }
    .right_wrap{
        padding-left: 0;
    }
    .right_wrap .right_title{
        display: none;
    }
    .footer_right form .ftext,
    .footer_right form .fcontent,
    .footer_right form .fbtn{
        font-size: 14px;
    }
    .zlm dl dt.active a{
        background: #540000;
        color: #fff;
    }
    .service_items .item{
        width:100%;
    }
    .kunrao .item{
        width:100%;
    }
    .whylist .item{
        width:100%;
    }
    .rencai-detail-table tr td video{
        width:100%;
        max-width:100%;
        margin-right:0;
        display:block;
        margin-bottom:15px;
    }
    .layui-table[lay-size=lg] td, .layui-table[lay-size=lg] th{
        padding-left:15px;
        padding-right:15px;
    }
    .rencai-detail-table tr td .layui-border-red{
        width:45%!important;
        margin-left: 1%!important;
        margin-right: 1%!important;
        margin-top: 5px!important;
        margin-bottom: 5px!important;
        text-align: center!important;
    }
    .rencai-detail-table tr th{
        width:110px;
    }
    #shipin-box{
        max-width:100%;
    }
}