*{
	margin: 0;
	padding: 0;
	font-family: PingFangSC-Regular, PingFang SC;
	box-sizing: border-box;
}
body,
html {
    min-width: 1200px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
	color: #1F1F1F;
}
ul,li{
 list-style-type:none;
}
a{
 text-decoration: none;
}
a:focus,
a:active {
  outline: none;
}
i{font-style: normal;}

.container{
	width: 1200px;
	margin: 0 auto;
	height: 100%;
}

/* 右侧悬浮电话 */
.ly_rightFixed{
	position: fixed;
	right: 0;
	top: 25%;
	z-index: 99999;
	padding: 14px 16px 5px;
	
	box-shadow:0 0 4px 0 rgba(0, 0, 0, .2);
	-webkit-box-shadow:0 0 4px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow:0 0 4px 0 rgba(0, 0, 0, .2);
	-o-box-shadow:0 0 4px 0 rgba(0, 0, 0, .2);
	-ms-box-shadow:0 0 4px 0 rgba(0, 0, 0, .2);
}
.ly_rightFixed_desc{
	font-size: 16px;
	color: #666666;
}
.ly_rightFixed_tel{
	font-size: 26px;
	color: #e3720f;
}


/* 盒子布局 flex 相关css*/
.flex, .flex-wrap, .flex-direction {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.align-start {
	-webkit-box-align: start;
	-moz-box-align: start;
	-o-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.align-center,
.nav_wrap .container{
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.align-end {
	-webkit-box-align: end;
	-moz-box-align: end;
	-o-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.justify-space,
.nav_wrap,
.nav_wrap .container{
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-o-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.justify-center {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-o-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.justify-end {
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-o-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.justify-start {
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-o-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.justify-around {
	justify-content: space-around;
	-webkit-justify-content: space-around
}

/* 换行 */
.flex-wrap {
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-o-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

/* 改变排列方向 */
.flex-direction {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.flexLi {
	flex: 1;
	width: 0;
}

/* 文字相关css */
.font-size-12 {
	font-size: 12px;
}

.font-size-15 {
	font-size: 15px;
}

.font-size-16 {
	font-size: 16px;
}

.font-size-17 {
	font-size: 17px;
}

.font-size-18 {
	font-size: 18px;
}

.font-size-19 {
	font-size: 19px;
}

.font-size-20 {
	font-size: 20px;
}

.font-bold {
	font-weight: bold;
}

.font-center {
	text-align: center;
}

.font-left {
	text-align: left;
}

.font-right {
	text-align: right;
}

.font-gradient {
	display: inline-block;
	color: green;
	background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(0, 128, 0, 1)), to(rgba(51, 51, 51, 1)));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* 省略号 */
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	/*white-space: nowrap;*/
}

.ellipsis2 {
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ellipsis3 {
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}


/* 公共类名 */
.mp0{
	margin-top: 0!important;
}
.p-t-40{
	padding-top: 40px;
}
.border-bottom-none{
	border-bottom: none!important;
}
.m-b-0{
	margin-bottom: 0!important;
}

/* 外边距和内边距 */

.pt10 {
	padding-top: 10px;
}

.pb10 {
	padding-bottom: 10px;
}

.pl10 {
	padding-left: 10px;
}

.pr10 {
	padding-right: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pb20 {
	padding-bottom: 20px;
}

.pl20 {
	padding-left: 20px;
}

.pr20 {
	padding-right: 20px;
}
.m0{
	margin-left: 0!important;
}
.mt10 {
	margin-top: 10px;
}

.mb10 {
	margin-bottom: 10px;
}

.ml9 {
	margin-left: 9px;
}

.ml10 {
	margin-left: 10px;
}

.mr10 {
	margin-right: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mb20 {
	margin-bottom: 20px;
}

.ml20 {
	margin-left: 20px;
}

.mr20 {
	margin-right: 20px;
}

.margin-auto {
	margin: 0 auto;
}

.cursor {
	cursor: pointer;
}

.border-bottom-eee {
	border-bottom: 1px solid #EEEEEE;
}

/* 头部样式 */
.header{
	width: 100%;
	height: 35px;
	background: #313131;
}
.header .container{
	justify-content: space-between;
	align-items: center;
	height: 35px;
}
.header_left{
	font-weight: 400;
	color: #e3720f;
	line-height: 17px;
	position: relative;
	align-items: center;
}
.header_left .address{
	width: 12px;
	height: 14px;
}
.header_left .header_left_name{
	color: #fff;
	margin-left: 9px;
	cursor: pointer;
}
.header_left .change{
	margin-left: 9px;
	font-weight: 400;
	color: #e3720f;
	-webkit-background-clip: text;
	cursor: pointer;
}
.header_content{
	position: absolute;
	width: 460px;
	background: #FFFFFF;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.13);
	border-radius: 4px;
	z-index: 100;
	top: 26px;
	left: 0;
	padding: 15px 31px 25px;
	box-sizing: border-box;
	display: none;
}
.header_content a{
	display: block;
	font-weight: 400;
	margin-top: 10px;
	margin-left: 41px;
	cursor: pointer;
	color: #1F1F1F;
	font-size: 14px;
}
.header_content span:hover{
	color: #e3720f;
}
.header_content .active{
	color: #e3720f;
}

.header_right{
	font-weight: 400;
	color: #999999;
	position: relative;
	justify-content: space-between;
	align-items: center;
}
.header_right .applet{
	position: relative;
	padding: 0 16px;
	cursor: pointer;
}
.header_right .applet::after{
	position: absolute;
	content: '';
	width: 1px;
	height: 10px;
	background: #666666;
	top: calc(50% - 5px);
	left: 0;
}
.header_right .official{
	position: relative;
	padding: 0 16px;
	cursor: pointer;
}
.header_right .official::before{
	position: absolute;
	content: '';
	width: 1px;
	height: 10px;
	background: #666666;
	top: calc(50% - 5px);
	left: 0;
}
.header_right .official::after{
	position: absolute;
	content: '';
	width: 1px;
	height: 10px;
	background: #666666;
	top: calc(50% - 5px);
	right: 0;
}
.header_right .applet_pic{
	position: absolute;
	z-index: 100;
	top: 20px;
	left: -55px;
	width: 178px;
	height: 187px;
	display: none;
}
.header_right .official_pic{
	position: absolute;
	z-index: 100;
	top: 20px;
	right: -55px;
	width: 178px;
	height: 187px;
	display: none;
}

.nav_wrap{
	padding: 10px 0;
}
.nav_wrap .container{
	padding-top: 10px;
	padding-bottom: 10px;
}
.nav_wrap_left{
	width: 135px;
	height: 60px;
}
.nav_wrap_left img{
	/*width: 100%;*/
	height: 100%;
}

.nav_wrap_right a{
	display: block;
	margin-left: 42px;
	cursor: pointer;
	color: #666666;
	font-size: 16px;
	font-weight: 400;
}
.nav_wrap_right a:first-child{
	margin-left: 0;
}
.nav_wrap_right .active{
	position: relative;
	font-weight: 500;
	color: #e3720f;
}
.nav_wrap_right .active::after{
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background: #e3720f;
	bottom: -8px;
	left: calc(50% - 10px);
}

/* 尾部 */
.footer{
	height: 432px;
	background: #403F3F;
	width: 100%;
	position: relative;
}
.footerTop{
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: 1px dashed #979797;
	font-size: 18px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #C7C7C7;
}
.footerTop span{
	margin-left: 17px;
}
.footerTopContent{
	width: 1200px;
	margin: 20px auto 0;
	padding-bottom: 36px;
	border-bottom: 1px dashed #979797;
}
.footerTopContentLeft a{
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #C5C7CF;
	margin-top: 17px;
}
.footerTopContentLeftName{
	font-size: 16px !important;
	font-weight: 400;
	color: #FFFFFF !important;
}
.footerTopContentContent{
	width: 162px;
	height: 162px;
	margin-top: 20px;
}
.footerTopContentContent img{
	display: block;
	width: 100%;
	height: 100%;
}
.footerTopContentContent span{
	font-size: 12px;
	font-weight: 400;
	color: #C5C7CF;
	display: block;
	text-align: center;
	margin-top: 15px;
}
.footerTopContentRight{
	margin-top: 20px;
}
.footerTopContentRight span{
	display: block;
}
.phoneBox{
	margin-left: 18px;
}
.phoneBoxTitle{
	font-size: 16px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #FFFFFF;
}
.phoneBoxNumber{
	font-size: 32px;
	font-family: PingFangSC-Semibold, PingFang SC;
	font-weight: 600;
	color: #FFFFFF;
}
.footerTopContentRightText{
	font-size: 14px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #C5C7CF;
	margin-top: 12px;
	display: block;
}
.footerLike{
	width: 1200px;
	margin: 17px auto;
	font-size: 14px;
	font-weight: 400;
	color: #C5C7CF;
}
.footerLike nav a {
	font-size: 14px;
	font-weight: 400;
	color: #EEEEEE;
	margin-left: 3px;
}
.footerFoot{
	width: 100%;
	text-align: center;
	height: 35px;
	background: #313131;
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #EEEEEE;
	line-height: 35px;
	text-align: center;
	position: absolute;
	bottom: 0;
}


.color-black{
	color: #000!important;
}
.color-333{
	color: #333!important;
}

.middle_nav {
	padding: 21px 0;
	width: 100%;
	border-bottom: 1px solid #EEEEEE;
}
.middle_nav .container {
	padding-left: 54px;
	padding-right: 35px;
}
.middle_nav .container a{
	width: 72px;
	height: 22px;
	font-size: 16px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 22px;
	-webkit-background-clip: text;
}
.middle_nav .container .checked {
	width: 72px;
	height: 22px;
	font-size: 16px;
	font-family: PingFangSC-Medium, PingFang SC;
	font-weight: 500;
	color: #e3720f;
	line-height: 22px;
	-webkit-background-clip: text;
}
.middle_nav .container .w-90{
	width: 90px;
}

.details_nav {
	padding: 21px 0;
	width: 100%;
	border-bottom: 1px solid #EEEEEE;
}
.details_nav .container {
	padding-left: 54px;
	padding-right: 43px;
}
.details_nav .container a{
	/*width: 64px;*/
	height: 22px;
	font-size: 16px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	color: #999999;
	line-height: 22px;
	-webkit-background-clip: text;
}
.details_nav .container .truecChecked {
	font-weight: 500;
	color: #e3720f;
	position: relative;
}
.details_nav .container .truecChecked::after {
	width: 100px;
	height: 2px;
	background: #e3720f;
	border-radius: 1px;
	display: block;
	content: "";
	position: absolute;
	left: calc(50% - 50px);
	bottom: -19px;
}

.hover-red {
	color: black;
	cursor: pointer;
}

.hover-red:hover {
	color: #e3720f;
}

.hover-white:hover {
	color: #FFFFFF;
}

.ly_bgf,
.ly_card {
	background-color: #FFFFFF;
}

.borR4,
.ly_card {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}


.fix {
	position: fixed;
	top: 25%;
	right: 0;
	background: white;
	z-index: 9999;
	width: 231px;
	height: 110px;
	border-radius: 5px;
	box-shadow: -2px 0px 13px -1px #ccc;
	opacity: 0.9;
}

.fix p {
	padding-top: 8px;
	color: #C41419;
	font-size: 26px;
	line-height: 31px;
	padding-left: 20px;
	font-weight: 700;
}

.fix p span:first-of-type {
	font-size: 19px;
}

.floating_ck {
	position: fixed;
	right: 20px;
	top: 40%;
}

.floating_ck dl dd {
	position: relative;
	width: 80px;
	height: 80px;
	background-color: #646577;
	border-bottom: solid 1px #555666;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center 20%;
	cursor: pointer;
}

.floating_ck dl dd:hover {
	background-color: #e3720f;
	border-bottom: solid 1px #e3720f;
}

.floating_ck dl dd:hover .floating_left {
	display: block;
}

.consult {
	background-image: url(../img/zxicon.png);
}

.words {
	background-image: url(../img/dhtb.png);
}

.quote {
	background-image: url(../img/kficon.png);
}

.qrcord {
	background-image: url(../img/erweima.png);
}

.return {
	background-image: url(../img/fanhui.png);
}

.floating_ck dd span {
	color: #fff;
	display: block;
	padding-top: 54px;
}

.floating_left {
	position: absolute;
	left: -160px;
	top: 0px;
	width: 160px;
	height: 80px;
	background-color: #e3720f;
	border-bottom: solid 1px #e3720f;
	display: none;
}

.floating_left a {
	color: #fff;
	line-height: 80px;
}

.floating_ewm {
	height: 160px;
	top: -80px;
}

.floating_ewm i {
	background-image: url(../img/xcx.jpg);
	display: block;
	width: 145px;
	height: 145px;
	margin: auto;
	margin-top: 7px;
	background-size: cover;
}

.floating_ewm p {
	color: #fff;
	margin-top: 5px;
}

.floating_ewm .qrcord_p01 {
	font-size: 12px;
	line-height: 20px;
}

.floating_ewm .qrcord_p02 {
	font-size: 18px;
}

.floating_ewm .qrcord_p03 {
	font-size: 14px;
}





.m-l-0{margin-left: 0!important;}

