@charset "UTF-8";

:root {
	--mainColor: #f00;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	word-wrap: break-word;
	outline: none;
}

html {
	overflow: hidden;
	height: 100%;
}

@media screen and (max-width: 360px) {
	html {
		font-size: 20px;
	}
}

@media screen and (min-width: 361px) and (max-width: 750px) {
	html {
		font-size: calc(40*(100vw/750));
	}
}

@media screen and (min-width: 751px) {
	html {
		font-size: 40px;
	}
}

body {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background: #f2f2f2;
	font-size: 0.6rem;
	color: #666;
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

/*细线表格*/
input,
textarea {
	font-family: "microsoft yahei";
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	font-size: .65rem;
}

a {
	outline: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	text-decoration: none;
	color: #666;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
	/* placeholder颜色  */
	font-size: 0.65rem;
	/* placeholder字体大小  */
	text-align: left;
	/* placeholder位置  */
}

a:visited {
	color: #666;
	outline: none;
}

a:hover {
	color: #125fc8;
	outline: none;
}

a:active {
	color: #666;
	outline: none;
}

ul,
ol {
	list-style: none;
	vertical-align: middle;
}

img {
	border: none;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

img[src=''] {
	opacity: 0;
}

.fl {
	float: left;
	display: inline;
}

.fr {
	float: right;
	display: inline;
}

.clear {
	clear: both;
	overflow: hidden;
	height: 0;
}

/* 自定义页面间距 */
.h5 {
	height: 0.25rem;
	clear: both;
}

.h10 {
	height: 0.5rem;
	clear: both;
}

.h15 {
	height: 0.75rem;
	clear: both;
}

.h20 {
	height: 1rem;
	clear: both;
}

.h25 {
	height: 1.25rem;
	clear: both;
}

.h30 {
	height: 1.5rem;
	clear: both;
}

/*浏览器滚动条*/
::-webkit-scrollbar {
	width: 0px;
	background-color: #fff;
}

::-webkit-scrollbar-button {}

::-webkit-scrollbar-track {}

::-webkit-scrollbar-track-piece {}

::-webkit-scrollbar-thumb {
	border: solid 0px #5d5d5d;
	width: 0px;
	background-color: #fff;
}

::-webkit-scrollbar-corner {
	background-color: #5d5d5d;
}

::-webkit-resizer {}

::-webkit-scrollbar:horizontal {
	height: 0px;
}

/* flex布局 */
.flex {
	display: flex;
}

.flexC {
	flex: 1;
}

.flex-r {
	/*横向*/
	display: flex;
	flex-direction: row;
}

.flex-v-html {
	/*纵向*/
	display: flex;
	flex-direction: column;
}

.flex-v-body {
	flex-grow: 1;
	flex-basis: 0;
	overflow: hidden;
	overflow-y: auto;
}

.flex-1 {
	flex: 1 0 0;
}

.flex-2 {
	flex: 2 0 0;
}

/*截字数*/
.clamp1 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 1 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp2 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp3 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp4 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 4 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp5 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 5 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp6 {
	word-break: break-all;
	display: -webkit-box !important;
	-webkit-line-clamp: 6 !important;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/*颜色*/
.bai {
	background: #FFF;
}

.hui {
	background: #f2f2f2;
}

/*边框*/
.pd10 {
	padding: .5rem;
}

.boxSize {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.bdAll {
	position: relative;
	z-index: 1
}

.bdAll:before {
	content: " ";
	width: 200%;
	height: 200%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	z-index: -1
}

.bdBottom {
	position: relative;
}

.bdBottom:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #e6e6e6;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
}

.bdLeft {
	position: relative;
}

.bdLeft:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 0;
	height: 100%;
	border-left: 1px solid #e6e6e6;
	transform: scaleX(0.5);
	-webkit-transform: scaleX(0.5);
}

.bdRight {
	position: relative;
}

.bdRight:before {
	display: block;
	content: '';
	position: absolute;
	right: 0px;
	top: 0px;
	width: 0;
	height: 100%;
	border-right: 1px solid #e6e6e6;
	transform: scaleX(0.5);
	-webkit-transform: scaleX(0.5);
}

.bdTop {
	position: relative;
}

.bdTop:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 0;
	border-top: 1px solid #e6e6e6;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
}

/*默认图*/
.default {
	background: #f5f5f5 url(../images/common/loading.svg) no-repeat center center;
	background-size:auto 3rem;
}

/*按钮*/
a.myBtn {
	display: inline-block;
	height: 1.75rem;
	line-height: 1.75rem;
	padding: 0 1rem;
	background: #cb0d1c;
	color: #FFF;
	font-size: .7rem;
	border-radius: 3px;
	text-align: center;
}

/*图片*/
.pic {
	position: relative;
}

.pic:before {
	display: block;
	content: '';
	padding-top: 66.66667%;
}

.pic img {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/*垂直居中*/
.table {
	display: table;
	width: 100%;
	height: 100%;
}

.tableCell {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

/***********框架部分start***********/
.mobileBody,
.mobileTop,
.mobileFooter {
	overflow: hidden;
	position: relative;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
}

.mobileBody {
	flex-grow: 1;
	z-index: 1;
	background: #FFF;
	flex-basis: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobileBody.hui {
	background: #f2f2f2;
}

.mobileBodyC {
	min-height: calc(100% - 4.75rem);
}

.mobileTop {
	z-index: 4;
}

.mobileFooter {
	z-index: 3;
}

.mobileBody.active,
.mobileTop.active,
.mobileFooter.active {
	transform: translateX(-2.25rem);
	-webkit-transform: translateX(-2.25rem);
}
.auchor{
	visibility: hidden;
}
.wrap{
	padding: 0 0.75rem;
}
/***********框架部分end***********/