


/**
 * =================== main content box ======================
 */
.main_content_box{
    width: 100%;
    min-height: 80vh;
}

/**
 * banner box
 */
.banner{
    width: 100%;
    clear: both;
    overflow: hidden;
    height: 80vh;
}

.swiper-slide{
    width: 100%;
    height: 100%;
    text-align: center;
    background-size:cover;
    background-position: top left;
}

.banner .swiper-wrapper .swiper-slide .banner_cover{
    position: absolute;
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner .swiper-wrapper .swiper-slide .banner_content{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}

.banner .swiper-wrapper .swiper-slide .banner_content .main_title{
    font-size: 50pt;
    line-height: 120%;
    margin: 10px 0;
    color: #fff;
    font-weight: bold;
    width: fit-content;
}

.banner .swiper-wrapper .swiper-slide .banner_content .sub_title{
    font-size: 18pt;
    color: #fff;
    width: fit-content;
    margin: 10px 0;
}

.banner .swiper-wrapper .swiper-slide .banner_content .description{
    font-size: 13pt;
    color: #fff;
    width: fit-content;
    margin: 10px 0 20px;
}

.banner .swiper-wrapper .swiper-slide .banner_content .link_button{
    padding: 20px 40px;
    font-size: 12pt;
    background-color: #ffffff;
    color: #353535;
    display: block;
    width: 200px;
    text-align: center;
    float:right;
    text-decoration: unset;
    margin: 0 10%;
    transition: background-color 500ms,color 500ms;
}

.banner .swiper-wrapper .swiper-slide .banner_content .link_button:hover{
    text-decoration: unset;
    color: #ffffff;
    background: #F67F3C;
}

.swiper-pagination {
    width: 500px;
    margin: 0 auto 20px auto;
    position: relative !important;
    outline: none;
}

.swiper-pagination .swiper-pagination-bullet{
    width: 30%;
    margin: 1.5%;
    border-radius: 0;
    background: #888888;
    outline: none;
}

.swiper-pagination .swiper-pagination-bullet-active{
    background: #F67F3C;
    outline: none;
}


/**
 *  the section and card boxes
 */
.section .suite{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px;
    box-sizing: border-box;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.section .suite .item{
    position: relative;
    width: 270px;
    flex: auto;
    margin: 10px ;
    color: #353535;
    box-shadow: 0 0 0 0 rgba(0,0,0,.1);
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    transition: box-shadow 200ms ease-in-out;
    background-color: #ffffff;
}

.section .suite .item:after{
    content: '';
    display: block;
    width: 95%;
    height: 5px;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    background-color: #d9d9d9;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
}

.section .suite .item:hover{
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
    color: #F67F3C;
    transition: box-shadow 200ms ease-in-out;
}

.section .suite .item img{
    width: 100%;
    display: block;
}

.section .suite .item .card_body{
    padding: 20px;
}

.section .suite .item .card_body h3{
    font-size: 15pt;
    line-height: 100%;
    margin: 0 0 10px 0;
}

.section .suite .item .card_body p{
    font-size: 10pt;
    margin: 0;
}


/**
 * the latest story section
 */
/*最新章节*/
.book_section{
    width: 900px;
    height: 250px;
    margin: 20px auto;
    display: block;
    overflow: hidden;
}
.book_section .info{
    width: 50%;
    height: 100%;
    float: right;
    padding: 20px;
    border-bottom: 3px dashed #F67F3C;
    border-left: 3px dashed #F67F3C;
}

.book_section .info span{
    color: #888;
    font-size: 8pt;
    display: block;
    margin: 20px 0 10px 0;
}

.book_section .info p{
    margin: 10px 0;
}

.book_section .cover{
    width: 50%;
    height: 100%;
    display: block;
    float: right;
    background: #888;
    border-top: 3px solid #F67F3C;
    border-right: 3px solid #F67F3C;
}


.story_table{
    max-width: 1200px;
    margin: 0 auto;
}





/**
 *  news and announcement
 */

.news_box{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.news_box .left{
    width: 300px;
    flex: auto;
    padding: 20px 5%;
    float: left;
    border-top: 3px solid #F67F3C;
    background: rgba(246,127,60,0.3);
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.news_box .right{
    width: 300px;
    flex: auto;
    padding: 20px 5%;
    float: left;
    border-left: 3px dashed #F67F3C;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.news_box .title{
    width: fit-content;
    margin: 0 0 20px 0;
}

.news_box .news_list{
    width: 100%;
}

.news_box .news_list .item{
    margin: 0 0 20px 0;
}

.news_box .news_list .item .title_box{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.news_box .news_list .item .title_box h3{
    font-size: 17pt;
    font-weight: 500;
    width: 50%;
    flex: auto;
    margin: 0 auto 0 0;
}


.news_box .news_list .item span{
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    background: linear-gradient(0,#ffffff 50%,#e5e5e5 0%) top/100% 34% no-repeat;
    background-size: cover;
    line-height: 25px;
    font-size: 10pt;
    border: 1px solid #d9d9d9;
    user-select: none;
}

.news_box .left .news_list .item span{
    margin-left: 20px;
}

.news_box .right .news_list .item span{
    margin-right: 20px;
}

.news_box .news_list .item p{
    margin: 10px 0;
}


















@media (max-width: 792px){


    /**
     * 首页 banner
     */

    .banner{
        height: 250px;
    }

    .banner .swiper-wrapper .swiper-slide .banner_content{
        padding: 20px;
    }

    .banner .swiper-wrapper .swiper-slide .banner_content .main_title{
        font-size: 15pt;
        margin: 5px 0;
    }

    .banner .swiper-wrapper .swiper-slide .banner_content .sub_title{
        font-size: 10pt;
        font-weight: bold;
        margin: 5px 0;
    }

    .banner .swiper-wrapper .swiper-slide .banner_content .description{
        font-size: 8pt;
        margin: 5px 0 10px;
    }


    .swiper-pagination {
        width: 90%;
        margin: 0 auto 20px auto;
        position: relative !important;
        outline: none;
    }

    .swiper-pagination .swiper-pagination-bullet{
        width: 30%;
        margin: 1.5%;
        border-radius: 0;
        background: #888888;
        outline: none;
    }

    .swiper-pagination .swiper-pagination-bullet-active{
        background: #F67F3C;
        outline: none;
    }







    /*最新章节*/
    .book_section{
        width: 90%;
        height: fit-content;
        margin: 20px auto;
        display: block;
        overflow: hidden;
    }
    .book_section .info{
        width: 100%;
        padding: 20px;
        border-bottom: 3px dashed #F67F3C;
        border-left: 3px dashed #F67F3C;
    }

    .book_section .info span{
        color: #888;
        font-size: 8pt;
        display: block;
        margin: 20px 0 10px 0;
    }

    .book_section .cover{
        width: 100%;
        height: 250px;
        display: block;
        background: #888;
        border-top: 3px solid #F67F3C;
        border-right: 3px solid #F67F3C;
    }

    .story_table{
        max-width: 90%;
        margin: 0 auto;
    }


}
