*{
    margin: 0;
    padding: 0;
}
html {
    font-size: 13.333333vw;
}

body {
    font-size: 0.28rem;
}
:root{
    --main-color:#FF3B3B;
    --bg-color1:#F5F5F5;
}
::-webkit-input-placeholder{
    color:rgba(51, 51, 51, 0.5);
}
input{
    border: 0;
    background: transparent;
    outline: none;
}
a{
    text-decoration: none;
}


/*每个页面公共css */
.flex {
    display: flex;
}

.flex-ac {
    display: flex;
    align-items: center;
}
.flex-js {
    display: flex;
    justify-content: space-between;
}
.flex-ac-js {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-ac-jc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap{
    width: 7.5rem;
    background: var(--bg-color1);
    position: relative;
    padding-top: 0.86rem;
    box-sizing: border-box;
    padding-bottom: 1.24rem;
}
.top_bg{
    width: 100%;
    height: 8.58rem;
    background:linear-gradient(180deg, #FF3B3B 23.29%, rgba(208, 17, 18, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.header{
    width: 100%;
    height: 0.86rem;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top:0;
    left:0;
    z-index: 50;
}
.header > img:nth-child(1){
    width: 0.42rem;
    height: 0.42rem;
    transform: translateY(-0.02rem);
    margin-right: 0.1rem;
}
.header > div:nth-child(2){
    margin-left: 0.06rem;
    font-size: 0.34rem;
    color:#fff;
    span {
        font-weight: bold;
    }
}
.main_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.24rem;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
    padding-bottom: 0.32rem;
}

.footer{
    width: 100%;
    height: 1.24rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom:0;
    left: 0;
    z-index: 50;
}
.footer > a{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 0.92rem;
}
.footer > a > img{
    width: 0.48rem;
    height: 0.48rem;
}
.footer > a > img:nth-child(1){
    display: inline-block;
}
.footer > a > img:nth-child(2){
    display: none;
}
.footer > .active > img:nth-child(1){
    display: none;
}
.footer > .active > img:nth-child(2){
    display: inline-block;
}
.footer > a > div{
    font-size: 0.24rem;
    color:#333;
}
.footer > .active > div{
    color:var(--main-color);
}

#pagination {
    margin-top: 0.32rem;
    padding-bottom: 2rem;
}

.pagination {
    width: 100%;
    background-color: #fff;
	display: flex;
    padding: 0.5rem 0;
    justify-content: center;
}

.pagination li{
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 0.01rem;
	border: 1px solid #0000001A;
	margin: 0 0.1rem;
	font-size: 0.3rem;
	font-weight: 350;
	text-align: left;
	color: #333;
	box-sizing: border-box;
	cursor: pointer;
}

.pagination li a,.pagination li span {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    color: #FF3B3B;
}

.pagination .disabled {
	border: 1px solid #9999991A;
	color: #ccc;
}

.pagination .active {
	background-color: #FF3B3B;
	
}

.pagination .active span {
    color: #fff !important;
}

.el-dialog__body {
	padding: 0.6rem 0.4rem !important;
    font-size: 0.28rem !important;
}

.ac-mobile{
    width: 100%;
    height: 0.84rem;
    background: #FBD9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}
.ac-mobile > img:nth-child(1){
    width: 0.64rem;
    height: 0.64rem;
    margin-right: 0.16rem;
}
.ac-mobile > div:nth-child(2) {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.ac-mobile > div:nth-child(2) > div{
    font-size: 0.36rem;
    color:var(--main-color);
    font-weight: bold;
}
.ac-mobile > div:nth-child(2) > a{
    font-size: 0.2rem;
    color:var(--main-color);
}


