@charset "utf-8";
html,body {
	background: #fff;
	font-size: 12px;
	font-family: 'NotoSansCJKsc-Regular', 'Microsoft YaHei', SimSun, 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

* {
	margin: 0;
	padding: 0;
}

ul,li {
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}

input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	cursor: pointer;
}



/* 基本属性
---------------------------------------------------------------------------------------------------------------------- */

/*公共头部*/

.bodyOne {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0rem;
	left: 0rem;
}

.myHeard {
	height: 0.89rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0rem 0.23rem;
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 9999;
	background: #fff;
}

.myHeard .navLeft {
	width: 0.42rem;
	height: 0.24rem;
	position: relative;
}

.myHeard .navLeft span {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.myHeard .navLeft span:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0.44rem;
	height: 0.04rem;
	display: inline-block;
	background: #663a29;
	border-radius: 0.04rem;
	transition: .3s ease;
}

.myHeard .navLeft span:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0.44rem;
	height: 0.04rem;
	display: inline-block;
	background: #fdac29;
	border-radius: 0.04rem;
	transition: .3s ease;
}

.myHeard .logo {
	width: 1.73rem;
	height: 0.54rem;
}

.myHeard .logo img {
	width: 100%;
	height: 100%;
	display: block;
}

.myHeard .search {
	width: 0.46rem;
	height: 0.46rem;
}

.myHeard .search img {
	width: 100%;
	height: 100%;
	display: block;
}

.myHeard .navLeftactive span:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0.1rem;
}

.myHeard .navLeftactive span:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0.1rem;
}


/*版权*/

.copyright {
	width: 100%;
	height: 1.76rem;
	background-color: #f2f2f2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 1rem;
}

.copyright p {
	font-size: 0.22rem;
	color: #999999;
	line-height: 0.5rem;
	letter-spacing: 0.01rem;
}


/*公共底部*/

.fixedFoot {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 1rem;
	background-color: #ffffff;
	box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.2);
	z-index: 99;
}

.fixedFoot ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fixedFoot ul li {
	width: 33%;
}

.fixedFoot ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 1rem;
}

.fixedFoot ul li a img {
	width: 0.54rem;
	height: 0.54rem;
}

.fixedFoot ul li a span {
	font-size: 0.24rem;
	color: #333333;
	margin-top: 0.02rem;
}


/*分类*/

.classification {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0.89rem;
	left: 0px;
	background: #fff;
	z-index: 99;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	transition: .3s ease;
	display: none;
}

.classificationActive {
	display: flex;
}

.classification .classificationLeft {
	width: 1.87rem;
	height: 100%;
	flex-shrink: 0;
	background-color: #f2f2f2;
}

.classification .classificationLeft ul {}

.classification .classificationLeft ul li {
	width: 100%;
	height: 1.03rem;
}

.classification .classificationLeft ul li a {
	width: 100%;
	height: 1.03rem;
	line-height: 1.03rem;
	text-align: center;
	display: block;
	font-size: 0.26rem;
	color: #777777;
}

.classification .classificationLeft ul li a.active {
	background: #fff;
	font-size: 0.29rem;
	color: #333333;
}

.classification .classificationRight {
	width: calc(100% - 1.87rem);
	height: 100%;
	padding: 0.2rem 0.2rem;
	box-sizing: border-box;
}

.classification .classificationRight .classList {
	height: calc(100% - 0.89rem);
	overflow-y: auto;
}

.classification .classificationRight .classList h1 {
	font-size: 0.22rem;
	color: #333333;
	line-height: 0.6rem;
}

.classification .classificationRight .classList ul {
	overflow: hidden;
	padding-bottom: 0.2rem;
}

.classification .classificationRight .classList ul li {
	width: 33%;
	float: left;
	margin-bottom: 0.1rem;
}

.classification .classificationRight .classList ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.classification .classificationRight .classList ul li img {
	width: 90%;
}

.classification .classificationRight .classList ul li span {
	font-size: 0.21rem;
	color: #333333;
	display: block;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}


/*分页*/

.pageBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.26rem 0rem;
	box-sizing: border-box;
}

.pageBox .prevBtn {
	width: 1.95rem;
	height: 0.62rem;
	line-height: 0.62rem;
	background-color: #fdac29;
	border-radius: 0.4rem;
	font-family: NotoSansHans-Regular;
	font-size: 0.26rem;
	color: #ffffff;
	text-align: center;
}

.pageBox .page {
	font-family: Roboto-Regular;
	font-size: 0.26rem;
	color: #fdac29;
}

.pageBox .nextBtn {
	width: 1.95rem;
	height: 0.62rem;
	line-height: 0.62rem;
	background-color: #fdac29;
	border-radius: 0.4rem;
	font-family: NotoSansHans-Regular;
	font-size: 0.26rem;
	color: #ffffff;
	text-align: center;
}


/*微信咨询弹框*/

.zhezhaoconsultation {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
	display: none;
}

.consultation {
	width: 5.6rem;
	height: 7.36rem;
	background: #fff url(../img/common/ewm2.png) no-repeat;
	border-radius: 0.3rem;
	position: fixed;
	top: 50%;
	margin-top: -15rem;
	left: 50%;
	margin-left: -2.8rem;
	z-index: 99;
	background-size: 100% 100%;
	padding: 0.58rem 0.36rem 0rem;
	box-sizing: border-box;
	/* display: none; */
}

.consultation h1 {
	font-family: NotoSansCJKsc-Regular;
	font-size: 0.24rem;
	line-height: 0.41rem;
	color: #ffffff;
	font-weight: inherit;
	font-weight: initial;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.consultation .ewm {
	width: 2.79rem;
	height: 2.79rem;
	background: #fff;
	margin: 0.14rem auto 0.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px 4px rgba(253, 185, 75, 0.3);
}

.consultation .ewm img {
	width: 2.55rem;
	height: 2.55rem;
	display: block;
}

.consultation .ewmText {}

.consultation .ewmText .ewmTextOne {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.3rem 0rem 0.12rem 0rem;
	box-sizing: border-box;
}

.consultation .ewmText .ewmTextOne span {
	font-family: NotoSansCJKsc-Medium;
	font-size: 0.33rem;
	line-height: 0.41rem;
	letter-spacing: 0.02rem;
	color: #333333;
	margin-right: 0.2rem;
	width: 1.1rem;
	flex-shrink: 0;
}

.consultation .ewmText .ewmTextOne div {
	max-width: calc(100% - 1.1rem);
	height: 0.58rem;
	line-height: 0.58rem;
	background-color: #333333;
	border-radius: 0.3rem;
	font-family: Roboto-Medium;
	font-size: 0.34rem;
	letter-spacing: 0.02rem;
	color: #ffffff;
	text-align: center;
	padding: 0rem 0.15rem;
	box-sizing: border-box;
}

.consultation .ewmText p {
	font-family: NotoSansCJKsc-Regular;
	font-size: 0.25rem;
	line-height: 0.41rem;
	letter-spacing: 0.01rem;
	color: #666666;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.consultation .ewmBtn {
	width: 100%;
	height: 0.82rem;
	line-height: 0.82rem;
	background-color: #fdb94b;
	border-radius: 0.04rem;
	font-family: NotoSansCJKsc-Regular;
	font-size: 0.26rem;
	line-height: 0.;
	letter-spacing: 0.01rem;
	color: #ffffff;
	text-align: center;
	border-radius: 0.6rem;
	margin-top: 0.4rem;
}

.consultation .gbewm {
	width: 1.01rem;
	height: 1.01rem;
	position: absolute;
	bottom: -1.48rem;
	left: 50%;
	margin-left: -0.5rem;
}