   /* 将默认的导航头屏蔽掉，这样才能把自己的导航栏加上去 */
    #header {
        display: none;
    }
    /* 定制自己导航栏的样式 */
    #shwtop ul {
        margin: 0;
        padding: 0;
        text-align: center;
        list-style-type: none;
        /*去除li前的标注*/
        background-image: linear-gradient(To bottom, #b3af07e6, #dfb708c0);
        /*背景颜色*/
        overflow: hidden;
        /*隐藏溢出的部分，保持一行*/
        color: #fff;
    }

    #shwtop li {
        float: left;
        /*左浮动*/
    }

    #shwtop li a,
    .dropbtn {
        display: inline-block;
        /*设置成块*/
        color: #fff;
        text-decoration: none;
        padding: 14px 16px;
        line-height: 25px;
    }

    /*鼠标移上去，改变背景颜色*/
    #shwtop li a:hover,
    .dropdown:hover .dropbtn {
        /* 当然颜色你可以自己改成自己喜欢的，我还是挺喜欢蓝色的 */
        background-image: linear-gradient(To bottom, rgb(162, 185, 78), rgb(214, 233, 49));
        color: rgb(64, 88, 243);
        text-decoration: none;
    }

    #shwtop .dropdown {
        /*
    display:inline-block将对象呈递为内联对象，
    但是对象的内容作为块对象呈递。
    旁边的内联对象会被呈递在同一行内，允许空格。
    */
        display: inline-block;
    }

    #shwtop .dropdown-content {
        display: none;
        position: absolute;
        background-image: linear-gradient(To bottom,  rgb(162, 185, 78), rgb(214, 233, 49));
        min-width: 160x;
        /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
        box-shadow: 0px 8px 16px 0px rgba(6, 74, 201, 0.2);
    }

    #shwtop .dropdown-content a {
        display: block;
        color: #fff;
        /*手风琴字体颜色*/
        padding: 8px 10px;
        text-decoration: none;
        font-size: 14px;
        text-align: left;
    }

    #shwtop .dropdown-content a:hover {
        color: rgb(17, 61, 255);
        background-image: linear-gradient(To bottom,  rgb(238, 236, 150), rgb(223, 219, 19));
    }

    #shwtop .dropdown:hover .dropdown-content {
        display: block;
    }
    #shwtop .dropbtn:hover .dropdown-content {
        display: block;
    }
    /* 博客顶部主副标题 */
    /* 欢迎来到Oksana的博客 */
    #header #blogTitle h1{
        text-align: center;
        font-size:28px;
        margin-bottom:5px;
        margin-top:20px;
        opacity: 0.5
    }
    /* 所谓幸运，不过是林深时见鹿，海蓝时见鲸，梦醒时见你。 */
    #header #blogTitle h2{
        text-align: center;
        color:red;
        font-size:18px;
        padding:5px;
        opacity: 0.5
    }