@charset "utf-8";

/* */
.mask-black-dialog {
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	z-index: 1500;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.mask-black {
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	z-index: 500;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.mask-white-dialog {
	background-color: rgba(0, 0, 0, 0);
	position: fixed;
	z-index: 1500;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.mask-white {
	background-color: rgba(0, 0, 0, 0);
	position: fixed;
	z-index: 500;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* 地区联动 */
.m-cityselect {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75%;
	z-index: 1000;
	background-color: #fff;
	-webkit-transform: translate(0, 100%);
	transform: translate(0, 100%);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.m-cityselect.brouce-in {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.cityselect-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.cityselect-header:after {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #D9D9D9;
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.cityselect-title {
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	height: 45px;
	line-height: 45px;
	position: relative;
}

.cityselect-title:after {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #B2B2B2;
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.cityselect-nav {
	width: 100%;
	padding-left: 1rem;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.cityselect-nav>a {
	font-size: 1.2rem;
	color: #222;
	display: block;
	height: 40px;
	line-height: 46px;
	padding: 0 1rem;
	position: relative;
	margin-right: 1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 40%;
}

.cityselect-nav>a.crt {
	color: #F23030;
}

.cityselect-nav>a.crt:after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #F23030;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.cityselect-content {
	height: 100%;
	padding-top: 85px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.cityselect-content.cityselect-move-animate {
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.cityselect-content.cityselect-next {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.cityselect-content.cityselect-prev {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.cityselect-content>.cityselect-item {
	display: block;
	height: inherit;
	width: 50%;
	/* for old android */
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #FFF;
}

.cityselect-content>.cityselect-item::-webkit-scrollbar {
	width: 0;
}

.cityselect-content>.cityselect-item:nth-child(2n) {
	background-color: #F5F5F5;
}

.cityselect-item-box {
	width: 100%;
	height: inherit;
	display: block;
	padding: 0 2rem;
}

.cityselect-item-box>a {
	color: #333;
	font-size: 1.2rem;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	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;
	width: 100%;
	position: relative;
	z-index: 1;
}

.cityselect-item-box>a:before {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #D9D9D9;
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.cityselect-item-box>a:active {
	background: none;
	/* for firefox */
}

.cityselect-item-box>a span {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: block;
}

.cityselect-item-box>a.crt {
	color: #F23030;
}

.cityselect-item-box>a.crt:after {
	display: block;
	content: '\f00c';

}


/* 全局*/
.color_red {
	color: #dd514c;
}

.color_gray999 {
	color: #999;
}

.whiteWrap {
	background: #fff
}

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: 0;
}

body {
	font-size: 1.4rem;
	background: #f5f5f5
}

img {}

.pretty {
	margin: 0;
}

label {
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	width: 100%;
}

a {
	color: #333;
}

dt+dd {
	margin: 0;
}

ul,
ol,
dl,
li {
	list-style-type: none
}

address,
blockquote,
dl,
fieldset,
figure,
hr,
ol,
p,
pre,
ul {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

.am-modal-bd {
	text-align: left;
}

.swiper-container {
	width: 100%;
}

.swiper-container img {
	max-width: 100%;
}



.fa {
	font-size: 20px;
}

.am-with-fixed-navbar {
	padding: 0;
}

.am-form input[type=number],
.am-form input[type=search],
.am-form input[type=text],
.am-form input[type=password],
.am-form input[type=datetime],
.am-form input[type=datetime-local],
.am-form input[type=date],
.am-form input[type=month],
.am-form input[type=time],
.am-form input[type=week],
.am-form input[type=email],
.am-form input[type=url],
.am-form input[type=tel],
.am-form input[type=color],
.am-form select,
.am-form textarea,
.am-form-field {
	font-size: 1.2rem;
}

.am-btn-primary {
	background-color: #37A4FF;
	border-color: #37A4FF;
}

.am-btn {
	font-size: 1.2rem;
}

.wui_ptr i {
	color: #5eb95e;
	top: 0;
	right: 0;
}

.am-header {
	position: relative;
	z-index: 22
}

.am-header .am-header-title {
	font-size: 1.6rem;
}

.am-navbar {
	line-height: normal;
}

/* .am-header-default{ background:linear-gradient(to right, #3682c6 ,#3f62c3);} */
.am-header-default {
	background: linear-gradient(to right, #ff2d1d, #1baae8);
}

.am-navbar-default .am-navbar-nav {
	background-color: #fff;
	box-shadow: 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.am-navbar-default a {
	line-height: normal;
	color: #444;
	font-size: 12px
}

.am-navbar-default .icon {
	padding-top: 0.18rem;
}

.am-navbar-default .title {
	padding-top: 0.22rem;
}

.am-navbar-default .icon img {
	width: 1.7rem;
	height: 1.7rem;
}

.am-navbar-default .icur {
	display: none;
}

.am-navbar-default li.cur .icur {
	display: block;
}

.am-btn {
	padding: .4em 1em;
}

.am-btn.am-round {
	border-radius: 5px;
}

.am-badge {
	font-weight: normal
}

.am-navbar-default li {
	position: relative;
}

.cart_num {
	position: absolute;
	left: 50%;
	top: 5px;
	font-size: 1.2rem;
	border-radius: 1.2rem;
	background: #dd514c;
	color: #fff;
	padding: .1rem .35rem;
	text-align: center;
	transform: scale(0.85, 0.85);
}

.am-header .m_header_right_menu {
	right: 18px;
}

.am-header .m_header_right_menu {}

.am-header .m_header_right_menu .am-dropdown-content {
	background-color: rgba(0, 0, 0, .8);
	border-radius: 4px;
	min-width: 140px;
	right: -10px;
	padding: 5px;
}

.am-header .m_header_right_menu .am-dropdown-content:after,
.am-header .m_header_right_menu .am-dropdown-content:before {
	border-color: transparent transparent rgba(0, 0, 0, .9);
}

/* 
.m_header_nav{
	 
	  position:absolute;z-index: 22; display: none; 
    background-color: rgba(0,0,0,.8);
    border-radius: 4px;
    width: 125px;
    right: 10px;
    top: 53px;
	min-height: 100px; 
	 
}
.m_header_nav:before {
    position: absolute;
    top: -5px;
    right: 7px;
    content: "";
    width: 0;
    height: 0;
    border-color: transparent transparent rgba(0,0,0,.9);
    border-style: solid;
    border-width: 0 5px 5px;
} */
.m_header_nav a p {
	border-bottom: 1px solid #5a5a5a;
	height: 39px;
	line-height: 39px;
}

.m_header_nav a:last-child p {
	border: none;
}

.m_header_nav a {
	display: block;
	color: #fff;
	display: block;
	color: #fff;
	font-size: 1.4rem;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	padding-left: 40px;
}

.m_header_nav a .fa {
	position: absolute;
	left: 12px;
	top: 12px;
	font-size: 1.6rem
}

/*会员中心*/
.headerWrap {
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
}

.container {
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
	padding-bottom: 60px;
}



.line {
	height: 0.6rem;
	overflow: hidden;
	clear: both;
	background: #f5f5f5;
}

.user_header_pd {
	padding: 1.4rem 0;
	background: #fff;
	border-bottom: 1px solid #eae9e9;
}

.user_header {
	display: flex;
}

.user_header .img {
	margin: 0.5rem 1.2rem 0 1.2rem;
	width: 6rem;
	height: 6rem;
	overflow: hidden;
}

.user_header .img img {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	border: 0.4rem solid #eee
}

.user_header dd p {
	font-size: 1.2rem
}

.user_header dd p i {
	color: #e82720
}

.user_header dt {
	padding-bottom: 2px
}

.user_header .btn {
	padding-top: 10px
}

.user_header .btn a {
	margin-right: 10px;
	font-size: 1.2rem;
	padding: .3em 1em;
}

.user_header .btn .fa {
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.c_list2 {
	background: #fff;

}

.c_list2 .am-g {
	padding: 1rem 0 1rem .5rem;
}

.c_list2 .am-u-sm-10 {
	border-bottom: 1px solid #ddd;
	padding-bottom: .5rem
}

.c_list2 .c_icon_right_after {
	position: relative;
	padding-right: 1.2rem;
}

.c_list2 .am-u-sm-11 {
	padding-left: .5rem;
}

.c_list2 .c_icon_right_after:after {
	content: "";
	position: absolute;
	left: -10px;
	top: 80%;
	width: .8rem;
	height: .8rem;
	border-left: 1px solid #666;
	border-top: 1px solid #666;
	transform: translate3d(0, -50%, 0) rotate(135deg);
	-webkit-transform: translate3d(0, -50%, 0) rotate(135deg);
}

.c_list select {
	border: none;
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	background: none;
}

.c_list {
	background: #fff;
	border-bottom: 1px solid #eae9e9;
	padding: 0 1rem;
}

.c_list h6 {
	padding: 1rem 0;
	border-bottom: 1px solid #ddd;
	color: #1DBAFF;
}

.c_list .am-g {
	padding: 1rem 0;
	border-bottom: 1px solid #ddd;
}

.c_list .am-g:last-child {
	border: none;
}

.c_list .am-g .wui_tar {
	color: #777;
	font-size: 1.25rem
}

#withdrawal_btn {
	font-size: 1.2rem
}

.c_list .am-g em {
	color: #e82720;
	font-style: normal;
}

.avatar_mod img {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid #ddd;
	padding: 0.2rem;
}

.avatar .am-u-sm-5 {
	line-height: 3rem;
}

.user_tools {
	background: #fff;
	text-align: center;
	border-bottom: 1px solid #eae9e9;
}

.user_tools li a {
	display: block;
	padding: 10px 0;
}

.user_tools .icon img {
	width: 2rem;
	height: 2rem;
}

.user_tools .title {
	font-size: 1.2rem;
	padding-top: 8px;
}

.user_tools li {
	padding: 10px 0;
	border-right: 1px solid #eae9e9;
	border-bottom: 1px solid #eae9e9;
}

.user_tools li:nth-child(3) {
	border-right: 0;
}

.user_tools li:nth-last-of-type(1) {
	border-bottom: 0;
}

.user_tools li:nth-last-of-type(2) {
	border-bottom: 0;
}

.pandian {
	background: #fff;
	border-bottom: 1px solid #eae9e9;
	padding-bottom: 15px;
}

.c_nav {
	background: #fff;
}

.c_nav ul {
	display: flex;
}

.c_nav li {
	flex: 1;
}

.c_nav li a {
	display: block;
	text-align: center;
}

.c_nav li span {
	display: inline-block;
	height: 44px;
	line-height: 44px;
}

.c_nav li.cur span {
	border-bottom: 2px solid #37A4FF
}

.pandianTab {}

.pandianTab .tabBar {
	padding: 1.2rem .5rem 0 .5rem
}

.pandianTab .tabBar span {
	float: left;
	display: block;
	width: 50%;
	padding: 0 .5rem
}

.pandianTab .tabBar .ii {
	background: #ddd;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 30px;
	line-height: 30px;
	font-size: 1.2rem;
}

.pandianTab .tabBar span.current .ii {
	background: #37A4FF;
	color: #fff;
}

.pandianTab .tabCon {
	display: none;
	padding: 15px .5rem 0 .5rem;
}

.pandianTab .tabCon table {
	font-size: 1.2rem
}

.pandianTab .tabCon table .icheck_lable {
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
}

.c_search {
	padding: 1.2rem 1.2rem;
	background: #fff;
}

.c_search .am-g {
	text-align: center;
}

.c_search .sbtnWrap {
	padding-top: 12px;
}

.user_logo_wrap {
	background: #fff;
	position: relative;
	z-index: 1;
	padding-bottom: 3rem;
}

.user_logo_bg {}

.user_logo_bg img {
	max-width: 100%;
}

.user_logo {
	text-align: center;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	margin-top: -2rem;
	width: 100%
}

.user_logo img {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	border: 0.4rem solid #eee
}

.c_list .c_icon_right_after {
	position: relative;
	padding-right: 1.2rem;
}

.c_list .c_icon_right_after:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.6rem;
	height: 0.6rem;
	border-left: 1px solid currentColor;
	border-top: 1px solid currentColor;
	transform: translate3d(0, -50%, 0) rotate(135deg);
	-webkit-transform: translate3d(0, -50%, 0) rotate(135deg);
}

.c_list .c_label {
	display: block
}

.cartWrap {
	background: #fff;
}

.address_bar_wrap {
	padding: 0 1.2rem;
	height: 45px;
	line-height: 45px;
	position: relative;
	z-index: 2;
	font-size: 1.3rem;
	max-width: 640px;
	margin: 0 auto;
}

.address_bar_wrap .cart_ebtn {
	float: right;
	color: #e93b3d
}

.address_bar_wrap .fav_count {
	float: left;
}

.cart_list li {
	border-bottom: 1px solid #eee
}

.cart_list li dl {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: box;
	padding: 20px 0 16px 0;
}

.cart_list li dl:first-child {}

.cart_list .cart_select {
	width: 30px;
}

.cart_list .cart_select .pretty {
	margin: 40px 0 0 10px;
}


.cart_list .img {

	display: block;
	width: 100px;
	margin: 0 0 0 10px;
}

.cart_list .img img {
	width: 100%;
	display: block;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, .05);
	border-radius: 2px;
}

.cart_list .content {
	-webkit-box-flex: 1;
	box-flex: 1;
	margin: 0 0 0 12px;
}

.cart_list .title {
	font-size: 14px;
	padding-right: 10px;
	margin-bottom: 3px;
	word-break: break-all;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.cart_list .title a {
	color: #444;
}

.cart_list .inv {
	font-size: 12px;
	color: #888;
}

.cart_list .price_line {
	margin: 5px 10px 0 0;
}

.cart_list .price {
	float: left;
	color: #f2270c;
}

.cart_list .price i {
	font-style: normal;
	font-size: 16px;
	margin-left: 3px;
}

.cart_list .num_wrap {
	float: right;
}

.cart_list .m_action {
	text-align: right;
	margin: 1.2rem 1.2rem 0 0;

}

.cart_list .m_action a {
	display: inline-block;
	color: #999;
	font-size: 1.2rem;
	margin-left: 1.2rem;
}

.recommendWrap .am-badge {
	margin-right: 8px;

	padding: .1em .5em;

}


/*.recommendWrap {
	background: #fff;
}*/

/*.recommendWrap ul {
	padding: 0 8px
}*/

.recommendWrap li {
	/*width: 50%;*/
	/*float: left;*/
	padding: 12px 8px 10px 8px;
	margin:3%;
}

.recommendWrap li .img img {
	width: 100%;
	min-height: 75px;

}

.recommendWrap li .title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 12px 0 4px;
	font-size: 12px;
	color: #333;
	line-height: 18px;
	height: 36px;
}

.recommendWrap .btn {
	float: right
}

.recommendWrap .btn a {
	display: block;
	width: 56px;
	margin: 0 auto;
	text-align: center;
	border: 1px solid #f2270c;
	color: #f2270c;
	border-radius: 3px;
	font-size: 1.2rem;
}

.recommendWrap .price_wrap {
	margin-top: 1rem;
}

.recommendWrap li .price {
	float: left;
	color: #f2270c;
}

.recommendWrap li .price i {
	font-style: normal;
	font-size: 14px;
	margin-left: 3px;
}

.recomm_mod_title {
	position: relative;
	margin: 15px 0;
	height: 1em;
	line-height: 1em;
	text-align: center;
	font-size: 12px;
	color: #999;
}

.recomm_mod_title .recomm_mod_title_text {
	z-index: 2;
	position: relative;
	padding: 0 15px;
	background-color: #f7f7f7;
}

.recomm_mod_title .recomm_mod_title_text:after,
.recomm_mod_title .recomm_mod_title_text:before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -2px;
	width: 4px;
	height: 4px;
	background-color: #ccc;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.recomm_mod_title .recomm_mod_title_text:before {
	left: 0;
}

.recomm_mod_title .recomm_mod_title_text:after {
	right: 0;
}

.recomm_mod_title:after {
	content: "";
	position: absolute;
	z-index: 1;
	pointer-events: none;
	background-color: #ccc;
	height: 1px;
	left: 0;
	right: 0;
	top: 0;
	left: 10px;
	right: 10px;
	top: 50%;
}


.orderWrap {
	background: #fff;
}

.order_list {
	padding-top: 5px;
}

.order_list li {
	position: relative;
	z-index: 1;
	min-height: 100px;
	padding: 15px;
	border-bottom: 3px solid #eee;
}

.order_list li dl {
	position: relative;
	z-index: 1;
	padding-left: 95px;
}

.order_list .img img {
	width: 80px;
	display: block;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, .05);
	border-radius: 2px;
}

.order_list .order_select {
	display: none;
	position: absolute;
	z-index: 1;
	top: 20px;
	left: 0;
	width: 40px;
	height: 100%;
}

.order_list .img {
	position: absolute;
	left: 0;
	top: 4px;
	display: block;
	width: 80px;
	min-height: 100px;
}

.order_list .title {
	font-size: 14px;
	padding-right: 6px;
	margin-bottom: 3px;
	word-break: break-all;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.order_list .title a {
	color: #444;
}

.order_list .con {
	line-height: 20px;
	font-size: 1.2rem;
	color: #888;
}

.order_list .m_action {
	text-align: right;
	margin: 10px 0 0 0;
}

.order_list .m_action a {
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
}

.order_list .order_status {
	padding-bottom: 10px;
	line-height: 24px;
}

.order_list .order_time {
	float: left;
	color: #888;
	font-size: 1.2rem;
}

.order_list .order_s {
	float: right;
	font-size: 1.4rem;
	color: #f2270c;
}

.order_list .order_status .order_delete {
	padding-left: 20px;
	position: relative;
	display: inline-block;
}

.order_list .order_status .order_delete:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 15px;
	background-color: #e3e3e3;
	top: 4px;
	left: 10px;
}

.order_list .order_status .order_delete .fa {
	font-size: 1.5rem;
	color: #666;
}

.list_edit li dl {
	padding-left: 135px;
}

.list_edit .img {
	left: 40px;
}

.list_edit .order_select {
	display: block;
}

.emptyWrap {
	padding: 80px 0;
	text-align: center;
}

.emptyWrap .ico img {}

.emptyWrap .ico {
	padding-bottom: 25px;
}


/* 收货地址*/
.address_border {
	padding-bottom: 5px;
	background: #fff url(../images/bo.png) -7px bottom repeat-x;
	background-size: 64px 5px;
}

.addressWrap {
	background: #fff;
}

.address_list li {
	border-bottom: 1px solid #f7f7f7
}

.address_list li dl {
	position: relative;
	z-index: 1;
	padding: 15px 0;
	display: -webkit-box;
	display: box;
}

.address_list li dl:first-child {}

.address_list .default_select {

	width: 30px;

}

.address_list .default_select .pretty {
	margin: 6px 0 0 10px
}

.address_list .content {
	-webkit-box-flex: 1;
	box-flex: 1;
	padding-left: 12px;
}

.address_list .btn {

	width: 65px;
	text-align: center;
}

.address_list .btn a {
	display: block;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1.3rem;
	width: 42px;
	line-height: 1.6em;
	margin: 0 auto
}

.address_list .btn .ebtn {
	color: #dd514c;
	margin-bottom: 12px;
}

.address_list .title {
	font-size: 1.4rem;
	margin-bottom: 3px;
}

.address_list .title span {
	margin-left: 15px;
}

.address_list .desc span {
	margin-right: 8px;
	background: #fff;
	padding: .1em .5em;
	border: 1px solid #dd514c;
	color: #dd514c;
}

.address_list .desc {
	font-size: 1.3rem;
}

.address_add {
	line-height: 2rem;
	border-top: 1px solid #eee;
	padding: 0 .5rem;
}

.address_add .fa {
	color: #37A4FF;
	margin-right: 8px;
	vertical-align: text-bottom
}

.c_page .am-pagination>li>a,
.am-pagination>li>span {
	padding: .4em .7em
}

.mod_btn {
	padding: 6px 12px 0 12px;
}

.mod_btn .am-btn {
	font-size: 1.4rem;
	padding: 1rem 0;
	margin-top: 15px;
}

.c_mod li {
	border-bottom: 1px solid #ddd
}

.c_mod li dl {
	position: relative;
	z-index: 1;
	padding: 12px 10px 12px 90px;
}

.c_mod li span {
	width: 90px;
	line-height: 1;
	position: absolute;
	top: 18px;
	left: 0;
	margin: auto 0;
	padding: 0 0 0 10px;
	font-size: 1.3rem;
	color: #666;
}

.c_mod li input {

	height: 20px;
	line-height: normal;
	border: 0 none;
	font-size: 1.3rem;
	width: 100%;
	-webkit-appearance: none;
	vertical-align: top;
	color: #333;
}

.c_mod li textarea {
	line-height: 1.5;
	-webkit-appearance: none;
	width: 100%;
	border: none;
	resize: none;
	font-size: 1.3rem;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;

}

.c_mod .pretty {
	line-height: 0.9;
}

#headPicForm {
	position: relative;
	z-index: 3
}

#headPicInput {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.user_info_input {
	background: #fff;
	margin-top: 16px;
}

.user_info_input .input_block {
	padding: 1rem 1.2rem;
}

.user_info_input .txt {
	height: 20px;
	line-height: normal;
	border: 0 none;
	width: 100%;
}

.prompt {
	padding: 0 1.2rem;
	color: #999;
	font-size: 1.2rem;
	margin-top: .6rem;
}

.user_info_input .txtarea {
	line-height: 1.5;
	-webkit-appearance: none;
	width: 100%;
	border: none;
	resize: none;
	font-size: 14px;
}

.user_info_file {
	background: #fff;
	margin-top: 16px;
	padding: 1.2rem
}

.user_info_file .am-form-group {
	margin: 0;
}

#zilWrap {
	text-align: center;
	padding: 2rem 0 1rem 0;
	display: none
}

#zil_img {
	width: 200px;
}

#zil_icon {
	width: 100px;
}

.fav_fixbar {
	display: none;
	position: fixed;
	z-index: 200;
	bottom: 0;
	width: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.95);
	height: 50px;
	line-height: 50px;
	padding: 0 1.2rem;
	box-shadow: 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.fav_fixbar .fav_select_wrap {
	float: left;
}

.fav_fixbar .btn {
	float: right;
	display: block;
	background: #e4393c;
	margin-top: 13px;
	width: 80px;
	height: 25px;
	line-height: 25px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	border-radius: 3px;

}



.Spinner {
	display: block;
	overflow: hidden;
	width: 72px;
	margin: 0;
}

.Spinner .Amount {
	width: 30px;
	height: 20px;
	line-height: 20px;
	border-width: 1px 0;
	border-style: solid;
	border-color: #d9d9d9;
	float: left;
	text-align: center;
	color: #565656;
	outline: 0;
}

.Spinner a {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid #d9d9d9;
	background-color: #f7f7f7;
	float: left;
	cursor: pointer;
	outline: 0;
}

.Spinner a i {
	font-style: normal;
	background: url(../images/BuynBtn.png) no-repeat;
	display: block;
	width: 9px;
	height: 9px;
	margin: 5px;
	text-indent: 999999%;
	overflow: hidden;
}

.Spinner .Decrease i {
	background-position: -9px -9px;
}

.Spinner .Increase i {
	background-position: -9px -0px;
}

.Spinner .DisDe i {
	background-position: -0px -9px;
}

.Spinner .DisIn i {
	background-position: -0px -0px;
}


.c_list_detail {}

.c_list_detail li {
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #eee;
}

.c_list_detail .content_wrap {
	box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .1);
}

.c_list_detail li dl {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: box;
	padding: 1.2rem 0;
}

.c_list_detail .img {
	display: block;
	width: 82px;
	padding-top: .3rem;
	margin-left: 1.2rem;
}

.c_list_detail .img img {
	width: 82px;
	height: 82px;
	display: block;
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, .05);
	border-radius: 3px;
}

.c_list_detail .order_select {
	width: 40px;
}


.c_list_detail .content {

	-webkit-box-flex: 1;
	box-flex: 1;
}


.c_list_detail .title {
	font-size: 14px;
	padding: 0 1.2rem;
	word-break: break-all;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.c_list_detail .title a {
	color: #444;
}

.c_list_detail .con {
	line-height: 24px;
	font-size: 1.4rem;
	color: #444;
	padding: 0 1.2rem 0 1.2rem;

}


.c_list_detail .con2 {
	line-height: 24px;
	font-size: 1.4rem;
	color: #444;
	padding: 1rem 1.2rem;
}

.c_list_detail .m_action {
	text-align: right;
	padding: 1rem;
}

.c_list_detail .m_action a {
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
}

.c_list_detail .order_status {

	padding: 1.8rem 1.2rem .2rem 1.2rem;
	background: #f7f7f7;
}

.c_list_detail .order_time {
	float: left;
	color: #000;
	font-size: 1.6rem;
}

.c_list_detail .order_s {
	float: right;
	font-size: 1.4rem;
	color: #000;
}

.c_list_detail .order_status .order_delete {
	padding-left: 20px;
	position: relative;
	display: inline-block;
}

.c_list_detail .order_status .order_delete:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 15px;
	background-color: #e3e3e3;
	top: 4px;
	left: 10px;
}

.c_list_detail .order_status .order_delete .fa {
	font-size: 1.5rem;
	color: #666;
}

.cart_fixbar .buy.disabled {
	background: #d7d7d7;
}

.cart_fixbar .g_btn {
	float: right;
	display: block;
	background-color: #000;
	text-align: center;
	color: #fff;
	line-height: 50px;
	padding: 0 1rem;
	font-size: 15px;
}

.cart_fixbar .g_buy {
	background-color: #f2270c;
}

.cart_fixbar .g_cart {
	background-color: #ffbc00;
}

.cart_fixbar .g_generalize {
	background-color: #37A4FF;
}

.cart_fixbar .g_left_cart {
	position: relative;
	display: block;
	width: 3.7rem;
	color: #888;
	line-height: normal;
	font-size: 14px;
	text-align: center;
}

.cart_fixbar .g_left_cart .icon {
	padding-top: 0.3rem;
}

.cart_fixbar .g_left_cart .title {
	padding-top: 0.22rem;
}

.cart_fixbar .g_left_cart .icon img {
	width: 2rem;
	height: 2rem;
}

.cart_fixbar .g_left_cart .cart_num {
	position: absolute;
	left: 50%;
	top: 5px;
	font-size: 1.2rem;
	border-radius: 1.2rem;
	background: #dd514c;
	color: #fff;
	padding: .1rem .35rem;
	text-align: center;
	transform: scale(0.85, 0.85);
}

.cart_fixbar .wui_left {
	font-size: 1.6rem;
}

.cart_fixbar .qsbtn {
	float: right;
	display: inline-block;
	background-color: #f2270c;
	text-align: center;
	color: #fff;
	width: 100px;
	height: 50px;
	font-size: 1.6rem;
}

.all_cart_delete,
.all_cart_add_fav {
	float: right;
	display: none;
	border: 1px solid #ddd;
	margin-right: 1.2rem;
	height: 30px;
	line-height: 30px;
	padding: 0 1rem;
	border-radius: 5px;
	margin-top: 10px;
}

.all_cart_delete {
	background: #f2270c;
	border: none;
	color: #fff;
}

.cart_fixbar .buy {
	float: right;
	display: inline-block;
	background-color: #f2270c;
	text-align: center;
	color: #fff;
	width: 100px;
	height: 50px;
	font-size: 16px;
}

.cart_fixbar .buy span {
	font-size: 12px;
}

.cart_fixbar .total_price {
	float: right;
	padding-right: 12px;
	font-size: 15px;
}

.cart_fixbar .total_price span {
	color: #f2270c;
}

.cart_fixbar {
	position: fixed;
	z-index: 200;
	bottom: 0;
	width: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.95);
	height: 50px;
	line-height: 50px;
	padding: 0 0 0 1rem;
	box-shadow: 0 3px 14px 2px rgba(0, 0, 0, .12);

}

.cart_fixbar .cart_select_wrap {
	float: left;
}

.cart_fixbar .btn {
	float: right;
	display: block;
	background: #e4393c;
	margin-top: 13px;
	width: 80px;
	height: 25px;
	line-height: 25px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	border-radius: 3px;

}

.cart_list .Spinner {
	margin-top: 4px;
}

/*  登陆 注册 */

.user_login_wrap {
	width: 260px;
	margin: 0 auto;
}

.user_login_top {
	text-align: center;
	padding: 2rem 0 1rem 0;
}

.user_login_top img {
	width: 70px;
}

.user_login_top p {
	padding-top: 1rem;
	font-size: 1.6rem
}

.user_login_btn {
	width: 260px;
	margin: 0 auto;
	text-align: center;
	padding-top: 1.2rem;
}

.user_login_btn .am-btn {
	padding: 1rem;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.user_login_wrap .input_container {
	border-bottom: 1px solid #d3d3d3;
	display: -webkit-box;
	display: box;
}

.user_login_wrap .input_container input {
	width: 100%;
	line-height: normal;
	border: none;
	display: block;
	font-size: 1.6rem;
	padding: 1.2rem 0;
	-webkit-box-flex: 1;
	box-flex: 1;
	background: none;
}

.user_login_wrap .input_container .code_panel {
	padding: 1.2rem;
}

.user_login_wrap .input_container .code_panel a {
	color: #2ea5e5;
}


.indexMain {
	background: #fff;
}

.main_1 img {
	max-width: 100%;
}

.main_1 {
	line-height: 2em;
	padding: 1rem;
}

.main_2 img {
	max-width: 100%;
}

.main_3 img {
	max-width: 100%;
}

.main_2 {
	margin: 1rem;
}

.main_3 {
	margin: 1rem;
}

.swiper-container2 {
	width: 100%;
	padding-bottom: 40px;
	overflow: hidden;
	position: relative
}

.swiper-container2 .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	width: 80%;
}

.swiper-container2 .swiper-slide-active,
.swiper-container2 .swiper-slide-duplicate-active {}

.search {
	position: relative;
	margin: 0 45px;
}

.search_txt {
	border: none;
	width: 100%;
	position: absolute;
	left: 0;
	top: 10px;
	padding: 6px 40px 6px 15px;
	line-height: normal;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);

}

.search_btn {
	position: absolute;
	width: 16px;
	height: 16px;
	border: none;
	right: 13px;
	top: 17px;
	z-index: 100;
	background: url(../images/search.png) no-repeat;
	background-size: 100% 100%;
	-moz-background-size:100% 100%;
}


.am-titlebar-default .am-titlebar-title:before {
	top: 14px;
	bottom: 10px;
}

.am-titlebar-default .am-titlebar-title {
	color: #333;
}

.inav_ul {
	color: #fff;
}

.inav_ul a {
	color: #fff;
}

.inav_ul .am-accordion-gapped {
	padding: 1rem 1rem;
	margin: 0;
}

.inav_ul .am-accordion-gapped .am-accordion-item {
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.inav_ul .am-accordion-gapped .am-accordion-title {
	border: none;
	color: #fff
}

.inav_ul .am-accordion-gapped .am-active .am-accordion-title {
	background: none;
	color: #fff
}

.inav_ul .am-accordion-content a {
	display: block;
	padding: .4rem 0 .4rem 1rem
}

.news_list img {
	max-width: 100%
}

.news_list.am-list-news-default {
	margin: 0;
	padding: 1rem;
	background: #fff;
}

.news_list .am-list-item-hd {
	word-break: break-all;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.news_list.am-list-news-default .am-list .am-list-item-desced .am-list-item-text {
	margin-top: 0;
	word-break: break-all;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news_list .h3t {
	margin-bottom: 8px;
}

.news_content {
	background: #fff;
	padding: 1rem
}

.news_content .con {}

.news_content .con img {
	max-width: 100%;
}

.news_content .con p {
	margin: 8px 0;
	font-size: 1.4rem
}

.news_content .title {
	font-size: 1.6rem
}

.news_content .time {
	font-size: 1.2rem;
	color: #999;
	margin-bottom: 10px;
}

.photos_list {
	background: #fff;
}

.photos_list ul {
	padding: 0 8px
}

.photos_list li {
	width: 50%;
	float: left;
	padding: 12px 8px 10px 8px;
}

.photos_list li .img img {
	width: 100%;
	min-height: 75px;

}

.photos_list li .title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 8px 0 0 0;
	font-size: 12px;
	color: #333;

}

.product_cate dl {
	padding: .8rem 0
}

.product_cate img {
	max-width: 100%
}

.product_cate {
	padding: 2rem;
	background: #fff;
}

.proxWrap {
	background: #fff;
}

#prox_pic {}

.proxWrap .price_wrap {
	padding: 16px 1rem 5px 1rem;
}

.proxWrap .price_wrap .wui_lt {
	font-size: 24px;
	color: #e4393c;
}

.proxWrap .price_wrap .wui_rt {
	padding-top: 10px;
}

.proxWrap .price_wrap .wui_fr {
	padding: .08rem 0.7rem;
	border-radius: 4px;
	margin: 9px 0 0 15px;
	background: #37A4FF;
	color: #fff
}

.proxWrap .price_wrap .wui_fr .fa {
	font-size: 1.2rem;
	margin-right: 5px;
	color: #fff
}

.prox_name {

	padding: 0 1rem;
	font-size: 16px;
	line-height: 24px;
}

.prox_desc {
	padding: 5px 1rem 10px 1rem;
	color: #999;
	font-size: 12px;
	line-height: 18px;
}

.prox_name .am-badge {
	margin-right: 8px;
	padding: .3em .5em;
}

.detail_serve {
	position: relative;

	color: #999;
	font-size: 12px;
}

.detail_serve {
	height: 30px;
	background: #fff;
}

.detail_serve ul {
	width: 100%;
	padding-left: 4px;
}

.detail_serve li {
	display: inline-block;
	line-height: 1;
	padding-left: 6px;
}

.detail_serve li:last-child {}

.detail_serve li img {
	width: 12px;
	height: 12px;
	margin-right: 2px;
	vertical-align: top;
}

.prox_con {}

.prox_con .am-nav-tabs {
	width: 100%;
	text-align: center;
}

.prox_con .am-nav-tabs>li {
	float: none;
	display: inline-block;
}

.prox_con .am-nav-tabs>li.am-active>a,
.am-nav-tabs>li.am-active>a:focus,
.am-nav-tabs>li.am-active>a:hover {
	border: none;
	color: #f60
}

.prox_con .am-tabs-bd {
	border: none;
	overflow: hidden;
}

.prox_con .am-tabs-bd img {
	max-width: 100%;
}

.prox_con .am-tabs-bd p {
	margin: 8px 0;
}

.dianpuEditor{ background: #fff;}
.dianpuEditor li{
	border-bottom: 1px solid #ddd;
}
.dianpuEditor dl{
	padding: 10px;
	    display: -webkit-box;
	    display: box;
}
.dianpuEditor span{
	     width: 90px;
		  display: block;
		      font-size: 1.3rem;
		      color: #666;
}
.dianpuEditor .input_block{
	     -webkit-box-flex: 1;
	         box-flex: 1;
}
.dianpuEditor .input_block {margin-left:12px;}
.dianpuEditor .input_block  input {
    height: 20px;
    line-height: normal;
    border: 0 none;
    font-size: 1.3rem;
    width: 100%;
    -webkit-appearance: none;
    vertical-align: top;
    color: #000;
}
.dianpuEditor .input_block textarea {
    line-height: 1.5;
    -webkit-appearance: none;
    width: 100%;
    border: none;
    resize: none;
    font-size: 1.3rem;
}
.uWrap{ display: none; text-align: center;padding: 10px;}
.uWrap img{max-width: 95%;}

.jifenWrap{
	background: #fff;
	 padding: 12px 0 12px 12px;
	
}
.jifen_bg{
	 width: 100%;
	 height: 3px; 
	 background:#37A4FF ;
/* background:linear-gradient(to right,#37A4FF,#9affe3); */
}
.jifenWrap .p1{font-size:1.3rem; color:#888 ;}
.jifenWrap .p4{font-size:1.4rem;color:#888 ; }
.jifenWrap .p2{font-size:1.8rem;color:#333 ;}
.jifenWrap .p3{font-size:2.8rem;color:#2e8ede ;}
.jifenWrap .am-g{padding-top:1rem;}
.jifen_cate{background: #fff;padding:.4rem; }
.jifen_cate dl{ width: 33.333333%;float:left;padding:.4rem;}
.jifen_cate dl a{display: block;color:#666;padding:0.6rem 0;text-align:center;
background:#ddd ;border-left:5px solid #ccc; font-size:1.2rem;text-indent: -0.3rem; }
.jifen_cate dl.cur a{background:#37A4FF ;color:#fff;border-left:5px solid #2e8ede;}


/* 转盘 */
.rotary_wrapper{width:260px;margin:0 auto;padding:30px 0  50px 0;}
.rotary_table{position:relative;z-index: 1; width: 260px;height:260px;margin:0 auto; 
background: url(../images/A58.png); background-size: cover;}
.rotary_table .pointer{width:40px; position:absolute;z-index: 2;top:50%;left:50%;margin:-30px 0 0 -20px;cursor: pointer;}
.rotary_table .pointer img{ width: 100%;}

.rotary_wrapper .rt_d{width:180px;margin:0 auto;padding-top:20px;}
.rotary_wrapper .rt_btn{text-align:center;width:180px;height:40px;line-height:40px;
border-radius: 5px;font-size:16px;
margin-bottom:12px;border:none;color:#fff; background: none; display: block;}
.rotary_wrapper .btn1{background: #15A1F2;}
.rotary_wrapper .btn2{background: #FF655E;}
.rotary_wrapper .btn3{background: #FF655E;}