@charset "utf-8";

body{
    font-family: Arial, "Microsoft YaHei UI Light";
}

/*一、24格处理*/
#iconWall{
    width: 84%;
    margin: 0 8%;
    overflow: hidden;
    padding-top: 1px;
    padding-left: 1px;
    list-style: none;
	text-align: center;
	display: flex; justify-content: space-between; flex-wrap: wrap;
}

#iconWall li{
	display: block;
    width: 5rem;
    height: 5rem;
    /*background-color: #fff;*/
    margin-bottom: 0.5rem;

}

/*二、3D反转区域处理 */
.img-back, .img-front{
    position: absolute;
    left: 0;
    top: 0;
    width: 5rem;
    height: 5rem;
    text-align: center;
    line-height: 5rem;
}

#iconWall li img{
    vertical-align: middle;
	width: 5rem;
	height: 5rem;
	border-radius: 0.5rem;
}


.img-3d{
    transform-style: preserve-3d;

}

.img-back{
    transform: rotateY(180deg);
}

/*测试代码*/
/*li:hover .img-3d{*/
    /*transition: .3s linear;*/
    /*transform: rotateY(180deg);*/
/*}*/

/*三、换一批*/
#btnRefresh{
    text-align: center;
    transition: .3s linear;
	background-color: #dd2727;
	color: #fff;
	border-radius: 0.2rem;
}
.iconRefresh{
    width: 28px;
    height: 28px;
    background: url("../user/img/refresh-white.png");
    margin: 12px auto 0;
}
#btnRefresh:hover{
    color: #fff;
    background-color: #dd2727;
    transition: 0s;
}
#btnRefresh:hover .iconRefresh{
    background: url("../user/img/refresh-white.png");
}

#btnRefresh2{
    text-align: center;
    transition: .3s linear;
	background-color: #dd2727;
	color: #fff;
	border-radius: 0.2rem;
}
.iconRefresh2{
    width: 28px;
    height: 28px;
    background: url("../user/img/refresh-stop.png");
    margin: 12px auto 0;
}
#btnRefresh2:hover{
    color: #ccc;
    background-color: #dd2727;
    transition: 0s;
}
#btnRefresh2:hover .iconRefresh{
    background: url("../user/img/refresh-stop2.png");
}

/*四、处理浮层*/
.mask{
    position: absolute;
    left: 10%;
    top: 38%;
    width: 80%;
	z-index: 1111;
    height: 24%;
    border-radius: 1rem;
    background-image: linear-gradient(110deg, #fe675c, #ef0b24);
	display: none;
}

.mask img{
    float: right;
    margin-top: 8px;
    margin-right: 8px;
}
.mask a{
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	color: #fff;
	font-size: 0.8rem;
}

.mask2{
    position: absolute;
    left: 10%;
    top: 38%;
    width: 80%;
	z-index: 1111;
    height: 10rem;
    border-radius: 1rem;
    background-image: linear-gradient(110deg, #fe675c, #ef0b24);
	display: none;
}

.mask2 img{
    float: right;
    margin-top: 8px;
    margin-right: 8px;
}
.mask2 a{
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	color: #fff;
	font-size: 0.8rem;
}


.user_name{padding: 0.5rem 5% 0.5rem 5%; position: relative;}
.user_name img{width: 25%; height: auto; border-radius: 100%; float: left; margin-right: 1rem;}
.user_name p{ float: left; line-height: 2.5rem; font-size: 1.2rem; color: #faf9c9; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.zhufuyu{padding: 0 5%; text-align: left; }
.zhufuyu p{font-size: 0.8rem; color: #fff; line-height: 1.5rem;}