/*==============================================================================================*/
/*	公用样式
/*==============================================================================================*/

body {
  background: #f5f7fa;
  min-width: 320px;
}
button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
input,
textarea {
  background: none;
  outline: none;
	border: 0px;
}
input:focus,
textarea:focus {
	outline: none;
	box-shadow:none!important;
}
.form-item .item-label {
  display: inline-block;
  width: 120px;
  text-align: right;
  line-height: 45px;
}
.form-item .form-control {
  padding: 0px 15px;
  border-radius: 6px;
  height: 45px;
  line-height: 45px;
  background: #fcfcfc;
}

.form-item select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}
.form-item textarea.form-control {
    min-height: 120px;
}

.suit-form{
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
}
.suit-form .form-item{
    display: flex;
    align-items: flex-start;
}
.suit-form .form-item.center{
  justify-content: center;

}
.suit-form .form-item .item-controls{
  flex: 1;
}
.suit-form .form-item .item-label{
  width: 120px;
}
.suit-form .form-item .form-control {
  width: 100%;
}
.suit-form .form-item #J_city,.suit-form .form-item #J_district{
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .suit-form .form-item{
    display: block;
  }
  .suit-form .form-item .item-label{
    width: 100%;
  }
  .suit-form .form-item .item-controls{
    width: 100%;
  }
  .suit-form .form-item .form-control {
    width: 100%;
  }
}

.link {
  color: #3e6ae1;
}
.btn-rad {
  overflow: hidden;
  border-radius: 3px;
  background: #22ad38 !important;
  padding: 0;
}

/* 直角按钮 */
.btn-com {
  overflow: hidden;
  background: linear-gradient(135deg, #3e6ae1, #5e89f2);
  width: 120px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  padding: 0;
}
/* 直角按钮 */
.btn-com:hover {
  background: linear-gradient(135deg, #3867e7, #547ee9);
  color: #fff;
}

.json_msg {
  color: #f00;
}
.json_msg.success {
  color: #2ac25f;
}

.json_btn .in {
  display: none;
}
.json_btn.log-in .in {
  display: inline-block;
}
.json_btn.log-in .on {
  display: none;
}
.icon-loading {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  background: url(../images/loading_icon.gif) no-repeat 0 0;
}

.form_check_info {
  position: relative !important;
}
.form_check_info .tips {
  text-align: left !important;
}

/* 背景颜色 */
.color-background {
  background: #22ad38 !important;
}
/* 特别字体颜色 */
.color-word {
  color: #22ad38 !important;
}

.main_bg{  background: #FB7827; }
.main_bgr{ background: linear-gradient(#207af7, #3664db); }
.main_color{ color: #FB7827;  }
.main_border{ border-color: #FB7827; }

/*==================== 通用菜单 =====================*/
.nav_item {
  display: block;
  overflow: hidden;
}
.nav_item li {
  width: 100%;
  overflow: hidden;
  padding: 20px 10px;
  border-bottom: #eee solid 1px;
}
.nav_item li:last-child {
  border-bottom: none;
}
.nav_item li a {
  display: block;
}
.nav_item li span {
  overflow: hidden;
  font-size: 16px;
  color: #333;
  float: left;
}
.nav_item li span i {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  color: #ccc;
  margin-right: 10px;
}
.nav_item li em {
  font-size: 14px;
  color: #b3b3b3;
  float: right;
  margin-top: 6px;
}

/*==================== 面包屑 =====================*/
.crumb-box {
  overflow: hidden;
  height: 50px;
}
.crumb-box ul li {
  float: left;
  height: 50px;
  line-height: 50px;
}
.crumb-box ul li a {
  font-size: 14px;
  color: #333;
}
.crumb-box ul li i {
  font-size: 12px;
  padding: 0 5px;
  color: #9b9b9b;
}
.crumb-box ul li:last-child i {
  display: none;
}


/*==============================================================================================*/
/*头部样式
/*==============================================================================================*/
.header {
    background: linear-gradient(135deg, #3e6ae1 0%, #5e89f2 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.header-user {
  height: 60px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.header-user span {
  margin-left: 15px;
}
.header-user span a {
  color: #fff;

}
.header-user span:nth-child(1) a {  background: linear-gradient(90deg, #f28e26, #fd644f);
  background: -webkit-linear-gradient(90deg, #f28e26, #fd644f);
        background: -moz-linear-gradient(90deg,#f28e26,#fd644f);
        background: -o-linear-gradient(90deg,#f28e26,#fd64);
		padding:10px 30px; border-radius:30px; font-size:16px;}
.header-user ._headimg {
  display: block;
  overflow: hidden;
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  margin-right: 5px;
  border: 2px solid #fff;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: all 0.3s ease;
}

.overlay.active {
    display: block;
}

.menu_box {
    width: 280px;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-image: linear-gradient(to bottom, #ffffff, #f9f9f9);
}
.menu_box h3 {
  font-size: 15px;
  font-weight: 700;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.menu_box ul {
  overflow: hidden;
  width: 100%;
  padding: 10px 0px;
}
.menu_box ul ._title{
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    background-color: #f5f7fa;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
    overflow: hidden;
}
.menu_box ul li {
  position: relative;
  float: left;
  width: 100%;
  padding: 0px;
}
.menu_box ul li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.menu_box ul li a span {
  text-align: left;
  width: 80%;
  display: inline-block;
}
.menu_box ul li i {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
  text-align: right;
}
.menu_box ul li.active a {
    background-color: #f0f2ff;
    color: #3e6ae1;
    border-left-color: #3e6ae1;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(60, 106, 225, 0.1);
}

.menu_box.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/*==================== 侧栏导航 =====================*/
.sidebar {
    width: 280px;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 999;
    background-image: linear-gradient(to bottom, #ffffff, #f9f9f9);
}
.sidebar h3 {
  font-size: 15px;
  font-weight: 700;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.sidebar .slide-nav {
  overflow: hidden;
  width: 100%;
  padding: 10px 0px;
}
.sidebar .slide-nav ._title{
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    background-color: #f5f7fa;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
    overflow: hidden;
}
.sidebar .slide-nav li {
  position: relative;
  float: left;
  width: 100%;
  padding: 0px;
}
.sidebar .slide-nav li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.sidebar .slide-nav li a span {
  text-align: left;
  width: 80%;
  display: inline-block;
}
.sidebar .slide-nav li i {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
  text-align: right;
}
.sidebar .slide-nav li.active a {
    background-color: #f0f2ff;
    color: #3e6ae1;
    border-left-color: #3e6ae1;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(60, 106, 225, 0.1);
}

.main-content {
  overflow: hidden;
  width: auto;
	border: none;
  margin-left: 280px;
  margin-top: 60px;
  padding: 15px;
}
.main-content .box_wrap {
	overflow: hidden;
  background-color: #ffffff;
	padding:20px;
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.main-content .box_title {
  display: block;
  overflow: hidden;
  font-size:20px;
  padding: 10px 0 20px 0;
	border-bottom: 1px solid #eee;
	color: #000000;
}
.main-content .box_body {
  display: block;
  overflow: hidden;
  padding:20px 0;
  width: 100%;
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px 0 0 0 ;
    }
    .menu-toggle {
        font-size: 18px;
    }
	.header-user span:nth-child(1) a { font-size:14px;    padding: 5px 15px;}
}


/*=======右侧表单内容样式=========*/

.form-item {
	margin-bottom: 15px;
	clear: both;
	display: block;
	overflow: hidden;
}
.form-item .item-label {
	text-align: left;
	height: 35px;
	line-height: 35px;
	width:100px;
	float: left;
	margin-right: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.form-item .item-label .check-tips {
	display: none;
}
.form-item .item-controls {
	float: left;
}
.form-item .item-controls .lead {
	height: 35px;
	line-height: 35px;
}
.form-item .item-controls .check-tips {
	display: block;
	height: 25px;
	line-height: 25px;
}
.form-item a.link-btn {
	float: right;
	margin-left: 10px;
	height: 35px;
	line-height: 35px;
	display: block;
}

/*==============================================================================================*/
/*	消息页面
/*==============================================================================================*/

.message-box {
  overflow: hidden;
  background: #fff;
}
.message-box .message-nav {
  background: #fff;
  height: 55px;
  line-height: 55px;
  border-bottom: 1px solid #efefef;
}
.message-box .message-nav li {
  float: left;
  padding: 0 30px;
}
.message-box .message-nav li a {
  display: block;
  font-size: 16px;
  color: #666;
  position: relative;
}
.message-box .message-nav li.active a {
  color: #FB7827;
}
.message-box .message-nav li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: #FB7827;
}
.message-box .message-list {
  overflow: hidden;
  padding:15px 0px;
}
.message-box .message-list ul li {
  padding: 30px;
  overflow: hidden;
  border: 1px solid #efefef;
  margin-bottom: 20px;
  position: relative;
}

.message-box .message-list ul li .unread:after {
  position:absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #ff0000;
  top: 10px;
  right: 10px;
  z-index: 100;
} 

.message-box .message-list ul li dd {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.message-box .message-list ul li dd h3 {
  font-size: 16px;
	color: #333333;
	width:60%;
  vertical-align: middle;
}
.message-box .message-list ul li dd h3 img{
  width: 28px;
  height: 28px;
  border-radius: 14px;
}
.message-box .message-list ul li dd span {
  color: #b3b3b3;
  font-size: 14px;
}
.message-box .message-list ul li dt {
  overflow: hidden;
}
.message-box .message-list ul li dt p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 18px;
}
.message-box .message-list ul li dt em {
  font-size: 14px;
  color: #b3b3b3;
}
.message-box .message-list ul li dt em i {
  font-size: 14px;
}

/*==============================================================================================*/
/*	优惠券
/*==============================================================================================*/
.coupon-box {
  overflow: hidden;
  background: #fff;
}
.coupon-title {
  overflow: hidden;
	margin-bottom: 10px;
	background-color: #f5f5f5;
	padding:15px;
}
.coupon-title ul {
  overflow: hidden;
  float: left;
}
.coupon-title ul li {
  float: left;
  padding: 0 20px;
}
.coupon-title ul li:last-child {
  border-right: none;
}
.coupon-title ul li a {
  font-size: 16px;
  display: block;
  color: #666;
}
.coupon-title ul li.active a {
  color: #22ad38;
}
.coupon-title ._btn {
  display: block;
  float: right;
  font-size: 16px;
  color: #666;
}
.coupon-list{
	overflow: hidden;
	padding: 10px 0 20px 0;
}
.coupon-list li {
	height: 130px;
	overflow: hidden;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width:32%; margin-right:2%; margin-bottom:10px;
}
.coupon-list li:nth-child(3n){
	margin-right: 0;
}
.coupon-list li .coupon_content{
	padding: 10px 10px 0 10px;
	display: block;
	overflow: hidden;
	background: #fff;
	font-size: 12px;
	color: #333333;
	line-height: 22px;
	flex: 1;
    border: 1px solid #ddd;
}
.coupon-list li .coupon_content ._left {
	display: block;
	overflow: hidden;
	width: 100px;
	margin: 0px auto 10px auto;
	text-align: center;
	float: left;
}
.coupon-list li .coupon_content ._left img{
	width: 100px;
	height: 100px;
	margin: 0 auto;
}
.coupon-list li .coupon_content ._right {
	display: block;
	overflow: hidden;
	width: 60%;
	margin: 0px auto 0px auto;
}	
.coupon-list li .coupon_content ._right .coupon_price{
	display: flex;
	align-items: center;
}
.coupon-list li .coupon_content ._right ._price {
	line-height: 30px;
	color: #ff6113;
	font-family: Impact;
	font-size: 30px;
}
.coupon-list li .coupon_content ._right ._price i {
	font-size: 14px;
	margin: 0 3px 0 0;
}
.coupon-list li .coupon_content ._right ._condition{
	font-size: 12px;
	color: #ff6113;
	background: #fff4ec;
	margin-left: 8px;
	padding: 0 8px;
}
.coupon-list li .coupon_content ._right .coupon_title{
	height: 36px;
	line-height: 18px;
	overflow: hidden;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 8px;
	cursor: default;
}		
.coupon-list li .coupon_content ._right p {
	font-size: 12px;
	color: #999;
	line-height: 16px;
	cursor: context-menu;
}	
.coupon-list li .subbtn  {
	position: relative;
	width: 52px;
	height: 100%;
	padding-right: 18px;
	padding-left: 18px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;;
	display: flex;
	align-items: center;
	background: #ff6113;	
	border-left: #f2f2f2 dotted 2px;
}		
.coupon-list li .subbtn::before {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	content: '';
	position: absolute;
	left: -8px;
	bottom: -8px;
	background-color: #fff;
	z-index: 2;
	border: 1px solid #ddd;
}
.coupon-list li .subbtn::after {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	content: '';
	position: absolute;
	left: -8px;
	top: -8px;
	background-color: #fff;
	z-index: 2;
	border: 1px solid #ddd;
}
.coupon-list li .already-used {
	background: #cbcbcb;
	border-left: #fff dotted 2px;
}

@media (max-width:1400px){
	.coupon-list li{width:49%;margin-right: 2%;}
	.coupon-list li:nth-child(3n){margin-right: 2%;}
	.coupon-list li:nth-child(2n){margin-right: 0;}
}



	@media (max-width:768px){.coupon-list li{width: 100%;}}
	
	@media (max-width:500px){.coupon-list li .coupon_content ._left{ width:60px; height:100px;}
	.coupon-list li .coupon_content ._left img{width:60px; height:60px;}
	.coupon-list li .coupon_content ._right .coupon_title{ height:auto;}
	.coupon-list li .coupon_content ._left{ display:none;}
	.coupon-list li .coupon_content ._right{ height:115px; width:100%;}
	}
/*==============================================================================================*/
/*	高级设置样式
/*==============================================================================================*/

.wallet-box {
  overflow: hidden;
}
.wallet-box .wallet-title {
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #efefef;
}
.wallet-detail {
  overflow: hidden;
  background: #fff;
  padding: 50px 0;
}
.wallet-detail .wallet-detail-balance {
  display: block;
  overflow: hidden;
  width: 100%;
  float: left;
  text-align: center;
  color: #FB7827;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 50px;
}
.wallet-detail .wallet-detail-balance em {
  font-size: 14px;
}
.wallet-detail .wallet-detail-balance p {
  font-size: 14px;
  color: #333;
}
.wallet-detail .wallet-detail-recharge {
  display: block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.wallet-detail .wallet-detail-recharge a {
  margin: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #d9161c;
  color: #fff;
}
.wallet-list {
  overflow: hidden;
  background: #fff;
  margin-top: 20px;
}
.wallet-list .wallet-list-nav {
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
  padding-left: 135px;
  padding-right: 20px;
}
.wallet-list .wallet-list-nav li {
  float: left;
  width: 211px;
  color: #333;
  text-align: center;
  font-size: 14px;
}
.wallet-list .wallet-list-detail {
  overflow: hidden;
  padding: 20px;
}
.wallet-list .wallet-list-detail li {
  padding: 20px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
}
.wallet-list .wallet-list-detail li ._thumb {
  width: 50px;
  height: 50px;
  display: block;
  overflow: hidden;
  margin-right: 70px;
}
.wallet-list .wallet-list-detail li ._thumb img {
  width: 100%;
  display: block;
}
.wallet-list .wallet-list-detail li ._time {
  width: 211px;
  overflow: hidden;
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin-right: 5px;
}
.wallet-list .wallet-list-detail li ._transactions {
  overflow: hidden;
  width: 211px;
  text-align: center;
  font-size: 14px;
  color: #333333;
  margin-right: 5px;
}
.wallet-list .wallet-list-detail li ._amount {
  overflow: hidden;
  width: 211px;
  text-align: center;
  font-size: 14px;
  color: #333333;
  margin-right: 5px;
}
.wallet-list .wallet-list-detail li ._balance {
  overflow: hidden;
  width: 211px;
  text-align: center;
  font-size: 14px;
  color: #333333;
}
/*==============================================================================================*/
/*	修改和支付密码样式
/*==============================================================================================*/
.password-box {
  overflow: hidden;
  background: #fff;
}
.password-box h2 {
  overflow: hidden;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333;
  font-weight: normal;
}
.password-box .ajax-form {
  overflow: hidden;
  padding: 50px 70px;
  width: 480px;
}
.password-box .form_item {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.password-box .form_item input {
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  border: 1px solid #efefef;
  width: 80%;
  padding: 0 10px;
}
.password-box .form_item button {
  width: 120px;
  height: 35px;
  line-height: 35px;
  background: #FB7827;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
.password-box .form_item .form_check_info {
  right: 0;
  left: initial;
  top: 0;
}
.password-box .form_item .form_check_info .tips {
  font-size: 12px;
  height: 40px;
  line-height: 40px;
}

/*==============================================================================================*/
/*	手机绑定样式
/*==============================================================================================*/
.checkmobile-box {
  overflow: hidden;
  padding: 30px 0;
}
.checkmobile-box .step_box {
  overflow: hidden;
  text-align: center;
  padding: 60px 0;
}
.checkmobile-box .step_box dl {
  position: relative;
  display: block;
  float: left;
  width: 33.33%;
  padding: 0px;
  margin: 0px;
}
.checkmobile-box .step_box dl.active b {
  background: #3e6ae1;
}
.checkmobile-box .step_box dt b {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background: #cccccc;
  color: #fff;
  display: block;
  overflow: hidden;
  margin: 0px auto;
	border-radius: 50%;
	z-index: 2;
	position: relative;
}
.checkmobile-box .step_box dt{
	position: relative;
}
.checkmobile-box .step_box dt::before{
	width: 100%;
	height: 2px;
	background: #cccccc;
	content: '';
	position: absolute;
	top:50%;
	margin-top: -2px;
	left: 0;
	z-index: 1;
}
.checkmobile-box .step_box dl.active dt::before{
  background: #3e6ae1;
}
.checkmobile-box .step_box dd {
  line-height: 35px;
  display: block;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  text-align: center;
  margin-top: 5px;
}
.checkmobile-box .ajax-form .form-item .verify_btn {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 37px;
  line-height: 37px;
  border-radius: 4px;
  background: #ededed;
  width: 100px;
}

/*==============================================================================================*/
/*	绑定踢现账号页面样式
/*==============================================================================================*/
.bind-lists {
  overflow: hidden;
  background: #fff;
  padding: 0px;
}
.bind-lists ul li {
  overflow: hidden;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
  cursor: pointer;
}

.bind-lists ul li em {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f5ff;
    color: #3e6ae1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    float: left;
}
.bind-lists ul li em i{
  font-size: 18px;
}
.bind-lists ul li label {
  padding-left: 15px;
  font-size: 14px;
  margin-right: 30px;
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1;
}
.bind-lists ul li ._left {
  float: left;
}
.bind-lists ul li ._left > div {
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1;
}
.bind-lists ul li ._right {
  float: right;
}

/*==============================================================================================*/
/*	提现页面样式
/*==============================================================================================*/

.docash-box {
  overflow: hidden;
}
.docash-box .form_item {
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  background: #fff;
}
.docash-box .form_item:first-child {
  margin-bottom: 10px;
}
.docash-box .form_item label {
  width: 120px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
}
.docash-box .form_item input,
.docash-box .form_item select {
  height: 40px;
  line-height: 40px;
  flex: 1;
  overflow: hidden;
  font-size: 14px;
  color: #b3b3b3;
}
.docash-box .form_item .pull-right {
  font-size: 14px;
  color: #FB7827;
}
.docash-box .form_item i {
  color: #b3b3b3;
  font-size: 14px;
}
.docash-box .form_item span {
  font-size: 14px;
  color: #22ad38;
}
.docash-box .form_item:nth-child(2) {
  border-bottom: 1px solid #efefef;
}
.docash-box .form_item:nth-child(4) {
  background: none;
  justify-content: space-between;
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 14px;
}
.docash-box .form_item p {
  font-size: 14px;
  color: #b3b3b3;
}
.docash-box .form_item:last-child {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #22ad38;
  color: #fff;
  border-radius: 30px;
  padding: 0;
  margin-top: 15px;
}
.docash-box .form_item:last-child button {
  background: none;
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
}

/*==============================================================================================*/
/*	提现明细页面样式
/*==============================================================================================*/

.cash-box {
  overflow: hidden;
  background: #fff;
}
.cash-box h2 {
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #efefef;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  padding: 0 30px;
}
.cash-box .cash-nav {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.cash-box .cash-nav li {
  width: 25%;
  overflow: hidden;
  padding: 15px 0;
  text-align: center;
}
.cash-box .list_item {
  overflow: hidden;
  padding: 0 30px;
}
.cash-box .list_item li {
  overflow: hidden;
  padding: 15px 0;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
	margin-bottom: 15px;
	background-color: #f5f5f5;
}
.cash-box .list_item li span {
  display: block;
  font-size: 14px;
  color: #666;
  width: 25%;
}

/*==============================================================================================*/
/*管理地址页面 Address
/*==============================================================================================*/
.add-box .add-content .form-item .form_check_info {
  position: absolute;
  z-index: 1000;
  left: 0px;
  bottom: -20px;
  font-size: 12px;
}
.add-box .add-content .form-item .form_check_info .tips {
  padding: 0px 2px;
  height: 20px;
  margin: 0px;
  color: #f00;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
}
.add-box .add-content .form-item .form_check_info .tips i {
  font-size: 12px;
}

.address_list {
  overflow: hidden;
  padding: 0;
}
.address_list li {
  position: relative;
  overflow: hidden;
  line-height: 25px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  margin-bottom: 2%;
  width: 32%;
  float: left;
  margin-right: 2%;
  border-radius: 6px;
}
.address_list li:nth-child(3n){
	margin-right: 0;
}
.address_list li dl,.address_list li dd{
	font-size: 14px;
	color: #666;	
}
.address_list li dl a,.address_list li dd a{
	font-size: 14px;
	color: #616161;
}
.address_list li dl h4{
	font-weight: normal;
	margin: 8px 0;
}
.address_list li dl ._address{
	min-height: 40px;
	line-height: 20px;
}
.address_list li dd{
	text-align: right;
}

@media (max-width:991px){
	.address_list li {
		width: 49%;
	}
	.address_list li:nth-child(3n){
		margin-right: 2%;
	}
	.address_list li:nth-child(2n){
		margin-right: 0;
	}
}
@media (max-width:578px){
  .address_list li {
    width: 100%;
    margin-right: 0;
  }
}
/*==============================================================================================*/
/*	订单中心 order
/*==============================================================================================*/

.nodata_list {
  overflow: hidden;
  padding: 50px 0;
  text-align: center;
}
.nodata_list p {
  font-size: 16px;
  color: #333;
  margin: 5px 0;
}
.nodata_list a {
  width: 90px;
  height: 30px;
  line-height: 30px;
  color: #333;
  margin: 10px auto 0;
  font-size: 14px;
  display: block;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
}

/*======================= 订单中心页面样式 ===========================*/
.order-nav {
  display: block;
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 10px;
}
.order-nav ul { padding:10px 0;display: flex;flex-wrap: wrap;}
.order-nav ul li {
  padding: 0 30px;
}
@media (max-width: 1650px) {
  .order-nav ul li {
    padding: 10px 20px;
  }
}
.order-nav ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.order-nav ul li.active a {
  color: #FB7827;
}
.order-nav ul li.active a::before {
  content: "";
  width: 100%;
  display: block;
  height: 2px;
  background: #FB7827;
  bottom: 0;
  position: absolute;
}
.order_list {
  overflow: hidden;
  padding: 10px 0px 20px 0px;
}
.order_list .list_item li {
  overflow: hidden;
  width: 100%;
	margin-bottom: 20px;
	background: #fff;
  border: #eee solid 1px;
}
.order_list .list_item li h2 {
  overflow: hidden;
  display: block;
	font-weight: normal;
	font-size: 12px;
  padding: 10px;
  background: #f8f8f8;
}
.order_list .list_item li h2 ._left{
  color: #666;
  float: left;
}
.order_list .list_item li h2 ._right {
  float: right;
  color: #888;
}
.order_list .list_item li dd {
  display: flex;
  justify-content: space-between;
  padding: 12px 10px;
  position: relative;
  box-sizing: border-box;
}
.order_list .list_item li dd ._thumb img {
  width: 100%;
  display: block;
}
.order_list .list_item li dd ._info {
  flex: 1;
  display: flex;
  overflow: hidden;
	text-align: left;
	padding: 0;
}
.order_list .list_item li dd ._thumb {
  width: 68px;
  height: 68px;
	overflow: hidden;
	float: left;
}
.order_list .list_item li dd ._name {
	text-align: left;
	padding-left: 15px;
	display:block;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
	overflow: hidden;
}
.order_list .list_item li dd ._spec {
  display: block;
  overflow: hidden;
  padding-left: 15px;
  color:#999;
}
.order_list .list_item li dd ._price {
  display: block;
  overflow: hidden;
  color: #FB7827;
}
.order_list .list_item li dd ._count {
  display: block;
  overflow: hidden;
  padding-left: 15px;
   color:#999;
}
.order_list .list_item li dl {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f8f8f8;
	flex-wrap:wrap;
}
.order_list .list_item li dl ol {
  overflow: hidden;
  display: inline-block;
}
.order_list .list_item li dl ol a {
  display: block;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
  background: #e6f7ff;
  border: #6fb3d3 solid 1px;
  font-size: 12px;
  border-radius: 12px;
  text-align: center;
  padding: 0px 20px;
  margin-left: 8px;
  float: right;
}

.order_list .list_item li ol a:nth-child(1) {
    background: #f0f5ff;
    border: #6487cc solid 1px;
}
.order_list .list_item li ol a:last-child { margin-left:0}
.order_list .list_item li dl ol a.cancel{
  background: #fff1f0;
  border: #ff7875 solid 1px;
  box-sizing: border-box;
}

@media (max-width: 480px) {.order_list .list_item li dl ol{ width:100%;}}



/*======================= 订单详情页面样式 ===========================*/

.detail-box {
  overflow: hidden;
}
.detail-box .detail-pro {
  overflow: hidden;
  background: #fff;
  padding: 0 0px 20px;
  border: #eee solid 1px;
}
.detail-box .detail-pro .detail-pro-title {
	overflow: hidden;
	padding: 10px;
  background: #f8f8f8;
}
.detail-box .detail-pro .detail-pro-title li {
  float: left;
  width:20%;
  overflow: hidden;
  text-align: center;
}
.detail-box .detail-pro .detail-pro-title li:first-child {
  width:40%;
}
.detail-box .detail-pro .detail-pro-list{
  display: block;
  overflow: hidden;
}
.detail-box .detail-pro .detail-pro-list li {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  border-bottom: #eee solid 1px;
}
.detail-box .detail-pro .detail-pro-list li:last-child {
  margin-bottom: 0;
  border-bottom: #eee solid 0px;
  padding-bottom: 0px;
}
.detail-box .detail-pro .detail-pro-list li ._info {
	overflow: hidden;
	width:40%;
  margin-right: 1%;
}
.detail-box .detail-pro .detail-pro-list li ._thumb {
	width: 48px;
	height: 48px;
	overflow: hidden;
	float: left;
}
.detail-box .detail-pro .detail-pro-list li ._thumb img {
  width: 100%;
  display: block;
}
.detail-box .detail-pro .detail-pro-list li ._name {
	text-align: left;
	padding-left: 15px;
	display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.detail-box .detail-pro .detail-pro-list li ._spec {
  text-align: center;
  font-size: 14px;
  color: #666;
  width:20%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.detail-box .detail-pro .detail-pro-list li ._price {
  text-align: center;
  font-size: 14px;
  color: #666;
  width:20%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.detail-box .detail-pro .detail-pro-list li ._count {
  text-align: center;
  font-size: 14px;
  color: #666;
  width:20%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.detail-box .detail-pro .detail-pro-list li .total_amount {
  text-align: center;
  font-size: 14px;
  color: #FB7827;
  width: 15%;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.detail-info {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.detail-info ul {
  overflow: hidden;
}
.detail-info ul li {
  width: 49%;
  float: left;
  overflow: hidden;
  line-height: 30px;
  height: 30px;
  text-align: left;
  font-size: 14px;
  color: #333;
  margin-right: 2%;
}
.detail-info ul li:nth-child(2n) {
  margin-right: 0;
}
.detail-info ul li .desc_1,
.detail-info ul li .desc_2,
.detail-info ul li .desc_3 {
  color: #FB7827;
}
.detail-info ._btn {
  overflow: hidden;
  margin-top: 20px;
}
.detail-info ._btn a {
  display: inline-block;
  line-height: 30px;
  height: 30px;
  background: #e6f7ff;
  border: #6fb3d3 solid 1px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  border-radius: 14px;
  margin-right: 10px;
  padding: 0 20px;
}
.detail-info ._btn a:nth-child(1) {
    background: #f0f5ff;
    border: #6487cc solid 1px;
}
.detail-info ._btn a.cancel{
    background: #fff1f0;
    border: #ff7875 solid 1px;
    box-sizing: border-box;
}



@media (max-width:480px){.detail-info ul li{ width:100%;margin-right: 0;}}

/*==============================================================================================*/
/*	分销样式
/*==============================================================================================*/
.account-title {
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  font-size: 18px;
  color: #333;
  font-weight: normal;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.agent_body {
  overflow: hidden;
  background: #fff;
  padding: 30px;
}
.agent_body .agent_info {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.agent_body .agent_info dd {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  border-radius: 50%;
  margin-right: 20px;
}
.agent_body .agent_info dd img {
  width: 100%;
  display: block;
}
.agent_body .agent_info dl {
  overflow: hidden;
}
.agent_body .agent_info dl p {
  font-size: 16px;
  color: #333;
}
.agent_body .agent_info_commission {
  overflow: hidden;
  background-color: #212950;
  background-image: linear-gradient(to top right, #212950, #37447e);
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 20px 20px;
  color: #ffcc00;
}
.agent_body .agent_info_commission .agent_vip {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agent_body .agent_info_commission .agent_vip p {
  height: 35px;
  line-height: 35px;
  font-size: 14px;
}
.agent_body .agent_info_commission .agent_vip .J_open1 {
  height: 35px;
  padding: 0 20px;
  line-height: 35px;
  border: 1px solid #ffcc00;
  border-radius: 30px;
  color: #ffcc00;
}
.agent_body .agent_info_commission .agent_promote {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agent_body .agent_info_commission ol {
  width: 100%;
  height: 35px;
  line-height: 35px;
  border-radius: 30px;
  background: #ffcc00;
  color: #333;
  text-align: center;
  margin: 15px 0 0;
}
.agent_body .agent_index_list ul li {
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  border-bottom: 1px solid #efefef;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}
.agent_body .agent_index_list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agent_body .agent_index_list ul li p {
  font-size: 16px;
}
.agent_body .agent_index_list ul li p i {
  font-size: 20px;
  margin-right: 5px;
}
.share_box {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
}
.backdrop {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 8888;
  filter: alpha(Opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  background-color: #000;
  display: none;
}
.share_box ._body {
  width: 400px;
  height: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  padding: 60px 40px 20px 40px;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: fixed;
  border-radius: 10px;
  z-index: 9999;
}
.share_box ._body img {
  width: 100%;
  display: block;
}

/*==============================================================================================*/
/*	好友面样式
/*==============================================================================================*/
.order_nav {
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #efefef;
}
.order_nav ul li {
  float: left;
  overflow: hidden;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
}
.order_nav ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  position: relative;
}
.order_nav ul li.active a {
  color: #22ad38;
}
.order_nav ul li.active a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #22ad38;
  bottom: 0;
  left: 0;
}
.team_list {
  overflow: hidden;
  padding: 30px;
  background: #fff;
}
.team_list ul li {
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #efefef;
  padding: 10px;
}
.team_list ul li a {
  display: flex;
  align-items: center;
}
.team_list ul li > a div {
  width: 23%;
  text-align: center;
  font-size: 14px;
  color: #666;
}
.team_list ul li ._thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.team_list ul li ._thumb img {
  width: 100%;
  display: block;
}
.team_list ul li ._btn {
  overflow: hidden;
  height: 35px;
  line-height: 35px;
  width: 120px;
  margin: 0 auto;
  background: #FB7827;
  color: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 9;
}
.change_edit {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
  display: none;
}
.change_div {
  width: 400px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
}
.change_div > div {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
}
.change_div .change_name {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}
.change_div .change_button {
  width: 80%;
  display: block;
  background-color: #FB7827;
  color: #ffffff;
  border: none;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  margin: 15px auto 0;
}

/*==============================================================================================*/
/*收藏列表 favorite
/*==============================================================================================*/

.favor_list{
	overflow: hidden;
}
.favor_list .list_item {
    overflow: hidden;
    padding: 0px;
}
.favor_list ul li{
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 2%;
    border: #eee solid 1px;
    padding: 10px;
}
.favor_list ul li:nth-child(4n){
	margin-right: 0;
}
.favor_list ul li a {
    display: block;
}
.favor_list ul li dd {
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
    position: relative;
}
.favor_list ul li dd img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    bottom: 0;
    margin: 0 auto;
    transform: translate(-50%,-50%);
}
.favor_list ul li dl {
    overflow: hidden;
}
.favor_list ul li dl h3 {
    text-align: left;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.favor_list ul li dl p {
    font-size: 20px;
    color: #EF1923;
    text-align: left;
}
.favor_list ul li dl p em {
    font-size: 14px;
}
.favor_list ul li .btn-group {
    overflow: hidden;
    margin-top: 15px;
    opacity: 0.8;
}
.favor_list ul li .btn-group a {
    width: 86px;
    display: inline-block;
    height: 28px;
    text-align: center;
    background: #eee;
    font-size: 12px;
    line-height: 28px;
    border-radius: 3px;
}
.favor_list ul li .btn-group a:last-child {
    background: #FB7827;
    color: #fff;
}
.favor_list ul li:hover {
    border: #ccc solid 1px;
}
.favor_list ul li:hover .btn-group{
	opacity: 1;
}

/*==============================================================================================*/
/*页脚模块 footer
/*==============================================================================================*/
.footer {
  position: relative;
  display: block;
  clear: both;
  background: #ffffff;
  overflow: hidden;
}
.footbd {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  padding: 25px 20px;
  color: #777;
}
.footbd h2 {
  color: #cccccc;
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
}
.footbd h2 i {
  font-size: 18px;
  color: #333;
  margin-right: 5px;
}

.footbd .col {
  width: 180px;
  margin-right: 20px;
  float: left;
}
.footbd .xcol {
  width: 300px;
  float: right;
}
.footbd .xcol .bd {
  display: block;
  overflow: hidden;
}
.footbd .xcol p {
  padding: 5px 0px;
  margin: 0px;
  display: block;
  overflow: hidden;
  color: #e2231a;
  line-height: 30px;
  font-size: 22px;
  font-weight: bolder;
}
.footbd .xcol img {
  margin-bottom: 5px;
  width: 100px;
  background: #fff;
  padding: 5px;
}
.footbd .xcol span {
  display: block;
  overflow: hidden;
  text-align: center;
  width: 100px;
}

.footbd a {
  line-height: 28px;
  color: #888888;
}
.footbd a:hover {
  color: #eeeeee;
}

.footer_box {
  width: 100%;
  padding: 35px 15px;
  clear: both;
  overflow: hidden;
}
.footer_box .container {
	text-align: center;
}
.footer_box a,
.footer_box p {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  color: #9b9b9b;
}

.footbot {
  display: block;
  border-top: #eee solid 1px;
  overflow: hidden;
  padding: 15px 20px;
  margin: 0px;
  line-height: 25px;
  color: #888;
}

.link_box {
  margin-bottom: 10px;
  margin: 0 auto;
  text-align: center;
}
.link_box a {
  color: #888;
  display: inline-block;
}
.link_box a:hover {
  color: #f42424;
}
.link_box .spacer {
  overflow: hidden;
  margin: 0 17px;
  width: 1px;
  height: 11px;
  background-color: #999;
  display: inline-block;
}
.link_box .spacer:last-child {
  display: none;
}
