html,body{
	margin: 0; 
	font-family: PingFangSC-Regular, "PingFang SC";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
ul,li,a,p{margin: 0; list-style: none; padding: 0;}


/* 顶部菜单样式 */
.header-menu{ 
	min-width: 1200px;
	background: #fff; 
}
.header-menu .nav-bar{
	display: flex;
	display: -webkit-flex; 
	justify-content: space-between;
	-webkit-justify-content:space-between;
	width: 1200px; 
	margin: 0 auto;
	color: rgba(0,0,0,0.6);
}
.nav-bar .left-item {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items:center ;
	font-size: 14px;
	width: 100%;
	padding: 10px 0;
	justify-content: space-between;
}
.nav-bar .left-item .homelogo{
	height: 60px;
	font-weight: bold;
	color: #076ce0;
	cursor: pointer;	
	font-size: 24px;
	line-height: 60px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} 
	
.nav-bar .left-item .site{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items:center ;
}
.site .locationImg{
	background: url(../img/location.png);
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}
.site .locationCity{
	display: inline-block;
	color: #3ac8eb;
	margin-left: 5px;
}
.nav-bar .left-item .home{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items:center ;
	margin-left: 20px;
} 


.nav-bar .left-item ul.submenu{
	display: flex;
	display: -webkit-flex; 
	margin-left: 40px; 
}
.nav-bar .left-item ul.submenu .submenuitem{
	font-size: 16px; 
	text-align: center; 
	position: relative;
	padding: 0 10px;
	margin: 0 10px;
	z-index: 99; 
}
.nav-bar .left-item ul.submenu .submenuitem span{ 
	display: block; 
	cursor: pointer;
}
.nav-bar .left-item ul.submenu .submenuitem:hover>span{
	color: #3ac8eb; 
}
.nav-bar .left-item ul.submenu .submenuitem .active{
	color: #3ac8eb;
}
.nav-bar .left-item ul.submenu .childmenu{
	display: none;  
	background: #fff; 
	position: absolute; 
	font-size: 14px;
	padding: 10px 5px; 
	left: 0;
	width: 100%; 
	top: 20px;
}
.nav-bar .left-item ul.submenu .submenuitem:hover{
	/* background: #fff;   */
}
.nav-bar .left-item ul.submenu .submenuitem:hover .childmenu{
	display: block;
}
.nav-bar .left-item ul.submenu .childmenu li{
	height: 30px;
	line-height: 30px;
	margin: 5px 0;
}
.nav-bar .left-item ul.submenu .childmenu li:hover span{
	color: #3ac8eb;
}



.home .homeImg{
	background: url(../img/home.png);
	background-size: 16px 16px;
	height: 16px;
	width: 16px;
	display: inline-block;
}

.home .hometext{
	margin-left: 5px;
	cursor: pointer;
	color: rgba(0,0,0,.8);
	border-bottom: 1px solid #f9f9f9;
}
.home .hometext:hover{
	color: #666;
	border-bottom: 1px solid #666;
}
.nav-bar .right-item{
	display: flex;
	display: -webkit-flex;
	align-items: center;
} 


.nav-bar .right-item .gologin{
	width: 100px;
	display: flex;
	align-items: center; 
	justify-content: flex-end;
	margin-left: 10px;
}
.nav-bar .right-item .gologin>span{
	cursor: pointer;  
    overflow: hidden;    
    text-overflow:ellipsis;    
	white-space: nowrap; 
}


/* 首页模块 */
.home-content{ 
	width: 100%;   
}
.content-body{
	width: 1200px;
	margin: 0 auto;
}
.home-search{
	width: 100%;
	height: 400px;
	background: url('../img/manbanner.jpg') center center;
	background-size: cover;
}
.home-search .searchbox{
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
}

.searchArea{ 
	display: flex;
	display: -webkit-flex;
	align-items: center;
	position: relative;
}
.searchArea>div{
	display: inline-block;
}
.searchArea .inputbox{
	background: #fff;
	width: 500px; 
	height: 50px;
	border-radius: 5px 0 0 5px;
	line-height: 50px;
	padding: 0 10px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
.searchArea .inputbox .serachIcon{
	background:url(../img/search.png);
	width: 16px;
	height: 16px;
	background-size: 16px 16px;
	margin-right: 10px;
}
.searchArea .inputbox input{
	width: 100%;
	background: none;
	border: none;
	outline: none;
}
.searchArea .searchbtn{
	background: #3ac8eb;
	height: 50px;
	line-height: 50px;
	width: 120px;
	text-align: center; 
	cursor: pointer;
	color: #fff;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	letter-spacing: 5px;
}
.searchArea .searchbtn:hover{
	background: #38cef3;
}
.searchArea  .recommendBox{
	position: absolute;
	bottom: -28px;
	font-size: 12px;
}
.searchArea  .recommendBox>span{
	cursor: pointer;
	margin-right: 10px;
	color: rgba(0,0,0,0.3);
}
.publishBox{
	margin-left: 10px;
	display: flex;
}
.publishBox .pub-btn{
	width: 100px;
	background: #076ce0;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
}
.publishBox .enc-btn{
	width: 100px;
	margin-left: 10px;
	background:#076ce0;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
}


/* 网站导航 */
.web-nav{	
	font-size: 16px;
	color: #f9f9f9;
	font-family: PingFangSC-Regular,PingFang SC;
	font-weight: 400;
	background: rgba(28, 54, 85, .2);
	position: relative;
	z-index: 9;
	padding: 10px;
}

/* 分页 */
.pagenation{
	margin: 50px auto; 
	text-align: center;
	display: flex;
	display: -webkit-flex;
	width: 154px;
	
}
.prepage , .nextpage , .loaclpage{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0 5px;
	border: 1px solid rgba(0,0,0,0.4);
	border-radius: 3px;
	font-size: 16px;
	color: #999;
	cursor: pointer;
}
.loaclpage{
	background: #38CEF3;
	color: #fff;
}


/* 首页中间区域 */
.home-nav-item{
	width: 1200px;
	margin: 0 auto;
	padding: 80px 0; 
	font-family: "PingFangSC-Regular","PingFang SC";
	padding-top:0 ;
}
.home-nav-box{  
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.nav-title-line{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 10px 0; 
}
.nav-title-line .title-left{
	display: flex;
	align-items: flex-end;
}
.home-nav-box .nav-item-tabs{
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
.tabs-name{ 
	margin-right: 10px; 
    color: rgba(0,0,0,.4);
    font-size: 14px;
    cursor: pointer;
	text-align: center;
}
.tabs-name:hover , .tabs-active{
	color: #3ac8eb;
}
.nav-title-line .title-right .more{
	font-size: 14px;
	color:rgba(0,0,0,0.6);
	cursor: pointer;
}


.nav-goods-list{
	padding: 20px;
	margin-top: 0;
}
.nav-goods-list ul {
	display: flex;
	display: -webkit-flex;	
}
.nav-goods-list ul li{
	width: 25%;
}
.nav-goods-list ul li .nav-goods-item{
	width: 280px;
	height: 340px;
	border: 1px solid #ccc;
	cursor: pointer;
}
.nav-goods-item .nav-goods-img{
	min-height: 210px;
	border-bottom: 1px solid #eee;
}
.nav-goods-item .nav-goods-img img{
	width: 100%;
	vertical-align: top;
	height: 210px;
}

.nav-goods-item .nav-goods-img:hover img{
    opacity: .8;
}
.nav-goods-item .nav-goods-info{
	padding: 20px;
}
.nav-goods-item:hover{
	background: rgba(7,108,224,0.1);
}

.nav-goods-info .nav-goods-title{
	font-size: 16px;
	color: rgba(0,0,0,.8);
	text-align: center;
	width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}
.nav-goods-info .nav-goods-describe{
	width: 240px;
	margin-top: 6px;
	text-align: center;
	font-size: 12px;
	color: #000;
	opacity: .6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.nav-goods-publishinfo{
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #000; 
	font-size: 10px;
}
.f-name{
	opacity: 1;
	font-size: 16px;
	color: #f66f42;
	font-weight: bold;
}
.publish-time{ 
	min-width: 120px;
	text-align: right;
}
.nav-goods-more{
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}

.nav-goods-more span{
	font-size: 14px;
	font-weight: 400;
	color: #000;
	opacity: .4;
	display: inline-block;
	margin-right: 5px;
}

/* 网站底部信息 */
.footbar{
	padding: 20px 0;
	width: 100%;
	min-width: 1200px;
	background: #303335;
	color: #999;
}
.aboutinfo{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex; 
} 
.contentus li , .helpbar li{
    font-size: 14px; 
    line-height: 17px;
	margin-bottom: 5px;
	text-align: left;
}
.contentus li:first-child , .helpbar li:first-child{	
	margin-bottom: 10px;
	font-size: 16px; 
	line-height: 22px;
} 
.linkbeian{
	cursor: pointer; margin-left: 5px;
	border-bottom: 1px solid #999;
}
.linkbeian:hover{
	color: #f9f9f9;
}



.color-sys{
	color: #f80;
}




.head-search-form{
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.head-searchbox{
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.head-searchbox .search-inpt{
	height: 38px;
	background: #fff;
	border: 1px solid #ccc;
	padding:0 10px;
	width: 250px;
	display: flex;
	align-items: center;
	border-radius: 4px 0 0 4px;
}
.head-searchbox .search-inpt input{
	border: none;
	outline: none;
	height: 20px;
	line-height: 20px;
	width: 100%; 
}
.head-searchbox .search-img{
	cursor: pointer;
	border-radius: 0 4px 4px 0;
	width: 50px;
	height: 40px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	background: #076ce0;
}
.search-img .search-icon{
	display: inline-block;
	background: url('../img/search.png');
	width: 20px;
	height: 20px;
	background-size: 20px 20px;
}
.head-search-form .publishfree{
	margin-left: 10px;
}
.head-search-form .publishfree>span{
	cursor: pointer;
	display: inline-block;
	width: 100px;
	min-width: 100px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	background: #f66f42;
	border-radius: 4px;
}
.head-search-form .publishfree>span:hover{
	background-color: #dc633b;
}

.news-list{
	padding: 20px 0;
	display: flex;
}
.news-list .listitem{
	padding: 0 20px;
}
.news-list-ul li{ 
	padding: 10px 0; 
	color: rgba(0,0,0,0.6);
	font-size: 14px;
	cursor:pointer;    
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.news-list-ul li:hover{
	color: #3ac8eb;
}
.news-list-ul li .li-icon{
	width: 6px;
	height: 6px;
	border-radius: 100%;
	margin-right: 10px;
	background: #3ac8eb;
	display: inline-block;
	
}
.news-text-left{
	display: flex;
	align-items: center;
	cursor:pointer; 
	display: -webkit-box;    
	-webkit-box-orient: vertical;    
	-webkit-line-clamp:1;    
	overflow: hidden;
}

/* 全局遮盖 */
.marsk{
	width: 300px;
	height: 50px;
	position: absolute;
	top: 10%;
	left: 50%;
	margin-left: -150px;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}
.marsk-text{
	position: relative;
	color: #3ac8eb;
}
.top-bar{
	background: #f5f5f5;
	height: 30px;
	line-height: 30px;
	width: 100%; 
    color: #888;
	font-size: 14px;
	margin: 0 auto;
	border-bottom: 1px solid #ddd;
}
.warp1200{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.warp1200 .gologin>span{
	cursor: pointer;
}

.home-menu-content{
	width: 100%; 
	padding: 20px 0; 
}
.homebar{
	max-width: 1200px; 
	width: 1160px;
	min-height: 200px;
	margin: 20px auto; 
	display: flex;
	border: 1px solid #ddd;
	border-left: 0;
	border-right: 0;
}
.homebar .leftmenu{
	position: relative;
	width: 100%;
	font-size: 14px;
} 
.leftmenu-item{ 
	min-height: 40px;
	cursor: pointer;
	font-family: "PingFangSC-Regular","PingFang SC";
	display: flex;
}
.leftmenu-item .menu-text{ 
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 20px;
	color: rgba(0,0,0,.8);
	font-weight: bold;
	min-width: 150px;
} 
.leftmenu-item .menu-text:hover{
	color:#3ac8eb ;
}
.leftmenu-item .submenu{ 
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
} 
.leftmenu-item .submenu li{
	cursor: pointer;
	color: rgba(0,0,0,.8);
	text-align: left;
	display: inline-block;
	margin:0 20px;
	padding: 5px 10px;
	border-radius:3px;
	-moz-border-radius:3px;
	-ms-border-radius:3px;
	-o-border-radius:3px;
	-webkit-border-radius:3px;
} 
.leftmenu-item .submenu li:hover{
	color: #fff;
	background: #3ac8eb;
}
.leftmenu-item:last-child .menu-text , .leftmenu-item:last-child  .submenu{
	border-bottom: none;
}

.top-menu-bar{
	width: 100%;
	background: #076ce0;
}
.top-menu-bar .submenu{
	width: 1200px;
	margin: 0 auto;
	display: flex;
}
.top-menu-bar .submenu li{
	min-width: 100px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	margin-right: 20px;
	text-align: center;
	cursor: pointer;
}
.top-menu-bar .submenu li>span{
	display: inline-block;
	padding: 0 10px;
	width: 100%;
}
.top-menu-bar .submenu li>span.active{
	background: #f66f42;
}
.bannerbox{
	width: 100%;
	margin: 0 auto;
}
.home-banner{
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.home-banner img{ 
	width: 100%;
	height: 500px;
	background-size: contain;
}
.bannerbox .swiper-box{
	width: 100%;
	margin: 0;
	height: 400px;
	overflow: hidden;
	display: flex;
}
.bannerbox  .swiper-slide{
	height: 100%;
	overflow: hidden;
}
.bannerbox .right-news{
	width: 260px;
	min-width: 260px;
	margin-left: 10px;
	border: 1px solid #f90; 
}

.bannerbox .swiper-container{
	border: 1px solid #eee;
	height: 100%;
	cursor: pointer;
}
.bannerbox   img{
	width: 100%;
	vertical-align: top;
}
.banner-text{
	width: 1200px;
	position: absolute;
	left: 50%;
	margin-left: -600px;
	top: 0; 
	height: 100%;
	display: flex;
	align-items: center;
}
.text-info{ 
	width: 500px;
}
.b-title{
	font-size: 32px;
	color: #fff;
	font-weight: bold;
}
.b-info{
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
	margin-top: 20px;
}
.nav-big-title{
	font-size: 32px;
	color: #02b2b5;
	font-weight: bold;
	text-align: center;
}

.nav-item-name{
	color: #02b2b5;
	font-size: 20px;
	text-align: center;
	margin: 10px 0;
}