@charset "utf-8";
/* @font-face {
  font-family: 'lishu';
  src: url('../fonts/lishu.ttf');
} */
/*
	border-radius: 5px;
*/
body,html {
	font-size: 14px;
	color: #212121;
	background: #fafafa;
}
:root {
    --yellow: #FFF2A3;
    --oranage: #f58220;
    --white: #FFFFFF;
    --web-color: #212121;
    --red: #AD0006;
    --red-h: #9c182f;
    --input-border-color: #F5BFC4;
    --gray: #999999;
    --light-gray: #cccccc;
    --light-gray-1: #f5f5f5;
    --blue: #136aa9;
    --blue-h: #105f98;
    --light-blue: #EAEEF5;
    --green: #00783f;
    --green-h: #266141;
}
a {
    color: var(--blue);
    text-decoration: none;
}
input:focus,select:focus,textarea:focus {
    outline: none;
}
.em {
	color: var(--red);
}
.warn {
    width: 90%;
    top: 15px;
    left: 5%;
    height: auto;
    position: fixed;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 100px;
    background: #F2C4C4;
    border: 1px solid #FF9090;
    color: #CB000C;
    z-index: -1;
    font-size: 0.9rem;
    display:none;
}
.bg_all {
    width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../image/bg.png);
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
  	background-size: 100% 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
/* 分享 */
.shareTip {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 111;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	display: none;
}
.shareTip .shareImg {
	position: absolute;
	top: -30px;
	right: -10px;
}
.shareTip .shareImg img {
	width: 200px;
	transform: rotate(-55deg);
}
.shareTip .shareText {
	position: absolute;
	top: 230px;
	left: 0;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 0 20px;
	color: #FFF;
	font-size: 1.1rem;
	line-height: 2.2rem;

}
/* 弹层 */
.tipShade {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	background: rgba(0,0,0,0.5);
	display: none;
}
.shadeCon {
	width: 90%;
	height: 90%;
	background: var(--white);
	top: 5%;
	left: 5%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	box-sizing: border-box;
	padding: 15px;
	overflow-y: auto;
}
a.closeTip {
	position: absolute;
	top: 7px;
	right: 7px;
	display: block;
	width: 24px;
	height: 24px;
	background: var(--red);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: var(--white);
	font-size: 1.2rem;
	text-align: center;
	line-height: 20px;
}
/* 加载动画样式 - 强制重置确保完美居中 */
.loading {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
	display: none;
    background: rgba(0,0,0,0.8) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    /* 使用flexbox实现完美居中 */
    align-items: center !important;
    justify-content: center !important;
}

/* 当loading显示时，强制设置为flex布局 */
.loading[style*="block"] {
    display: flex !important;
}

/* CSS loading动画 - 旋转圆环 */
.loading-spinner {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 4px solid #ffffff !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    display: block !important;
}

/* 旋转动画 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
a.back_icon {
	width: 30px;
	height: 30px;
	margin-top: 20px;
	margin-left: 20px;
	display: flex;
  align-items: center;
  justify-content: space-evenly;
}
a.goBack {
	color: var(--web-color);
	font-size: 1.2rem;
	position: absolute;
	top: 23px;
	left: 15px;
}
p {
	line-height: 24px;
}
/* 单选、复选 */
.checkbox,.radio {
	position: relative;
	/* height: 20px; */
	display: block;
	margin: 5px 20px 10px 15px;
	/*float: left;*/
}
.checkbox input[type="checkbox"],.radio input[type="radio"]{
	position: absolute;
	top: 3px;
	left: 0;
	width: 15px;
	height: 15px;
	opacity: 0;
}
.checkbox label,.radio label {
	position: relative;
	float: left;
	left: 0;
	left: 10px;
	top: 0;
	/* height: 20px; */
	line-height: 20px;
	width: auto;
}
.checkbox label:hover,.radio label:hover {
	cursor: pointer;
}
.checkbox label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: -20px;
	height: 20px;
	border: 0;
	background: rgba(20,20,20,0.3);
	width: 15px;
	height: 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.radio label::before {
	content: '';
	position: absolute;
	top: 2px;
	left: -20px;
	height: 20px;
	border: 0;
	background: rgba(20,20,20,0.3);
	width: 15px;
	height: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.checkbox label::after,.radio label::after {
	content: '';
	position: absolute;
	top: 4px;
	left: -15px;
	width: 4px;
	height: 8px;
	border: 0;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(40deg);
}

.checkbox input[type='checkbox']:checked + label::before,.radio input[type='radio']:checked + label::before {
	background: var(--blue);
	border-color: var(--blue);
}
.checkbox input[type='checkbox']:checked + label::after,.radio input[type='radio']:checked + label::after {
	background: var(--blue-h);
}
.checkbox input[type='checkbox']:disabled + label::before,.radio input[type='radio']:disabled + label::before,.checkbox input[type='checkbox']:disabled + label::after,.radio input[type='radio']:disabled + label::after {
	background: #DDD;
}
.radio input[type='radio']:disabled + label.error::before,.radio input[type='radio']:disabled + label.error::after {
	background: var(--red);
	border-right: 0;
	border-bottom: 0;
}

.checkbox input[disabled]:checked + label::before, .radio input[disabled]:checked + label::before {
	background: var(--blue);
	border-color: var(--blue);
}
.checkbox input[type='checkbox']:checked + label::before, .radio input[type='radio']:checked + label::before {
	background: var(--blue);
	border-color: var(--blue);
}

.checkbox input[type='checkbox']:checked:disabled + label::before, .radio input[type='radio']:checked:disabled + label::before, .checkbox input[type='checkbox']:checked:disabled + label::after, .radio input[type='radio']:checked:disabled + label::after {
	background: var(--blue);
}

/* 页面css */
.container {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 15px;
		margin-bottom: 60px;
	}
	.h1_title {
		font-size: 1.2rem;
	}
	.itemDiv {
		width: 100%;
		height: auto;
		background: var(--white);
		box-sizing: border-box;
		padding: 15px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		margin: 15px 0;
		box-shadow: 0 0 5px #DDD;
}
.itemDiv_list {
	padding: 5px;
}
select ,	input ,input,button,textarea  {
		width: 100%;
		height: 46px;
		box-sizing: border-box;
		padding: 5px 10px;
		border: 1px solid #DDD;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		margin: 10px 0;
		font-size: 1.1rem;
		color: var(--web-color);
}
select.select, input.input,textarea.textarea {
		background: var(--white);
}
input.button[disabled],button.button[disabled] {
	background: var(--light-gray);
	color: var(--white);
}
textarea.textarea {
	line-height: 24px;
	padding: 5px;
	min-height: 80px;
}
input.input_code {
	border: 0;
	border-bottom: 1px solid #DDD;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding-left: 35px;
}
input.qrcode_tel {
	background: url(../image/i_tel.png) center left no-repeat;
	background-size: 25px 25px;
}
input.qrcode_num {
	background: url(../image/i_code.png) center left no-repeat;
	background-size: 25px 25px;
}
input.button,button.button {
	border: 0;
	-webikt-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	font-size: 1rem;
}
.blue_btn {
	background: var(--blue);
	color: var(--white);
}
.blue_btn:hover {
	background: var(--blue-h);
	color: var(--white);
}
.green_btn {
	background: var(--green);
	color: var(--white);
}
.green_btn:hover {
	background: var(--green-h);
	color: var(--white);
}
.white_btn {
	border: 1px solid #DDD !important;
	background: var(--white);
	color: var(--blue);
}
.white_btn:hover {
	background: var(--blue-h);
	color: var(--white);
}
.red_btn {
	background: var(--red);
	color: var(--white);
}
.red_btn:hover {
	background: var(--red-h);
	color: var(--white);
}
.banner {
	width: 100%;
	/*background: url(../image/top.jpg) no-repeat top left;
	background-position: fixed;
	background-size: 100% 100%;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	vertical-align: middle;*/
}
.banner p {
	height: 40px;
	line-height: 40px;
	font-size: 1.5rem;
	font-weight: bold;
	box-sizing: border-box;
	margin-left: 15px;
	color: var(--white);
}
.banner img {
	width: 100%;
}
.footer {
	width: 100%;
	position: fixed;
	height: 60px;
	background: #FFF;
	box-shadow: 0px -20px 30px 0px rgba(0, 0, 0, 0.03);
	bottom: 0;
	left: 0;
	z-index: 9;
}
.footer ul li {
	float: left;
	width: 25%;
	padding: 0;
	border-right: 1px solid #DDD;
	box-sizing: border-box;
}
.footer ul li:last-child {
	border: 0;
}
.footer ul li a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	color: var(--web-color);
}
.footer ul li a div {
	width: 100%;
	height: 20px;
	margin-top: 5px;
	line-height: 20px;
	text-align: center;
}
.footer ul li a i {
	font-size: 20px;
}
.footer ul li a p {
	margin-top: 3px;
	line-height: 20px;
	font-size: 0.9rem;

}
.br_5 {
	-webkit-border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	border-radius: 5px !important;
}
.check_complete {
	width: 0;
	height: 0;
	border-top: 36px solid var(--green);
	border-left: 36px solid transparent;
	border-right: 36px solid transparent;
	transform: rotate(-135deg);
	position: absolute;
	z-index: 11;
	top: -5px;
	right: -23px;
}
.check_complete_text {
	width: 30px;
	height: 34px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 34px;
	color: var(--white);
	z-index: 12;
	font-size: 1.3rem;
	font-weight: bold;
}
