/**
 * hero public css
 * 
 * website : https://hero.com
 * 
 * author: lewin
 * Released on: August, 2021
 */
div,h1,h2,h3,h4,h5,h6,ul,li,p,input,button,textarea,a{
	margin:0;
	padding:0;
}
html,body{
	width:100%;
	position:relative;
	margin:0 auto;
	font-family: "Microsoft YaHei","Helvetica Neue",Arial,HelveticaNeue,Helvetica,"BBAlpha Sans",sans-serif;
	padding:0;
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
}
input,button{
	border:none;
	outline:none;
	-webkit-appearance:none;
	background:none;
}
video{
	object-fit: fill;
}
/*input placeholder样式修改*/
input::-webkit-input-placeholder {    /* Chrome/Opera/Safari */
	/*text-align: center;*/
}
input::-moz-placeholder { /* Firefox 19+ */  
	/*text-align: center;*/
}	
input:-ms-input-placeholder { /* IE 10+ */
	/*text-align: center;*/
}
input:-moz-placeholder { /* Firefox 18- */
	/*text-align: center;*/
}
a,button {
	cursor: pointer;
	text-decoration: underline;
	outline:0;
	-moz-outline:0;
}
a, a:hover {
    text-decoration: none;
    outline: 0;
    -moz-outline: 0;
}
.hero-chengg{
	width:100%;
	height:1px;
	position:relative;
}
.clear{
	height:0px;
	clear:both;
	font-size:0px;
	line-height:0px;
	zoom:1;
}
/*文本溢出省略号*/
.hero-overflow{
	width:100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*多行文本溢出省略号*/
.hero-overflow-more{
	display: -webkit-box; /*重点，不能用block等其他，将对象作为弹性伸缩盒子模型显示*/
	-webkit-box-orient: vertical; /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
	-webkit-line-clamp: 2; /*行数，超出三行隐藏且多余的用省略号表示...*/
	line-clamp: 2;
	word-break: break-all;
	overflow: hidden;
	max-width: 100%;
}
/*自定义滚动条*/
.hero-scroll-container {
	width: 500px;
	height: 150px;
	overflow: auto;     /*必须*/
}
.hero-scroll-container::-webkit-scrollbar {
    width: 8px;
    background: white;
}
.hero-scroll-container::-webkit-scrollbar-corner,
    /* 滚动条角落 */
.hero-scroll-container::-webkit-scrollbar-thumb,
.hero-scroll-container::-webkit-scrollbar-track {      /*滚动条的轨道*/
    border-radius: 4px;
}
.hero-scroll-container::-webkit-scrollbar-corner,
.hero-scroll-container::-webkit-scrollbar-track {
    /* 滚动条轨道 */
    background-color: rgba(180, 160, 120, 0.1);
    box-shadow: inset 0 0 1px rgba(180, 160, 120, 0.5);
}
.hero-scroll-container::-webkit-scrollbar-thumb {
    /* 滚动条手柄 */
    background-color: #00adb5;
}
/*css绘制三角形角标，修改border值改变大小*/
/*正三角*/
.hero-up-triangle{
	width:0;
	height:0;
	border-style: solid;
	border-width:0 10px 20px 10px;
	border-color:transparent transparent rgba(0,0,0) transparent;
}
/*倒三角*/
.hero-down-triangle{
	width:0;
	height:0;
	border-style: solid;
	border-width:20px 10px 0 10px;
	border-color:rgba(0,0,0) transparent transparent transparent;
}
/*文字隐藏*/
.hero-indent{
	text-indent:-9999px;
}
/*元素置灰*/
.hero-gray{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}
/*通用盒子，高度内容撑开*/
.hero-wrap{
	width:1200px;
	position:relative;
	margin:0 auto;
}
/*通用头部样式设定*/
.hero-pub-top{
	width:100%;
	height:80px;
	background-color:#101a6e;
	position:relative;
	min-width:1200px;
	max-width:1920px;
	margin:0 auto;
}
.hero-icon{
	display: block;
	width:120px;
	height:120px;
	position:relative;
	float:left;
	margin:12px 20px 0 0;
}
.hero-top-txt{
	float:left;
	margin-top:16px;
}
.hero-top-txt p:nth-child(1){
	font-size:24px;
	color:#fff;
}
.hero-top-txt p:nth-child(2){
	font-size:16px;
	color:rgba(255,255,255,.6);
}
/*通用头部带菜单栏样式*/
.hero-top-ul{
	float:left;
	margin-left:60px;
}
.hero-top-ul li{
	float:left;
	font-size:18px;
	line-height:76px;
	margin-left:50px;
}
.hero-top-ul li a{
	color:#fff;
}
.hero-top-ul li:hover a{
	color:#ffde00;
}
.hero-top-ul li:hover{
	border-bottom:4px solid #ffde00;
}
/*头部右侧自媒体*/
.hero-top-media{
	float:right;
	margin-top:24px;
}
.hero-top-media a{
	display: block;
	width:32px;
	height:32px;
	float:left;
	margin-right:20px;
}
.hero-top-media a.wx{
	background:url(../png/btn_play.png) no-repeat center;
	background-size:100% 100%;
}
.hero-top-media a.wb{
	background:url(../png/btn_play.png) no-repeat center;
	background-size:100% 100%;
}
.hero-top-media a.tb{
	background:url(../png/btn_play.png) no-repeat center;
	background-size:100% 100%;
}
.hero-top-media a:hover{
	opacity: .9;
}
/*官网常用样式*/
.hero-logo{
	display: block;
	position:absolute;
	left:100px;
	top:200px;
}
.hero-enter{
	display: block;
	position:absolute;
	right:100px;
	top:200px;
}
.hero-enter:hover{
	opacity: .9;
}
.hero-slogan{
	display: block;
	position:absolute;
	left:300px;
	top:400px;
}
.hero-video-play{
	display: block;
	position:absolute;
	left:400px;
	top:600px;
	cursor: pointer;
	animation: vGo 2s linear infinite;
    -webkit-animation: vGo 2s linear infinite;
}
.hero-news{
	width:500px;
	height:340px;
	position:relative;
	float:left;
	overflow: hidden;
	background-color:rgba(0,0,0,.8);
}
.hero-news-ul {
	width:100%;
	margin:0 auto 0;
	position:relative;
	overflow: hidden;
	border:1px solid #969697;
}
.hero-news-ul li{
    overflow: hidden;
    position: relative;
    float: left;
    text-align: center;
    cursor: pointer;
	color:#fff;
}
.hero-news-ul li.active{
	border-bottom:1px solid #000;
	color:#000;
}
.hero-news-ul li:hover{
	border-bottom:1px solid #000;
	color:#000;
}
.hero-news-div{
	width:100%;
	overflow: hidden;
	position:relative;
	margin:0 auto;
}
.hero-news-div ul{
	width:100%;
	display: none;
	overflow: hidden;
	position:relative;
}
.hero-news-div ul.active{
	display: block;
}
.hero-news-div ul li{
	width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 44px;
}
.hero-news-div ul li a{
	display: block;
    width: 100%;
    overflow: hidden;
	color:#fff;
}
.hero-news-div ul li:hover a{
	color:#000;
}
.hero-news-div ul li a em{
	display: block;
	font-size:16px;
	float:left;
}
.hero-news-div ul li a span{
	width:100%;
	overflow: hidden;
	position:absolute;
	text-overflow: ellipsis;
	white-space: nowrap;
	float:left;
	font-size:18px;
}
.hero-news-div ul li a i{
	display: block;
	float:right;
	margin-right:10px;
	font-size:16px;
}
.hero-news-banner{
	width: 348px;
    height: 340px;
    position: relative;
    overflow: hidden;
    float: left;
}
.hero-news-banner img{
	display: block;
	width:100%;
	height:100%;
}
/*公用浮窗样式*/
.hero-float{
	width:300px;
	height:500px;
	background:none;
	position:fixed;
	right:0px;
	top:45%;
	transform: translate(0,-45%);
	-webkit-transform: translate(0,-45%);
	transition: all .5s;
    -webkit-transition: all .5s;
    z-index: 20;
}
.hero-float-close{
	display: block;
	position:absolute;
	left:0;
	top:0;
}
.hero-float.active .hero-float-close{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.hero-float .hero-float-p{
	font-size:24px;
	text-align: center;
	color:#fff;
	margin-top:20px;
}
.hero-float .hero-float-ewm{
	width:106px;
	height:106px;
	border:1px solid #000;
	border-radius: 5px;
	margin:10px auto;
	background:#fff;
	position:relative;
}
.hero-float .hero-float-ewm img{
	display: block;
	width:100px;
	height:100px;
	position:relative;
	margin:3px auto 0
}
.hero-float .hero-float-a{
	display: block;
	width:100px;
	height:100px;
	position:relative;
	margin:5px auto 0;
}
/*公用媒体底部信息*/
.hero-media-footer{
	width: 100%;
    height: 162px;
    background-color: #2b2b2b;
    overflow: hidden;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.hero-media-footer li{
	width: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    display: -webkit-flex;
}
.hero-media-footer li img{
	display: block;
	width:113px;
	height:113px;
	margin-right:20px;
}
.hero-media-footer li .hero-media-footer-txt{
	font-size:20px;
	margin-top:5px;
}
/*网页分享插件样式统一修改*/
#bshare-custom a{
	padding:0;
	margin-right:10px;
}
#bshare-custom .bshare-sinaminiblog{
	width: 36px;
    height: 36px;
    background: url(../png/wb.png) no-repeat center;
}
#bshare-custom .bshare-qqim{
	width: 36px;
    height: 36px;
    background: url(../png/qq.png) no-repeat center;
}
#bshare-custom .bshare-weixin{
	width: 36px;
    height: 36px;
    background: url(../png/wx.png) no-repeat center;
}
/*新闻列表分页样式*/
.page{
    width:100%;
    text-align: center;
    position: relative;
    margin-top:50px;
    margin-bottom:90px;
}
.page .first,.page .last{
    display: none;
}
.page li{
    display: inline-block;
    font-size: 16px;
    color:#000;
    margin:0 10px;
}
.page li a{
    color:#000;
    padding:2px 7px;
    border:1px solid #adadad;
}
.page li.active a{
    background-color:#e0e0e0;
}
.page li:hover a{
	background-color:#e0e0e0;
}
.page li span{
    color:#000;
    padding:2px 7px;
    border:1px solid #adadad;
}
/*未成年人提示弹窗样式*/
.hero-young-tc{
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.8);
	position:fixed;
	left:0;
	top:0;
	z-index:50;
	display: none;
}
.hero-young-body{
	width: 826px;
    height: 486px;
    background: url(../png/common.png) no-repeat center;
    position: relative;
    overflow: hidden;
    margin: 0 auto 0;
    top: 45%;
    transform: translate(0,-45%);
    -webkit-transform: translate(0,-45%);
}
.hero-young-close{
	display: block;
	width:24px;
	height:24px;
	background:url(../png/cha.png) no-repeat center;
	position:absolute;
	right:39px;
	top:34px;
	cursor: pointer;
	z-index:2;
}
.hero-young-youngC {
    width: 784px;
    overflow: hidden;
    position: relative;
    margin: 20px auto 0;
}
.hero-young-top{
	width: 100%;
    height: 51px;
    background-color: #DDE0E3;
    position: relative;
}
.hero-young-top img{
	display: block;
	width:191px;
	height:12px;
	float:left;
	margin-top:19px;
}
.hero-young-top p{
	font-size:18px;
	color:#252525;
	font-weight:bold;
	line-height:51px;
	float:left;
	margin:0 34px;
}
.hero-young-top img:nth-child(3){
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.hero-young-top img:nth-child(1){
	margin-left:131px;
}
.hero-young-txt{
	width:725px;
	position:relative;
	max-height:300px;
	overflow: auto;
	margin: 14px 0 0 31px;
    padding-right: 26px;
}
.hero-young-txt p{
	width:100%;
	overflow: hidden;
	font-size:14px;
	color:#3D3D3D;
	line-height:18px;
	margin-top:20px;
}
/*官网常用弹窗样式统一*/
/*预约弹窗*/
.hero-order-tc{
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.8);
	position:fixed;
	left:0;
	top:0;
	z-index:50;
	display: none;
}
/*设备切换*/
.hero-sys-ul{
	width:100%;
	overflow: hidden;
	position:relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
}
.hero-sys-ul li{
	font-size:26px;
	line-height:28px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
}
.hero-sys-ul li em{
	display: block;
	width:28px;
	height:28px;
	overflow: hidden;
	margin-right:10px;
}
.hero-sys-ul li em img{
	display: block;
	width:100%;
	height:100%;
}
.hero-sys-ul li.active em img:nth-child(1){
	display: none;
}
.hero-sys-ul li span{
	display: block;
	color:#fff;
}
/*input输入框*/
.hero-put{
	width: 100%;
    overflow: hidden;
    position: relative;
    color:#fff;
    font-size:24px;
}
.hero-put-phone{
	width:100%;
	height:80px;
	background-color:rgba(176,179,179,.18);
	text-indent:30px;
}
.hero-put-yzm,.hero-put-t_yzm{
	width: 350px;
    height: 78px;
    background-color: rgba(176,179,179,.18);
    position: relative;
    text-indent: 30px;
    float: left;
}
.hero-captcha{
	width: 210px;
    height: 78px;
    background-color: #fff;
    border-radius: 5px;
    float: right;
    font-size: 24px;
    color: #000;
    text-align: center;
    line-height: 78px;
    cursor: pointer;
}
.hero-captcha img{
	display: block;
	width:100%;
	height:100%;
}
.hero-put-gCode{
	width: 210px;
    height: 78px;
    background:#fff;
    border-radius: 5px;
    float: right;
    font-size: 24px;
    color: #000;
    text-align: center;
    line-height: 78px;
    cursor: pointer;
}
.btn-shake{
	width: 348px; 
	height: 103px;
	background: url(../btn-ljcs.html) no-repeat;
}
.btn-shake::after{
	display: block; 
	content: ''; 
	width: 355px; 
	height: 120px; 
	background: url(../btn-ljcs.html) no-repeat; 
	background-size: 355px 120px;
    animation: heartBeat 4s ease-in-out both infinite;
    -webkit-animation: heartBeat 4s ease-in-out both infinite;
}

/*首屏向下滑动提示效果*/
@keyframes heroMouseDown{
	0%, 30% {
    	opacity: 0;
    	-webkit-transform: translate(0, -10px);
	}
	60% {
    	opacity: 1;
    	-webkit-transform: translate(0, 0);
	}
	100% {
   	 opacity: 0;
    	-webkit-transform: translate(0, 8px);
	}
}
@-webkit-keyframes heroMouseDown{
	0%, 30% {
    	opacity: 0;
    	-webkit-transform: translate(0, -10px);
	}
	60% {
    	opacity: 1;
    	-webkit-transform: translate(0, 0);
	}
	100% {
   	 opacity: 0;
    	-webkit-transform: translate(0, 8px);
	}
}
@-moz-keyframes heroMouseDown{
	0%, 30% {
    	opacity: 0;
    	-webkit-transform: translate(0, -10px);
	}
	60% {
    	opacity: 1;
    	-webkit-transform: translate(0, 0);
	}
	100% {
   	 opacity: 0;
    	-webkit-transform: translate(0, 8px);
	}
}
@-ms-keyframes heroMouseDown{
	0%, 30% {
    	opacity: 0;
    	-webkit-transform: translate(0, -10px);
	}
	60% {
    	opacity: 1;
    	-webkit-transform: translate(0, 0);
	}
	100% {
   	 opacity: 0;
    	-webkit-transform: translate(0, 8px);
	}
}
/*视频播放效果*/
@keyframes heroVideoPlay{
	0% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
	50% {
    	transform: scale(1);
    	-webkit-transform: scale(1);
	}
	100% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
}
@-webkit-keyframes heroVideoPlay{
	0% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
	50% {
    	transform: scale(1);
    	-webkit-transform: scale(1);
	}
	100% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
}
@-moz-keyframes heroVideoPlay{
	0% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
	50% {
    	transform: scale(1);
    	-webkit-transform: scale(1);
	}
	100% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
}
@-ms-keyframes heroVideoPlay{
	0% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
	50% {
    	transform: scale(1);
    	-webkit-transform: scale(1);
	}
	100% {
    	transform: scale(0.9);
    	-webkit-transform: scale(0.9);
	}
}
/*图片闪烁放大效果*/
@keyframes heartBeat {
  0% {transform: scale(1); opacity: 1;}
  30% {transform: scale(1.4); opacity: 0;}
  100% {transform: scale(1); opacity: 0;}
}
@-webkit-keyframes heartBeat {
  0% {-webkit-transform: scale(1); opacity: 1;}
  30% {-webkit-transform: scale(1.4); opacity: 0;}
  100% {-webkit-transform: scale(1); opacity: 0;}
}