* {
    margin: 0;
    padding: 0;
    
}
p {
    margin: 0;
}
a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
    color:#333333 ;
}
a:visited {
    text-decoration: none;
    color:#333333 ;
}
a:hover {
    text-decoration: none;
    color:#333333 ;
}
a:active {
    text-decoration: none;
}
a:focus {
    text-decoration: none;

}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}
.wbg {
    background-color: #fff;
}

body {
    /*background-color: #F3F6FE ;*/
    font-family: "黑体" ;
    color:#333333 ;
    font-size: 16px ;
}
.clearfix{*zoom:1;}
.clearfix:before,.clearfix:after{
    content:"";
    display:table;
    line-height:0;
    visibility:hidden;
}
.clearfix:after{
    clear:both;
}
.content_warp {
    width:1280px;
    margin: 0 auto;
}
ul,li,ol{ list-style:none;}
.fl {float: left;}
.fr {float: right;}
.nowrap {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*水平垂直居中*/
.center{display: flex;align-items: center;justify-content: center;}

/*flex布局*/
.flex-row{display: flex; flex-direction: row;}
.flex-col{display: flex; flex-direction: column;}

.flexBox{display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;}
.flexBoxnocenter{display: flex;justify-content: space-between;flex-wrap: wrap;}
.flexcenter{display: flex;align-items: center; justify-content: center;}

/*justify-content属性定义了项目在主轴上的对齐方式*/
.justify-start {display: flex;justify-content: flex-start;}
.justify-center {display: flex;justify-content: center;}
.justify-end {display: flex;justify-content: flex-end;}
.justify-evenly {display: flex;justify-content: space-evenly;}
.justify-around {display: flex;justify-content: space-around;}
.justify-between {display: flex;justify-content: space-between;}

/*align-items属性定义项目在交叉轴上如何对齐*/
.align-start {display: flex;align-items: flex-start;}
.align-center {display: flex;align-items: center;}
.align-end {display: flex;align-items: flex-end;}

.text-left{ text-align: left;}
.text-right{ text-align: right;}
.text-center{ text-align:center;}
.w1360{width:100%;max-width:1360px;margin:0 auto;}
.page-header,.app-footer{font-family: 'PingFang SC','Microsoft YaHei';font-size: 16px;}
/*头部*/
.page-header {padding:0; margin: 0 0 15px 0;}
.page-header .header-container {
	width: 100%;
	color: #FFFFFF;
	top: 0px;
	z-index: 110;
	background: rgba(255, 255, 255, 0.98);
}

.page-header .header-container>div {
	width: 100%;
	max-width: 1680px;
	margin: auto;
}

.page-header .logo {
	padding: 0;
}

.page-header .logo img {
	width: 100%;
	min-width: 360px;
	height: auto;
}

.header-banner {
	z-index: -1;
	position: relative;
}

.header-banner .banner-img {
	width: 100%;
	height: auto;
}

.header-banner .swiper-slide {
	width: 100%;
	height: 100vh;
	min-height: 540px;
	background: #eee;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-banner .swiper-slide img {
	width: 100%;
	height: 100%;
	position: relative;
}

.header-banner .swiper-slide p {
	position: absolute;
	z-index: 99;
	font-size: 80px;
	color: #FFFFFF;
	font-weight: 600;
	line-height: 1.5;
	text-shadow: 0px 5px 5px rgba(13, 4, 9, 0.5);
	padding: 20px 0 160px 0;
}

.header-banner .swiper-slide .t1,
.header-banner .swiper-slide .t2 {
	display: block;
}

.header-banner .slogan {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
}


/*导航*/

.main-menu {
	background: none;
	display: flex;
	margin: auto;
	height: 80px;
}

.menu-handler {
	display: none;
}

.menu-content {
	background: none;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.main-menu ul {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.main-menu ul>li {
	position: relative;
}

.main-menu ul>li a {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 80px;
	color: #fff;
	padding: 0 12px;
}

.main-menu ul>li span {
	display: inline-block;
	width: auto;
	white-space: nowrap;
	position: relative;
}

.main-menu ul>li ol {
	position: absolute;
	top: 80px;
	left: 0;
	min-width: 100%;
	max-height: 0;
	background-color: #3CB261;
	overflow: hidden;
	z-index: 9;
	transition: max-height 0.5s ease-in;
}

.main-menu ul>li ol a {
	text-align: center;
	font-size: 16px;
	line-height: 40px;
	font-weight: 400;
	padding: 0 5px;
	white-space: nowrap;
}

.main-menu ul>li:hover {
	background-color: rgba(255, 255, 255, .15);
}

.main-menu ul>li:hover ol {
	max-height: 320px;
}

.main-menu ul>li ol a:hover {
	background-color: rgba(255, 255, 255, .3);
}

.main-menu .active span:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	height: 3px;
	width: 100%;
	background-color: #ffffff;
}

.cityBox {
	width: 120px;
	height: 40px;
	border: 1px solid #FFFFFF;
	border-radius: 20px;
	padding: 0 10px 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	user-select: none;
	white-space: nowrap;
}

.cityBox i {
	font-size: 20px;
}

.cityBox span {
	padding-left: 10px;
	white-space: nowrap;
}

#quxian span {
	display: none;
}

.choose-address {
	display: inline-block;
	padding: 0 9px;
	color: #333;
	cursor: pointer;
	white-space: nowrap;
}

.bg_Color {
	background: #3cb261;
	color: #FFF;
}

.citybox_child {
	max-width: 930px;
	height: 210px !important;
	background: rgba(255, 255, 255, 1);
	position: absolute;
	right: 10px;
	top: 80px;
	border-radius: 8px;
	color: #0000;
	display: none;
	/*border: 1px solid #ccc;
		 width: calc(100% - 40px);*/
}

.mapBox {
	width: 100%;
	max-width: 1680px;
	margin: auto;
	display: flex;
	color: #000;
	height: 50px;
	padding-left: 20px;
	white-space: normal;
	/* 允许换行 */
}

.mapTitle {
	font-weight: bolder;
	color: #3cb261;
	padding-top: 13px;
	width: 54px;
}

.mapName {
	margin-left: 20px;
	width: calc(100% - 70px);
	height: 30px;
	/* background: #3cb261; */
	color: #000;
	margin: 10px 0 0 20px;
	text-align: center;
	line-height: 30px;
	display: flex;
	flex-wrap: wrap;
}

.mapName dt {
	text-align: center;
}

.mapName p {
	margin: 0 10px 0 0;
	padding: 0 6px;
	cursor: pointer;
}

#advsSearch input[type=submit] {
	float: right;
	cursor: pointer;
	width: 40px;
	height: 39px;
	background: url('/static/dpmweb/hb/images/ico-search.png') center no-repeat;
	/* background-size: 21px; */
	border-radius: 0px 20px 20px 0px;
}

#advsSearch input[type="text"]::placeholder {
	color: #fff;
}

.logo {
	margin: 0 2% 0 2%;
}

.navBox {
	width: 100%;
	height: 170px;
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
	z-index: 100;
	background: rgba(0, 0, 0, 0.35);
	/*background: url('/static/dpmweb/hb/op.png');*/
}

.navBox .c_box {
	width: 140px;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1111;
	cursor: pointer;
	text-align: center;
}

.navBox .c_box p {
	color: #FFFFFF;
	font-size: 20px;
	padding-top: 10px;
}

.navBox .c_box:hover {
	background: #ff9900;
}

.navBox div img {
	width: 63px;
	height: 63px;
}

.c_box_rig {
	border-left: 1px solid rgba(250, 250, 250, 0.5);
	padding-left: 20px;
	margin-left: 20px;
}

.c_rig_login {
	width: 260px;
	height: 40px;
	border: 1px solid #FFF;
	border-radius: 20px;
	margin: 10px 0 0 10px;
	text-align: center;
	line-height: 40px;
	margin-top: 40px;
	padding: 0;
}

.c_rig_login a {
	color: #FFF;
}

.c_rig_login a:first-child {
	padding: 0 40px 0 0;
}

.c_rig_login a i {
	padding-right: 6px;
}

.c_rig_search {
	width: 260px;
	height: 40px;
	border: 1px solid #FFF;
	border-radius: 20px;
	margin: 10px 0 0 10px;
	line-height: 40px;
	margin-top: 15px;
}

.input-txt {
	width: 142px;
	height: 36px;
	background: none;
	border: none;
	outLine: none;
	color: #FFF
}

.bg {
	background: #FF9900;
}


/*二级头部*/

.leveTwo-header .main-menu ul>li a {
	color: #333;
	font-weight: 500;
}

.leveTwo-header .main-menu ul>li ol a {
	color: #fff;
}

.leveTwo-header .main-menu .active span {
	color: #3CB261;
	font-weight: 700;
}

.leveTwo-header .main-menu .active span:after {
	background-color: #3CB261;
	bottom: 15px;
}

.leveTwo-header .cityBox {
	color: #3CB261;
	border-color: #3CB261;
}

.leveTwo-header .header-banner {
	color: #fff;
	margin-top: 80px;
	z-index: 100;
	height: 160px;
	overflow: hidden;
}

.leveTwo-header .header-banner h3 {
	position: absolute;
	top: 0;
	z-index: 110;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.leveTwo-header .header-banner h3 dl {
	color: #fff;
	width: 100%;
	max-width: 1360px;
	margin: auto;
	line-height: 1.5;
}

.leveTwo-header .header-banner h3 dt {
	font-size: 36px;
}

.leveTwo-header .header-banner h3 dd {
	font-size: 18px;
	font-weight: lighter;
}

.detail-cbox .leveTwo-header .header-banner {
	height: 60px;
}

.detail-cbox .leveTwo-header .header-banner h3 {
	display: none;
}


/*页面底部*/
.app-footer {
	background-color: #3d3d3d;
	color: #FFFFFF;
	text-align: center;
}

.app-footer a {
	color: #FFFFFF;
}

.app-footer .app-content,
.app-footer .gzh {
	padding: 30px 0;
}

.app-footer .app-content {
	text-align: left;
}

.app-footer .footer-link a {
	line-height: 20px;
	display: inline-block;
	padding-left: 20px;
	margin: 0 0 30px 20px;
	border-left: 1px #FFFFFF solid;
}

.app-footer .footer-link a:first-child {
	border-left: 0;
	padding-left: 0;
	margin-left: 0;
}

.app-footer .footer-txt p {
	padding: 6px 0;
}

.app-footer .copyright {
	background-color: #252525;
	height: 60px;
}

.app-footer .copyright span {
	padding: 6px 15px;
}

.app-footer .copyright img {
	vertical-align: middle;
	padding-right: 5px;
}


