*{
    padding: 0;
    margin: 0;
}
/*取消a标签在移动端点击时的蓝色*/
a{
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    text-decoration: none;
    color: #333;
}
h1{
    font-size: 22px;
    color: white;
    padding: 10px;
    text-align: center;
}
body{
    font-size: 16px;
    background-color: #d1b18a;
    font-family: Georgia,STSong,'华文宋体','STFangsong','华文仿宋','FangSong','NSimSun','SimSun','FangSongGB2312',serif;
}
#top_bar{
    background-color: #C29869;
    position: fixed;
    z-index: 9998;
    top:0;
    width: 100%;
    height: 60px;
    transition: 0.3s;
}
.summary{
    font-size: 14px;
    color: #333;
}
.top-bar-main{
    background-color: #9D7242;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
#top_bar_show{
    height: 60px;
    width: 100%;
    display: -webkit-flex; /* Safari */
    display: flex;
    flex-direction:row;
    align-items:center;
    color: white;
}
#top_bar_hide{
    margin-top: 5px;
}
/*搜索Tab*/
#top_bar_search_nav{

    overflow-x: scroll;

}
#top_bar_search_nav::-webkit-scrollbar {
    display: none;
}
#top_bar_search_nav ul{
    list-style: none;
    padding: 0 10px;
    white-space:nowrap;
}
#top_bar_search_nav ul li{
    list-style: none;
    display: inline-block;
}
#top_bar_search_nav ul li a{
    font-size: 18px;
    color: white;

    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    border-bottom: 2px solid #9D7242;
}
#top_bar_search_nav ul li .search-tab-current{
    border-bottom: 2px solid white;
}
#clear_input{
    flex-shrink: 0;
}
.line{
    height: 1px;
    background-color: #C39966;
    margin: 5px 0;
}
.line2{
    height: 1px;
    background-color: #9e733e;
    margin: 5px 0;
}
.line3{
    height: 1px;
    background-color: #c9a47b;
}
#main{
    margin-top: 60px;
}
.top-icon{
    font-size: 26px;
    color: white;
}
/*打开菜单按钮*/
#open{
    flex-shrink:0;
    margin-left: 10px;
}
/*打开搜索按钮*/
#search{
    flex-shrink:0;
    margin-right: 10px;

}
/*取消按钮*/
#cancel_search{
    flex-shrink:0;
    color: #ccc;
    text-decoration: none;
    padding: 10px;
    margin-right: 5px;
}
/*顶部标题*/
#top_title{
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*搜索框容器*/
#search_input_container{
    flex-grow: 1;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 3px;
    background-color: #DDD2C5;
    border: 0;
    padding: 6px;
    margin: 2px 10px;
    align-items:center;
}
.input::-ms-clear { display: none; }
#search_input_container input{
    flex-grow: 1;
    flex-shrink: 1;
    height: 26px;
    outline: none;
    font-size: 18px;
    border: 0;
    background-color: #DDD2C5;
    padding: 5px 10px;
    display: inline-block;
    width: 100px;
}
#search_input_container i{
    flex-shrink: 0;
}
.search-opened-hide{

}
.search-opened-show{
    display: none;
}
.search-result ul li{
    list-style: none;
    border-bottom: 1px ;
}
.search-result ul li a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}
.search-result ul li{
    border-bottom: 1px solid #9d7a42;
}
.search-result ul li a:hover{
    background-color: #D0B18C;
}
.search-result ul li span{
    font-size: 14px;
    color: #333;
}
.search-all a{
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: center;
    font-size: 18px;
}
.search-all a:hover{
    background-color: #D0B18C;
}
/*菜单*/
.menu{
    height:100vh;
    background-color:#9D7242;
    position: fixed;
    width: 65%;
    left: -65%;
    top:0;
    z-index: 10000;
    transition: 0.3s;
    overflow-y: scroll;
    box-sizing: border-box;
}
.menu .logo{
    padding: 10px;
}
.menu .logo img{
    height: 40px;
}
.aside-nav ul li{
    list-style: none;
}
.aside-nav ul li a{
    font-size: 18px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-top: 1px solid #9d7a42;
    font-weight: bold;
}
.aside-nav ul li .sub-nav{
    padding: 10px 20px;
    font-weight: normal;
    border-top: 0px;
    color: #eee;
}
.aside-nav ul li a:hover{
    background-color: #D0B18C;
}
/*蒙层*/
.lay{
    display:none;
    position: fixed;
    height: 100vh;
    width:100%;
    top: 0;
    opacity: 0.7;
    background-color: #0C0C0C;
    z-index: 9999;
    transition: 0.3s;
}
.index-li{
    margin-bottom: 1px;
}
.index-li li{
    list-style: none;
    display: inline-block;
}
.index-li h3{
    padding: 20px 10px;
    background-color:#C29869 ;
    font-weight: normal;
}
.index-li h3 i{
    transition: all 0.3s;
    display: inline-block;
    margin: 10px;
}
.rotate-180{
    transform:rotate(180deg);
    -ms-transform:rotate(180deg); 	/* IE 9 */
    -moz-transform:rotate(180deg); 	/* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg); 	/* Opera */
}
.rotate-90{
    display: inline-block;
    transform:rotate(90deg);
    -ms-transform:rotate(90deg); 	/* IE 9 */
    -moz-transform:rotate(90deg); 	/* Firefox */
    -webkit-transform:rotate(90deg); /* Safari 和 Chrome */
    -o-transform:rotate(90deg); 	/* Opera */
}


.shici-container{
    overflow: hidden;
}
.shici-container h1{

    color: black;
}
.shici-title{
    font-size: 20px;
    text-align: center;
    padding: 10px;
}
.shici-info{
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
.shici-content{
    padding: 10px;
    text-align: center;
}
.shici-mark{
    text-align: right;
}
.shici-mark a{
    display: inline-block;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
    background-color: #C0966F;
    margin: 5px;
}
.shici-mark a:active{
    background-color: #9D7242;
}
.relate-zuozhe{

}
.shangxi-container{
    padding: 10px;
}
.to-zuozhe-home{
    text-align: right;
    margin: 10px 0;
}
.to-zuozhe-home a{
    padding: 12px;
    background-color: #C0966F;
}

.zuozhe-summary{
    text-align: center;
    background-color: #C1976C;
    padding: 10px;
}
.zuozhe-summary img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.zuozhe-summary h4{
    font-size: 20px;
    text-align: center;
}
.zuozhe-summary .summary{
    text-align: left;
    font-size: 14px;
    padding: 10px;
    max-height: 100px;
    transition: 0.3s;
    overflow: hidden;
}
.relate-zuozhe a{
    padding: 10px;
    display: block;
    overflow: hidden;
    background-color: #C1976C;
    margin-bottom: 1px;
}
.relate-zuozhe a:hover{
    background-color: #9D7242;
}
.relate-zuozhe h5{
    font-size: 16px;
}
.relate-zuozhe .summary{
    font-size: 14px;
    color: #333;
}
.relate-zuozhe .summary img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    float: right;
}
.out-title{
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    padding: 10px;
    color: #666;
}
.more{
    text-align: center;
    padding: 10px;
    opacity: 0.5;
}
.more i{
    display: inline-block;
    transition: 0.3s;
}
.zuozhe-header{
    text-align: center;
}
.zuozhe-header h1{
    font-size: 22px;
    padding: 10px;
    color: black;
}
.zuozhe-header img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px;
}
.zuozhe-header h6{
    font-size: 14px;
}
.zuozhe-header .summary{
    text-align: left;
    padding: 10px;
}
.xu{
    font-style: italic;
    text-align: center;
    color: #444;
    font-size: 14px;
    padding: 10px;
}
.more-info{
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.www-main-container h2{
    font-size: 18px;
    font-weight: normal;
}
.www-main-container h3{
    font-size: 18px;
    font-weight: normal;
    color: black;
}
.www-main-container a{
    padding: 10px;
    display: block;
}
.www-main-container .summary{
    font-size: 14px;
}
.www-main-container a:active{
    background-color: #9e733e;
}
.pagination a{
    display: inline-block;
    padding: 8px 16px;
    background-color: #C1976C;
    border-radius: 3px;
    margin: 5px;
}
.pagination a:hover{
    background-color: #9e733e;
}
.pagination >span{
    display: inline-block;
    padding: 8px 16px;
}
.search-tab{
    border-bottom:1px solid #C0966F;
    font-size: 16px;
    background-color: #C1976C;
}
.search-tab ul{
    list-style: none;
}
.search-tab ul li{
    list-style: none;
    display: inline-block;
}
.search-tab ul li a{
    color: black;
    padding: 10px;
    display: inline-block;
    position: relative;
    bottom: -1px;
    font-size: 18px;
    font-weight: bold;
}
.search-tab ul li .tab-current{
    color: white;
    border-bottom:2px solid white;
}
.filter-container{
    padding: 10px;
}
.filter-container a{
    display: inline-block;
    padding: 5px;
    margin: 3px;
}
.filter-container a:hover{
    background-color: #9D7242;
    border-radius: 3px;
    color: white;
}
.search_result_div{
    padding: 5px;
    font-size: 14px;
    color:#eee2d5 ;
    margin-top: 5px;
}
.current-niandai{
    background-color: #9D7242;
    border-radius: 3px;
    color: white;
}
.chaxun-item{
    overflow: hidden;
}
.chaxun-item{
    overflow: hidden;
}
.chaxun-item h3{
    font-weight: bold;
}
.chaxun-item .summary img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: right;
}
em{
    font-style: normal;
    color: #d55c00;
}
.kw-cate{
    margin: 5px;
}
.kw-cate h2{
    font-size: 18px;
    color: white;
    padding: 10px;
    text-align: center;
}
.kw-cate a{
    display: inline-block;!important;
    padding: 10px;
    margin: 5px;
    background-color: #C1976C;
    border-radius: 3px;
    min-width: 40px;
    text-align: center;
}
.cipai h1{
    font-size: 22px;
    color: white;
    text-align: center;
    padding: 10px;
}
.cipai-container{
    padding: 10px;
}
.cipai-container li{
    display: inline-block;!important;
    padding: 10px;
    margin: 5px;
    background-color: #C1976C;
    border-radius: 3px;
    min-width: 60px;
    text-align: center;
}
.cipai-container a:hover{
    background-color: #9D7242;
}
.hecheng a{
    display: block;
    padding: 10px;

}
.hecheng h3{
    font-size: 18px;
}
.hecheng a:active{
    background-color: #9D7242;
}
.summary img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: right;
}
.hecheng-zuozhe{
    padding: 10px;
}
.hecheng-summary{
    padding: 10px;
    font-size: 14px;
    color: #333;
}
.hecheng-zuozhe-list a{
    display: block;
}
.hecheng-zuozhe-list a:active{
    background-color: #9D7242;
}

.common-a{
    display: block;
}
.common-a:active{
    background-color: #9D7242;
}
.old-content{
    padding: 10px;
}

.xiehouyu{
    padding: 10px;
    border: 1px solid #c9a47b;
    border-radius: 5px;
    margin: 5px;
}
.xiehouyu .answer{
    padding: 5px;
    font-size: 18px;
}
.xiehouyu .answer span{
    display: none;
    color: green;
}
.cangtoushi-input{
    padding: 5px 0;
    outline: none;
    display: block;
    width: 70%;
    box-sizing: border-box;
}
.bookmark-list h3{
    padding: 10px;
}
.book-header{
    padding: 10px;
}
.book-header p{
    margin: 5px;
    font-size: 14px;
    line-height: 20px;
}
.book-header img{
    float: left;
    width: 75px;
    margin: 5px;
    display: inline-block;
}
.book-summary{
    overflow: hidden;
    padding: 10px;
}
.book-mulu li{
    line-height: 22px;
    border-bottom: 1px solid #c9a47b;
}
.book-mulu li a{
    display: block;
    padding: 10px;
}
.book-mulu li a:hover{
    background-color:#9D7242 ;
}
.book-mulu h5{
    color: white;
}
.chapter_content{
    padding: 10px;
}
.index-zuozhe{
    max-height: 1000px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
}
.index-zuozhe ul li{
    list-style: none;
    display: inline-block;
    padding: 5px;
    margin: 5px;
    text-align: center;
}
.index-zuozhe ul li img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.index-list-div{
    overflow: hidden;
    transition: 0.3s;
    max-height: 1000px;
}
.index-list-div li{
    display: block;
}
.index-list-div li a{
    display: block;
    padding: 10px;
}
.index-list-div li a:active{
    background-color: #9D7242;
}
.index-list-div li a i{
    display: inline-block;
    float: right;
}
.view-all a{
    text-align: center;
    display: block;
    padding: 10px;
    font-size: 18px;
}
.footer{
    background-color: #C39966;
    text-align: center;
    margin-top: 30px;
    padding: 70px;
    font-size: 14px;
    color: #0C0C0C;
}

.m_ddd{
    text-align: center;
    background-color: #C0966F;
    margin: 10px 0;
    padding: 10px;
}
.m_ddd  h6{
    font-size: 18px;
    color: black;
    text-align: left;
}
.m_ddd a div img{
    width: 30%;
    display: inline-block;
    margin: 3px;
}
.ddd-flag{
    font-size: 12px;
    color: #D0B18C;
    text-align: left;
}
.close-ddd{
    font-size: 14px;
    text-align: right;
}
.parent-nav i{
    display: inline-block;
    margin: 0px 10px;
    transition: 0.3s;
    float: right;
}
.sub-nav-ul{
    max-height: 400px;
    transition: 0.3s;
    overflow: hidden;
}
.more-chaxun-result i{
    display: inline-block;
    transition: 0.3s;
    margin:  0 2px;

}
.sub-item-show{
    border: 1px solid #9D7242;
    max-height: 2000px;
}
.sub-item-hide{
    max-height: 0px;
    border: 0;
}
.sub-item{
    margin: 0 10px;
    transition: 0.3s;
    overflow: hidden;
    border-radius: 3px;
}

.book-chaxun-main{
    display: flex;
    align-items: center;
}

.book-chaxun-left{
    flex-grow: 1;
}
.book-chaxun-right{
    flex-grow: 0;
}
.book-chaxun-right img{
    width: 30px;
    height: 30px;
    display: inline-block;
    transition: 0.3s;
}

.book-chaxun-info{
    font-size: 14px;
    color: #666;
    padding: 5px;
}
.book-chaxun-chapter-list{
    padding-left: 20px;
    display: none;

}
.book-chaxun-chapter-list h4{
    font-size: 14px;
}
.book-chaxun-chapter-part{
    font-size: 12px;
    color: #666;
}
.book-search-form{
    text-align: right;
}
.book-search-form input{
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
}
.book_filter_tip{
    font-size: 16px;
    padding: 8px;
    color: white;
}

.highlight{
    background-color: #FD953F;
    font-weight: bold;
}


.chengyu-table{
    width: 100%;
    border: 0;
}
.chengyu-table .head{
    color: #666;
}
.chengyu-table tr td{
    text-align: left;
    border: 1px solid #c9a47b;
    padding: 10px;
    margin: 0;
}
.chengyu-rel{
    font-size: 14px;
    color: #333;
    padding: 10px;
}
.chengyu-rel-title{
    font-weight: bold;
    font-size: 16px;
}

.chengyu-list-item h3 span{
    margin: 0 10px;
    font-size: 14px;
    color: #666;
}
.chengyu-list-jieshi{
    font-size: 14px;
    color: #333;
    padding: 10px;
}

#xcx_div{
    position: fixed;
    top: 0;
    z-index: 10000;
    display: none;
    width: 70%;
    margin: 50px 15%;
}
#xcx_div img{
    width: 100%;
    vertical-align: middle;
}