
html {
	font-size: 100px;
}
body {
	margin: 0;
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

button {
	border: none;
	outline: none;
}

a {
	text-decoration: none;
	color: unset;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
	display: inline-block;
}

iframe {
	border: none;
	height: auto;
	width: 100%;
}

.input-common {
	outline: none;
	border: none;
	height: 0.64rem;
}

.vertical {
	margin: auto 0;
}

.radius-6 {
	border-radius: 6px;
}

.bottom-28 {
	margin-bottom: 0.28rem;
}

.font-16 {
	font-size: 0.16rem;
}
.font-18 {
	font-size: 0.18rem;
}
.font-20 {
	font-size: 0.2rem;
}
.font-22 {
	font-size: 0.22rem;
}
.font-24 {
	font-size: 0.24rem;
}
.font-28 {
	font-size: 0.28rem;
}
.font-32 {
	font-size: 0.32rem;
}
.font-34 {
	font-size: 0.34rem;
}

.white {
	color: #fff;
}


/* 页头样式 */
.top {
	padding: 0.16rem;
	background: #843c0b;
	position: fixed;
	z-index: 10;
	top: 0;
	width: 100%;
}
.flex {
	display: flex;
	justify-content: space-between;
}
.flex .title a {
	color: #fff;
	font-size: 0.32rem;
}
.flex .search {
	flex: 1;
	margin: 0 0.3rem;
	position: relative;
}
.flex .search .iconfont {
	position: absolute;
	top: 0.16rem;
	left: 0.16rem;
	color: #999;
	font-size: 0.3rem;
}
.flex .search .input {
	background: #ececec;
	border-radius: 50px;
	width: 100%;
	font-size: 0.28rem;
	padding-left: 0.5rem;
}
.flex .user img {
	height: 0.45rem;
}

.main-content {
	/*padding: 0.2rem 0 0;*/
	padding: 0 0 0.2rem 0;
	/*background: #e9ecf4;*/
	margin-top: 0.96rem;
}

/* 导航栏 */
.nav {
	height: 0.9rem;
	line-height: 0.76rem;
	padding: 0 0.3rem;
	background: #fff;
	white-space: nowrap;
	overflow-x: auto;
}
.nav ul {
	white-space: nowrap;
	overflow-x: auto;
}
.nav ul li {
	font-size: 0.32rem;
	color: #404040;
}
.nav ul li:not(:first-child) {
	margin-left: 0.8rem;
}
.nav ul li.active {
	color: #843c0b;
	position: relative;
}
.nav ul li::after {
	content: "";
	width: 0;
	height: 0.05rem;
	background: #843c0b;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -40%;
	border-radius: 50px;
	transition: width 0.2s;
}
.nav ul li.active::after {
	width: 80%;
}

/* 返回顶部固定事件 */
.position {
	position: fixed;
	right: 0.3rem;
	bottom: 10%;
	/* transform: translateY(-50%); */
}
.position .fix-div {
	width: 0.8rem;
	height: 0.8rem;
	background: #fff;
	text-align: center;
	margin-bottom: 0.15rem;
	border-radius: 50%;
}
.position .collect {
	color: #58be6c;
}
.position .collect .iconfont {
	font-size: 0.6rem;
	line-height: 0.8rem;
}
.position .backTop {
	font-size: 0.2rem;
	color: #843c0b;
	display: table-cell;
	vertical-align: middle;
	/* display: none; */
}
.position .backTop .iconfont {
	font-size: 0.3rem;
	color: #843c0b;
}

.more-div {
	text-align: center;
	margin-bottom: 0.3rem;
}
.more-div button {
	width: 90%;
	line-height: 36px;
	text-align: center;
	background-color: #f5f7fb;
}

.shadow {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}
.shadow .vertical {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	display: none;
}
.shadow .vertical img {
	width: 80%;
}
.loading-div {
	width: 2rem;
	height: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.loadEffect{
    width: 1rem;
    height: 1rem;
    position: relative;
    margin: 0 auto;
    margin-bottom: 0.1rem;
}
.loadEffect span{
    display: inline-block;
    width: 0.16rem;
    height: 0.16rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    -webkit-animation: load 1.04s ease infinite;
}
@-webkit-keyframes load{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0.2;
    }
}
.loadEffect span:nth-child(1){
    left: 0;
    top: 50%;
    margin-top:	-0.08rem;
    -webkit-animation-delay:0.13s;
}
.loadEffect span:nth-child(2){
    left: 0.14rem;
    top: 0.14rem;
    -webkit-animation-delay:0.26s;
}
.loadEffect span:nth-child(3){
    left: 50%;
    top: 0;
    margin-left: -0.08rem;
    -webkit-animation-delay:0.39s;
}
.loadEffect span:nth-child(4){
    top: 0.14rem;
    right:0.14rem;
    -webkit-animation-delay:0.52s;
}
.loadEffect span:nth-child(5){
    right: 0;
    top: 50%;
    margin-top:-0.08rem;
    -webkit-animation-delay:0.65s;
}
.loadEffect span:nth-child(6){
    right: 0.14rem;
    bottom:0.14rem;
    -webkit-animation-delay:0.78s;
}
.loadEffect span:nth-child(7){
    bottom: 0;
    left: 50%;
    margin-left: -0.08rem;
    -webkit-animation-delay:0.91s;
}
.loadEffect span:nth-child(8){
    bottom: 0.14rem;
    left: 0.14rem;
    -webkit-animation-delay:1.04s;
}