/* 基础样式 */
body{
	margin: 0;
	background-color: #ffffff;
	padding-top: 1.1rem;
	font-family: "Source Han Sans CN","PingFang SC","Microsoft YaHei","STSong","SimSun",Arial,sans-serif;
}
*{
	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.1rem;
	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: #ffffff;
	align-items: center;
	justify-content: space-between;
}
.top-bar .show-bar .top-ligo{
	width:2.29rem;
	height:0.67rem;
	height: 100%;
	position: relative;
	padding:0.25rem 0 0.15rem 0.25rem;
	text-align:center;
}
.top-bar .show-bar .top-ligo img{
	width:auto;
	height:100%;
}
.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: #333;
	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;
}


.footer {
	background-color:#202020;
	overflow:hidden;
	padding-bottom:1.0rem;
}

.footer .logo-code {
    padding-top: 0.6rem;
    padding-bottom: 0.3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.footer .logo-code .logo {
    width: 100%;
}

.footer .logo-code .logo img {
    margin: 0 auto;
    height: 0.8rem;
	display:block;
}

.footer .logo-code .code-box {
    margin-top: 0.5rem;
    width: 100%;
	display: flex;
	justify-content: center;
}

.footer .logo-code .code-box .code-li {
    text-align: center;
}
.footer .logo-code .code-box .code-li img {
    width: 1.6rem;
	display:block;
}

.footer .logo-code .code-box .code-li .txt {
    font-size: 0.24rem;
	margin-top:0.1rem;
	color:rgba(255, 255, 255, 0.6);
}
.footer .logo-code .code-box .code-li + .code-li {
    margin-left: 0.3rem;
}
.footer .menus {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
	text-align:center;
}

.footer .menus .menus-title{
    font-size: 0.26rem;
	color:rgba(255, 255, 255, 0.6);
}

.footer .menus .contact-block {
    padding-top: 0.1rem;
}

.footer .menus .contact-li {
    display: flex;
    justify-content: center;
	position: relative;
    color: #ffffff;
	font-size:0.26rem;
	margin:0.08rem 0.1rem;
}
.footer .menus .contact-li a{
    color: #ffffff;
}
.footer .menus .contact-li.phone {
    font-size: 0.4rem;
}
.footer .menus .contact-li.phone a{
    color: #ffffff;
}
.footer .menus .contact-li .self-img{
    width:0.36rem;
	background-position: left center;
    background-repeat: no-repeat;
	background-size: 0.36rem auto;
    position: relative;
	margin-right:0.1rem;
}
.footer .menus .contact-li.phone .self-img{
	background-image:url(../img/phone1.png);
}

.footer .menus .contact-fh{
	display: flex;
	justify-content: center;
}
.footer .menus .contact-li.tel .self-img{
	background-image:url(../img/tel.png);
}
.footer .menus .contact-li.wechat .self-img{
	background-image:url(../img/wechat.png);
}
.footer .menus .contact-li.address .self-img{
	background-image:url(../img/address.png);
}

.footer .bot {
    padding-top: 0.25rem;
    padding-bottom: 0.2rem;
    text-align: center;
	background-color: #141414;
	font-size:0.24rem;
    line-height:1.8;
    color: #999999;
}




.ny_ban{
	width:100%;
	position: relative;
}

.ny_ban .ny_ban_img {
	width:100%;
    height: 4.4rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.ny_ban .box_text {
    position: absolute;
    left: 3.5%;
    top: 35%;
}

.ny_ban .box_text h1 {
    color: #fff;
    font-size:0.44rem;
    font-weight:700;
    position: relative;
    z-index: 5;
}
.ny_ban .box_text span {
    color: #fff;
    font-size:0.24rem;
    display: inline-block;
    font-weight: 400;
    margin:0.2rem 0;
	
}
.nav-menu{
    position: relative;
    z-index: 10;
}
.nav-menu ul {
	overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
	border-top: 0.01rem solid rgba(255,255,255,0.2);
}
.nav-menu .auto-inner {
	margin-top: -0.8rem;
	height: 0.8rem;
    overflow: hidden;
}
.nav-menu li {
    display: inline-block;
}
.nav-menu li:not(:last-child) {
    margin-right: 0.3rem;
}
.nav-menu li a {
    line-height: 0.8rem;
	color: #fffefe;
	font-size:0.26rem;
    display: block;
	position: relative;	
}

.nav-menu li a:before {
    position: absolute;
    left: 0;
    content: '';
    width: 0;
    top: 0;
    height: 0.04rem;
    background-color: #d70c19;
    transition: 0.3s;
}

.nav-menu li a:hover:before, .nav-menu li.active a:before {
    width: 100%;
}


.dqwz {
    width: 100%;
	padding:0.3rem 0;
	font-size:0.24rem;
}
.dqwz .auto-inner{
    display: flex;
    align-items: center;
}
.dqwz a {
    margin-right: 0.15rem;
    position: relative;
    transition: .5s;
	font-size:0.24rem;
	color:#666;
}
.dqwz a::after {
    content: '-';
    position: absolute;
    right: -0.11rem;
}

.dqwz a:nth-last-child(1)::after {
  display: none;
}


.info-title {
	display: flex;
    align-items: center;
    justify-content: center;
	left: 0;
    width: 2.64rem;
	height:1.2rem;
    white-space: nowrap;
    padding: 0.1rem 0.6rem;
    background-position: right bottom;
    background-size: auto;
	background-repeat: no-repeat;
    background-image: url(../img/t-b2.png) !important;
    margin: 0 auto;
    font-size:0.48rem;
    font-weight:500;
    position: relative;
    margin-bottom: 0.5rem;
}
.info-title::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.04rem;
  background-color: #df0615;
  left: 50%;
  bottom: 0.1rem;
  transform: translate(-50%, 0);
}

.info-title p {
  position: absolute;
  font-size:0.48rem;
  text-transform: uppercase;
  opacity: .1;
  bottom: 0;
  color: #999;
  white-space: nowrap;
  font-weight:700;

}
.info-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0.4rem;
    width: 0.4rem;
    background-image: url(../img/t-b.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}




.m-foot {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
}

.m-foot ul {
    text-align: center;
}

.m-foot ul li {
    float: left;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
	padding:0.05rem 0;
}

.m-foot ul li:first-child, .m-foot ul li:nth-child(4) {
    border-left: none;
}

 .m-foot ul li img {
	width:0.3rem;
	height:0.3rem;
    display: block;
    margin: 0.1rem auto;
}

.m-foot ul li span {
    display: block;
    font-size: 0.24rem;
    color: #1a1a1a;
    transition: all 0.4s;
}

.m-foot ul li:nth-child(3) {
    background: #df0615;
    border-left: none;
    border-top: 1px solid #df0615;
}
.m-foot ul li:nth-child(3) span {
    color: #fff !important;
}


