*{
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
i{
	font-style: normal;
}
a{
	text-decoration: none;
}
li,ul{
    list-style: none;
}
.main .mobile{
	display: none !important;
}
.main .pc{
	display: inline-block !important;
}
.main .header-view{
	height: 70px;
	background: #222222;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	width: 100%;
}
.main .header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	width: 1200px;
	margin: 0 auto;
	height: 100%;
}
.main .header .logo{
	margin-left: 10px;
}
.main .header .text{
	color: #ffffff;
	font-size: 30px;
	margin-right: 10px;
}

.service_box{
    background-color: #ECF3F9;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section .window_width {
    width: 1200px;
    margin: 0 auto;
}
.section .section_btn {
    height: 35px;
    line-height: 35px;
}

.service_box.peopleImg:after{
    content: '';
    position: absolute;
    width: 1400px;
    height: 100%;
    left: 50%;
    top: 0;
    z-index: 2;
    margin-left: -700px;
    background-image: url('../../image/bottom/service_img.png');
    background-repeat: no-repeat;
    background-position: right center;
}
.service_box .window_width{
    position: relative;
    z-index: 3;
    padding: 60px 0;
    overflow: hidden;
}
.service_box .info{
    width: 789px;
    text-align: center;
    margin: 0 10px;
}
.service_box .info h3{
    margin: 0 0 20px;
    text-align: left;
}
.service_box .info .section_sub_title{
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}
.service_box .info .section_sub_title a{
    color: #666;
}

.service_box ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 100px;
}
.service_box.isAgent ul{
    justify-content: center;
}
.service_box ul li{
    font-size: 14px;
    margin: 0 100px 0 0;
}
.service_box li h4{
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: left;
}
.service_box .info li p{
    line-height: 2;
    text-align: left;
}
.service_box{
    background-color: #ECF3F9;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section .window_width {
    width: 1200px;
    margin: 0 auto;
}
.section .section_btn {
    height: 35px;
    line-height: 35px;
}

.service_box.peopleImg:after{
    content: '';
    position: absolute;
    width: 1400px;
    height: 100%;
    left: 50%;
    top: 0;
    z-index: 2;
    margin-left: -700px;
    background-image: url('../../image/bottom/service_img.png');
    background-repeat: no-repeat;
    background-position: right center;
}
.service_box .window_width{
    position: relative;
    z-index: 3;
    padding: 60px 0;
    overflow: hidden;
}
.service_box .info{
    width: 789px;
    text-align: center;
    margin: 0 10px;
}
.service_box .info h3{
    margin: 0 0 20px;
    text-align: left;
}
.service_box .info .section_sub_title{
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}
.service_box .info .section_sub_title a{
    color: #666;
}

.service_box ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 100px;
}
.service_box.isAgent ul{
    justify-content: center;
}
.service_box ul li{
    font-size: 14px;
    margin: 0 100px 0 0;
}
.service_box li h4{
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: left;
}
.service_box .info li p{
    line-height: 2;
    text-align: left;
}
.service_box .staff{
    border-right: 2px solid #c00;
    padding-right: 10px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 2;
}
.service_box .contact_btn{
	display: inline-block;
    background: #fff;
    border: 1px solid #666;
    color: #666;
    padding: 0 40px;
    display: inline-block;
    transition: all .2s;
    margin-top: 80px;
    font-size: 12px;
}
.service_box .contact_btn:hover{
    background: #c00;
    border-color: #c00;
    color: #fff;
}
.qrcode_modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0,0,0,.5);
    display: none;
    transition: all .3s;
}
.qrcode_modal.show{
    display: block;
    animation: dialog_dh1 .2s linear;
}
@keyframes dialog_dh1 {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.qrcode_modal .qrcode_box{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 350px;
    height: 350px;
    text-align: center;
    margin: -175px 0 0 -175px;
    background: #ffffff;
    border-radius: 10px;
    z-index: 110;
    transform: scale(0);
}
.qrcode_modal.show .qrcode_box{
    animation: dialog_dh .2s ease-in;
    transform: scale(1);
}
@keyframes dialog_dh {
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}
.qrcode_modal .qrcode_box .close{
    position: absolute;
    right: -30px;
    top: -30px;
    font-family: '黑体';
    font-size: 24px;
    color: #ffffff;
    z-index: 112;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.qrcode_modal .qrcode_box .img{
    width: 250px;
    height: 250px;
    vertical-align: top;
    margin-top: 50px;
}

.main .muneMobile{display: none;}
.main .dhTab .tab_item{display: inline-block;line-height: 61px;color: #ccc;font-size: 16px;padding: 0px 16px;text-decoration: none;border-top: 3px solid #000;padding-bottom: 4px;margin-left: 24px;}
.main .dhTab .tab_item.cur,.main .dhTab .tab_item:hover{border-top: 3px solid #cc0000;color: #FFFFFF;background: #333333;}
@media screen and (max-width: 768px) {
	.main .munePC{display: none;}
	.main .muneMobile{display: block;}
	.main .muneMobile .webMenu{width: 70px;text-align: center;}
	.main .muneMobile .webMenu .icon{width: 24px;}
	.main .muneMobile .web_menu{width: 80%;height: 100%; position: fixed;z-index: 999999;transition: all .5s;top: 0; background: #333333;box-shadow: 0 0 6px #999;right: -100%;opacity: 0;}
	.main .muneMobile .web_menu.show{right: 0;opacity: 1;}
	.main .muneMobile .web_menu .tab_item{display: inline-block;width: 100%;font-size: 16px; line-height: 70px;color: #fff;padding: 0 32px;border-bottom: 1px solid #666;}
	
}

img{max-width: 100%;}
.bounceInLeft{-webkit-animation-name: bounceInLeft;animation-name: bounceInLeft;}
.animated{-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
@-webkit-keyframes bounceInLeft{
	0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}
	0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
	60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
	75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}
}
@keyframes bounceInLeft{
	0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}
	0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);-ms-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}
	60%{opacity:1;-webkit-transform:translate3d(25px,0,0);-ms-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}
	75%{-webkit-transform:translate3d(-10px,0,0);-ms-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}
	90%{-webkit-transform:translate3d(5px,0,0);-ms-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}
	100%{-webkit-transform:none;-ms-transform:none;transform:none}
}
.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}
.new_banner.sec_banner{width: 100%;overflow: hidden;text-align: left;left: 0;top: 0px;color: #fff;height: 460px;}
.new_banner.sec_banner .main_div, .new_banner.three_banner .main_div{height: calc(100% - 95px);position: relative;width: 1200px;margin: 0 auto;}
.new_banner .left_item, .new_banner .right_item{    margin: 0 10px;position: absolute;z-index: 2;top: calc(50% - 20px);}
.new_banner .special_banner01 .left_item{text-align: center;width: 60%;}
.new_banner .special_banner01 .title {font-size: 26px;}
.new_banner .special_banner01 .content {margin: 28px 0 32px;width: 100%;}
.new_banner .special_banner01 .content .text1 {font-size: 46px;}
.new_banner .special_banner01 .content .text2 {font-size: 26px;padding-top: 24px;}
.new_banner .special_banner01 .btn {display: inline-block; width:160px;line-height: 40px;font-size: 18px;color: #c00;background: #fff;}
@media screen and (max-width: 768px) {
	.new_banner .left_item, .new_banner .right_item{top: calc(50% - 6px);}
	.new_banner.sec_banner{height: 210px;margin-top: 50px;} 
	.new_banner .special_banner01 .left_item{width: 256px;}
	.new_banner .special_banner01 .title{font-size: 14px;margin-bottom: 12px;}
	.new_banner .special_banner01 .content{margin: 0;}
	.new_banner .special_banner01 .content .text1{font-size: 16px;}
	.new_banner .special_banner01 .content .text2{font-size: 14px;padding-top: 12px;}
	.new_banner .special_banner01 .btn {width: 100px;line-height: 28px;font-size: 12px;margin-top: 16px;}
	.service_box .window_width{padding: 20px 0;}
	.service_box .info{width: 100%;}
	.service_box ul{display: none;} 
	.service_box .contact_btn{margin-top: 205px;}
	.service_box.peopleImg:after{width: 100%;left: 0;top: 24px;margin-left: 0;background-size: 70%;background-position: center 140px;}
}

#new_bottom{
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
}
#new_bottom a{
    color: #333333;
}