body, ul, li, h1, h2, h3, h4, h5, h6, p, form, dl, dt, dd, div, ol {
    margin: 0px;
    padding: 0px;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:visited {
    text-decoration: none
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cl {
    clear: both;
}

.clafter:after {
    clear: both;
    content: '';
    display: block;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt50 {
    margin-top: 50px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.w100 {
    width: 100% !important;
}

.mt0 {
    margin-top: 0 !important;
}

.box {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 60px;
    height: 60px;
}

.boxc {
    background: linear-gradient(to bottom right, #61b81c, #9cf159);
}

.topTitle {
    /* background: url(../style/img/head.jpg) no-repeat center;
    background-size: cover; */
    display: table;
    height: 314px;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    width: 100%;
}

.topTitle h1 {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 10px;
    text-shadow: 1px 1px 1px #666;
}

.topTitle h1 span {
    opacity: .8;
    font-size: 14px;
    padding: 10px;
    display: block;
}

/*nav*/

.nav {
    float: left;
    height: 55px;
}

.nav li {
    display: inline-block;
    margin: 0 5px;
    font-size: 16px;
    line-height: 55px;
    position: relative;
    transition: all 0.4s ease 0s;
}

.nav li em {
    display: none;
}

.nav li a {
    display: block;
    color: #fff;
    padding: 0 10px;
    border-radius: 3px;
}

.nav>ul>li.on>a:after, .nav>ul>li.cur>a:after {
    background-color: #fff;
    height: 3px;
    width: 16px;
    left: 50%;
    margin-left: -7px;
    bottom: 0;
    content: '';
    position: absolute;
}

.nav li ul {
    position: absolute;
    left: -1px;
    top: 55px;
    background: #61b81c;
    border: 1px solid #eee;
    border-radius: 0 0 3px 3px;
    min-width: 100%;
    padding: 5px 0;
    display: none;
    z-index: 5;
    white-space: nowrap;
}

.nav li li {
    font-size: 14px;
    float: none;
    margin: 0;
    display: block;
    text-align: center;
    line-height: 2em;
}

.nav li li a {
    padding: 5px 10px;
}

.nav li li a:hover {
    border-radius: 0;
}

.search {
    width: 200px;
    max-width: 15vw;
    line-height: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    height: 30px;
    margin-top: 15px;
    background-color: #fff;
}

.search button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    left: 3px;
    top: -3px;
    height: 30px;
    outline: 0;
}

.search input {
    width: 140px;
    max-width: 11vw;
    border: none;
    height: 20px;
    outline: 0;
    margin: 3px 5px 0 0;
}

#searchfdj {
    display: none;
}

.searchdropdown {
    display: none;
}

.searchd {
    display: none;
}

/*screen width*/

@media only screen and (max-width:1280px) {
    /*1280*/
    .nav li {
        font-size: 16px;
    }
}

.mask {
    display: none;
}

@media only screen and (max-width:1024px) {
    /*1024px*/
    .nav li {
        font-size: 14px;
    }
    .topTitle {
        height: 90px;
        display: block;
        background: none;
        background: linear-gradient(to bottom right, #61b81c, #9cf159);
    }
    .topTitle h1 {
        padding: 10px;
        animation: layerize cubic-bezier(0.4, 0, 0.2, 1) 1200ms 200ms forwards;
        opacity: 0;
    }
    @keyframes layerize {
        0% {
            opacity: 0;
            transform: translate(0, 0);
            text-shadow: none;
        }
        100% {
            opacity: 1;
            transform: translate(-0.06667em, -0.06667em);
            text-shadow: 1px 1px 1px #666;
        }
    }
    .box {
        height: 0;
    }
    /*navbtn*/
    #navbtn {
        position: absolute;
        right: 0;
        top: 35px;
        transform: translateY(-50%);
        cursor: pointer;
        display: none;
        width: 25px;
        height: 20px;
    }
    #navbtn i {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -1px;
        height: 2px;
        background-color: #fff;
        width: 100%;
        transition: all .5s;
    }
    #navbtn i:before, #navbtn i:after {
        content: '';
        display: block;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        width: 100%;
        transition: all .5s;
    }
    #navbtn i:before {
        top: -9px;
    }
    #navbtn i:after {
        bottom: -9px;
    }
    #navbtn.on i {
        background: none;
    }
    #navbtn.on i:before {
        top: 0;
        transform: rotate(45deg);
    }
    #navbtn.on i:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    /*960*/
    .nav {
        position: fixed;
        float: none;
        clear: both;
        width: 200px;
        z-index: 9;
        left: -200px;
        top: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, .8);
        color: #fff;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: left .3s;
        margin-top: 0;
    }
    .mask {
        width: calc(100% - 200px);
        height: 100%;
        background: gray;
        position: fixed;
        top: 0;
        right: calc(100% + 200px);
        z-index: 9;
        opacity: 0.6;
        transition: right .3s;
        display: block;
    }
    .mask.open {
        right: 0;
    }
    .nav.open {
        left: 0;
    }
    .nav ul {
        padding: 50px 0;
    }
    .nav li {
        float: none;
        margin: 0;
        display: block;
        line-height: 45px;
    }
    .nav li em {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 45px;
        height: 45px;
    }
    .nav li em:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(45deg);
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -6px 0 0 -6px;
        transition: all .3s;
    }
    .nav li em.open:before {
        transform: rotate(-135deg);
        margin-top: 0;
    }
    .nav li a {
        color: #fff;
        padding: 0 45px 0 2em;
    }
    .nav li a:hover, .nav li.on>a, .nav li.cur>a {
        background-color: transparent;
    }
    .nav li ul {
        position: static;
        left: auto;
        top: auto;
        width: auto;
        padding: 0;
        border: none;
        background: none;
    }
    .nav li li {
        text-align: left;
        line-height: 45px;
    }
    .nav li li a {
        padding: 0 0 0 4em;
    }
    /*960*/
    #navbtn {
        display: block;
    }
    .nav>ul>li.on>a:after, .nav>ul>li.cur>a:after {
        display: none;
    }
}

.new article {
    border-bottom: solid 1px #eeeeee;
    margin: 20px 0;
    padding-bottom: 20px;
}

.new article figure {
    width: 200px;
    height: 120px;
    margin-right: 20px;
    overflow: hidden;
    float: left;
}

.new article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.5s;
}

.new article:hover figure img {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari */
    transform: scale(1.1);
    /* 标准语法 */
}

.new article h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new article h2 .icon-ding {
    font-size: 24px;
    color: #0ada60c9;
}

.new article h2 .icon-re {
    font-size: 24px;
    color: #fa0101;
}

.new article h2 a {
    color: #222222;
}

.new article .p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #5b5f64;
    margin: 6px 0;
    line-height: 25px;
}

.new article div {
    line-height: 20px;
    color: #c2c3c9;
}

.new article div::after {
    clear: both;
    content: ' ';
    width: 1px;
    height: 1px;
}

.breadcrumb {
    background-color: #ffffff;
    color: #999;
    margin: 20px 0 0 0;
}

.breadcrumb a {
    color: #999;
}

.footer {
    background-color: #2e323e;
    border-top: solid 6px #22252d;
    color: #fff;
    padding-top: 20px;
    margin-top: 40px;
    line-height: 25px;
}

.fnav a {
    display: inline-block;
    padding-right: 20px;
    color: #fff;
}

.email a {
    border-radius: 25px;
    height: 50px;
    background: #ffffff;
    display: block;
    width: 50px;
    color: #ffffff;
    text-align: center;
    padding-top: 8px;
}

.email a img {
    max-width: 80%;
    transition: all 0.5s ease 0s;
}

.email a:hover img {
    max-width: 80%;
    transform: translateY(-5px)
}

.fnav span {
    color: #c7c7c7;
    line-height: 60px;
}

.link {
    padding: 0 15px;
}

.link::after {
    content: "　";
    clear: both;
}

.link li {
    float: left;
    margin-left: 20px;
}

.link li a {
    color: #fff;
}

.link li:first-child {
    margin-left: 0;
}

.footer p {
    line-height: 50px;
    padding: 0 15px;
}

.footer p span a {
    color: #fff;
}

.listbanner {
    background-color: #2e323e;
    padding: 50px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.listbanner span:first-child {
    font-size: 24px;
}

.listbanner em {
    padding: 2px 5px;
    border-radius: 3px;
    background-color: #009688;
    font-size: 12px;
    margin-left: 10px;
    position: absolute;
    font-style: normal !important;
}

.listbanner p {
    font-size: 14px;
    line-height: 24px;
    width: 50%;
    margin: 0 auto;
    text-align: left;
}

.articlehead h1 {
    line-height: 50px;
    font-size: 24px;
}

.meta {
    border-bottom: solid 1px #e6e6e6;
    line-height: 30px;
    margin-bottom: 20px;
}

.meta a {
    color: #666;
}

.meta span {
    padding: 0 5px;
}

.main article {
    line-height: 30px;
    color: #333;
    font-size: 16px;
    word-break: break-all;
}

.main article img {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
}

.related h2 {
    font-size: 18px;
    margin: 20px 0 0 10px;
}

.newitem {
    overflow: hidden;
    border-radius: 5px;
    display: block;
}

.newitem img {
    object-fit: cover;
    width: 100%;
    height: 150px;
    transition: all 0.5s;
}

.newitem:hover img {
    transform: scale(1.1);
}

.newitem h3 {
    line-height: 1.4285714286;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    padding-bottom: 0!important;
    font-size: 14px;
    color: #333;
    padding-top: 10px;
}

.item figure p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 20px;
}

.inside {
    border-radius: 3px;
    margin-bottom: 15px;
    padding: 10px;
}

.inside header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.inside header span {
    width: 5px;
    height: 12px;
    background-image: linear-gradient(#64e66b, #6ac5b1);
    display: inline-block;
}

.inside h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 20px;
    text-indent: 1rem;
    display: inline-block;
}

.inside form {
    border: 1px solid #009688;
    border-radius: 3px;
}

.inside input[type="text"] {
    line-height: 30px;
    height: 30px;
    width: 74%;
    /* float: left; */
    padding-left: 1%;
    clear: left;
    border: 0px;
    outline: 0;
}

.inside input[type="submit"] {
    color: #FFFFFF;
    float: right;
    height: 30px;
    width: 25%;
    border: 0px;
    background-color: #009688;
}

.inside ul li {
    line-height: 25px;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    height: 25px;
}

.inside ul li a {
    color: #009688;
}

#divPrevious ul li {
    line-height: 25px;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    height: 160px;
    width: 240px;
    position: relative;
    border-radius: 5px;
}

#divPrevious ul li a img {
    height: 160px;
    width: 240px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#divPrevious ul li a p {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #222222;
    opacity: 0.7;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    width: 100%;
    padding-left: 10px;
}

#tags a {
    padding: 0 5px;
    margin: 5px;
    background-color: teal;
    color: #fff;
    display: block;
    float: left;
    line-height: 30px;
    border-radius: 3px;
}

#tags .tags0 {
    background-color: #efac82;
}

#tags .tags1 {
    background-color: #84c7cf;
}

#tags .tags2 {
    background-color: #d69899;
}

#tags .tags3 {
    background-color: #d59ad4;
}

#tags .tags4 {
    background-color: #c9b070;
}

#tags .tags5 {
    background-color: #b0d699;
}

#tags .tags6 {
    background-color: #eda29e;
}

.share {
    text-align: center;
    margin: 20px 0;
}

.share button {
    width: 70px;
    height: 70px;
    background-color: #FF5722;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    border: none;
    border-radius: 50%;
}

.share .txt {
    text-align: center;
    line-height: 30px;
    color: #bdbcbc;
}

.articleTags .tag a {
    background: #fff;
    text-align: center;
    height: 30px;
    line-height: 32px;
    margin-right: 5px;
    display: inline-block;
    padding: 0 12px;
    box-shadow: 1px 2px 8px rgb(206 213 217 / 40%);
    font-size: 12px;
    margin-bottom: 10px;
    color: #009688;
}

.page {
    border: 1px solid #f3f3f3;
    margin-top: 20px;
}

.page .boxa {
    width: 50%;
    padding: 15px 35px;
    float: left;
    min-height: 39px;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page .boxa:first-child {
    border-right: 1px solid #f3f3f3;
}

.page .boxa:last-child {
    text-align: right;
}

.page .boxa:first-child .iconfont {
    position: absolute;
    left: 0;
    top: 20px;
    height: 100%;
    font-size: 40px;
    line-height: 40px;
    transition: all 0.5s;
}

.page .boxa:last-child .iconfont {
    position: absolute;
    right: 0;
    top: 20px;
    height: 100%;
    font-size: 40px;
    line-height: 40px;
    transition: all 0.5s;
}

.page .boxa:first-child:hover .iconfont {
    left: -5px;
}

.page .boxa:last-child:hover .iconfont {
    right: -5px;
}

.page p {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

.page span {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    font-weight: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page a {
    color: #333;
}

.pagination {
    text-align: center;
    margin-top: 60px;
    width: 100%;
    line-height: 40px;
}

.pagination .page {
    padding: 8px 16px;
}

.pagination .current {
    padding: 8px 16px;
    color: #ffffff;
    background-color: #009688;
}

#tbCalendar {
    width: 100%;
}

#tbCalendar tr th {
    padding: 5px;
    text-align: center;
}

#tbCalendar tr td {
    padding: 5px;
    text-align: center;
}

#tbCalendar tr:nth-child(even) {
    background-color: #d6dada;
}

#tbCalendar tr td a {
    display: block;
    color: #ffffff;
    background-color: #009688;
    border-radius: 10%;
}

#tbCalendar caption {
    text-align: center;
}

#tbCalendar caption a {
    padding: 5px;
}

/** 评论 **/

.comments h4 {
    clear: both;
    padding: 10px;
    border-top: 1px #DDD solid;
    border-bottom: 1px #ddd solid;
    text-shadow: 0 1px rgba(75, 75, 75, 0.2);
    box-shadow: 0 10px 5px -2px #eee;
}

.commentshow {
    margin-top: 5px;
    padding: 0 10px;
}

.commentshow .comment {
    border-top: 1px solid #f6f6f6;
}

.comment-body {
    padding: 10px 8px 14px;
}

.comment-body:hover {
    background-color: #f8f8f8;
}

.comments .children li {
    margin-left: 10px;
}

.comments .gravatar {
    width: 50px;
    height: 50px;
    position: relative;
    float: left;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.comments .gravatar img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.4s ease-in;
    -moz-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    -ms-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
}

.comment-body:hover .gravatar img {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}

.comments .floor {
    float: right;
    font-size: 16px;
    color: #aaa;
}

.commenttext {
    margin-left: 60px;
}

.datetime, .reply a, .edit_comment a {
    color: #aaa;
    font-size: 13px;
    padding-left: 5px;
}

.commentid a, .cancel-comment-reply a, #edita a, .reply a:hover, .edit_comment a:hover {
    color: #0088dd;
}

.commentid a:hover {
    text-decoration: underline;
}

.comment_text {
    line-height: 1.3;
    padding: 6px 0;
    min-height: 18px;
}

.comment_text blockquote, .comment_text pre {
    margin-left: 0px;
}

.comment_text img, .checkcomments img, .respondtext img {
    vertical-align: text-bottom;
    max-width: 100%;
}

.comment_text a.iatu {
    color: #4E959E;
}

.comment_text #insert_at {
    position: absolute;
    background-color: #fff;
    width: 80%;
    border: 1px solid #cdcdcd;
    padding: 6px 6px 0;
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 #c2c2c2;
}

.reply-to-read, .login-to-read, .nocomments, .login-to-reply {
    border: 1px #FF6666 dashed;
    margin: 5px;
    padding: 2px;
    text-align: center;
    border-radius: 5px;
}

.login-to-reply {
    color: #333;
    margin-top: 15px;
}

.private {
    background-color: #ffff00;
    border: 1px #FF6666 dashed;
    margin: 5px auto;
    text-align: center;
    border-radius: 5px;
}

.wp-smiley {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

.respond {
    clear: both;
    border-top: 1px #ddd solid;
    overflow: hidden;
}

#comment_form {
    padding: 10px 10px 2px;
}

#input-box {
    display: inline-block;
    width: 100%;
}

#real-avatar {
    float: right;
    display: none;
    width: 42px;
    height: 42px;
    margin-top: 8px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

#real-avatar img {
    border-radius: 5px;
}

#author-input {
    float: left;
    width: 100%;
    margin-top: 10px;
}

#welcome {
    margin: 6px 2px;
}

#welcome .user-avatar {
    display: none;
    position: relative;
}

#welcome #avatar-img {
    position: absolute;
    left: 55px;
    bottom: 22px;
    z-index: 2;
}

#welcome #avatar-img img {
    border: 1px solid #888;
    background: #fff;
    padding: 3px;
    border-radius: 5px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

#welcome #avatar-arrow {
    position: absolute;
    left: 73px;
    bottom: 16px;
    border: 6px dashed #888;
    border-top-style: solid;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
}

#welcome strong {
    text-decoration: underline;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

#author-info {
    margin: 8px 0 5px;
}

/* 输入框和按钮 */

#author-input .input {
    border: 1px solid #ddd;
    padding: 4px 5px;
    color: #555;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.075);
    border-radius: 3px;
}

#author-input .input:focus {
    border-color: #66afe9;
    box-shadow: inset 0 0 5px rgba(102, 175, 233, 0.6);
    -webkit-transition: 0.15s ease-in;
    -moz-transition: 0.15s ease-in;
    -o-transition: 0.15s ease-in;
    -ms-transition: 0.15s ease-in;
    transition: 0.15s ease-in;
}

#author-input .input:required {
    background: url(img/red_asterisk.png) no-repeat 98% center;
}

#author-input .input:required:valid {
    background: url(img/valid.png) no-repeat 98% center;
    border-color: rgba(0, 153, 102, 0.55);
    box-shadow: inset 0 0 5px rgba(51, 204, 102, 0.25);
}

#author-input .input:focus:invalid {
    background: url(img/invalid.png) no-repeat 98% center;
    border-color: rgba(153, 51, 0, 0.55);
    box-shadow: inset 0 0 5px rgba(255, 0, 51, 0.25);
}

textarea[readonly] {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: none;
}

textarea[readonly]:required {
    background-image: none;
}

input[type="button"][disabled], input[type="submit"][disabled], input[type="reset"][disabled], input[type="file"][disabled] {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none;
}

.textarea {
    width: 100%;
    font-size: 14px;
    font-family: Arial, "Microsoft Yahei", SimSun, sans-serif;
    padding: 6px 15px 6px 6px;
    min-height: 120px;
    resize: vertical;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #ddd;
    margin: 20px 0;
}

.replytext {
    width: 48%;
    margin-right: 1%;
    vertical-align: middle;
    border-radius: 3px !important;
    line-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
}

.inpcontent {
    width: 48%;
    margin-top: 10px;
    float: left;
    margin-right: 1%;
}

.inpVerifyReset {
    width: 79% !important;
    float: left;
    margin-top: 0;
}

.jz-code {
    width: 20%;
    height: 40px;
    display: inline-block;
}

.comment-btns {
    margin-top: 5px;
    text-align: right;
}

.comment-btns #submit {
    margin-right: 5px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    background-color: rgb(103, 170, 247);
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    opacity: .8;
}

.comment-btns #submit:hover {
    opacity: 1;
}

.comment-btns #reset {
    margin-right: 5px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    background-color: rgb(248, 12, 12);
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    opacity: .8;
}

.comment-btns #reset:hover {
    opacity: 1;
}

.comments {
    margin-top: 20px;
}

.divContorPanel {
    text-align: center;
    line-height: 40px;
}

.divContorPanel span:first-child {
    padding: 10px;
    border: none;
}

.divContorPanel span {
    padding: 10px;
    border: #009688 solid 1px
}

.divContorPanel span a {
    color: #009688;
}

.nofind {
    min-height: 400px;
    text-align: center;
    line-height: 40px;
    padding-top: 20%;
}

.nofind i {
    font-size: 160px;
}

.nofind span {
    font-weight: bold;
}

#goToTop {
    position: fixed;
    bottom: 20px;
    right: 10%;
}

#goToTop a {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: block;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgb(211, 209, 209)
}

#goToTop a img {
    max-width: 100%;
}

@media (max-width: 767px) {
    .new article figure {
        width: 150px;
        height: 90px;
        margin-right: 20px;
        overflow: hidden;
        float: left;
    }
    .new article h2 {
        font-size: 16px;
        line-height: 20px;
        font-weight: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new article .p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: #5b5f64;
        margin: 3px 0;
    }
    .page .boxa {
        width: 100%;
        padding: 35px;
        float: left;
        position: relative;
        min-height: 78px;
        padding-left: 170px;
        box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
    }
    .articlehead h1 {
        line-height: 36px;
        font-size: 18px;
    }
    .fnav span {
        color: #c7c7c7;
        line-height: 30px;
    }
    .footer p {
        line-height: 25px;
    }
    .inpVerifyReset {
        width: 69% !important;
        float: left;
        margin-top: 0;
    }
    .jz-code {
        width: 30%;
        height: 40px;
        display: inline-block;
    }
}

@media (max-width:1170px) {
    .search {
        display: none;
    }
    #searchfdj {
        display: block;
        position: absolute;
        right: 30px;
        font-size: 20px;
        top: 0;
        color: #fff;
    }
    .searchdropdown {
        height: 60px;
        background: rgba(17, 17, 17, .8);
        padding: 10px;
        box-sizing: border-box;
        line-height: 40px;
        text-align: center;
        position: absolute;
        top: 90px;
        width: 100%;
        z-index: 2;
    }
    .searchd {
        display: block;
        width: 200px;
        line-height: 25px;
        margin: 8px auto 0;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        position: relative;
        height: 25px;
        background: #FFFFFF;
    }
    .searchd button {
        border: none;
        background-color: transparent;
        cursor: pointer;
        position: absolute;
        left: 3px;
        top: -3px;
        height: 30px;
        width: 30px;
        outline: 0;
    }
    .searchd input {
        width: 140px;
        border: none;
        height: 20px;
        outline: 0;
        margin: 3px 5px 0 0;
    }
    .replytext {
        width: 100%;
        vertical-align: middle;
        border-radius: 3px !important;
        line-height: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .inpcontent {
        width: 100%;
        margin-top: 10px;
        float: left;
    }
    .articlehead h1 {
        line-height: 40px;
        font-size: 20px;
    }
    .listbanner p {
        font-size: 14px;
        line-height: 24px;
        width: 90%;
        margin: 0 auto;
        text-align: left;
    }
}

@media only screen and (max-width:320px) {
    .new article figure {
        width: 120px;
        height: 72px;
        margin-right: 20px;
        overflow: hidden;
        float: left;
    }
    .new article .p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: #5b5f64;
        margin: 5px 0;
    }
    .new article div {
        line-height: 12px;
        color: #c2c3c9;
    }
    #navbtn span {
        display: none;
    }
    .hottag h2 {
        font-size: 14px;
        text-align: center;
        line-height: 60px;
    }
    .articlehead h1 {
        line-height: 32px;
        font-size: 16px;
    }
    .inpVerifyReset {
        width: 49% !important;
        float: left;
        margin-top: 0;
    }
    .jz-code {
        width: 49%;
        height: 40px;
        display: inline-block;
    }
    .comment-btns #submit {
        width: 100%;
    }
    .comment-btns #reset {
        width: 100%;
        margin-top: 10px;
    }
}