.box {
    font-size: 20px;
    color: #f71605;
    margin: 10px;
    animation: changeshadow 1s ease-in infinite;
    font-family: '华文新魏';
    /* 其它浏览器兼容性前缀 */
    -webkit-animation: changeshadow 1s linear infinite;
    -moz-animation: changeshadow 1s linear infinite;
    -ms-animation: changeshadow 1s linear infinite;
    -o-animation: changeshadow 1s linear infinite;
}

@keyframes changeshadow {
    0% {
        text-shadow: 0 0 4px #4cc134
    }
    50% {
        text-shadow: 0 0 40px #4cc134
    }
    100% {
        text-shadow: 0 0 4px #4cc134
    }
}

/* 添加兼容性前缀 */
@-webkit-keyframes changeshadow {
    0% {
        text-shadow: 0 0 4px #4cc134
    }
    50% {
        text-shadow: 0 0 40px #4cc134
    }
    100% {
        text-shadow: 0 0 4px #4cc134
    }
}

@-moz-keyframes changeshadow {
    0% {
        text-shadow: 0 0 4px #4cc134
    }
    50% {
        text-shadow: 0 0 40px #4cc134
    }
    100% {
        text-shadow: 0 0 4px #4cc134
    }
}

@-ms-keyframes changeshadow {
    0% {
        text-shadow: 0 0 4px #4cc134
    }
    50% {
        text-shadow: 0 0 40px #4cc134
    }
    100% {
        text-shadow: 0 0 4px #4cc134
    }
}

@-o-keyframes changeshadow {
    0% {
        text-shadow: 0 0 4px #4cc134
    }
    50% {
        text-shadow: 0 0 40px #4cc134
    }
    100% {
        text-shadow: 0 0 4px #4cc134
    }
}

/*页面顶部的样式*/
body {
    background-color: #efefef;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 0;
    background-size: cover;
    padding-top: 0px;
}

#header {
    display: none;
}

.dropdown-content {
    z-index: 999;
}

#test33 ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /*去除li前的标注*/
    background-color: #333;
    overflow: hidden; /*隐藏溢出的部分，保持一行*/
}

#test33 li {
    float: left; /*左浮动*/
}

#test33 li a, .dropbtn {
    display: inline-block; /*设置成块*/
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
}

#test33 li a:hover, .dropdown:hover .dropbtn { /*鼠标移上去，改变背景颜色*/
    background-color: blue;
}

#test33 .dropdown {
    /*display:inline-block将对象呈递为内联对象，但是对象的内容作为块对象呈递。旁边的内联对象会被呈递在同一行内，允许空格。*/
    display: inline-block;
    color : "white";
}

#test33 .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

#test33 .dropdown-content a {
    display: block;
    color: black;
    padding: 8px 10px;
    text-decoration: none;
}

#test33 .dropdown-content a:hover {
    background-color: #a1a1a1;
}

#test33 .dropdown:hover .dropdown-content {
    display: block;
}
.dropdown a {
  color : white;
}

.dropdown :visited{
    color: white;
    text-decoration: none;
}
.dropdown :hover {
    color: white;
    text-decoration: none;
}

/* 定制返回顶部按键 */
#toTop {
    background: url(//https://images.cnblogs.com/cnblogs_com/shwee/1218109/o_toTop.bmp) no-repeat 0px top;
    width: 57px;
    height: 57px;
    overflow: hidden;
    position: fixed;
    right: 100px;
    bottom: 20px;
    cursor: pointer;
}
/* 设置签名格式 定制css样式 */
#MySignature {
    display: none;
    background-color: #B2E866;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #6B6B6B;
    padding: 10px;
    line-height: 1.5;
    text-shadow: 1px 1px 1px #FFF;
    font-size: 16px;
    font-family: 'Microsoft Yahei';
}

/*页面底部*/
.deanfooter {
            margin-top: 40px;
            width: 100%;
            padding: 40px 0;
            min-width: 1180px;
            background: #333;
        }

        .w1180 {
            width: 1180px;
            margin: 0 auto;
        }

        .deanfttop {
            width: 975px;
            margin: 0 auto;
            padding-bottom: 15px;
        }

        .deanfttop ul {
            float: left;
            width: 230px;
            border-right: 1px dotted #4d4d4d;
            margin-right: 12px;
        }

        .deanftpl {
            width: 90px;
            float: left;
            text-align: center;
        }

        .deanftpl h5 {
            color: #ededed;
            font-size: 16px;
            font-weight: normal;
        }

        .deanftpl span {
            display: block;
            font-size: 14px;
            font-weight: normal;
            color: #FE6503;
            line-height: 44px;
        }

        .deanftpr a {
            color: #b9b9b9;
            height: 20px;
            overflow: hidden;
            float: left;
            display: inline-block;
            font-size: 14px;
            padding: 0 14px 15px 0;
        }

        .clear {
            clear: both;
        }

        .deanftintro {
            padding: 24px 5px;
            border-top: 2px #444 solid;
            text-align: center;
            font-size: 12px;
            color: #858585;
        }

        .deanfooter p {
            text-align: center;
            font-size: 12px;
            color: #858585;
            padding: 5px 0;
        }

        .deanfooter p a {
            font-size: 12px;
            color: #858585;
        }

        .deanfooter p span.pipe {
            font-size: 12px;
            color: #858585;
        }

        .pipe {
            margin: 0 5px;
            color: #CCC;
        }

        .deanfooter p a {
            font-size: 12px;
            color: #858585;
        }
#ad_t2,#cnblogs_c1,#cnblogs_c2,#under_post_kb{
display:none;
}
div.commentform textarea{
width:100%;
}