/*
v0.5
UPDATE: 2016/05/06
Powered by Joyton & dline.com.cn
*/
/** 通用 **/
::selection {
	background: #666;
	color: #fff;
}
::-moz-selection {
 background: #666;
 color: #fff;
}
::-webkit-selection {
 background: #666;
 color: #fff;
}
body {
	background-color: #e7edf5;
	min-height: 1080px;
	position: relative;
}
body > .copyright {
	display: none;
}
/** 大套子 **/
#wrap {
	padding: 0;
}
.fixed_header #wrap {
	padding-top: 50px;
}
/** 载入指示器 **/
#loader {
	display: none\9;
	background-color: #fff;
	opacity: 1;
	position: fixed;
	/*bottom: -100px;*/
	bottom: 90px;
	left: 50%;
	margin-left: -25px;
	transition: all 0.3s;
	z-index: 100;
	padding: 10px;
	border-radius: 100px;
	background-clip: padding-box;
	-webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
#loader.active {
	-webkit-animation: loader_show 0.3s 1 both;
	animation: loader_show 0.3s 1 both;
}
#loader::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border: 5px solid #1e88e5;
	border-top-color: transparent;
	border-radius: 100px;
	background-clip: padding-box;
	-webkit-animation: loader_ani 1s infinite;
	animation: loader_ani 1s infinite;
}
@-webkit-keyframes loader_show {
 0% {
 -webkit-transform: translate(0, 190px);
 opacity: 0;
}
 1% {
 -webkit-transform: translate(0, 190px);
 opacity: 1;
}
 100% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
}
@keyframes loader_show {
 0% {
 transform: translate(0, 190px);
 opacity: 0;
}
 1% {
 transform: translate(0, 190px);
 opacity: 1;
}
 100% {
 transform: translate(0, 0);
 opacity: 1;
}
}
@-webkit-keyframes loader_hide {
 0% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
 30% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
 100% {
 -webkit-transform: translate(0, 190px);
 opacity: 0;
}
}
@keyframes loader_hide {
 0% {
 transform: translate(0, 0);
 opacity: 1;
}
 30% {
 transform: translate(0, 0);
 opacity: 1;
}
 100% {
 transform: translate(0, 190px);
 opacity: 0;
}
}
@-webkit-keyframes loader_ani {
 0% {
 -webkit-transform: rotate(30deg);
 opacity: 1;
}
 50% {
 opacity: 0.5;
}
 100% {
 -webkit-transform: rotate(390deg);
 opacity: 1;
}
}
@keyframes loader_ani {
 0% {
 transform: rotate(30deg);
 opacity: 1;
}
 50% {
 opacity: 0.5;
}
 100% {
 transform: rotate(390deg);
 opacity: 1;
}
}
/** Bootstrap 工具提示 **/
.tooltip-inner {
	font-family: tahoma, "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
	font-size: 12px;
	white-space: nowrap;
}
/** 头部 **/
#header {
	z-index: 10;
	background-color: #fff;
	border: 0;
	border-radius: 0;
	margin: 0;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);/*  -pie-shadow: 0 2px 2px rgba( 0,0,0,.2 );
  behavior: url(./res/js/pie/PIE.htc);*/
}
/*css3pie {
  overflow: hidden;
}*/
#header .navbar-header {
	float: left;
	height: 50px;
	line-height: 50px;
}
#header .navbar-brand {
	position: relative;
	min-width: 350px;
	background-position: left;
	background-repeat: no-repeat;
	background-size: auto 100%;
	-ms-behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
	behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
}
@media (max-width: 700px) {
#header .navbar-brand {
	display: none;
}
}
#header .navbar-brand .material-icons {
	position: absolute;
	top: 2px;
	right: 0;
	opacity: 0;
	font-size: 18px;
	color: #7b7e85;
}
#header .navbar-brand:hover .material-icons {
	opacity: 1;
}
#header_userarea {
	list-style-type: none;
	margin: 0;
	margin-right: -15px;
	margin-left: -15px;
	padding: 0;
}
#header_userarea > li {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	position: relative;
	float: left;
	max-width: 220px;
}
@media (max-width: 700px) {
#header_userarea > li {
	max-width: 130px;
}
#header_userarea .header_btn .name {
	display: none;
}
}
#header_userarea > li.open .dropdown-toggle {
	box-shadow: none;
}
/*#header_userarea > li > a*/
.header_btn {
	display: inline-block;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 100%;
	vertical-align: initial;
	position: relative;
	min-width: 50px;
	text-align: center;
}
.header_btn:hover {
	background-color: #F3F3F3;
}
#header_userarea > li:hover .header_btn > .material-icons {
	color: #333;
}
#header_reg, #header_user {
	margin-right: 10px;
}
#header_reg:after, #header_user:after {
	content: "";
	position: absolute;
	right: -5px;
	top: 10px;
	height: 30px;
	border-right: 1px solid #ccc;
	pointer-events: none;
}
#header_user .dropdown-toggle {
	font-weight: bold;
}
#header .dropdown-menu {
	border: 0;
	margin: 0;
}
#header .dropdown-menu li {
	cursor: pointer;
}
#header_userarea > .divider {
	/*border-right: 1px solid #ccc;*/
	padding: 0;
	min-width: 1px;
	width: 1px;
	background-color: #ccc;
}
#header_avatar {
	width: 30px;
	height: 30px;
}
.header_btn {
	cursor: pointer;
}
.header_btn > .material-icons {
	color: #7b7e85;
	cursor: pointer;
}
.header_btn .material-icons {
	vertical-align: middle;
}
.fixed_header #header {
	position: fixed;
	width: 100%;
}
#header #scroll_to_top {
	display: none;
}
#header #scroll_to_top.active {
	display: inline-block;
}
#sider_collapse_btn {
	/*background-color: #30343d;*/
	display: none;
}
#sider_collapse_btn:hover {
/*color: #fff;
  background-color: #2b2f37;*/
}
#sider_collapse_btn:hover .material-icons {
/*color: #fff;*/
}
@media (max-width: 700px) {
#sider_collapse_btn {
	display: inline-block;
}
}
/** 底部 **/
/** 侧栏 **/
#sider {
	position: absolute;
	top: 50px;
	left: 0;
	/*bottom: 0;*/
	float: left;
	width: 200px;
	/*  background-color: #30343d;
  box-shadow: 2px 0 2px rgba( 0,0,0,.2 );*/
	-webkit-transition: all 0.3s;
}
/*#sider:before {*/
#sider_bg {
	content: "";
	position: fixed;
	/*left: 0;*/
	left: inherit;
	/*top: 0;*/
	top: inherit;
	bottom: 0;
	_position: absolute;
	_clear: both;
 _top: expression( eval( document.documentElement.scrollTop + ( parseInt(this.currentStyle.marginTop, 10) || 0 ) ) );
	float: left;
	width: inherit;
	max-width: inherit;
	background-color: #30343d;
	box-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
	clear: both;/*-webkit-transition: all 0.3s;*/
}
.sider_expand {
	display: block;
	position: relative;
	line-height: 40px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sider_expand .material-icons {
	vertical-align: middle;
	opacity: .2;
	-webkit-transition: all 0.3s;
	cursor: pointer;
}
.sider_expand span {
	opacity: .2;
	-webkit-transition: all 0.3s;
}
.sider_expand:hover {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
}
.sider_expand:hover .material-icons, .sider_expand:hover span {
	opacity: 1;
}
#sider hr {
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: 1px solid #262A31;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.sider_show #sider_scrollbox {
	width: 100%;
	overflow-y: auto;
	overflow-x: visible;
	position: relative;/*z-index: 1;*/
}
#sider_scrollbox::-webkit-scrollbar-thumb {
 background-color: rgba(255, 255, 255, 0.3);
 border-radius: 4px;
}
#sider_scrollbox:hover::-webkit-scrollbar-thumb {
 background-color: rgba(255, 255, 255, 0.6);
}
#sider_scrollbox::-webkit-scrollbar {
 width: 4px;
}
#sider_scrollbox::-webkit-scrollbar-track-piece {
 background-color: rgba(0, 0, 0, 0.2);
 -webkit-border-radius: 0;
}
.sider_topbox {
	text-align: center;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	padding: 10px 0;
}
.sider_topbox .sider_topbox_btngroup .btn {
	margin: 5px 0;
	min-width: 80%;
}
.sider_topbox .sider_topbox_btngroup .btn span {
	padding-left: 5px;
}
.sider_group:hover .sider_group_title {
	background-color: rgba(255, 255, 255, 0.12);
	-pie-background: rgba(255, 255, 255, 0.12);
}
.sider_group_title {
	display: block;
	position: relative;
	line-height: 40px;
	min-height: 40px;
	padding-left: 20px;
	cursor: pointer;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	-pie-background: rgba(255, 255, 255, 0.1);
	behavior: url("/res/js/pie/PIE.htc");
}
.sider_group .sider_group_title:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.15);
	-pie-background: rgba(255, 255, 255, 0.15);
}
.sider_group_title span {
	display: inline-block;
}
.sider_group_title .expand {
	position: absolute;
	right: 13px;
	top: 8px;
	-webkit-transform: rotate(-90deg);
	-webkit-transition: all 0.3s;
}
.sider_group.on .sider_group_title .expand {
	-webkit-transform: rotate(0);
}
.sider_group .sider_group_list {
	display: none;
}
.sider_group.on .sider_group_list {
	display: block;
}
.sider_group .sider_group_list .list-group-item {
	margin-bottom: 0;
	/*min-height: 40px;*/
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
	/* 15px */
	border: none;
	background-color: transparent;
	-webkit-transition: all 0.3s;
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
	behavior: url("/res/js/pie/PIE.htc");
	overflow: hidden;
}
.sider_group .sider_group_list .list-group-item:hover {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.1);
	-pie-background: rgba(0, 0, 0, 0.1);
}
.sider_group .sider_group_list .list-group-item > .material-icons {
	opacity: .5;
}
.sider_group .sider_group_list .list-group-item:hover > .material-icons {
	opacity: 1;
}
.sider_group .sider_group_list .list-group-item span {
	/*  border-left: 1px solid #ccc;
  border-left: 1px solid rgba( 0,0,0,.1 );*/
	margin-left: 15px;
	padding: 0 10px;
	position: relative;
	/*display: inline-block;
  white-space: nowrap;*/
	-webkit-transition: all 0.3s;
	font-size: 16px;
}
.sider_group .sider_group_list .list-group-item span:after {
	content: "";
	position: absolute;
	left: -5px;
	top: 7px;
	height: 26px;
	width: 1px;
	background: rgba(0, 0, 0, 0.1);
	pointer-events: none;
}
.sider_group .sider_group_list .list-group-item.active {
	background-color: #ff3333;
	color: #fff;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.sider_group .sider_group_list .list-group-item.active > .material-icons {
	opacity: 1;
}
.sider_group .sider_group_list .list-group-item.active:hover {
	-pie-background: transparent;
}
#sider .list-group-item .badge {
	font-style: normal;
	background-color: #ff3333;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 11px;
	right: 10px;
	color: #fff;
}
/** 窄侧栏 折叠 **/
.smallsider #sider {
	width: 50px;
}
/*.smallsider #sider:before {*/
.smallsider #sider_bg {
	width: 50px;
	width: inherit;
}
.smallsider #sider .sider_expand .material-icons {
	-webkit-transform: rotate(180deg);
}
.smallsider #sider .sider_expand span, .smallsider #sider .sider_group .sider_group_title span, .smallsider #sider .sider_group .sider_group_list .list-group-item span {
	display: none;
}
.smallsider #sider .list-group-item .badge {
	right: -10px;
}
.smallsider #sider .sider_topbox_btngroup .btn span {
	display: none;
}
/** 侧栏锁定 **/
.fixed_sider #sider {
	position: fixed;
}
.fixed_sider #sider_scrollbox {
	overflow: auto;
}
.fixed_sider #sider_scrollbox::-webkit-scrollbar {
 width: 0;
}
/** 侧栏适配手机版 **/
@media (max-width: 700px) {
#sider {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 80%;
	max-width: 300px;
	left: -100%;
}
.sider_expand {
	display: none;
}
}
.sider_show {
	overflow: hidden;
}
.sider_show #sider {
	left: 0;
}
#shadow {
	width: 0;
	height: 0;
	background-color: #000;
	opacity: 0;
	position: fixed;
	top: 0;
	z-index: 99;
	/* display: none; */
	transition: opacity .4s;
	-webkit-transition: opacity .4s;
	transition-delay: .3s;
	-webkit-transition-delay: .3s;
	cursor: pointer;
}
.sider_show #shadow {
	/* display: block; */
	opacity: 0.7;
	width: 100%;
	height: 100%;
}
.sider_show #sider_scrollbox .tooltip {
	display: none!important;
}
/** 面包屑导航 **/
#breadcrumb {
	margin-left: -25px;
	margin-right: -25px;
	position: relative;
}
#breadcrumb .breadcrumb {
	background-color: #262a31;
	border-radius: 0;
	padding-top: 0;
	padding-bottom: 0;
}
#breadcrumb li {
	line-height: 40px;
}
#breadcrumb .date {
	position: absolute;
	right: 10px;
	top: 0;
	line-height: 40px;
	color: #fff;
	font-size: 12px;
}
@media (max-width: 700px) {
#breadcrumb {
	margin-left: -5px;
	margin-right: -5px;
}
}
/** 主要内容（有侧栏） **/
#main .alert {
	margin-top: 20px;
}
#main {
	padding-left: 225px;
	padding-right: 25px;
	-webkit-transition: all 0.3s;/*overflow: auto;*/
}
.smallsider #main {
	padding-left: 75px;
}
@media (max-width: 700px) {
#main,  .smallsider #main {
	padding-left: 5px;
	padding-right: 5px;
}
}
.form_card {
	/*padding: 30px 20px;*/
	margin: 20px 0;/*min-width: 768px;*/
}
.form_card_title {
	font-size: 14px;
	line-height: 40px;
	margin: 0;
	padding-left: 10px;
	color: #777;
	border-bottom: 1px solid #e6e8ed;
}
.form_card_title .material-icons {
	position: relative;
	top: 6px;
	line-height: 10px;
	padding-bottom: 12px;
}
.form_card_title .pull-right {
	margin-top: 4px;
	margin-right: 10px;
}
.form_card_box {
	padding: 40px;
}
@media (max-width: 700px) {
.form_card_box {
	padding: 40px 10px;
}
}
/** 页面返回等按钮 **/
.pagetool {
	margin-bottom: 10px;
	padding: 5px;
	color: #777;
}
.pagetool .title {
	margin-left: 10px;
	color: #337AB7;
	font-size: 16px;
}
/** 通用胶囊导航 **/
.nav_pill_box {
/*margin: 17px 0;*/
}
.table_count {
	/*margin: 10px 0;*/
	line-height: 74px;
}
.table_count .num {
	font-weight: bold;
}
/** 通用表格 **/
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
	vertical-align: middle;
}
.table_card thead {
	background-color: #f9f9f9;
}
.table_card > thead > tr > th {
	vertical-align: bottom;
	border-bottom: 2px solid #7b7e85;
}
.table_card tr {
	min-height: 60px;
}
.table_card tr .small {
	color: #7b7e85;
}
.table_card_a {
	display: block;
}
/** 单选框 复选框 **/
label.check {
	cursor: pointer;
}
.check input[type="checkbox"], .check input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	outline: 0;
	background-color: transparent;
	border: 0;
	cursor: pointer;
}
.check input[type="checkbox"]::before, .check input[type="checkbox"]::after, .check input[type="radio"]::before, .check input[type="radio"]::after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
	position: relative;
	top: 4px;
	left: 0;
	line-height: 10px;
	padding-bottom: 12px;
	color: #757575;
}
.check input[type="radio"]::before {
	content: "";
}
.check input[type="radio"]:checked::before {
	content: "";
	color: #337ab7;
	-webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
	animation: check_radio 0.2s ease-out 0s 1 normal both;
}
.check input[type="checkbox"]::before {
	content: "";
}
.check input[type="checkbox"]:checked::before {
	content: "";
	color: #337ab7;
	-webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
	animation: check_radio 0.2s ease-out 0s 1 normal both;
}
@-webkit-keyframes check_radio {
 0% {
 -webkit-transform: scale(0);
 opacity: 0;
}
 100% {
 -webkit-transform: scale(1);
 opacity: 1;
}
}
@keyframes check_radio {
 0% {
 transform: scale(0);
 opacity: 0;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}
/** 仪表盘 **/
.dashboard_area {
	margin: 20px -5px;
}
.dashboard_card_wrap {
	padding-bottom: 10px;
}
@media (min-width: 768px) {
.dashboard_card_wrap {
	padding-bottom: 0;
}
}
.dashboard_card {
	padding: 20px;
	text-align: center;
	border-top: 4px solid #30343d;
}
@media (max-width: 700px) {
.dashboard_card {
	padding: 20px 5px;
}
}
.dashboard_card .icon .material-icons {
	font-size: 30px;
	color: #30343d;
}
.dashboard_card .title {
	color: #878789;
}
.dashboard_card .maincon {
	font-size: 18px;
}
.dashboard_card .maincon .num {
	font-size: 24px;
	font-weight: bold;
	padding-left: 3px;
	padding-right: 3px;
}
.dashboard_card .extra {
	color: #a6a7ac;
	font-size: 12px;
}
.index_left .form_card {
	margin-left: -5px;
	margin-top: 0;
}
.index_right .form_card {
	margin-right: -5px;
	margin-top: 0;
}
.index_notice .form_card_box {
	padding: 20px;
}
.index_notice li {
	line-height: 30px;
}
.index_notice a {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.index_support .form_card_box {
	padding: 20px;
}
.index_support li {
	line-height: 30px;
}
/** 仪表概述页 企业/个人名片区 **/
.index_vcard_card {
	text-align: center;
}
.index_vcard_main {
	padding: 20px;
	position: relative;
	display: block;
}
.index_vcard_authorize {
	background-color: #f4f6f9;
	padding: 20px;
}
.index_vcard_main .set {
	position: absolute;
	right: 5px;
	top: 5px;
	opacity: 0;
}
.index_vcard_main:hover .set {
	opacity: 1;
}
.index_vcard_logo {
	background-color: #999;
	padding-top: 36.5%;
	margin-bottom: 10px;
}
.index_vcard_main .title {
	font-size: 18px;
	font-weight: bold;
}
.index_vcard_main .text {
	color: #7b7e85;
}
.index_vcard_authorize .text {
	color: #7b7e85;
}
.index_vcard_authorize .text .num {
	color: #5cb85c;
	font-weight: bold;
}
.index_vcard_authorize .text .num.danger {
	color: #d9534f;
	padding: 0 5px;
}
.index_vcard_authorize .btn {
	margin-top: 10px;
}
/*
有顶条简版登录页面
v0.5
UPDATE: 2016/05/06
Powered by Joyton & dline.com.cn
*/
/** 登陆页面 **/
body.login {
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	-ms-behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
	behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
}
body.login .copyright {
	padding-top: 50px;
	font-size: 12px;
	text-align: center;
	color: #ddd;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}
body.login .copyright {
	display: block;
	padding-bottom: 75px;
}
body.login .copyright a {
	color: #ddd;
	color: inherit;
}
/** 登录界面 **/
.login_card {
	/*padding: 30px 20px;*/
	margin-top: 20px;
}
.login_form {
	padding: 50px;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.login_card legend {
	padding-bottom: 20px;
}
.login_card legend div {
	font-size: 14px;
	font-weight: normal;
	color: #777;
}
.login_card label {
	font-weight: normal;
}
.login_form .form-group {
	position: relative;
	width: 100%;
}
.login_form .form-group input[type=text], .login_form .form-group input[type=email], .login_form .form-group input[type=password] {
	/* padding: 20px 20px 20px 40px; */
	padding: 0 20px 0 40px;
	height: 42px;
	line-height: 42px;
}
.login_form .form-group > .material-icons {
	position: absolute;
	left: 10px;
	top: 9px;
	z-index: 4;
}
.login_form .form-group input[type=checkbox] {
	position: relative;
	top: 2px;
}
.login_form .form-group .help-block {
	margin: 0;
}
.input-group .change_captchas {
	padding: 0;
	border: 0;
	height: 42px;
	padding-left: 10px;
	background-color: transparent;
	display: table-cell;
}
.input-group .change_captchas img {
	height: 100%;
	min-width: 126px;
	min-height: 42px;
}
.help-block {
	display: table-row;
}
.login_form .form-group .cancel {
	position: absolute;
	right: 7px;
	top: 6px;
	z-index: 3;
	padding-left: 0;
	padding-right: 0;
	padding: 3px 0;
	width: 30px;
	border-radius: 100px;
}
.login_card label.check {
	width: 100%;
}
/** 注册界面 **/
.reg_tip {
	display: none;
}
.reg_supplier #reg_tip_supplier, .reg_project #reg_tip_project, .reg_phone_ok #reg_tip_phone {
	display: block;
	line-height: 30px;
}
#reg_step_1 {
	text-align: center;
}
#reg_step_1 .btn {
	width: 80%;
	margin: 20px 20px 10px 20px;
	padding-top: 20px;
}
#reg_step_1 .btn .material-icons {
	display: block;
	margin-bottom: 5px;
}
#reg_step_2 {
	padding-top: 20px;
	display: none;
}
#reg_step_3 {
	padding-top: 20px;
	display: none;
}
#reg_type {
	display: none;
}
/** 重置密码 **/
#resetpassword_step_2 {
	padding-top: 20px;
	display: none;
}
.resetpassword_phone_ok #resetpassword_tip_phone {
	display: block;
	line-height: 30px;
}
/** 修改密码 **/
#password_tip_phone {
	display: block;
	line-height: 30px;
}
#password_step_1 {
	padding-top: 20px;
}
.text_t {
	margin-top: 7px;
}
/** 通用底栏 **/
.bottombar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 -1px 3px rgba(0,0,0,.4);
	z-index: 3;
}
.bottombar_box {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	height: 50px;
	text-align: center;
	font-size: 0;
	color: #6d6d6d;
	display: block;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
}
.bottombar .bottombar_btn {
	margin: 0;
	padding: 0;
	border-radius: 0;
	font-size: 14px;
	line-height: 50px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}
.bottombar .bottombar_part {
	position: relative;
	padding: 0 2.5px;
	font-size: 12px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}
.bottombar .bottombar_part .btn_inner {
	display: block;
	width: 100%;
	line-height: 40px;
}
.bottombar .bottombar_part.half {
	-webkit-box-flex: .5;
	-webkit-flex: .5;
	flex: .5;
}
.bottombar_part .bottombar_text {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.bottombar_text .bottombar_text_box {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.bottombar .bottombar_part .btn_hascountdown {
	line-height: 22px;
	font-size: 14px;
	height: 40px;
}
.bottombar .bottombar_part .btn_hascountdown .countdown {
	line-height: 15px;
	font-size: 12px;
	opacity: .8;
}
/** 一级底栏 **/

#index_bottombar {
	background-color: #f4f4f4;
}
#index_bottombar_box {
}
.bottombar_part .btn_hasicon {
	display: block;
	cursor: pointer;
	color: #4f3a24;
}
.bottombar_part .btn_hasicon .icon {
	font-size: 25px;
	line-height: 1;
}
.bottombar_part .btn_hasicon span {
	display: block;
	vertical-align: top;
	font-size: 12px;
}
.bottombar_part.hasnew:after {
	content: "";
	position: absolute;
	right: 50%;
	top: 0;
	margin-right: -20px;
	display: block;
	width: 10px;
	height: 10px;
	text-align: center;
	background-color: #ef3a3a;
	color: #fff;
	border-radius: 100px;
	padding: 2px;
	font-size: 0;
}
.bottombar_part.active .btn_hasicon, .bottombar_part:hover .btn_hasicon {
	color: #0081e7;
}
.bottombar_part .btn_hasicon .active_show, .bottombar_part.active .btn_hasicon .active_hide {
	/*visibility: hidden;*/
	display: none;
}
.bottombar_part.active .btn_hasicon .active_show, .bottombar_part .btn_hasicon .active_hide {
	/*visibility: visible;*/
	display: inline-block;
}
/***************************个人中心****************************/
.consumer_me {
}
.consumer_me_card {
}
.consumer_me_item {
	height: 60px;
	line-height: 60px;
	display: block;
	color: #666;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
}
.consumer_me_item .material-icons {
	line-height: 60px;
	vertical-align: middle;
}
.consumer_me_item .lable {
}
.consumer_me_item .enter {
	position: absolute;
	right: 10px;
}
/*****我的订单*****/
.consumer_myorder {
}
.myorder_box {
}
.myorder_item {
	border-radius: 5px;
	overflow: hidden;
}
.myorder_item_title {
	position: relative;
	display: block;
	border-bottom: 1px solid #e8e8e8;
	border-top: 2px solid #4f3a24;
	line-height: 40px;
	height: 40px;
	padding: 0 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding-right: 120px;
	background-color: #fbfbfb;
}
.myorder_item_title .text {
	font-size: 12px;
}
.myorder_item_title .state_box {
	position: absolute;
	right: 10px;
	top: 0;
	color: #4f3a24;
	font-size: 12px;
}
.myorder_list {
	display: block;
	padding-top: 5px;
	min-height: 80px;
}
.myorder_list_box {
	position: relative;
	padding-left: 75px;
}
.myorder_list .cover_wrap {
	width: 60px;
	position: absolute;
	left: 5px;
}
.myorder_list .cover_wrap .cover {
	width: 100%;
	height: 0;
	padding-top: 100%;
	background-image: url(../img/img_blank.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #f4f4f4;
}
.myorder_list .title_wrap {
}
.myorder_list .title_wrap .title {
	padding-top: 5px;
	color: #333;
}
/*****我的卡券*****/
#tab {
	font-size: 0;
}
#tab .tab {
	width: 100%;
	min-height: 130px;
	color: #fff;
	font-size: 14px;
	margin-top: 10px;
	display: none;
}
#tab .active {
	color: #555;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
}
#mycard_tab_btn {
	width: 50%;
	text-align: center;
	font-size: 14px;
	display: inline-block;
	line-height: 40px;
	border-bottom: 1px solid #ddd;
	border-radius: 4px 4px 0 0;
	cursor: pointer;
  /* color:#fff;
  background-color:#4f3a24; */
}
/*卡券模板通用*/
.stamp {
	padding: 0 10px;
	position: relative;
	overflow: hidden;
  margin-bottom:10px;
}
.stamp:before {
  content: ' ';
  width: 0;
  height: 100%;
  position: absolute;
  top: 10px;
  border-right: 10px dotted white;
  left: -5px;
}
.stamp:after {
 content: ' ';
  width: 0;
  height: 100%;
  position: absolute;
  top: 10px;
  border-right: 10px dotted white;
  right: -5px;
}
.stamp i {
	position: absolute;
	right: -100px;
	top: 45px;
	height: 190px;
	width: 390px;
	background-color: rgba(255,255,255,.15);
	transform: rotate(-30deg);
}
.stamp .par {
	float: left;
	padding: 12px 10px;
	text-align: left;
}
.stamp .par{
	color: #fff;
}
.stamp .par .title {
	font-size: 16px;
	color: #fff;
	margin-right: 5px;
}
.stamp .par .num{
  font-size:12px;
}
.stamp .par .title{
  padding:5px 0;
}
.stamp .par .cishu{}
.stamp .par .sign {
	font-size: 34px;
}
.stamp .par sub {
	position: relative;
	top: -5px;
	color: rgba(255,255,255,.8);
}
.stamp .copy {
  float:right;
	padding:20px 10px 10px;
	vertical-align: text-bottom;
	font-size: 14px;
	color: rgb(255,255,255);
  text-align:right;
	border-left: 2px dashed rgba(255,255,255,.3);
}
.stamp .copy p {
	font-size: 14px;
}


.stamp01 {
	background: #F39B00;
}
.stamp02 {
	background: #0688e4;
}

.consumer_myaddress .added_address {
  margin-top:15px;
}














/******** 滑出面板 ********/
.subplate_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index:9;
}
.subplate {
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
  z-index: 6;
  overflow: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.subplate_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.subplate_wrap.hide {
  visibility: hidden;
}
.subplate_wrap.hide .subplate {
  -webkit-transform: translate(0, 100%);
}
.subplate_wrap.hide .mask {
  opacity: 0;
}
/*
.subplate_wrap .btn_cancel {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 100px;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
*/
.subplate_wrap .subplate_title {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: #858585;
  margin-bottom: 10px;
}

.subplate_wrap .bottombar {
  z-index: 7;
  box-shadow: none;
}

/** 通用底栏 **/
.bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -1px 3px rgba(0,0,0,.4);
  z-index: 2;
}
.bottombar_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: 50px;
  text-align: center;
  font-size: 0;
  color: #6d6d6d;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.bottombar .bottombar_btn {
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part {
  position: relative;
  padding: 0 2.5px;
  font-size: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.bottombar .bottombar_part .btn_inner {
  display: block;
  width: 100%;
  line-height: 40px;
}
.bottombar .bottombar_part.half {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  flex: .5;
}

.bottombar_part .bottombar_text {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.bottombar_text .bottombar_text_box {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.bottombar .bottombar_part .btn_hascountdown {
  line-height: 22px;
  font-size: 14px;
  height: 40px;
}
.bottombar .bottombar_part .btn_hascountdown .countdown {
  line-height: 15px;
  font-size: 12px;
  opacity: .8;
}


/******** 通用黑色遮罩 ********/
.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#shadow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 5;
  display: none;
}
.shadow_show {
	overflow: hidden;
  position: fixed;
  /*position: absolute;*/
  width: 100%;
  height: 100%;
}
/** 选择收货地址 **/

.item_receipt {
  margin-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.item_receipt_box {
  position: relative;
  display: block;
}
.item_receipt .name,
.item_receipt .phone {
  width: 50%;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 10px;
}
.item_receipt .phone {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
.item_receipt .address {
  padding-top: 5px;
  color: #666;
  padding-bottom: 10px;
}
.item_receipt .address em {
  color: #0081e6;
  margin-right: 5px;
  font-style: normal;
  font-weight: bold;
}

.item_receipt.active {
  border: 2px solid #00c525;
}
.item_receipt.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 20px solid #00c525;
  border-left: 20px solid transparent;
}
.item_receipt.active:after {
  content: "\e5ca";
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 24px;
  height: 24px;
  color: #00c525;
}
.item_receipt .manage_box {
  border-top: 1px solid #e8e8e8;
  text-align: right;
  position: relative;
  min-height: 40px;
  padding-right: 5px;
}
.state_manage .item_receipt .manage_box {
  display: block;
}
.item_receipt.active .manage_box {
  padding-right: 30px;
}
.list_receipt .manage_box .btn {
  line-height: 30px;
  height: 30px;
  width: 40px;
  margin-top: 5px;
  margin-right: 5px;
}
.item_receipt .tag_wrap {
  display: inline-block;
}

.item_receipt .manage_box .check_defaultaddress {
  position: absolute;
  top: 0;
  left: 0;
}
.item_receipt .manage_box .check_homeorcom {
  padding-right: 5px;
}
.item_receipt .manage_box .form_check input[type="checkbox"],
.item_receipt .manage_box .form_check input[type="radio"] {
  margin-right: 0;
}
.item_receipt .manage_box .form_check span {
  font-size: 12px;
}





.subpage_select_receipt .main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  padding-bottom: 60px;
}

/** 表单 通用 **/

.card_form {
  padding: 15px 10px;
  margin-bottom: 5px;
}
/*.card_form .form_item:last-of-type,*/
.card_form .form_item:last-child {
  border-bottom: none;
}

/*select.form_input*/
.form_check input[type="checkbox"],
.form_check input[type="radio"]
.form_input[type="text"],
textarea.form_input,
.appearance_none {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  outline: none;
}



.form_item {
	display: block;
	position: relative;
	font-size: 0;
	padding: 0;
  font-size: 14px;
  border-bottom: 1px solid #e8e8e8;
}

.form_label {
  float: left;
	color: #8c8c8c;
	display: block;
	/*width: 20%;*/
  line-height: 40px;
	position: absolute;
	top: 0;
	left: 0;
  font-size: 14px;
  z-index: 1;
}
.form_item_con {
  position: relative;
  padding-left: 80px;
  width: 100%;
  min-height: 40px;
}
.form_static {
  /*border: 1px solid transparent;*/
  line-height: 1;
  min-height: 40px;
  padding: 12px 0;
  font-size: 16px;
}
.form_input {
  /*background-color: #f4f4f4;*/
  border: 0;
  line-height: 40px;
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  font-family: inherit;
  max-width: 100%;
  display: inline-block;
  outline: none;
}

.form_check {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
}
.form_check input[type="checkbox"],
.form_check input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin-right: 10px;
}
.form_check input[type="checkbox"]:before,
.form_check input[type="checkbox"]:after,
.form_check input[type="radio"]:before,
.form_check input[type="radio"]:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  position: relative;
  top: 6px;
  left: 0;
  line-height: 10px;
  padding-bottom: 12px;
  color: #ddd;
}
.form_check input[type="radio"]:before {
  content: "";
}
.form_check input[type="radio"]:checked:before {
  content: "";
  color: #0081e6;
  /*-webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;*/
}

.form_check input[type="checkbox"]:before {
  /*content: "";*/
  content: "";
}
.form_check input[type="checkbox"]:checked:before {
  /*content: "";*/
  content: "\e86c";
  color: #0081e6;
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}

@-webkit-keyframes check_radio {
  0%{-webkit-transform:scale(0); opacity:0}
  100%{-webkit-transform:scale(1); opacity:1}
}
@keyframes check_radio {
  0%{transform:scale(0); opacity:0}
  100%{transform:scale(1); opacity:1}
}
/*
.form_imgupload {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
}*/
.form_item .cover {
  background-color: #f4f4f4;
  background-image: url(../img/img_blank.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.form_item .cover,
.form_item .avatar {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #fff;
  margin: 0 0 0 auto;
}
.form_imgupload_box {
  font-size: 0;
}



.form_item_plane .form_item_con {
  text-align: right;
}
.form_item_plane .form_item_con .form_input {
  width: 100%;
  /*background-color: transparent;*/
  text-align: right;
  padding: 0;
}
.form_item_plane .form_item_con .form_input:focus {
  outline: none;
}
.form_item_plane .form_item_con textarea.form_input {
  line-height: 1.2;
  padding-top: 10px;
  min-height: 80px;
  text-align: left;
}

.form_item_tips {
  padding: 5px 0;
}
.form_item_tips .form_item_con {
  min-height: initial;
}
.form_item_tips .form_static {
  text-align: left;
  background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;
  padding: 5px 10px;
  line-height: 1.2;
  font-size: 14px;
  min-height: initial;
}
.form_item_tips .form_static small {
  color: #ef3a3a;
}
.form_item_tips.form_item_plane .form_label {
  display: none;
}
.form_item_tips.form_item_plane .form_item_con {
  padding-left: 0;
}
.form_item_tips .form_static hr {
  margin: 5px 0;
  border: 0;
  border-bottom: 1px dotted #c8c8c8;
}
.form_item_con select.form_input {
  background-color: transparent;
}
.form_item_plane select.form_input {
  direction: rtl;background-color: transparent;
}
.form_item_plane select.form_input option {
  direction: ltr;
}

.form_textarea .form_label {
  position: relative;
}
.form_textarea .form_item_con {
  padding-left: 0;
  clear: both;
}
.form_textarea .form_item_con textarea.form_input {
  padding-top: 0;
}

.form_help {
  text-align: left;
  /*background-color: #FEFFD9;
  border: 1px dotted #c8c8c8;*/
  padding: 5px 0;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 12px;
  color: #858585;
}
.form_item_plane .form_help {
  text-align: right;
}
.haserror .form_help {
  padding: 5px;
  border-color: #FFC6C6;
  color: #ef3a3a;
  background-color: #FEFFD9;
}

.form_unit {
  position: absolute;
  top: 0;
  right: 0;
  color: #8c8c8c;
  line-height: 40px;
  height: 40px;
}
.form_item_con .form_input.has_unit {
  padding-right: 40px;
}




/******** 通用富文本内容 ********/
.richtext {
  font-size: 14px;
/*   line-height: 1.5; */
  overflow-y: hidden;
  overflow-x: auto;
}
.richtext img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.richtext p {
  max-width: 100%;
  /*text-indent: 2em;*/
}
.richtext .table {
  overflow-y: hidden;
  overflow-x: auto;
}
.richtext table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;  
  border-spacing: 0;
  text-align: left;
/*   margin-bottom: 60px; */
  overflow: auto;
}
.richtext table caption {
  text-align: left;
  padding: 10px 0;
  font-weight: bold;
}
.richtext table caption small {
  font-size: 12px;
}
.richtext th,
.richtext td {
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #fff;
}
.richtext th {
  font-size: 14px;
  padding: 10px;
  background-color: #F3F3F3;
}
.richtext .face {
  display: inline-block;
}



/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2018/08/
 **/
#poptips {
	display: none;
	z-index:10001;
}
.poptips_show {
	overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
	display: block;
	/*cursor: pointer;*/
}
#poptips:before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index:899;
}
#poptips .poptips_box {
	display: inline-block;
	position: fixed;
	top: 30%;
	left: 50%;
  min-width: 300px;
  max-width: 600px;
	margin: 0 auto;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	background-color: #fff;
	padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0,0,0,.6);
	z-index: 900;
}
#poptips .title {
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}
#poptips .con {
	color: #757575;
	font-size: 14px;
  overflow: auto;
}
#poptips .con.center {
	text-align: center;
}
#poptips .con strong {
	color: #ef3a3a;
}
#poptips .con hr {
  margin: 10px 0;
}
#poptips .btn_group {
	padding-top: 20px;
	display: -webkit-box;
  display: -webkit-flex;
  display: flex;
	-webkit-flex-flow: row;
	flex-flow: row;
}
#poptips .btn_group .btn {
	display: inline-block;
	font-size: 12px;
	line-height: 40px;
	background-color: #0081e6;
	color: #fff;
  width: 100%;
	-webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
	cursor: pointer;
	font-weight: bold;
}
#poptips .btn_group .cancel {
	background-color: #e5e5e5;
	color: #424242;
	margin-right: 10px;
}

.ie8 #poptips .poptips_box {
  left: 40px;
  right: 40px;
  border: 1px solid #c8c8c8;
}


/******** 通用弹出 ********/

#poptips {
	display: none;
	z-index:10001;
	color: #333;
}
.poptips_show {
	overflow: hidden;
	/*position: fixed;*/
	position: absolute;
	width: 100%;
	height: 100%;
}
.poptips_show #poptips {
	display: block;
	/*cursor: pointer;*/
}
@-webkit-keyframes poptips_ani {
	0% {
		-webkit-transform: translate(-50%, -150%);
	}
	85% {
		-webkit-transform: translate(-50%, 5%);
	}
	100% {
		-webkit-transform: translate(-50%, 0);
	}
}
@keyframes poptips_ani {
	0% {
		transform: translate(-50%, -150%)/* perspective( 100px ) rotateX(-10deg)*/;
	}
	85% {
		transform: translate(-50%, 5%)/* perspective( 100px ) rotateX(.5deg)*/;
	}
	100% {
		transform: translate(-50%, 0)/* perspective( 100px ) rotateX(0deg)*/;
	}
}
#poptips:before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 899;
}
#poptips .poptips_box {
	display: inline-block;
	position: fixed;
	top: 30%;
	left: 50%;
	min-width: 300px;
	max-width: 600px;
	margin: 0 auto;
	/*  -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);*/
	background-color: #fff;
	padding: 20px;
	border-radius: 3px;
	box-shadow: 0 3px 7px rgba(0,0,0,.6);
	z-index: 900;
	-webkit-animation: poptips_ani .7s 1 both;
	animation: poptips_ani .7s 1 both;
}
#poptips .title {
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
	color: #333;
	font-size: 14px;
}
#poptips .con {
	color: #757575;
	font-size: 14px;
	overflow: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
#poptips .con.center {
	text-align: center;
}
#poptips .con strong {
	color: #ef3a3a;
}
#poptips .con hr {
	margin: 10px 0;
}
#poptips .btn_group {
	padding-top: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row;
	flex-flow: row;
}
#poptips .btn_group .btn {
	text-align: center;
	display: inline-block;
	font-size: 12px;
	line-height: 40px;
	background-color: #0081e6;
	color: #fff;
	width: 100%;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 0 1px 5px rgba(0,0,0,.3);
}
#poptips .btn_group .cancel {
	background-color: #e5e5e5;
	color: #424242;
	margin-right: 10px;
	box-shadow: none;
}

.ie8 #poptips .poptips_box {
	left: 40px;
	right: 40px;
	border: 1px solid #c8c8c8;
}
@media (min-width: 320px) {
	#poptips .poptips_box {
		max-width: 310px;
	}
}
@media (min-width: 350px) {
	#poptips .poptips_box {
		max-width: 340px;
	}
}

@media (min-width: 480px) {
	#poptips .poptips_box {
		max-width: 400px;
	}
}




