*{
	outline: none;
	box-sizing: border-box;
}
body {
	margin: 0;
	font-size: 0;
	background: #000000;
	font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	font-size: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}
button {
	-webkit-tap-highlight-color: transparent;
}
h1,h2,h3,h4,h5,p {
	margin: 0;
	padding: 0;
}

.author-container {
    position: relative;
	padding: 10px 0px;
	overflow: hidden;
}
.author-container .author-info-wrapper {
    position: relative;
    margin: 0px 15px;
    height: 146px;
    background:rgba(194,194,193,0.12);
    border-radius: 10px 10px 0px 0px;
}
.author-container .author-info-wrapper .user-avatar {
    position: absolute;
    left: 10px;
    top: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #9a9a9a;
}
.author-container .author-info-wrapper .user-name {
    position: absolute;
    left: 86px;
    top: 26px;
    width: auto;
    height: 22px;

    font-size: 22px;
    font-weight: 500;
    color:#FFFFFF;
    line-height: 22px;
}
.author-container .author-info-wrapper .vip-background {
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -7%;
    width: 106%;
    height: 66px;
}
.author-info-wrapper .vip-type-container {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 46px;
}
.author-info-wrapper .vip-type-container .vip-type-icon {
    float: left;
    margin-left: 12px;
    margin-top: 14px;
    width: 20px;
    height: 18px;
}
.author-info-wrapper .vip-type-container .vip-type-name,
.author-info-wrapper .vip-type-container .vip-end-time {
    margin-top: 14px;
    width: auto;
    height: 18px;

    font-size: 16px;
    font-weight: 500;
    color:rgba(255,255,255,1);
    line-height: 18px;
}
.author-info-wrapper .vip-type-container .vip-type-name {
    float: left;
    margin-left: 16px;
}
.author-info-wrapper .vip-type-container .vip-end-time {
    float: right;
    margin-right: 12px;
}

.author-container .author-submit-wrapper {
    margin-top: 10px;
	width: 100%;
	opacity: 0;
	transition: opacity 320ms;
	-moz-transition: opacity 320ms;
	-webkit-transition: opacity 320ms;
}
.author-container .author-submit-wrapper.active {
	opacity: 1;
}
#author-submit-wrapper .submit-item {
	overflow: hidden;
    border-radius: 4px;
}
#author-submit-wrapper .submit-item img {
	width: 100%;
	height: auto;
	transform: scale(1.1);
	object-fit: cover;
}
#author-submit-wrapper .submit-item:nth-child(5n + 1){
	background: #F3395B;
}
#author-submit-wrapper .submit-item:nth-child(5n + 2){
	background: #15CAFA;
}
#author-submit-wrapper .submit-item:nth-child(5n + 3){
	background: #F3395B;
}
#author-submit-wrapper .submit-item:nth-child(5n + 4){
	background: #40CC66;
}
#author-submit-wrapper .submit-item:nth-child(5n + 5){
	background: #EEDA0C;
}

.loading-status {
	position: relative;
	margin: 0 auto 16px;
	width: 115px;
	height: 30px;
	opacity: 0;
}
.loading-status.active {
	opacity: 1;
}
.loading-status .loading-icon {
	margin: 0 auto;
	width: 50px;
	height: 30px;
	overflow: hidden;
	display: none;
}
.loading-status[data-type="automatic"] .loading-icon {
	background: url(/images/global/bottom-loading.gif) no-repeat center;
	background-size: 100%;
	display: block;
}


@media screen and (max-width: 320px) {
    .author-container .author-info-wrapper {
        margin: 0px 12px;
        height: 130px;
    }
    .author-container .author-info-wrapper .user-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }
}