* {
    padding: 0;
    margin: 0;
}

#page_common_head {
    width: 100%;
    height: 195px;
}

#logo_search_container{
    width: 1186px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}
#logo_img{
    width: 240px;
    height: 70px;
    position: relative;

}
#login_user{
    width: 100%;
    height: 35px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
#login_user_main_cont{
    width: 1186px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#user_help{

}
#user_help ul li{
    width: 70px;
    height: 24px;
    display: inline-block;
    background-color: powderblue;
    border-radius: 5px;
    cursor: pointer;
    line-height: 24px;
    text-align: center;
}
#qqdenglu{
    position: relative;
    right: 400px;
}


#search_button:hover {
    background-color: #add8e68f;
}
#res_search{
    margin-left: 400px;
}
#header_navi{
    background-color: lightblue;
    box-sizing: border-box;
    height: 40px;
}
#header_navi ul{
    font-size: 0px;
}

#header_navi ul li{
    display: inline-block;
    background-color: lightblue;
    height: 100%;
    width: 200px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

#header_navi ul li a{
    font-size: 17px;
    color: white;
    background-color: lightblue;
    display: inline-block;
    height: 100%;
    width: 200px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;

}
#header_navi ul li:hover a{
    background-color: rgba(119, 199, 230, 0.6);
}

#total_container {
    width: 1186px;
    margin: 10px auto;
}

div#apart_class {
    box-sizing: border-box;
    width: 295px;
    height: 388px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    float: left;
}

.doc_novel_list {
    list-style-type: none;
    border-right: solid 1px rgba(0, 0, 0, 0.5);
    border-left: solid 1px rgba(0, 0, 0, 0.5);
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    font-size: 0px;
    height: 164px;
}

.docs {
    box-sizing: border-box;
    width: 120px;
    height: 35px;
    display: inline-block;
    margin: 5px 10px;
    position: relative;
    text-align: center;
    color: black;
    font-size: 14px;
}

.novels {
    box-sizing: border-box;
    width: 120px;
    height: 35px;
    display: inline-block;
    margin: 5px 10px;
    position: relative;
    text-align: center;
    font-size: 14px;
}

.docs_inner_a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 35px;
    position: relative;
    z-index: 10;
    color: rgba(212, 35, 120, 0.7);
    transition: all 500ms;
    -o-transition: all 500ms;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    /* color: rgba(255, 255, 255, 0.877); */
}

.docs:hover .docs_inner_a {
    color: rgba(173, 216, 230, 0.7);
}

.novels_inner_a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 35px;
    position: relative;
    z-index: 10;
    color: rgba(212, 35, 120, 0.7);
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
}

.novels:hover .novels_inner_a {
    color: rgba(173, 216, 230, 0.7);
}

.docs_inner_div {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    top: 0px;
    left: 0px;
    z-index: 9;
    background-color: rgba(216, 215, 215, 0.4);
    /*transition: all 500ms;*/
    /*-moz-transition: all 500ms;*/
    /*-webkit-transition: all 500ms;*/
    /*-o-transition: all 500ms;*/
}
@keyframes transformanim
{
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes transformanim /* Firefox */
{
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes transformanim /* Safari 和 Chrome */
{
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-o-keyframes transformanim /* Opera */
{
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.docs:hover .docs_inner_div {
    animation: transformanim 500ms;
    -moz-animation: transformanim 500ms;	/* Firefox */
    -webkit-animation: transformanim 500ms;	/* Safari 和 Chrome */
    -o-animation: transformanim 500ms;
    /*transform: rotate(360deg);*/
    /*-o-transform: rotate(360deg);*/
    /*-moz-transform: rotate(360deg);*/
    /*-webkit-transform: rotate(360deg);*/
}

.novels_inner_div {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    top: 0px;
    left: 0px;
    z-index: 9;
    background-color: rgba(216, 215, 215, 0.4);
    /*transition: all 500ms;*/
    /*-moz-transition: all 500ms;*/
    /*-o-transition: all 500ms;*/
    /*-webkit-transition: all 500ms;*/
}

.novels:hover .novels_inner_div {
    animation: transformanim 500ms;
    -moz-animation: transformanim 500ms;	/* Firefox */
    -webkit-animation: transformanim 500ms;	/* Safari 和 Chrome */
    -o-animation: transformanim 500ms;
}

#list_title {
    height: 38px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), white);
    border-left: 8px solid #d42378b4;
    border-right: rgba(0, 0, 0, 0.5) solid 1px;
    border-top: rgba(0, 0, 0, 0.5) solid 1px;
    border-bottom: rgba(0, 0, 0, 0.5) solid 1px;
}

#lunbo {
    box-sizing: border-box;
    width: 540px;
    height: 388px;
    float: left;
    margin-left: 10px;
    overflow: hidden;
    border-radius: 8px;
}
#lunbo img{
    width: 540px;
    height: 388px;
}
#guess_enjoy {
    box-sizing: border-box;
    width: 331px;
    height: 388px;
    float: left;
    margin-left: 10px;
    position: relative;
}

#guess_title {
    box-sizing: border-box;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.5);
    width: 331px;
    height: 40px;
    background-image: linear-gradient(to bottom, #e5f2ff, #4da6ff, #e5f2ff);
}

.guess_list {
    box-sizing: border-box;
    list-style: none;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    height: 348px;
}

.guess_item {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 9px;
    padding-bottom: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
    display: block;
}

.guess_item_inner_a {}

@keyframes anim_guess {
    from {
        transform: rotateY(0);
        -moz-transform: rotateY(0);
        -o-transform: rotateY(0);
        -webkit-transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
    }
}

@-moz-keyframes anim_guess
    /* Firefox */

{
    from {
        transform: rotateY(0);
        -moz-transform: rotateY(0);
        -o-transform: rotateY(0);
        -webkit-transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
    }
}

@-webkit-keyframes anim_guess
    /* Safari and Chrome */

{
    from {
        transform: rotateY(0);
        -moz-transform: rotateY(0);
        -o-transform: rotateY(0);
        -webkit-transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
    }
}

@-o-keyframes anim_guess
    /* Opera */

{
    from {
        transform: rotateY(0);
        -moz-transform: rotateY(0);
        -o-transform: rotateY(0);
        -webkit-transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
    }
}

.bianhao_span {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.guess_item:hover .bianhao_span {
    animation: anim_guess 0.5s;
}

.bianhao_span img {
    width: 25px;
    height: 25px;
}

.bianhao_inner_span {
    margin-left: 2px;
    font-size: 16px;
    position: relative;
    top: 2px;
    color: rgb(18, 150, 219);
}

#class_ads_list_container {
    position: relative;
}

#class_list_container {
    width: 824px;
    box-sizing: content-box;
    position: relative;
    left: 0px;
    float: left;
    margin-top: 20px;
}

.docs_ul {
    position: relative;
    box-sizing: content-box;
    left: -1px;
    width: 824px;
}

.novels_ul {
    box-sizing: content-box;
    position: relative;
    left: -1px;
}

.docs_li {
    width: 400px;
    height: 400px;
    box-sizing: content-box;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 2;
    background-image: linear-gradient(to right, #fafafa, #ffffff, #fafafa);
    perspective: 1200px;
    perspective-origin: center center;

}

.novels_li {
    width: 400px;
    height: 400px;

    box-sizing: content-box;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    top: 0px;
    left: 0px;
    background-image: linear-gradient(to right, #fafafa, #ffffff, #fafafa);
    perspective: 1200px;
    perspective-origin: center center;
}

.docs_novels_box {
    width: 400px;
    height: 400px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: all 500ms;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
}

.docs_novels_box:hover {
    transform: translate3d(0px, -2px, 15px);
    box-shadow: 0px 0px 30px 5px lightgray;
    background: white;
    border: none;
}

.top_header {
    width: 398px;
    height: 60px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    z-index: 1;
    margin: 0 auto;
}

.top_header a {
    position: relative;
    left: 340px;
    top: 21px;
    z-index: 11;
}

.content_list {
    width: 400px;
    height: 340px;
    box-sizing: border-box;
    position: relative;
}

.content_list_ul {
    position: relative;
    box-sizing: content-box;
    list-style-type: none;
    height: 320px;
    margin: 10px auto;
}

.content_list_li {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    position: relative;
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -o-transition: all 400ms;
}

.content_list_li:hover .border_div {
    height: 2px;
}

.content_list_li img {
    float: left;
    width: 20px;
    height: 20px;
    position: relative;
    top: 6px;
}

.content_list_a {
    cursor: pointer;
    margin-left: 5px;
    float: left;
    max-width: 70%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.docs_li .content_list_a2 {
    float: left;
    position: absolute;
    display: block;
    width: 20%;
    height: 20px;
    right: 0px;
    top: 0px;
    font-size: 12px;
    background-color: #ccccff;
    border: 1px solid #ccccff;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 5px 0px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

.novels_li .content_list_a2 {
    float: left;
    position: absolute;
    display: block;
    width: 20%;
    height: 20px;
    right: 0px;
    top: 0px;
    font-size: 12px;
    background-color: #8cd99f;
    border: 1px solid #8cd99f;
    border-radius: 5px;
    box-sizing: border-box;
    margin: 5px 0px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

.border_div {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: linear-gradient(to right, #c2d6d6, #d98cb3);
    height: 0px;
    border-radius: 10px;
    border-image: linear-gradient(to right, #c2d6d6, #d98cb3) 1 1;
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -o-transition: all 400ms;
}

#ads_hint_container {
    float: left;
    width: 360px;
    height: 2462px;
    box-sizing: border-box;
    margin-left: 0px;
    margin-top: 20px;
}

#hint_dynamic_container {
    position: relative;
}

#hint {
    width: 361px;
    height: 226px;
    box-sizing: border-box;
    position: relative;
    left: 0;
}
#download_paihangbang{
    width: 361px;
    height: 225px;
    box-sizing: border-box;
    position: relative;
    left: 0;
}
.paihang_unit{
    margin-bottom: 3px;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
}
.paihang_unit_a{

}
.paihang_unit_p_cont{
    width: 230px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 5px;
}
.paihang_unit_download_value{
    position: absolute;
    right: 0;
    font-size: 12px;
    bottom: 0px;
}
.paihang_unit_laud_cont{
    position: relative;
    margin-left: 10px;
}
.paihang_png_class{

}
.paihang_unit_laud_value{
    position: relative;
    top: 2px;
    font-size: 12px;
}
.recent_fixed_words{
    white-space: nowrap;
}
#hint_top {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-left: none;
    border-right: none;
    border-top: none;
}

#hint_top img {
    width: 24px;
    height: 24px;
    position: relative;
    top: 8px;
    float: left;
    margin-left: 10px;
}

#hint_top span {
    display: block;
    float: left;
    height: 100%;
    line-height: 40px;
    font-size: 16px;
    margin-left: 5px;
}

#hint_main {
    position: absolute;
    top: 40px;
    left: 0px;
    bottom: 0px;
}

.hint_main_apart_div {
    width: 100%;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-top: 5px;
}

#hint_main img {
    width: 22px;
    height: 22px;
    float: left;
}

.hint_main_p {
    top: 2px;
    position: relative;
    width: 90%;
    float: left;
    margin-left: 5px;
}

#dynamic {
    margin-top: 10px;
    width: 361px;
    height: 165px;
    box-sizing: border-box;
    position: relative;
    left: 0;
}

#dynamic_top {
    height: 26px;
    margin-top: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    position: relative;
}

#dynamic_top img {
    float: left;
    width: 28px;
    height: 28px;
    margin-left: 10px;
}

#dynamic_top span {
    float: left;
    height: 26px;
    line-height: 26px;
    margin-left: 5px;
    font-size: 16px;
    position: relative;
    top: 2px;
}

#dynamic_main {
    width: 95%;
    height: 113px;
    margin: 15px auto 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

#dynamic_main_ul {
    width: 100%;
    height: 100%;
    list-style-type: square;
    position: relative;
}

.dynamic_inner_li {
    /* position: relative;
top: 0px;
margin: 5px 0px; */
    /* list-style-type: disc; */
    font-size: 12px;
    /* transition: all 60ms;
-webkit-transition: all 60ms;
-moz-transition: all 60ms;
-o-transition: all 60ms; */
}

.dynamic_id {
    white-space: pre;
    color: rgba(54, 53, 255, 0.4);
}

.dynamic_res {
    white-space: pre;
    color: rgba(174, 218, 30, 0.81);
}

#views_top10 {
    margin-top: 10px;
    box-sizing: border-box;
    position: relative;
    width: 359px;
    height: 400px;
}

#views_top10_top {
    position: relative;
    height: 40px;
    width: 100%;
    border: rgba(0, 0, 0, 0.5) 1px solid;
    background-image: linear-gradient(120deg, rgb(242, 242, 242), white, rgb(229, 255, 250));
    background-image: -webkit-linear-gradient(120deg, rgb(242, 242, 242), white, rgb(229, 255, 250));
}

#views_top10_top img {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

#views_top10_top span {
    width: 80%;
    height: 100%;
    line-height: 40px;
    font-size: 16px;
    display: inline-block;
}

#views_top10_content {
    width: 361px;
    height: 359px;
    font-size: 0px;
}

#top10_ul {
    width: 100%;
    height: 100%;
}

.top10_li {
    height: 10%;
    width: 100%;
}

.top10_li img {
    margin-top: 7px;
    width: 21px;
    height: 21px;
    float: left;
}

.top10_li a {
    line-height: 34.9px;
    display: block;
    width: 78%;
    height: 100%;
    float: left;
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.top10_img {
    margin-right: 21px;
}

.top10_img2 {
    margin-left: 10px;
}

#ads_container1 {}

#ads_ul1 {}

.ads_li {
    width: 361px;
    height: 195px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

#ads_container2 {}

#ads_ul2 {}

.ads_li_common {
    margin: 10px 0;
}

.ads_li_first {
    margin-top: 10px;
}

.ads_li_last {
    margin-bottom: 10px;
}
#dp_header{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 10px;
}