/*body{
background-color: silver;
background-image: linear-gradient(335deg,lightgray 23px, transparent 23px),
linear-gradient(155deg, lightgray 23px, transparent 23px),
linear-gradient(335deg,lightgray 23px, transparent 23px),
linear-gradient(155deg, lightgray 23px, transparent 23px);
background-size: 58px 58px; 
background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
}
*/


/* 定制自己导航栏的样式 */
#shwtop ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /*去除li前的标注*/
    background-color: #333;
    overflow: hidden; /*隐藏溢出的部分，保持一行*/
}
#shwtop li {
    float: left; /*左浮动*/
}
#shwtop li a, .dropbtn {
    display: inline-block; /*设置成块*/
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
}
/*鼠标移上去，改变背景颜色*/
#shwtop li a:hover, .dropdown:hover .dropbtn { 
    /* 当然颜色你可以自己改成自己喜欢的，我还是挺喜欢蓝色的 */
    background-color: blue;
}
#shwtop .dropdown {
    /*
    display:inline-block将对象呈递为内联对象，
    但是对象的内容作为块对象呈递。
    旁边的内联对象会被呈递在同一行内，允许空格。
    */
    display: inline-block;
}
#shwtop .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
#shwtop .dropdown-content a {
    display: block;
    color: black;
    padding: 8px 10px;
    text-decoration:none;
}
#shwtop .dropdown-content a:hover {
    background-color: #a1a1a1;
}
#shwtop .dropdown:hover .dropdown-content{
    display: block;
}
        #auto_div {
            display: none;
            width: 257px;
            border: 1px #74c0f9 solid;
            background: #FFF;
            position: absolute;
            top: 24px;
            left: 0;
            margin-top: 15px;
            color: #323232;
            /*设置显示在当前页面的上一层*/
            z-index: 1;
        }

        .side_search {
            float: left;
            position: relative;
            height: 31px;
            margin-left: 25px;
            display: inline-block;
        }

        .side_search:hover {
            -webkit-box-shadow: 0 0 3px #999;
            -moz-box-shadow: 0 0 3px #999
        }

        .search_input {
            width: 210px;
            vertical-align: middle;
            height: 30px;
            line-height: 30px;
            border: 1px solid #999;
            border-radius: 2px 0 0 2px;
            padding: 4px 7px;
            background-color: #fbfbfb;
        }

        .delete_btn {
            background: #fbfbfb;
            margin-left: -6px;
            border: 1px solid #fbfbfb;
            border-radius: 0 3px 3px 0;
            cursor: pointer;
            display: inline-block;
            vertical-align: middle;
            color: red;
            font-weight: bold;
            width: 38px;
            font-size: 25px;
            height: 38px;
            padding-bottom: inherit;
        }

        .search_btn {
            border-radius: 3px 3px 3px 3px;
            background: #4d90fe;
            margin-left: -7px;
            border: 1px solid #4d90fe;
            cursor: pointer;
            display: inline-block;
            vertical-align: middle;
            color: #f3f7fc;
            font-weight: bold;
            width: 100px;
            font-size: 18px;
            height: 41px;
        }

        .search_btn:hover {
            background: #1874CD
        }

        .search_btn2 {
            border-radius: 3px 3px 3px 3px;
            background: #F0CB85;
            border: 1px solid #F0CB85;
            cursor: pointer;
            display: inline-block;
            vertical-align: middle;
            color: #DC143C;
            font-weight: bold;
            width: 100px;
            font-size: 18px;
            height: 41px;
        }

        .search_btn2:hover {
            background: #DEB887
        }

        input,
        button,
        textarea,
        select,
        optgroup,
        option {
            font-family: inherit;
            font-size: inherit;
            font-style: inherit;
            font-weight: inherit;
        }

/*评论区*/
    .blog_comment_body {
        background: #B2E866;
        float: left;
        border-radius: 5px;
        position: relative;
        overflow: visible;
        margin-left: 33px;
        max-width: 700px;
    }
 
    .feedbackListSubtitle a.layer {
        background: #B2E866;
        color: #414141 !important;
        padding: 2px 4px;
        border-radius: 2px;
    }


/* 禁止页面，选中 复制 */
html,body {
	moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


