/* 基础样式 */
body{
	margin: 0;
	background-color: #ffffff;
	padding-top: 1.0rem;
}
*{
	outline: none;
}
a{
	text-decoration: none;
}
a:hover {
    color: #e60013;
}
h1, h2, h3, h4, h5{
    margin: 0;
    font-size: 100%;
    font-weight: normal;
    /* display: block; */
    /* font-size: 1.5em; */
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    /* font-weight: bold; */
}

dl, dt, dd
{ margin:0; padding:0;}
ul, ol, li {
    list-style: none;
	padding:0;
	margin:0;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
p{
	margin: 0;
}

.min-box .center-box{
	padding:0 0.3rem;
}


/* 超出隐藏 */
.of-ellipsis{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 多行文本超出隐藏 */
.of-ellipsis-2{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.of-ellipsis-3{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.of-ellipsis-4{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.of-ellipsis-5{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.of-ellipsis-6{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
.of-ellipsis-7{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}
.of-ellipsis-8{
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}


.auto-inner {
    width: 94%;
	max-width: 1080px;
    margin: 0 auto;
}


/*顶栏*/
.top-bar{
	width: 100%;
	height: 1.0rem;
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.075);	
	
}
.top-bar .show-bar {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 100;
	background-color: #000;
	align-items: center;
	justify-content: space-between;
}
.top-bar .show-bar .top-ligo{
	display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    height: 1.0rem;
    line-height: 1.0rem;
	margin-left:0.3rem;
}
.top-bar .show-bar .top-ligo img{
	max-width: none;
    height: 0.3rem;
}
.top-bar .show-bar .menu-btn{
	width: .38rem;
	height: .33rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	margin-right:0.3rem;
}
.top-bar .show-bar .menu-btn span{
	display: block;
	width: .3rem;
	background-color: #fff;
	height: .04rem;
	position: relative;
	border-radius: .03rem;
	transition: opacity 300ms, transform 300ms, width 300ms;
	transform-origin: left;
}

.top-bar .show-bar .menu-btn span::before{
	transition: opacity 300ms, right 300ms;
	content: "";
	position: absolute;
	width: .06rem;
	height: .06rem;
	border-radius: .06rem;
	background-color: inherit;
	right: 120%;
	top: 50%;
	transform: translateY(-50%);
}
.top-bar .show-bar .menu-btn.acts span:nth-child(2){
	opacity: 0;
}
.top-bar .show-bar .menu-btn.acts span:first-child{
	transform: rotateZ(50deg);
	width: 100%;
}
.top-bar .show-bar .menu-btn.acts span:last-child{
	transform: rotateZ(-50deg);
	width: 100%;
}
.top-bar .show-bar .menu-btn.acts span::before{
	opacity: 0;
	right: 0%;
}
.top-bar .top-menu{
position: fixed;
    left: -100%;
    top: 1.0rem;
    bottom: 0;
    width:60%;
    background-color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
    font-size: 0.18rem;
    opacity: 0;
    transform: translateX(-100%);
}
.top-bar .top-menu.acts{
	transform: translateX(0);
	left: 0;
	opacity: 1;
	transition: left 0.5s,opacity 0.3s;
}
.top-bar .top-menu ul{
	overflow: auto;
    height: 100%;
}
.top-bar .top-menu ul li{
	position: relative;
    z-index: 100;
}
.top-bar .top-menu ul li aside {
    position: relative;
    z-index: 4;
	border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.3rem 1.4rem 0.3rem 0.3rem;
    overflow: hidden;
    font-size: 0.28rem;
	font-weight:500;
}
.top-bar .top-menu ul li aside  a{
	color:#333;
}
.top-bar .top-menu ul li aside  a:hover{
	color:#df0615;
}
.top-bar .top-menu ul li .op {
    position: absolute;
    right: 0;
    width: 4em;
    height: 100%;
    top: 0;
    transition: 0.3s;
}

.top-bar .top-menu ul li .op:before, .top-bar .top-menu ul li .op:after {
    position: absolute;
    content: '';
    background-color: #333;
    width: 1em;
    height: 1em;
    top: 50%;
    left: 50%;
    margin: -0.5em 0 0 -0.5em;
}

.top-bar .top-menu ul li .op:before {
    height: 2px;
    margin-top: -1px;
}

.top-bar .top-menu ul li .op:after {
    width: 2px;
    margin-left: -1px;
}
.top-bar .top-menu ul li .op.click {
    transform: rotate(45deg);
}

.top-bar .top-menu ul li .sub {
    padding: 0.20rem 0;
    background-color: rgba(0,0,0,0.05);
	display:none;

}
.top-bar .top-menu ul li .sub dd {
    line-height:2;
    position: relative;
    margin: 0.05rem 0;
	padding: 0 0.4rem;
}

.top-bar .top-menu ul li .sub dd:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transition: 0.3s transform,0.3s opacity;
    background-color: #d70c19;
    transform-origin: right 0;
    opacity: 0;
}

.top-bar .top-menu ul li .sub dd:hover:before {
    transform: scaleX(1);
    transform-origin: left 0;
    opacity: 1;
}

.top-bar .top-menu ul li .sub dd a {
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.3s;
	font-size:0.26rem;
	color:#333;
}
.top-bar .top-menu ul li .sub dd:hover a {
    color: #fff;
}

body.no-banner .top-bar {
    background-color: #000;
}


/* 动画 */

.drop{opacity:0;transform:translate3d(0,-80px,0);}
.drop.is-visible{opacity:1;transform:translate3d(0,0,0);transition:opacity 2s cubic-bezier(.25,.1,.25,1),transform 2s cubic-bezier(.25,.1,.25,1);} 
.teaser{opacity:0;transform:translate3d(0,80px,0);}
.teaser.is-visible{opacity:1;transform:translate3d(0,0,0);transition:opacity 2s cubic-bezier(.25,.1,.25,1),transform 2s cubic-bezier(.25,.1,.25,1);} 

.lter{opacity:0;transform:translate3d(-80px,0,0);}
.lter.is-visible{opacity:1;transform:translate3d(0,0,0);transition:opacity 2s cubic-bezier(.25,.1,.25,1),transform 2s cubic-bezier(.25,.1,.25,1);}
.rter{opacity:0;transform:translate3d(80px,0,0);}
.rter.is-visible{opacity:1;transform:translate3d(0,0,0);transition:opacity 2s cubic-bezier(.25,.1,.25,1),transform 2s cubic-bezier(.25,.1,.25,1);}

.scale{opacity:0;transform:scale(1.1);}
.scale.is-visible{opacity:1;transform:scale(1);transition:transform 2s cubic-bezier(.25,.1,.25,1);transform-origin: center bottom;}
.reduce{opacity:0;transform:scale(.9);}
.reduce.is-visible{opacity:1;transform:scale(1);transition:transform 2s cubic-bezier(.25,.1,.25,1);transform-origin: center bottom;}


.footer {
    width: 100%;
    padding-top: 0.75rem;
    background-color: #111111;
}
.f-main {
    width: 100%;
	padding:0 0.3rem 0.9rem;
	margin: 0 auto;
}
.f-top {
    width: 100%;
    padding-bottom: 0.7rem;
	text-align: center;
}
.f-tip {
    width: 100%;
    margin-bottom: 0.28rem;
	font-size:0.26rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}
.f-phone {
    display: block;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0.38rem;
    color: #ffffff;
	font-size:0.48rem;
    line-height: 1.17;
}

.f-address {
    width: 100%;
    margin-bottom: 0.1rem;
    line-height: 1.7;
	font-size:0.26rem;
    color: rgba(255,255,255,.5);
}

.f-sharebox {
    width: 100%;
    font-size: 0;
    padding-top: 0.25rem;
}

.f-share{
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	margin-right: .2rem;
	margin-top: .2rem;
}
.f-share:last-child{
	margin-right: 0;
}
.f-link{
	display: block;
}
.f-icon1{
	display: block;
	width: .60rem;
	height: .60rem;
	text-align: center;
	line-height: .60rem;
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.1);
}
.f-icon1 img{
	opacity: .5;
	max-width: 100%;
	max-height: 100%;
}
.f-icon2{
	display: none;
	width: .60rem;
	height: .60rem;
	text-align: center;
	line-height: .60rem;
	overflow: hidden; 
	border-radius: 50%; 
	border: 1px solid #ffffff;
	background-color: #ffffff;
}
.f-icon2 img{
	max-width: 100%;
	max-height: 100%;
}
.f-share:hover .f-icon1{
	display: none;
}
.f-share:hover .f-icon2{
	display: block;
}
.f-sub{
	display: none; 
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,0);
	padding-top: 13px;
}
.f-box{
	display: block;
	position: relative; 
	text-align: center;
	padding: .15rem;
	min-width: 1.3rem; 
	background-color: #ffffff;
	border-radius: 3px;
}
.f-box:before{
	content: ''; 
	position: absolute;
	top: -6px;
	left: 50%;
	margin-left: -6px;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
.f-code{
	display: inline-block;
	min-width: 80px;
	width: 100%;
	margin-bottom: .1rem;
}
.f-code img{
	width: 100%;
}
.f-name{
	width: 100%;
	white-space: nowrap; 
	font-size:0.22rem; 
	color: #666666;
	line-height: 1;
}


.f-bottom {
    width: 100%;
    padding: 0.4rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
	text-align: center;
}

.f-logo {
    display: inline-block;
    cursor: pointer;
}

.f-logo img {
    max-width: none;
    height: 0.3rem;
}

.f-text {
    width: 100%;
    text-align: center;
	margin-top:0.2rem;
}
.f-td {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
	font-size:0.24rem;
}


.foot-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 999;
	text-align:center;

}
.foot-btn a {
    width: 25%;
	float:left;
    border-left: 1px rgba(255,255,255,0.2) solid;
    box-sizing: border-box;
    font-size:0.24rem;
    color: #fff;
	padding:0.1rem 0;
}
.foot-btn a i{
	width:0.4rem;
	height:0.4rem;
	display:block;
	margin:0 auto 0.1rem;
}
.foot-btn a i img{
	width:auto;
	height:100%;
}
.foot-btn a:first-child {
    border-left: none;
}



.ny-banner {
    width: 100%;
    position: relative;
}
.banner-img {
    width: 100%;
}
.banner-img img {
    width: 100%;
}
.banner-text {
    width: 100%;
	padding:0 0.3rem;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-titles {
    width: 100%;
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.17;
	font-size:0.46rem;
}
.banner-intro {
    width: 100%;
    color: #ffffff;
    line-height: 1.41;
	font-size:0.28rem;
}

.nav {
    width: 100%;
    overflow: hidden;
    background-color: #111111;
}

.nav-main {
    width: 100%;
	height:0.8rem;
	padding:0 0.3rem;
	margin: 0 auto;
}
.nav-b {
    display: inline-block;
    max-width: 100%;
}

.nav-item {
    position: relative;
    width: auto;
    cursor: pointer;
    margin-right: 0.3rem;
}

.nav-classify {
    display: block;
    height: 0.8rem;
    line-height: .8rem;
    color: #ffffff;
	font-size:0.26rem;
}
.nav-item:after {
    transition: all ease .5s;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    height: 0.03rem;
    background-color: #ffffff;
}
.nav-item:hover:after {
	width: 100%;
}
.nav-item.active:after{
	width: 100%;
}



/*翻页*/
.pg-main{width: 100%;text-align: center;font-size: 0;}
.pg-main a{display: inline-block;vertical-align: top;min-width: .55rem;height: .55rem;line-height: .55rem;border-radius: .05rem;padding: 0 .1rem;transition: all .3s;background-color: #fff;margin: 0 .1rem;font-size: .22rem;color: #666;cursor: pointer;}
.pg-main a.active{background-color: #d6ad5d;color: #fff;}
.pg-prev,
.pg-next{background-image: url(../img/78.png);background-size: .2rem auto;background-repeat: no-repeat;background-position: center center;}
.pg-next{background-image: url(../img/79.png);}
.pg-main a:hover{background-color: #d6ad5d;color: #fff;}
.pg-prev:hover{background-image: url(../img/80.png);}
.pg-next:hover{background-image: url(../img/81.png);}
