.mainbox {
    position: relative;
    width: 100%;
    min-height: 100%;
}

img.title_img {
    display: block;
    width: 100%;
}

img.btn_img {
    display: block;
    width: 97%;
    margin: 0 auto;
    -webkit-animation:scaleInOut 2s .2s ease-in-out infinite;
    -moz-animation:scaleInOut 2s .2s ease-in-out infinite;
}

img.splite_img {
    display: block;
    margin: 0 auto;
    width: 51%;
}

p.text {
    color: #00f6ff;
    font-size: 0.8rem;
    line-height: 0.8rem;
    text-align: left;
    padding-left: 5.5%;
    margin: 0.5rem 0;
}

img.content_img {
    display: block;
    margin: 0 auto 0.5rem auto;
    width: 88.8%;
}

img.history_img {
    display: block;
    width: 6rem;
    margin: 0.5rem 0 0 1.1rem;
}

#daily_recommend_box {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: rgba(0,0,0,0.6);
    display: none;
}

.daily_recommend {
    position: absolute;
    width: 80%;
    height: auto;
    left: 10%;
    top: 45%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 6px;
    padding: 15px 20px;
    box-sizing: border-box;
}

img.recommend_content {
    display: block;
    width: 100%;
    margin: 0 auto;
}

img.recommend_next_btn {
    display: block;
    width: 100%;
    margin: 20px 0 0 0;
}

img.recommend_close {
    position: absolute;
    display: block;
    right: 15px;
    top: 15px;
    width: 15px;
}

@-webkit-keyframes scaleInOut{
    0%{
        -webkit-transform:scale(1);
    }
    50%{
        -webkit-transform:scale(0.9);
    }
    100%{
        -webkit-transform:scale(1);
    }
}

.comment_box{
    width: 88.8%;
    margin: 0 auto;
    overflow: hidden;
    color: white;
    height: 17rem;
}

.comment_border{
    width: 100%;
    background-image: url('../img/comment_border.png');
    background-repeat: repeat-y;
    background-size: contain;
}

.comment_top_border , .comment_bottom_border{
    display: block;
    width: 88.8%;
    margin: 0 auto;
}

p.comment_title {
    color: #fcb261;
    margin-bottom: 0.2rem;
    font-size: 16px;
    padding: 0 0.6rem;
    box-sizing: border-box;
}

p.comment_desc{
    margin-bottom: 0.2rem;
    font-size: 16px;
    padding: 0 0.6rem;
    box-sizing: border-box;
    min-height: 4em;
}

p.comment_splitline {
    display: block;
    height: 1px;
    margin: 0 0.6rem;
    box-sizing: border-box;
    background-color: white;
}

.index_infobox {
    position: relative;
    background-color: #ded9ed;
    width: 88.8%;
    margin: 1rem auto;
    border-radius: 10px;
    padding: 0.5rem 0;
    box-sizing: border-box;
}
img.index_info_tip {
    display: block;
    width: 70%;
    margin: 0 auto 0.5rem auto;
}
.birthday_box {
    display: block;
    width: 85%;
    height: 2rem;
    line-height: 2rem;
    margin: 0 auto;
    font-size: 18px;
    overflow: hidden;
}
.birthday_box span {
    display: block;
    width: 5em;
    float: left;
    color: #110e15;
}
.birthday_box p {
    display: block;
    width: calc(100% - 5em);
    float: left;
    text-align: left;
    text-indent: 0.5em;
    color: #6f6d70;
}
img.index_info_arrow {
    display: inline-block;
    width: 10px;
    margin: 0 0 0 5px;
}
.changeBorn{
    display: none;
}
.loading_box{
    display: none;
}
.loading_box {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

img.loadingbg {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    top: 0;
}

.loading_progress_box {
    position: relative;
    color: white;
    font-size: 18px;
    width: 100%;
    height: 200px;
    top: calc(50% - 200px);
}

.loading_progress {
    display: none;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-bottom: 15px;
    padding-left: 2em;
    box-sizing: border-box;
}

.loadingimg {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    vertical-align: middle;
}

.loadingtext {
    display: inline-block;
    height: 18px;
    line-height: 18px;
    width: 10em;
    text-align: left;
}

.progress_5{
    margin-bottom: 40px;
}
.loading_finish {
    display: none;
    font-size: 20px;
    text-align: center;
    color: #dfa663;
    text-indent: 1em;
}

.progress_1{
    display: block;
}


img.loading_animation {
    /*旋转（逆时针）*/
    -webkit-animation: spin_back 1.5s linear infinite;
    animation: spin_back 1.5s linear infinite;
}


@-webkit-keyframes spin_back {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes spin_back {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.toastbox {
    display: none;
    position: fixed;
    width: 70%;
    min-height: 2rem;
    background-color: rgba(0,0,0,0.7);
    color: white;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
    line-height: 2rem;
    font-size: 18px;
    border-radius: 5px;
}