* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	line-height: 1;
	background-color: #fff;
	font-family: "Microsoft YaHei", Helvetica, STHeiti, Verdana, Arial, Tahoma, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	width: 100%;
	min-height: 100%;
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
	font: .24rem/1.8 "Microsoft Yahei", Arial;
	color: #333;
	background: #fff;
}

img {
	border: none;
	vertical-align: top;
}

ul {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.btn {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	line-height: 40px;
	background-color: #fe763a;
	padding: 0 42px;
	border-radius: 20px;
	-webkit-transition: background-color 0.4s;
	transition: background-color 0.4s;
}

.btn:hover {
	background-color: #fd5308;
}

.btn_min,
.btn_plain_default,
.btn_default,
.btn_warning,
.btn_plain_warning {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: #f08518;
	padding: 5px 14px;
	border: 1px solid #f08518;
	border-radius: 10px;
	box-sizing: border-box;
	-webkit-transition: background-color 0.4s;
	transition: background-color 0.4s;
}

.btn_default,
.btn_warning {
	color: #fff;
	background-color: #f08518;
}

.btn_min + .btn_min {
	margin-left: 8px;
}

.btn_min.disabled {
	cursor: not-allowed;
}

.btn_min.btn_min_primary {
	color: #fff;
	background-color: #f08518;
}

.btn_min.btn_min_primary:hover {
	background-color: #ef7800;
}

.btn_min.btn_min_plain {
	background-color: #fff;
}

.btn_min.btn_min_plain:hover {
	background-color: #f2f2f2;
}

.text_warning {
	color: #f04f00;
	font-weight:bold;
}
/*首页 start*/
.header_mobile {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 6px 12px;
	background-color: #701e32;
	background-color: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
}

.header_mobile .logo {
	display: block;
	width: 105px;
}

.header_mobile .logo > img {
	display: block;
	width: 100%;
}

.header_mobile .menu {
	position: relative;
}

.header_mobile .menu > img {
	display: block;
	width: 20px;
	padding: 5px 0 5px 5px;
}

.header_mobile .menu > .drop_down {
	position: absolute;
	top: 36px;
	right: -12px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transition: transform 0.4s;
	transition: transform 0.4s;
}

.header_mobile .menu > img.active + .drop_down {
	-webkit-transform: scale(1) !important;
	transform: scale(1) !important;
}

.header_mobile .menu > .drop_down a {
	position: relative;
	display: block;
	width: 130px;
	padding: 10px 0;
	font-size: 13px;
	text-align: center;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	box-sizing: border-box;
}

.header_mobile .menu > .drop_down a:active {
	background-color: rgba(0,0,0,0.8);
}

.header_mobile .menu > .drop_down a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.3);
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	box-sizing: border-box;
}

.menu_bar_mobile {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 25px 20px;
	background-color: #f3f3f3;
}

.menu_bar_mobile .item {
	width: 70px;
	text-align: center;
}

.menu_bar_mobile .item .img_box {
	width: 40px;
	height: 40px;
	background-image: url(icon_menu_mobile.png);
	background-repeat: no-repeat;
	background-size: 265px auto;
	margin: 0 auto 8px;
}

.menu_bar_mobile .item:first-child .img_box {
	background-position: 0 0;
}

.menu_bar_mobile .item:nth-child(2) .img_box {
	background-position: -76px 0;
}

.menu_bar_mobile .item:nth-child(2) .img_box {
	background-position: -149px 0;
}

.menu_bar_mobile .item:last-child .img_box {
	background-position: -224px 0;
}

.menu_bar_mobile .item .info {
	font-size: 12px;
	color: #000;
}

.product {
	display: block;
	padding-top: 38px;
	padding-bottom: 2px;
	border-top: none;
	background-color: #fff;
	text-align: center;
}

.product > h2 {
	font-weight: 500;
	font-size: 22px;
	color: #454545;
	margin-bottom: 14px;
}

.product > p {
	font-size: 12px;
	color: #787878;
}

.product .box {
	margin-top: 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	float: none;
	width: auto;
	padding: 0 10px;
	overflow: auto;
}

.product .item {
	width: 48%;
	padding: 12px 8px 15px;
	background-color: #fff;
	border: 1px solid #f1f1f1;
	border-radius: 4px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.product .item > img {
	width: 80%;
	margin-bottom: 15px;
}

.product .item > h4 {
	font-size: 16px;
	font-weight: 500;
	color: #000;
	margin-bottom: 12px;
}

.product .item > p {
	font-size: 14px;
	line-height: 20px;
	color: #8d8d8d;
	overflow: hidden;
}

.btn_area_mobile {
	display: block;
	padding: 0 10px;
	box-sizing: border-box;
}

.btn_area_mobile .btn {
	display: block;
	width: 100%;
	border-radius: 4px;
	text-align: center;
	margin: 20px 0 30px;
	box-sizing: border-box;
}

.footer_mobile {
	display: block;
	padding: 30px 10px 0;
	background-color: #f3f3f3;
	text-align: center;
}

.footer_mobile.white_bg {
	background-color: #fff;
}

.footer_mobile .nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	color: #666;
	text-align: center;
	font-size: 0.14rem;
	padding-bottom: 20px;
}

.footer_mobile .nav a {
	padding: 0 6px;
	line-height: 0.14rem;
	font-size:12px
}

@media screen and (max-width: 321px) {
	.footer_mobile .nav a {
		padding: 0 4px;
	}
}

.footer_mobile .nav a + a {
	border-left: 0px solid #999;
}

.footer_mobile .section_connect {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 20px;
}

.footer_mobile .section_connect .text {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: left;
}

.footer_mobile .section_connect .text > h4 {
	font-weight: 500;
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
}

.footer_mobile .section_connect .text .tel {
	position: relative;
	display: block;
	font-weight: 500;
	font-size: 18px;
	color: #fe992d;
	margin-bottom: 10px;
	padding-left: 25px;
}

.footer_mobile .section_connect .text .tel:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url(icon_phone1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.footer_mobile .section_connect .text .info {
	font-weight: 500;
	font-size: 12px;
	color: #999;
}

.footer_mobile .section_connect .qrcode {
	width: 35%;
}

.footer_mobile .section_connect .qrcode > img {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.footer_mobile .section_connect .qrcode > p {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.footer_mobile .copyright_setion {
	text-align: center;
	font-size: 12px;
	color: #aaa;
	line-height: 18px;
	padding-bottom: 15px;
}
/* 轮播图 */
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 4px;
}

.swiper-slide > img {
	display: block;
	width: 100%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #f08200;
}
/*首页 end*/
/*产品中心 start*/
.tool_box {
	padding-top: 37px;
	background-color: #fff;
	margin-bottom: 30px;
}

.tool_box > h4 {
	display: block;
	font-size: 22px;
	color: #222;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: center;
}

.tool_box  > p {
	display: block;
	text-align: center;
	font-size: 12px;
	color: #999;
	margin-bottom: 22px;
}

.tool_box .inner {
	padding: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	box-sizing: border-box;
	margin-right: 0;
}

.tool_box .item {
	width: 48%;
	margin-right: 0;
	margin-bottom: 11px;
	padding: 23px 15px 32px;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #ececec;
	box-sizing: border-box;
}

.tool_box .item > img.img_icon {
	display: block;
	width: 85%;
	margin: 0 auto 15px;
}

.tool_box .item > h4 {
	font-size: 16px;
	color: #000;
	font-weight: 400;
	text-align: center;
	margin-bottom: 7px;
}

.tool_box .item > p {
	line-height: 24px;
	color: #8d8d8d;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
/*产品中心 end*/
/*超级会员 start*/
.banner {
	display: block;
}

.banner img {
	display: block;
	width: 100%;
}

.vip_product,
.vip_cycle,
.vip_train,
.vip_salon {
	display: block;
	padding-top: 40px;
	padding-bottom: 50px;
}

.vip_product {
	background-color: #f8f8f8;
	padding-bottom: 0;
}

.vip_product > h2,
.vip_share > h2,
.vip_show > h2 {
	color: #222;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 12px;
	text-align: center;
}

.vip_product .slogan,
.vip_share .slogan {
	color: #999;
	font-size: 14px;
	text-align: center;
}

.vip_product .inner_box {
	margin-top: 24px;
	background-color: #fff;
	padding: 30px 0 46px;
}

.vip_product .text_aside > h4,
.vip_cycle .text_aside > h4,
.vip_salon .text_aside > h4,
.vip_train .text_aside > h4 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #fe773a;
}

.vip_product .text_aside .t_des,
.vip_cycle .text_aside .t_des,
.vip_salon .text_aside .t_des,
.vip_train .text_aside .t_des {
	font-size: 16px;
	color: #222;
	margin-bottom: 15px;
}

.vip_product .text_aside .des,
.vip_cycle .text_aside .des,
.vip_salon .text_aside .des,
.vip_train .text_aside .des {
	font-size: 12px;
	line-height: 16px;
	text-align: left;
	color: #666;
}

.vip_cycle {
	background-color: #fdc000;
}

.vip_cycle .text_aside > h4 {
	color: #fff;
}

.vip_cycle .text_aside > .des {
	color: #584201;
}

.vip_salon {
	background-color: #ffe5b0;
	padding: 68px 0 42px;
}

.vip_salon .img_aside {
	padding-left: 50px;
}

.vip_show {
	display: block;
	padding-top: 40px;
	padding-bottom: 25px;
	text-align: center;
}

.vip_show  > h2 {
	position: relative;
	display: inline-block;
	font-size: 20px;
}

.vip_show > h2:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -16px;
	width: 124px;
	height: 1px;
	background-color: #fdc000;
	transform: translateX(-50%);
}

.vip_show > h2:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -20px;
	width: 8px;
	height: 8px;
	background-color: #fdc000;
	transform: translateX(-50%) rotate(45deg);
}

.vip_show .inner_box {
	margin-top: 20px;
	padding: 0 10px;
	font-size: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.vip_show .inner_box .item {
	width: 48.5%;
	margin-bottom: 15px;
	box-sizing: border-box;
}

.vip_show .inner_box .item .hd > img {
	display: block;
	width: 100%;
}

.vip_show .inner_box .item .bd {
	padding: 20px 0 16px;
	text-align: center;
}

.vip_show .inner_box .item .bd > p {
	font-size: 14px;
	color: #222;
	line-height: 16px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.vip_show .inner_box .item .bd > .des {
	display: block;
	font-size: 12px;
	color: #888;
	white-space: normal;
	text-align: left;
	margin-top: 8px;
	line-height: 18px;
	height: 108px;
}

.vip_product .img_aside > img,
.vip_cycle .img_aside > img,
.vip_train .img_aside > img,
.vip_salon .img_aside > img {
	display: block;
	width: 90%;
	margin: 0 auto 25px;
}

.vip_product .text_aside,
.vip_cycle .text_aside,
.vip_train .text_aside,
.vip_salon .text_aside {
	text-align: center;
	padding: 0 21px;
	box-sizing: border-box;
}

.vip_cycle .img_aside > img {
	width: 80%;
}

.vip_product .img_aside > img {
	width: 70%;
	margin-bottom: 42px;
} 
.agent_why_bg,
.product_feature,
.agent_process,
.agent_bottom {
	display: block;
	padding-top: 50px;
	padding-bottom: 30px;
	text-align: center;
}

.agent_why_bg > h2,
.agent_process  > h2,
.product_feature  > h2 {
	font-size: 18px;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #222;
	font-weight: 400;
	padding: 0 24px;
}

.product_feature {
	background-color: #f4f4f4;
	padding-bottom: 20px;
}

.product_feature .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px 15px;
	text-align: left;
}

.product_feature .item .primary {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.product_feature .item .img_box {
	width: 50px;
	height: 50px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 15px;
}

.product_feature .item .title {
	font-weight: 400;
	font-size: 15px;
	color: #fe763a;
	margin-bottom: 5px;
}

.product_feature .item .des {
	font-size: 12px;
	color: #333;
	line-height: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.product_feature .item:first-of-type .img_box {
	background-image: url(icon_agent_sq.png);
}

.product_feature .item:nth-of-type(2) .img_box {
	background-image: url(icon_agent_cp.png);
}

.product_feature .item:nth-of-type(3) .img_box {
	background-image: url(icon_agent_px.png);
}

.product_feature .item:nth-of-type(4) .img_box {
	background-image: url(icon_agent_wl.png);
}

.product_feature .item:nth-of-type(5) .img_box {
	background-image: url(icon_agent_js.png);
}

.product_feature .item:nth-of-type(6) .img_box {
	background-image: url(icon_agent_tx.png);
}

.product_feature .item:nth-of-type(7) .img_box {
	background-image: url(icon_agent_xc.png);
}

.agent_bottom .container .des {
	font-size: 16px;
	color: #222;
	font-weight: 400;
}

.agent_bottom .container .title {
	font-size: 44px;
	margin-top: 10px;
	color: #2c2c2c;
	font-weight: 400;
}

.agent_bottom {
	position: relative;
	background-image: url(agent_bottom_mobile.png);
	height: 60vw;
	padding: 0;
	box-sizing: border-box;
}

.dialog_form {
	position: fixed;
	top: 18%;
	left: 50%;
	z-index: 9999;
	width: 660px;
	margin-left: -330px;
	-webkit-transform: translateY(-1000px);
	transform: translateY(-1000px);
	-webkit-transition: transform 0.6s;
	transition: transform 0.6s;
}

.dialog_form.active {
	display: block;
}

.dialog_form.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.dialog_form .form_inner {
	position: relative;
	background-color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 66px 80px 25px;
}

.dialog_form .close {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

.dialog_form .form_inner .logo {
	position: absolute;
	top: -56px;
	left: 50%;
	width: 112px;
	margin-left: -56px;
}

.dialog_form .form_inner .logo > img {
	display: block;
	width: 100%;
}

.dialog_form .form_inner .title {
	text-align: center;
	font-size: 22px;
	font-weight: 500;
	color: #222;
	margin-bottom: 32px;
}

.form_group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #eaeaea;
	margin-bottom: 14px;
}

.form_group .form_control {
	height: 44px;
	padding: 0 10px;
	font-size: 14px;
	border: none;
	outline: none;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.form_group .img_code {
	height: 44px;
	cursor: pointer;
}

.form_group .msg_code {
	width: 150px;
	height: 44px;
	color: #fff;
	font-size: 15px;
	text-align: center;
	background-color: #828282;
	cursor: pointer;
	border: none;
}

.dialog_form .form_inner .btn,
.form_box .btn {
	display: block;
	width: 100%;
	line-height: 58px;
	text-align: center;
	border-radius: 4px;
	box-sizing: border-box;
}

.dialog_form .form_inner .telphone {
	font-size: 22px;
	color: #222;
	text-align: center;
	margin-top: 25px;
}

.agent_why_bg .container {
	width: 100%;
	height: 80vw;
	background-size: cover;
}

.agent_process {
	padding-top: 38px;
	padding-bottom: 38px;
}

.agent_process .inner_box {
	display: none;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.agent_process .inner_box .item {
	display: inline-block;
}

.agent_process .inner_box .item + .item {
	margin-left: 35px;
}

.agent_process .inner_box .item + .item:before {
	top: 36px;
	left: -25px;
	-webkit-transform: scale(0.55);
	transform: scale(0.55);
}

.agent_process .inner_box .item .icon_bg {
	-webkit-transform: scale(0.55);
	transform: scale(0.55);
}

.agent_process .inner_box .item > h4 {
	font-size: 12px;
	margin-top: -17px;
}

.agent_process .inner_box_mobile {
	display: block;
	font-size: 0;
	text-align: center;
	margin-top: 30px;
	padding: 0 10px;
}

.agent_process .inner_box_mobile .item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

.agent_process .inner_box_mobile .item:nth-of-type(2),
.agent_process .inner_box_mobile .item:nth-of-type(4) {
	padding-top: 120px;
}

.agent_process .inner_box_mobile .item:before {
	content: "";
	position: absolute;
	top: 91px;
	left: -9%;
	width: 17px;
	height: 30px;
	background-image: url(icon_to_bottom.png);
	background-position: center;
	background-size: contain;
}

.agent_process .inner_box_mobile .item:first-of-type:before {
	display: none;
}

.agent_process .inner_box_mobile .item:nth-of-type(3):before,
.agent_process .inner_box_mobile .item:nth-of-type(5):before {
	top: 91px;
	left: -9%;
	background-image: url(icon_to_top.png);
}

.agent_process .inner_box_mobile .item > h4 {
	font-size: 10px;
	text-align: center;
	font-weight: 500;
	color: #333;
}

.agent_process .inner_box_mobile .item .icon_bg {
	width: 60px;
	height: 60px;
	background-color: #fe763a;
	padding-top: 15px;
	border-radius: 50%;
	margin: 0 auto 10px;
	box-sizing: border-box;
}

.agent_process .inner_box_mobile .item .small_bg {
	display: block;
	width: 30px;
	height: 30px;
	background-image: url(icon_agent.png);
	background-repeat: no-repeat;
	background-size: 200px auto;
	margin: 0 auto;
	background-position: -4px -138px;
}

.agent_process .inner_box_mobile .item:nth-of-type(2) .small_bg {
	background-position: -46px -136px;
}

.agent_process .inner_box_mobile .item:nth-of-type(3) .small_bg {
	background-position: -92px -136px;
}

.agent_process .inner_box_mobile .item:nth-of-type(4) .small_bg {
	background-position: -132px -136px;
}

.agent_process .inner_box_mobile .item:nth-of-type(5) .small_bg {
	background-position: -170px -136px;
}

.agent_process .container > h2 {
	margin-bottom: 0;
}

.agent_bottom .container {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.agent_bottom .container .tel {
	font-size: 16px;
	margin-top: 14px;
}

.agent_bottom .container .btn {
	width: 34vw;
	height: 30px;
	line-height: 26px;
	margin-top: 15px;
	font-size: 12px;
	padding: 0;
}
/*招商加盟 end*/
/*关于我们 start*/
.about_content .artical_con,
.artical_detail {
	padding: 5px 10px;
	background-color: #fff;
	line-height: 18px;
	color: #666;
	font-size: 12px;
}

.about_content .artical_con h4,
.artical_detail strong {
	border-left: 2px solid #fecd02;
	font-size: 16px;
	line-height: 18px;
	padding-left: 10px;
	margin-bottom: 10px;
	margin-top: 25px;
	font-weight: 500;
	color: rgb(54, 54, 54);
}

.about_content .artical_con *,
.artical_detail * {
	margin-bottom: 8px;
}
/*关于我们 end*/
/*  移动端产品页面 */
.wap_banner {
	display: block;
}

.wap_banner > img {
	display: block;
	width: 100%;
}

.wap_product_des {
	display: block;
	height: 210px;
	text-align: center;
	padding-top: 25px;
	background-image: url(des_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
}

.wap_product_des h2 {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
}

.wap_product_des p {
	font-size: 10px;
	color: #fff;
	line-height: 20px;
	padding: 0 16px;
	margin-top: 40px;
}

.wap_product_des p.line4 {
	margin-top: 25px;
	padding-top: 5px
}

@media screen and (max-width: 320px) {
	.wap_product_des p.line3 {
		margin-top: 30px;
	}

	.wap_product_des p.line4 {
		margin-top: 20px;
	}
}

.wap_feature {
	position: relative;
}

.wap_feature img {
	display: block;
	width: 100%;
}

.wap_feature h2 {
	position: absolute;
	left: 0;
	top: 8%;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
}

.wap_feature .item {
	position: absolute;
	font-size: 12px;
	color: #666;
	line-height: 16px;
	text-align: center;
}

.wap_feature .item1 {
	top: 30.5%;
	right: 65%;
	text-align: right;
}

.wap_feature .item2 {
	top: 31%;
	left: 68%;
	text-align: left;
}

@media screen and (min-width: 414px) {
	.wap_feature .item1 {
		top: 31%;
	}

	.wap_feature .item2 {
		top: 32%;
	}
}

.wap_feature .item3 {
	top: 54.2%;
	right: 75%;
	text-align: right;
}

.wap_feature .item4 {
	top: 54%;
	left: 76%;
	text-align: left;
}

.wap_feature .item5 {
	top: 71.5%;
	right: 66.5%;
	text-align: right;
}

.wap_feature .item6 {
	top: 70%;
	left: 70%;
	text-align: left;
}

.wap_feature .item7 {
	top: 85%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.wap_scene > img,
.wap_case  > img {
	display: block;
	width: 100%;
}

.footer_mobile .phone {
	font-size: 12px;
	color: #888;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 20px;
}

.footer_mobile .text_warning {
	font-size: 16px;
	vertical-align: -1px;
}

.footer_mobile .phone:before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	background-image: url(phone.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	vertical-align: middle;
	margin-right: 10px;
	vertical-align: -6px;
}
/* 全民买单 */
.wap_qmmd_banner {
	position: relative;
	display: block;
	text-align: center;
}

.wap_qmmd_banner > img {
	display: block;
	width: 100%;
}

.wap_qmmd_banner h2 {
	position: absolute;
	top: 66%;
	left: 0;
	width: 100%;
	font-size: 18px;
	color: #fff;
	font-weight: 400;
}

.wap_qmmd_banner p {
	position: absolute;
	top: 79%;
	left: 0;
	width: 100%;
	padding: 0 20px;
	line-height: 18px;
	font-size: 10px;
	color: #fff;
	box-sizing: border-box;
}

@media screen and (max-width: 320px) {
	.wap_qmmd_banner p {
		top: 78%;
		line-height: 16px;
	}
}

.wap_case {
	position: relative;
	background-color: #f2f2f2;
	margin-bottom: 40px;
}

.wap_case h2 {
	position: absolute;
	left: 0;
	top: 4.5%;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
}

.wap_case p {
	font-size: 14px;
	color: #333;
	background-color: #fff;
	text-align: center;
	padding: 50px 0 0px;
}

.wap_case img:nth-of-type(2) {
	background-color: #fff;
}
/*全民卖货*/
.wap_feature.qmmh .item1 {
	top: 28%;
	right: 68%;
}

.wap_feature.qmmh .item2 {
	top: 28%;
	left: 70%;
}

.wap_feature.qmmh .item3 {
	top: 51%;
	right: 73%;
}

@media screen and (min-width: 321px) {
	.wap_feature.qmmh .item3 {
		right: 75%;
	}
}

.wap_feature.qmmh .item4 {
	top: 50%;
	left: 76%;
}

.wap_feature.qmmh .item5 {
	top: 69%;
	right: 68%;
}

.wap_feature.qmmh .item6 {
	top: 67%;
	left: 71%;
}
/* 全民砍价 */
.wap_case .text_box {
	position: absolute;
	width: 54%;
	right: 0;
	padding: 0 10px;
	box-sizing: border-box;
	background-color: transparent;
}

.wap_case .text_box p {
	background-color: transparent;
	margin: 0;
	padding: 0;
	text-align: left;
}

.wap_case .text_box:first-of-type {
	top: 12%;
}

.wap_case .text_box:last-of-type {
	top: 60%;
}

.wap_case .text_box .title {
	font-size: 18px;
	color: #000;
	margin-bottom: 10px;
}

.wap_case .text_box .des {
	font-size: 10px;
	color: #666;
	line-height: 15px;
	margin-bottom: 10px;
}

.wap_case .text_box .hd {
	font-size: 12px;
	color: #333;
	line-height: 16px;
	margin-bottom: 12px;
}

.wap_case .text_box .hd strong {
	color: #f04f00;
	font-size: 14px;
}

.wap_case .text_box .bd {
	font-size: 12px;
	line-height: 18px;
	color: #333;
}

@media screen and (max-width: 320px) {
	.wap_case .text_box .title {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.wap_case .text_box .des {
		margin-bottom: 4px;
	}

	.wap_case .text_box .hd {
		margin-bottom: 5px;
		font-size: 11px;
	}

	.wap_case .text_box .bd {
		line-height: 15px;
		font-size: 10px;
	}
}
/* 去掉站长统计 */
a[title="站长统计"] {
	display: none;
}

.lianjia {
	width: 100%;
	position: absolute;
	top: 6.15rem;
}

.href {
	display: block;
	width: 1.3rem;
	height: 0.4rem;
	background: #ffa800;
	float: right;
	text-align: center;
	border-radius: 0.2rem;
	line-height: 0.4rem;
	margin-right: 1.7rem;
	color: #fff;
	font-size: 0.2rem;
}

.zhuce {
	font-size: 0.2rem;
	display: block;
	width: 1.3rem;
	height: 0.4rem;
	background: #49f128;
	float: left;
	text-align: center;
	border-radius: 0.2rem;
	line-height: 0.4rem;
	margin-left: 1.7rem;
	color: #fff;
}

.lianjia  a {
	color: #fff;
	text-decoration: none;
}

.lianjia1 {
	width: 100%;
	position: absolute;
	top: 14.3rem;
}

.href1 {
	display: block;
	width: 1.3rem;
	height: 0.4rem;
	background: #ffa800;
	float: right;
	text-align: center;
	border-radius: 0.2rem;
	line-height: 0.4rem;
	margin-right: 1.7rem;
	color: #fff;
	font-size: 0.2rem;
}

.bottom_nav {
	width: 100%;
	background: #fff;
	height: 3rem;
	padding-top: 20px;
}

.bottom_title {
	width: 90%;
	height: 0.3rem;
	margin-top: 0.5rem;
	padding-bottom: 15px;
	border-bottom: 1px solid #dcdcdc;
	margin: 5%;
}

.bottom_title h1 {
	font-size: 16px;
	float: left;
	line-height: 0.34rem;
	font-weight: normal
}

.bottom_title a {
	float: right;
	color: #737373;
	font-size: 14px;
	line-height: 0.34rem;
}

.bottom_pr {
	width: 90%;
	margin: 0 5%;
}

.bottom_pr li {
	width: 22%;
	background: #f6f6f6;
	float: left;
	margin-left: 2%;
	margin-bottom: 10px;
	padding: 0 0 5% 0;
}  

.bottom_pr li img {
	width: 70%;
	margin: 15px 0 10PX 15%;
}

.bottom_pr li span {
	text-align: center;
	width: 100%;
	display: block;
	font-size: 11px;
}

.case {
	width: 92%;
	margin: 0 5%;
}

.case li {
	width: 28%;
	float: left;
	margin-left: 10px;
	margin-bottom: 10px;
}

.case li img {
	width: 100%;
	border: 1px solid #efefef;
}

.case li span {
	text-align: center;
	width: 100%;
	display: block;
	font-size: 14px;
}

img {
	vertical-align: top;
}

.funDiv {
	padding: 0px 20px 0px 20px;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

.pic {
	width: 30%;
}

.pic img {
	width: 100%;
}

.intro {
	width: 70%;
}

.cl {
	clear: both;
}

.articleBox {
	clear: both;
	padding: 20px 0px 20px 0px;
	border-bottom: 1px solid #efefef;
}

.count {
	display: inline-block;
	width: 25px;
	height: 25px;
	color: #fff;
	background: #ff4400;
	vertical-align: middle;
	font-size: 14px;
	text-align: center;
	line-height: 25px;
	margin-right: 10px;
	border-radius: 30px;
}