@charset "utf-8";

.main {}

.collapse {
	display: none;
}

.collapse.show {
	display: block;
}

/*  */
.arrow {
	position: relative;
	margin-left: 5px;
}

.arrow:after {
	content: " ";
	display: inline-block;
	height: 8px;
	width: 8px;
	border-width: 0 0 1px 1px;
	border-color: rgba(55, 55, 55, 0.6);
	border-style: solid;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	position: absolute;
	top: 50%;
	margin-top: -5px;
	right: 0px;
}

.down {
	position: relative;

}

.down:after {
	content: " ";
	display: inline-block;
	width: 0px;
	height: 0px;
	border-top: 6px solid #333;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 10px;
}


.up {
	position: relative;


}

.up:after {
	content: " ";
	display: inline-block;
	width: 0px;
	height: 0px;
	border-bottom: 6px solid #333;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 0px;
}

/*顶部-s*/
.top_header_out {
	position: relative;
	top: 0;
	z-index: 40;
	left: 0;
	width: 100%;
	height: 44px;
}

.top_header {
	font-size: 14px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	color: #000;
	width: 100%;
	position: fixed;
	background: #f5f5f5;
}

.top_header .top_l {
	position: absolute;
	top: 0;
	left: 0;
}

.top_header .top_l .link_a {
	font-size: 14px;
	padding: 0 10px;
	display: block;
	color: #000;
}

.top_header .top_l .link_a .back-icon {
	width: 18px;
	height: 18px;
}

.top_header .top-title {
	color: #333;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}




.top_header .top_r {
	position: absolute;
	top: 0;
	right: 0;
}

.top_header .top_r .link_a {
	font-size: 14px;
	padding: 0 10px;
	color: #000;
	display: block;
}

.top_header .top_r .link_a .icon_img {
	width: 20px;
	height: 20px;
	margin-bottom: 5px;
}

/*======================底部菜单 =========================*/
.tabbar_out {
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
}

.tabbar {
	position: fixed;
	z-index: 5;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 60px;
	background: #fff;
	border-top: solid 1px #f9f9f9;
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.tabbar .tabbar-item {
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex-flex: 1;
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	position: relative;
}

.tabbar .tabbar-item .link_a {
	font-size: 14px;
	background: none;
	color: #282828;
	text-align: center;
	display: block;
	padding: 5px 0;
}

.tabbar .tabbar-item.active .link_a {
	color: #fc4141;
}

.tabbar .tabbar-item .link_a .tabbar-icon {
	display: block;
	margin: 0 auto;
	width: 26px;
	height: 26px;
}

.tabbar .tabbar-item .link_a p {
	font-weight: 400;

}


/*****开始状态********/
.tabbar .tabbar-item:nth-of-type(1) .tabbar-icon {
	background-image: url('../static/tabbar/ic_index.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.tabbar .tabbar-item:nth-of-type(2) .tabbar-icon {
	background-image: url('../static/tabbar/ic_share.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.tabbar .tabbar-item:nth-of-type(3) .tabbar-icon {
	background-image: url('../static/tabbar/ic_zero.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.tabbar .tabbar-item:nth-of-type(4) .tabbar-icon {
	background-image: url('../static/tabbar/ic_my.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

/****选中状态***/
.tabbar .tabbar-item:nth-of-type(1).active .tabbar-icon {
	background-image: url('../static/tabbar/ic_index_select.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.tabbar .tabbar-item:nth-of-type(2).active .tabbar-icon {
	background-image: url('../static/tabbar/ic_share_select.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}


.tabbar .tabbar-item:nth-of-type(3).active .tabbar-icon {
	background-image: url('../static/tabbar/ic_zero_select.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.tabbar .tabbar-item:nth-of-type(4).active .tabbar-icon {
	background-image: url('../static/tabbar/ic_my_select.png');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

/* */
.top-nav-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;

	z-index: 8;

	background: #FFFFFF;
	border-bottom: 1px solid #f2f2f2;
}



.top-nav-tab .tabs-item {
	width: 100%;
	line-height: 42px;
	text-align: center;
	position: relative;
}



.top-nav-tab .tabs-item .tab_a {
	display: block;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	justify-content: center;
	flex: 1 1 0%;
	padding: 0px 10px;
}

.top-nav-tab .tabs-item.tab-active .tab_a {
	color: #fc4141;
}

.top-nav-tab .tabs-item.tab-active:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
	margin: 0 auto;
	right: 0;
	height: 3px;
	background: #fc4141;
}

.tab-con {
	display: none;
}

/* 暂无内容 */


.no-content {
	position: relative;
	width: 140px;

	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	overflow: hidden;
	padding: 70px 0;
	text-align: center;
}

.no-content .icon-i {
	width: 140px;
	display: block;
	margin: 0 auto;
}

.no-content .icon-i .icon_img {
	width: 100px;
	margin: 0 auto;
}

.no-content .text-p {
	font-size: 14px;
	line-height: 40px;
	color: #999;
	text-align: center;
}

/*  */
.mp_minous.disable {
	cursor: default;
	color: #c5c5c5 !important;
}

.plus .div_span {
	width: 35px;
	line-height: 25px;
	font-size: 14px;
	display: block;
	float: left;
	border: 1px solid #ddd;
	text-align: center;
	color: #686868;
	background: #fff;
	cursor: pointer;
}

.plus .div_span .input-num {
	font-size: 14px;
	outline: none;
	border: 0;
	color: #686868;
	width: 100%;
	text-align: center;
	background: transparent;
}

.mp_minous {
	border-radius: 3px 0 0 3px;
}

.mp_mp {
	margin: 0 3px;
}

.mp_plus {
	border-radius: 0 3px 3px 0;
}

/* =====表单===== */
.setup-form {
	box-sizing: border-box;

}

.setup-form .setup-group {
	background: #FFFFFF;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	border-radius: 5px;
	width: 100%;
	position: relative;
	box-sizing: border-box;


}

.setup-form .form-txt {
	font-size: 15px;
	color: #000;
}

.setup-form .txb {
	min-width: 50px;
	font-size: 12px;


	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 15px;
	line-height: 21px;
	color: #f54528;

	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
}

.setup-form .setup-group .form-label {
	min-width: 100px;
	font-size: 15px;
	line-height: 46px;
	color: #000;
}

.setup-form .setup-group .form-label.short {
	min-width: 50px;
}

.setup-form .form-tit {
	font-size: 15px;
	color: #666;
}

.setup-form .uploadimg {
	width: 40px;
	height: 40px;
}

.setup-form .setup-group .form-control {
	background: #FFFFFE;
	width: 100%;
	height: 46px;
	line-height: 46px;
	font-size: 15px;
	display: flex;
	align-items: center;
	border: none;
	outline: none;
	box-sizing: border-box;
	color: #000;
}

.setup-form .setup-group .form-control.big-ipt {
	font-size: 33px;
	margin-left: 10px;
	font-weight: 400;
	height: 46px;
	line-height: 46px;
}

.setup-form .setup-group .form-control.graybg {
	background: #F7F7F7 !important;
	height: 41px;
	line-height: 41px;
}

.setup-form .setup-group .form-select {
	background: none;
	width: 100%;
	height: 42px;
	padding: 0;
	line-height: 42px;
	font-size: 15px;
	color: #0081ff;

	display: block;
	border: none;
	outline: none;
	box-sizing: border-box;
	vertical-align: top;
}

.setup-form .setup-group .form-unit {
	min-width: 22px;
	line-height: 40px;
	font-size: 22px;

	color: #000;
}


.setup-form .setup-group .btn-a {
	min-width: 90px;
	margin-left: 10px;
	background: transparent;
	line-height: 30px;

	font-size: 13px;
	color: #fff;
	background-color: #f54528;
	border-radius: 25px;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
}

.setup-form .setup-group .btn-link {
	min-width: 50px;
	font-size: 12px;
	margin-left: 10px;
	line-height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #0081ff;
	font-size: 14px;
	color: #0081ff;
	border-radius: 30px;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
}



.setup-form .setup-group .btn-code {
	background: transparent;
	min-width: 60px;
	text-align: right;
	font-size: 14px;
	color: #FE5745;
	text-decoration: none;
}


.setup-form .setup-group .form-textarea {
	background: #f6f7f8;
	color: #16171b;
	font-size: 15px;
	line-height: 21px;
	width: 100%;
	min-height: 100px;
	padding: 10px;
	text-align: left;
	-webkit-user-select: text;
	outline: none;
	-webkit-appearance: none;
	height: auto;
	resize: none;
	box-sizing: border-box;
	border: solid 1px #fff;
}

.form-submit {
	width: 100%;
	clear: both;
	padding: 15px 30px;
	margin-top: 40px;
	box-sizing: border-box;
}

.form-submit-btn {
	font-family: pmMedium;
	width: 100%;
	height: 46px;
	line-height: 46px;
	margin: 0 auto;
	font-size: 18px;
	text-align: center;
	display: block;
	color: #fff;
	border-radius: 10px;
	background: #f54528;
	text-decoration: none;
	position: relative;
	z-index: 1;
}


/* 上传图片 */
.ID_card {}

.ID_card .title {
	font-size: 15px;
	margin-bottom: 10px;
	color: #000;
}

.ID_card .title span {
	color: #000;
}

.ID_card .yyzz img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 180px;

}

.icon-del {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 0;
	right: 0;
	background: url(../static/icon/closepic.png) no-repeat;
	background-size: 100% 100%;
	z-index: 8;
	display: none;
	border-radius: 0 8px 0 0;
}

.ID_card_file {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 180px;

}

.ID_card_file .file-btn {
	width: 100%;
	height: 180px;
	padding-top: 60px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	display: block;
	color: #999;
	background: #f1f4f8;
	border-radius: 8px;
	position: relative;
	border: 1px solid #f1f4f8;
}




.ID_card_file .file-btn .ic_add {
	width: 40px;
	height: 40px !important;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
}



/* 二维码 */

.ID_card .yyzz {
	width: 100%;
	height: 180px;
	margin-bottom: 10px;
	position: relative;

	box-sizing: border-box;
	text-align: center;
}

.ID_card .yyzz.code {
	width: 140px;
	margin: 0 auto;
	height: 140px;
	border-radius: 8px;


}

.ID_card .yyzz.code .ID_card_file,
.ID_card .yyzz.code .ID_card_file .file-btn,
.ID_card .yyzz.code img {
	height: 140px;
	border-radius: 8px;
}



.ID_card .seeimg {
	width: 100%;
}

/* 凭证 */
.ID_card .yyzz.fkpz {
	width: 140px;
	height: 140px;
	border-radius: 8px;


}

.ID_card .yyzz.fkpz .ID_card_file,
.ID_card .yyzz.fkpz .ID_card_file .file-btn,
.ID_card .yyzz.fkpz img {
	height: 140px;
	border-radius: 8px;
}

/* 弹出大图 */

.aler-mask {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 41;
	background: rgba(0, 0, 0, 0.4);

}

.alert-grskm {
	width: 100%;
	height: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 42;
	transform: translate3d(-50%, -50%, 0);
	text-align: center;
}

.alert-grskm img {
	max-width: 100%;
	max-height: 100%;
}



/* ===== */

.search_box {
	background: #fff;
	box-shadow: 0 1px 50px rgba(89, 89, 89, 0.1);

	padding: 10px 10px;
	color: #000;
	font-size: 14px;

}

.search {
	width: 100%;


}

.search_select {
	background: #fff;
	font-size: 14px;
	box-sizing: border-box;
	display: block;
	width: 100px;
	height: 35px;
	line-height: 35px;
	color: #000;
	vertical-align: middle;
	border: 1px solid #fff;
	padding: 0 6px;
	border-radius: 3px;


}

.search_control {
	background: #fff;
	font-size: 14px;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 0 auto;
	height: 35px;
	line-height: 35px;
	color: #000;
	vertical-align: middle;
	border: 1px solid #eee;
	padding: 0 6px;
	border-radius: 3px;


}

.lable_data {
	width: 10px;
	font-size: 14px;
	position: relative;
	min-width: 70px;
	vertical-align: middle;
}

.search_control.datachioce {
	background: url(../static/icon/data.png) no-repeat 10px center;
	background-size: 16px 16px;
	padding-left: 35px;
}

.search_span {
	width: 10px;
	position: relative;
	min-width: 70px;
	vertical-align: middle;
}

.search_btn {
	width: 50%;
	max-width: 80px;
	margin: 0 auto;
	line-height: 35px;
	font-size: 13px;
	border-radius: 3px;
	text-align: center;
	box-sizing: border-box;
	color: #fff;
	background: #e8504b;
}

.search_btn.bggreen {
	background: #55b949;
}

.search_btn.w100 {
	width: 100%;
}

/*==============页码容器================*/
.pagelist {

	white-space: nowrap;
	clear: both;
	overflow: hidden;
	text-align: center;

}

.pagelist .div_li {

	font-size: 15px;
	line-height: 40px;
}

.pagelist .link-a {
	display: inline;
	font-size: 15px;
	padding: 5px;
	vertical-align: middle;
	color: #666666;
}


.curnum {
	font-size: 15px;
	display: inline;
	color: #e4393c;
}

.page-select {
	display: inline;
	font-size: 15px;
	padding: 5px 0;
	margin: 0 5px;
	vertical-align: middle;
	color: #333;
	background: #FFFFFF;
	border-radius: 2px;
}

.pagenum {
	color: #000;
	background: #FFFFFF;
	padding: 10px;
	font-size: 15px;
}

::-webkit-input-placeholder {
	color: #999;
}

::-webkit-input-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}


/*修改头像弹窗 */

.coinWarp {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	overflow: hidden;
	position: fixed;
	z-index: 102;
	left: 0;
	bottom: -100%;
}

.coinLitBox {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 999;
}

.coinLitBox .div_ul {
	margin: 10px;
	overflow: hidden;
	padding: 0 10px;
	padding-bottom: 5px;
	background: #fff;
	box-sizing: border-box;
	border-radius: 5px;
}

.coinLitBox .div_ul .div_li {
	height: 45px;
	line-height: 45px;
	overflow: hidden;
	font-size: 14px;



}

.coinLitBox .div_ul .div_li .link_a {
	width: 100%;
	text-align: center;
	color: #000;
	display: block;
}

.coinLitBox .div_ul .div_li.cancle {
	border-radius: 5px;
}

.chuanbtn {
	display: block;
	height: 45px;
	line-height: 45px;
	cursor: pointer;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	opacity: 0;
}

/* ========== */

/*  设置按钮开关*/
.chooseBtn {
	display: none;
}

.choose-label {
	box-shadow: #8799a3 0px 0px 0px 1px;
	width: 40px;
	height: 20px;
	display: inline-block;
	border-radius: 10px;
	position: relative;
	background-color: #8799a3;
	overflow: hidden;
}

.choose-label.checkbox {
	background-color: #39b54a;
	box-shadow: #39b54a 0px 0px 0px 1px;
}

.choose-label:before {
	content: '';
	position: absolute;
	left: 0;
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 20px;
	background-color: #fff;
	z-index: 20;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.choose-label.checkbox:before {
	left: 20px;
}


/*  */
.radio {
	width: 20px;
	height: 20px;
	border-radius: 3px;
	background-color: #fff;
	border: solid 1px #ddd;


	font-size: 12px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	cursor: default;
	-webkit-appearance: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-transition: background-color ease 0.1s;
	transition: background-color ease 0.1s;
}

.che.check_t .radio {
	background: #fc4141 url(../static/icon/check.png) no-repeat center;
	background-size: 14px auto;
	border: solid 1px #fc4141;
	text-align: center;
	background-clip: padding-box;
}

/*  */
.allradio {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	border: solid 1px #ddd;


	font-size: 12px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	cursor: default;
	-webkit-appearance: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-transition: background-color ease 0.1s;
	transition: background-color ease 0.1s;
}

.checkFull.check_t .allradio {
	background: #fc4141 url(../static/icon/check.png) no-repeat center;
	background-size: 14px auto;
	border: solid 1px #fc4141;
	text-align: center;
	background-clip: padding-box;
}

/* 提示弹窗 */

.alert-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
}

.alert-modal .modal-body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	background-color: #fff;
	border-radius: 6px;
	width: 85%;
	font-size: 14px;
	line-height: 1.5;
	z-index: 2;
}

.alert-modal .modal-body .modal-head {
	text-align: center;
	padding-top: 15px;
	font-size: 16px;

}

.alert-modal .modal-body .modal-head .gbclose {
	position: absolute;
	top: 10px;
	right: 10px;
}

.alert-modal .modal-body .modal-info {

	padding: 20px 10px;

}

.alert-modal .modal-body .modal-footer {
	height: 48px;
	border-top: solid 1px rgba(89, 89, 89, 0.1);
}

.alert-modal .modal-body .modal-footer.noboder {
	border-top: none !important;
}

.alert-modal .modal-body .modal-footer .btn {
	width: 100%;
	line-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
	width: 100%;
	height: 48px;
	border-radius: 5px;
	font-size: 16px;

}

.alert-modal .modal-body .modal-footer .btn:first-child {
	border-right: solid 1px rgba(89, 89, 89, 0.1);
}


.alert-modal .modal-body .modal-footer .btn.btn-ok {
	color: #fc4141;

}

/*  */

.alert-modal .modal-body .modal-footer.noboder .btn {
	width: 100px;
	height: 28px;
	font-size: 14px;
	background: #fff;
	border: 1px solid #55b949;
	color: #55b949;
	box-sizing: border-box;
}

.alert-modal .modal-body .modal-footer.noboder .btn:first-child {
	border-right: 1px solid #55b949;
}

.alert-modal .modal-body .modal-footer.noboder .btn.btn-ok {
	color: #FFFFFE;
	background: #55b949;

}

/* 提示窗 e */


.remove {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove .menu-X {
	width: 20px;
	height: 20px;
	position: relative;
}

.remove .menu-X::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2px;
	background: #999999;
	width: 18px;
	transform: translate3d(-50%, -50%, 0) rotate(135deg);
}

.remove .menu-X::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2px;
	width: 18px;
	transform: translate3d(-50%, -50%, 0) rotate(-135deg);
	background: #999999;
}

/* =======================底部弹窗=========================== */
.alertform {
	position: fixed;
	top: 0;
	width: 100%;
	bottom: 0;
	z-index: 99;
	display: none;
	transition: all .3s;
}

.alertform .alertBG {
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	z-index: 99;
	height: 100vh;
	width: 100vw;
}

.pupopbottom {
	position: absolute;
	z-index: 9999;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: auto;
	background: #FFFFFF;
	border-radius: 10px 10px 0 0;
}

.pupopbottom .alert-head {
	text-align: center;
	padding-top: 15px;
	font-size: 18px;

}



.pupopbottom .gbclose {
	position: absolute;
	right: 15px;
	top: 15px;
}

.pupopbottom .alert-box {
	padding: 10px;
}
