@charset "UTF-8";

input[type="checkbox"] {
	content: "";
	display: inline-block;
	width: 17px;
	height: 16px;
	margin-right: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #3797fc;
}

.hand {
	cursor: pointer;
}

html {
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-size-adjust: none;
}

* {
	font-family: "PingFangSC-Regular", "Microsoft YaHei", "regular",
		sans-serif;
}

body, html, #app {
	/* height: 100%; */
}

body {
	font-size: 15px;
	color: #333;
	font-family: "微软雅黑", -apple-system, system-ui, BlinkMacSystemFont,
		"Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC",
		"Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

a {
	outline: none;
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
}

html button::-moz-focus-inner {
	border-color: transparent !important;
}

/*设置margin和padding为0*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code,
	form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table thead tr {
	background-color: #e5e5e5;
}

fieldset, a img {
	border: 0;
}

address, caption, cite, code, dfn, em, th, var，i {
	font-style: normal;
	font-weight: normal;
}

li {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before, q:after {
	content: '';
}

em, i {
	font-style: normal;
}

input[type="submit"], input[type="reset"], input[type="button"], input[type=date],
	button, select, input[type=text] {
	/*去掉苹果的默认UI来渲染按钮 、解决部分手机浏览器对border：none无效办法*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/*去掉微信端input-text在ios轻快下的点击出先黑色半透明背景*/
	tap-highlight-color: transparent !important;
}

a, input[type=text], select, input[type=password], textarea {
	/*去掉微信端input-text在ios轻快下的点击出先黑色半透明背景*/
	tap-highlight-color: transparent !important;
}

input[type=checkbox], input[type=radio] {
	margin: 0;
	cursor: pointer;
	vertical-align: bottom;
	background: #fff;
	border: 1px solid #333;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: .06rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

input[type=checkbox]:active, input[type=radio]:active {
	border-color: #C00407;
	background: #ebebeb;
}

input[type=checkbox]:checked, input[type=radio]:checked {
	background: #fff;
	background-repeat: no-repeat;
	background-size: 140% auto;
	background-position: center;
	border-color: #C00407;
}

input[type=checkbox]:focus {
	outline: none;
	border-color: #C00407;
}

.block {
	display: block;
}

.inl-block {
	display: inline-block;
}

label {
	margin-bottom: 0;
}
/*常见的自定义需要样式*/
.fc1 {
	color: #fff;
}

.fc2 {
	color: #333;
}

.fc3 {
	color: #666;
}

.fc4 {
	color: #999;
}

.fc5 {
	color: #B3B3B3;
}

.fc6 {
	color: #ddd;
}

.fc7 {
	color: #e5e5e5;
}

.fctheme {
	color: #971F13;
}
/*常用背景颜色*/
.bg1 {
	background-color: #ffffff;
}

.bg2 {
	background-color: #f2f2f2;
}

.bg3 {
	background-color: #EEE;
}

.bg4 {
	background-color: #404347;
}

.bg5 {
	background-color: #000;
}

.bgtheme {
	background-color: #971F13;
}

.bold {
	font-weight: bold;
}
/*设置padding属性*/
.pd-5 {
	padding: 5px;
}

.pl-5 {
	padding-left: 5px;
}

.pr-5 {
	padding-right: 5px;
}

.pt-5 {
	padding-top: 5px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pd-10 {
	padding: 10px;
}

.pl-10 {
	padding-left: 10px;
}

.pr-10 {
	padding-right: 10px;
}

.pt-10 {
	padding-top: 10px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pd-15 {
	padding: 15px;
}

.pl-15 {
	padding-left: 15px;
}

.pr-15 {
	padding-right: 15px;
}

.pt-15 {
	padding-top: 15px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-20 {
	padding-right: 20px;
}
/*设置margin属性*/
.mb-5 {
	margin-bottom: 5px;
}

.mt-5 {
	margin-top: 5px;
}

.mr-5 {
	margin-right: 5px;
}

.ml-5 {
	margin-left: 5px;
}

.mg-5 {
	margin: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mt-10 {
	margin-top: 10px;
}

.mr-10 {
	margin-right: 10px;
}

.ml-10 {
	margin-left: 10px;
}

.mg-10 {
	margin: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mt-15 {
	margin-top: 15px;
}

.mr-15 {
	margin-right: 15px;
}

.ml-15 {
	margin-left: 15px;
}

.mg-15 {
	margin: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-20 {
	margin-top: 20px;
}

.mr-20 {
	margin-right: 20px;
}

.mt-30 {
	margin-top: 30px !important;
}

.mb-30 {
	margin-bottom: 30px;
}
/*设置问题的大小*/
.f9 {
	font-size: 9px;
}

.f10 {
	font-size: 10px;
}

.f11 {
	font-size: 11px;
}

.f12 {
	font-size: 12px;
}

.f13 {
	font-size: 13px;
}

.f14 {
	font-size: 14px;
}

.f15 {
	font-size: 15px;
}

.f16 {
	font-size: 16px;
}

.f17 {
	font-size: 17px;
}

.f18 {
	font-size: 18px;
}

.f19 {
	font-size: 19px;
}

.f20 {
	font-size: 20px;
}

.f24 {
	font-size: 24px;
}

.f26 {
	font-size: 26px;
}

.f32 {
	font-size: 32px;
}

.f34 {
	font-size: 34px;
}

.f36 {
	font-size: 36px;
}

.f48 {
	font-size: 48px;
}
/*height高度设置*/
.hg10 {
	height: 10px;
}

.hg20 {
	height: 20px;
}

.hg25 {
	height: 25px;
}

.hg30 {
	height: 30px;
}

.hg35 {
	height: 35px;
}

.hg40 {
	height: 40px;
}

.hg45 {
	height: 45px;
}

.hg50 {
	height: 50px;
}

.hg55 {
	height: 55px;
}

.hg60 {
	height: 60px;
}

.hg70 {
	height: 70px;
}

.hg80 {
	height: 80px;
}

.hg85 {
	height: 85px;
}

.hg90 {
	height: 90px;
}

.hg100 {
	height: 100px;
}
/*设置圆角*/
.br3 {
	border-radius: 3px;
}

.br5 {
	border-radius: 5px;
}

.br10 {
	border-radius: 10px;
}

.br100 {
	border-radius: 100px;
}

/*设置边框*/
.bt {
	border-top: 1px solid #f2f2f2;
}

.bb {
	border-bottom: 1px solid #f2f2f2;
}

.br {
	border-right: 1px solid #f2f2f2;
}

.bb-dashed {
	border-bottom: 1px dashed #DDD;
}

.bb-theme {
	border-bottom: 1px solid #519de1;
}

.bt-theme {
	border-top: 1px solid #519de1;
}

.btheme {
	border: 1px solid #971F13;
}

.border1 {
	border: 1px solid #f2f2f2;
}

.border2 {
	border: 1px solid #ddd;
}

.border3 {
	border: 1px solid #bfbfbf;
}

.border4 {
	border: 1px solid #B3B3B3;
}

.border5 {
	border: 1px solid #fff;
}

.nb {
	border: 0;
}
/*换行*/
.wrap {
	word-break: break-all;
}
/*设置display布局*/
.flex {
	display: flex;
}

.bock {
	display: block;
}

.flex-bw {
	justify-content: space-between;
}

.flex-around {
	justify-content: space-around;
}

.flex-c {
	justify-content: center;
}

.flex-r {
	flex-direction: row-reverse;
}

.flex-vc {
	align-items: center;
}

.flex-grow {
	flex: 1;
}

.flex-grow6 {
	flex-grow: 6;
}

.flex-grow2 {
	flex-grow: 2;
}

.flex-block {
	flex-direction: column;
}

/*浮动*/
.fr {
	float: right;
}

.fl {
	float: left;
}
/*文本对齐方式*/
.tc {
	text-align: center;
}

.tl {
	text-align: left;
}

.tr {
	text-align: right;
}
/*文本宽*/
.w100 {
	width: 100%;
}

.h100 {
	height: 100%;
}
/*文本域*/
.nresize {
	resize: none;
}

.bs {
	box-sizing: border-box;
}
/*背景图片去重复*/
.nrepeat {
	background-repeat: no-repeat;
}
/*超出部分打省略号*/
.overf {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*超出部分打省略*/
.overhide {
	overflow: hidden;
}
/*清除浮动*/
.clear {
	clear: both;
}

/*内容宽度*/
.con {
	width: 1280px;
	margin: 0px auto;
}

.main {
	width: 1170px;
	margin: 0px auto;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}
/*隐藏*/
.hide {
	display: none;
}

/*优先级*/
.z-index0 {
	z-index: 0;
}

.z-index1 {
	z-index: 1;
}

.z-index2 {
	z-index: 2;
}

.z-index3 {
	z-index: 3;
}

.des p img {
	width: 100% !important;
}

.btnlist {
	bottom: 20px;
}

.btnlist li {
	width: 80px;
	height: 12px;
	text-align: center;
	line-height: 20px;
	background-color: #fff;
	transition: all 0.5s;
	color: #fff;
}

.btnlist li.active {
	background-color: rgba(0, 234, 255, 1);
	color: rgba(0, 234, 255, 1);
}

.el-carousel__container {
	position: relative;
	height: 100% !important;
}

.el-input__inner, .el-input__inner:hover, .G_btn1 {
	border: 1px solid #3E88E5 !important;
	background-color: transparent;
	border-radius: 100px;
	color: #3E88E5;
	min-width: 134px;
}

.G_btn2 {
	background: #3E88E5;
	border-radius: 100px;
	color: #fff;
	min-width: 134px;
	border: 0;
}