@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?eav1m6");
    src: url("../fonts/icomoon.eot?eav1m6#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?eav1m6") format("truetype"), url("../fonts/icomoon.woff?eav1m6") format("woff"), url("../fonts/icomoon.svg?eav1m6#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak-as: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-clear:before {
    content: "\e903";
}

.icon-access_time:before {
    content: "\e901";
}

.icon-insert_drive_file:before {
    content: "\e902";
}

.icon-person:before {
    content: "\e904";
}

.icon-search:before {
    content: "\e900";
}

.icon-expand_less:before {
    content: "\e905";
}


/*网络字体部分结束*/

* {
    padding: 0;
    margin: 0;
}


/*图片模糊加载样式*/

.gauss-style {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
   
}
.gauss-img {
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.hrPlus {
    border: 0;
    margin-bottom: 0px;
}

.header {
    /*页眉box */
    width: 100%;
    height: auto;
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}

.main-head {
    /*上头部-标题、搜索等等 */
    width: 1000px;
    height: 50px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-direction: row; */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.title-head {
    /*上头部flex布局的左部分，网站标题 */
    width: auto;
    height: 100%;
    padding: 0 10px 0 0;
    white-space: nowrap;
    font-size: 20px;
    /*background: url(../images/head.png) no-repeat;*/
    /*background-size: 50px 50px;*/
    /*background-position: 0px center;*/
}

.title-head a {
    line-height: 50px;
    text-decoration: none;
    color: #007fff;
}

.right-head {
    /*上头部flex布局的右部分 */
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.rightHead-left ul {
    /*上头部flex布局右部分的flex布局的左部分*/
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.rightHead-left li {
    margin-right: 10px;
}

.rightHead-left a {
    text-decoration: none;
    color: #71777c;
}

.rightHead-left a:hover {
    color: #007fff;
}

.rightHead-right {
    /*上头部flex布局右部分的flex布局的右部分*/
    display: none;
    width: 140px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 2px;
    background-color: #00000012;
}

.rightHead-right:hover {
    border: 1px solid #0876e4;
    background-color: rgb(16 22 26 / 1%);
}

.rightHead-right input {
    width: 105px;
    height: 28px;
    border: 0;
    outline: none;
    background-color: #ff000000;
    padding-left: 5px;
}

.rightHead-right i {
    cursor: pointer;
    width: 100%;
    text-align: center;
    line-height: 28px;
    border: 0;
    background-color: #ff000000;
}

.sec-head {
    /*下头部主Box，移动端菜单栏*/
    width: 100%;
    height: 30px;
    background-color: #ffffff;
    border-top: 1px solid #f1f1f1;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    position: relative;
}

.sec-head ul {
    /*下头部内box*/
    width: 1000px;
    /*与上头部的main-head对应*/
    height: 100%;
    margin: 0 auto;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #fff;
}

.sec-head li {
    margin-right: 10px;
}

.sec-head a {
    text-decoration: none;
    color: #71777c;
}

.sec-head a:hover {
    color: #007fff;
}

.sec-head p {
    color: #71777c;
}

.innerMF {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
}

.mask {
    /*下头部溢出右遮罩*/
    display: none;
    width: 50px;
    height: 100%;
    background: -o-linear-gradient(left, hsla(0, 0%, 97%, 0) 10%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, hsla(0, 0%, 97%, 0)), to(#ffffff));
    background: linear-gradient(to right, hsla(0, 0%, 97%, 0) 10%, #ffffff 100%);
    position: absolute;
    right: 5%;
    top: 0;
    pointer-events: none;
}


/*移动端搜索框*/

.startMobsearch {
    display: none;
    font-size: 20px;
}

.sec-search {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.sec-search input {
    width: 100%;
    height: 100%;
    border-right: 1px solid red;
    outline: none;
    border: 0;
    font-size: 20px;
}

.sec-search i {
    width: 20px;
    height: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
}

/*音乐样式开始*/
.msk {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.msk li {
    list-style: none;
}

/*音乐样式1*/

/*.music {*/
/*    background-color: #fff;*/
/*    margin-right: 20px;*/
/*}*/

/*.music ul {*/
/*    width: auto;*/
/*    height: auto;*/
/*    display: inline-block;*/
/*    vertical-align: baseline;*/
/*    font-size: 0;*/
/*}*/

/*.music ul li:nth-child(1) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 20px;*/
/*}*/

/*.music ul li:nth-child(2) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 20px;*/
/*}*/

/*.music ul li:nth-child(3) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 20px;*/
/*}*/

/*.music ul li:nth-child(1) {*/
/*    -webkit-animation: .8s .1s living linear infinite backwards normal;*/
/*    animation: .8s .1s living linear infinite backwards normal;*/
/*    -webkit-animation-delay: -1.1s;*/
/*}*/

/*.music ul li:nth-child(2) {*/
/*    -webkit-animation: .8s .3s living linear infinite backwards normal;*/
/*    animation: .8s .3s living linear infinite backwards normal;*/
/*    -webkit-animation-delay: -1.3s;*/
/*}*/

/*.music ul li:nth-child(3) {*/
/*    -webkit-animation: .8s .6s living linear infinite backwards normal;*/
/*    animation: .8s .6s living linear infinite backwards normal;*/
/*    -webkit-animation-delay: -1.6s;*/
/*}*/

/*@-webkit-keyframes living {*/
/*    0% {*/
/*        -webkit-transform: scaleY(1);*/
/*        transform: scaleY(1);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*    50% {*/
/*        -webkit-transform: scaleY(.3);*/
/*        transform: scaleY(.3);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*    100% {*/
/*        -webkit-transform: scaleY(1);*/
/*        transform: scaleY(1);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*}*/

/*@keyframes living {*/
/*    0% {*/
/*        -webkit-transform: scaleY(1);*/
/*        -ms-transform: scaleY(1);*/
/*        transform: scaleY(1);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        -ms-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*    50% {*/
/*        -webkit-transform: scaleY(.3);*/
/*        -ms-transform: scaleY(.3);*/
/*        transform: scaleY(.3);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        -ms-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*    100% {*/
/*        -webkit-transform: scaleY(1);*/
/*        -ms-transform: scaleY(1);*/
/*        transform: scaleY(1);*/
/*        -webkit-transform-origin: 0 20px;*/
/*        -ms-transform-origin: 0 20px;*/
/*        transform-origin: 0 20px*/
/*    }*/
/*}*/


/*静止状态*/

/*.musics {*/
/*    background-color: #fff;*/
/*    margin-right: 20px;*/
/*}*/

/*.musics ul {*/
/*    width: auto;*/
/*    height: auto;*/
/*    display: inline-block;*/
/*    vertical-align: baseline;*/
/*    font-size: 0;*/
/*}*/

/*.musics ul li:nth-child(1) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 9px;*/
/*}*/

/*.musics ul li:nth-child(2) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 20px;*/
/*}*/

/*.musics ul li:nth-child(3) {*/
/*    background-color: rgba(0, 0, 0, .5);*/
/*    margin-left: 4px;*/
/*    display: inline-block;*/
/*    width: 3px;*/
/*    height: 14px;*/
/*}*/



/*音乐样式2*/
.msec {
    margin-right: 10px;
}
.msec ul {
            width: auto;
            height: 20px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }
        
        .msec ul li {
            list-style: none;
            width: 3px;
            height: 10px;
            border-radius: 10px 10px 10px 10px;
            background-color: rgb(84 228 255);
            margin-right: 5px;
        }
        
        .music li:nth-child(1) {
            animation: does .4s .4s ease-out infinite alternate;
        }
        
        .music li:nth-child(2) {
            animation: does .4s .1s ease-out infinite alternate;
        }
        
        .music li:nth-child(3) {
            animation: does .4s .4s ease-out infinite alternate;
        }
        
        .musics li:nth-child(1) {
            transform: scaleY(.8);
        }
        
        .musics li:nth-child(2) {
            transform: scaleY(1.8);
        }
        
        .musics li:nth-child(3) {
            transform: scaleY(.8);
        }
        
        @keyframes does {
            0% {
                transform: scaleY(.5);
            }
            30% {
                transform: scaleY(.9);
            }
            50% {
                transform: scaleY(1.5);
            }
            80% {
                transform: scaleY(1.9);
            }
            100% {
                transform: scaleY(2);
            }
        }
/*音乐样式结束*/

@media (max-width: 1080px) {
    /*响应式布局*/
    .main-head {
        width: 80%;
    }
    .sec-head ul {
        width: 80%;
    }
}

@media (max-width: 830px) {
    /*响应式布局*/
    .rightHead-left a {
        display: none;
    }
    .rightHead-right {
        display: none;
    }
    .startMobsearch {
        display: initial;
    }
    .main-head {
        width: 93%;
    }
    .sec-head ul {
        width: 93%;
    }
    .msk {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 830px) {
    /*响应式布局*/
    .sec-head {
        display: none;
    }
    .hrPlus {
        margin-bottom: 20px;
    }
}


/* 页眉部分结束 */

body {
    background-color: #f4f5f5;
}

#archives {
    padding: 0 0 0 30px;
}

a:hover {
    color: #0180ff;
}

a {
    color: rgb(16 22 26 / 78%);
    text-decoration: none;
}


/*标签云颜色开始*/

.color1 {
    color: #66ccff;
}

.color2 {
    color: #ffcccc;
}

.color3 {
    color: #ccccff;
}

.color4 {
    color: #ff9966;
}

.color5 {
    color: #66cc66;
}

.color6 {
    color: #66cccc;
}


/*标签云结束*/

.achieves {
    width: 1000px;
    height: 50px;
    margin: 5px auto;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.achieves h3 {
    padding-left: 20px;
}

.achieves h3 span {
    color: #007fff;
}

.noSearch {
    width: 100%;
    height: 100%;
    /* text-align: center; */
    /* line-height: 100%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.noSearch div {
    width: 100%;
    height: 90px;
    background: url(../images/nothing.svg) no-repeat;
    background-position: center center;
}

.noSearch h2 {
    display: inline-block;
    width: 100%;
    height: 50px;
    text-align: center;
}

.content {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* background-color: red; */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.mainContent {
    width: 60%;
    height: 100%;
    background-color: white;
    margin-bottom: 20px;
}

/*移动端首页推荐*/

.tuijian {
    display: none;
}

.ituip {
    height: 170px;
    padding: 15px 15px;
    /*background: url() no-repeat;*/
    background-image: url(../../dailyimg.php);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.iclass {
    width: 100%;
}

.icul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.icul li {
    /*height: 40px;*/
    /*line-height: 40px;*/
    margin-right: 10px;
    /*padding: 5px 5px;*/
    border: 1px solid rgb(145 213 255 / 65%);
    background-color: rgb(230 247 255 / 40%);
    -webkit-opacity: 0.9;
    -ms-opacity: 0.9;
    -moz-opacity:0.9;          
    -khtml-opacity: 0.9; 
    opacity: .9;
    border-radius: 3px;
    /*backdrop-filter: blur(5px);*/
    -webkit-backdrop-filter: blur(5px);
    /*cursor: pointer;*/
}

.icul li a {
    padding: 5px 5px;
    display: inline-block;
    color: white;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-shadow: 0 1px 4px #000000bf;
}

.itips {
    height: 100%;
    /* line-height: 260px; */
    /* text-align: center; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    color: white;
    text-shadow: 0 1px 4px #000;
    font-family: 'Noto Serif SC', serif;
}
.itips a {
    color: white;
}
/*结束*/

.sider {
    width: 36%;
    /* background-color: white; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.contentCard {
    width: auto;
    height: 100%;
    padding: 15px 15px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.1);
    cursor: pointer;
}

.contentCard:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.gadget {
    height: 20px;
    color: #86909c;
    margin: 0 0 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    font-size: 14px;
}

.gadget a {
    text-decoration: none;
    color: #86909c;
}

.gadget a:hover {
    color: #007fff;
}

.plSpace {
    width: 1px;
    height: 14px;
    background: #e5e6eb;
    margin: 0 8px;
}

.gadget span:nth-child(3) {
    white-space: nowrap;
}

.gadget span:nth-child(5) {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.ititle {
    text-decoration: none;
}

.ititle:hover {
    color: #007fff;
}

.ititle h2 {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0;
}

.itext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 10px 0 5px 0;
}

.itext p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    line-height: 24px;
    color: #86909c;
    width: 100%;
    font-size: 14px;
}

.itext img {
    width: 120px;
    min-width: 120px;
    height: 74px;
    border-radius: 3px;
}

#trueImg {
    width: 100%;
    min-width: 100%;
    height: 300px;
    border-radius: 3px;
    object-fit: cover;
}

.orignext {
    height: 50px;
    background-color: white;
}

.orignext ul {
    height: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.orignext li {
    margin: 0 5px 0 0;
}

.pageactive a {
    color: rgb(0, 127, 255);
}

.pitmsback {
    background: -o-linear-gradient(left, hsla(90, 100%, 99.6%, 0) 10%, #c0e7ff59 100%),url(../images/lock-password-fill.svg) right no-repeat;
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgb(254 255 253 / 0%)), to(rgb(192 231 255 / 35%))),url(../images/lock-password-fill.svg) right no-repeat;
    background: linear-gradient(to right, rgb(254 255 253 / 0%) 10%, rgb(192 231 255 / 35%) 100%),url(../images/lock-password-fill.svg) right no-repeat;
    background-size: contain;
}
/*主体部分结束*/

.sfirst,
.ssec,
.sthird,
.sfour {
    margin-bottom: 10px;
    background-color: white;
    padding: 10px 10px;
}

.ssec ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.ssec ul li {
    list-style: none;
    margin-right: 10px;
    margin-bottom: 5px;
    width: auto;
    height: aoto;
    padding: 2px 2px;
    border: 1px solid #91d5ff;
    border-radius: 2px;
}

.ssec ul li a {
    color: #6dd0ff;
}

.ssec ul li a:hover {
    color: #cdceff;
}

.ssec ul li span {
    color: #d1d5ff;
}

.sfirst h3,
.ssec h3,
.sthird h3,
.sfour h3 {
    color: #1d2129c2;
    margin-bottom: 5px;
}

.sider li {
    list-style: none;
    margin-bottom: 5px;
}

.sthird ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.sthird li {
    margin-right: 5px;
}


/*侧边栏部分结束*/

footer {
    height: auto;
    background-color: white;
    padding: 20px 20px;
}

footer nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#gotop {
    /*返回顶部*/
    display: none;
    width: 38px;
    height: 38px;
    background-color: #ffffffb3;
    border-radius: 50px;
    position: fixed;
    right: 30px;
    bottom: 89px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 0px 8px 5px rgb(16 22 26 / 7%);
            box-shadow: 0px 0px 8px 5px rgb(16 22 26 / 7%);
    color: #0180ff;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}

@media (max-width: 1080px) {
    .content {
        width: 80%;
    }
    .achieves {
        width: 80%;
    }
}

@media (max-width: 830px) {
    .content {
        width: 100%;
    }
    .mainContent {
        width: 100%;
    }
    .sider {
        width: 100%;
    }
    .achieves {
        width: 100%;
    }
    .tuijian {
        /*移动端首页推荐*/
        display: initial;
    }
}


/*页脚部分结束*/


/*404页面开始*/

.box404 img {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.postMain {
    width: 1000px;
    height: auto;
    margin: 8px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* background-color: red; */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.postText {
    width: 65%;
    height: 100%;
    background-color: white;
    padding: 10px 10px;
    position: relative;
}

.postNotice {
    display: block;
    width: auto;
    height: 25px;
    position: absolute;
    right: 76px;
    -webkit-box-shadow: 5px 5px 7px -1px rgb(16 22 26 / 7%);
            box-shadow: 5px 5px 7px -1px rgb(16 22 26 / 7%);
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #04bdf3;
    border-radius: 5px;
    padding: 5px 5px;
}

.siderPost {
    width: 30%;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.siderPost li {
    list-style: none;
    margin-bottom: 5px;
}

.pfirst,
.psec {
    padding: 5px 5px;
    background-color: white;
    margin-bottom: 10px;
}

.postTbox {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 30px;
    background: url(../images/kongt.svg) no-repeat;*/
    background-size: 60px 60px;*/
    background-position: right center;*/
}

.postTimg {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    margin-right: 20px;
}

.postTitle {
    color: #007fff;
    margin-bottom: 50px;
}

.innerTbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.innerTbox h3 {
    font-size: 16px;
}

.innerTbox p {
    color: #909090;
    font-size: 13px;
}


/*文章尾部开始*/

.postend {
    width: 100%;
    height: auto;
    /*border-top: 1px solid #ececec;*/
    background-color: white;
    margin-top: 30px;
}

.postNext {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 0 5px;
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
}

.postNext li {
    margin-bottom: 5px;
    list-style: none;
    color: rgb(61 193 255);
    letter-spacing: 2px;
}

.postNext li a {
    color: rgb(61 193 255);
    letter-spacing: 2px;
    text-decoration: none;
}

.postNext li a:hover {
    color: #cdceff;
}

.postNext li:nth-child(2) {
    margin-bottom: 10px;
}

.comment {
    height: auto;
    margin-top: 30px;
    /*box-shadow: 0px -7px 4px -3px rgb(16 22 26 / 7%);*/
}


/*评论开始*/

.docom {
    margin-top: 10px;
}

#comment-form {
    padding: 10px 10px;
    border: 1px solid #91d5ff;
    border-radius: 4px;
}

.stalkhead {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 20px;
}

.stalkhead input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    height: 30px;
    /*border: 1px solid #ff000000;*/
    border: 0;
    outline: none;
    padding-right: 10px;
}

.textareap textarea {
    width: 100%;
    min-height: 90px;
    outline: none;
    border: 0;
    resize: none;
    word-wrap: break-word;
}

.submitBit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.submitBit button {
    padding: 5px 5px;
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #00c7ff;
    cursor: pointer;
}

.submitBit button:active {
    border: 1px solid #91fdff;
}

.spacecom {
    width: 10px;
}

.ifsign {
    margin-bottom: 20px;
    color: #007fff;
}

.ifsign a {
    color: #007fff;
}

.comment-list {
    width: 100%;
}


/*评论输出列表开始*/

.badge {
    /*作者特别标注*/
    padding: 3px 3px;
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 3px;
    font-size: 10px;
    line-height: 1;
    color: rgb(61 193 255);
    margin-left: 5px;
}

.comcell {
    margin: 20px 0 20px 0;
}

.comcellbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.comcellbox img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    margin-right: 15px;
}

.cellRight {
    width: 100%;
    line-height: 24px;
}

.cellhave p {
    word-break: break-word;
}

.cellhave a {
    text-decoration: none;
    color: #007fff;
    margin-right: 5px;
}

.cellTools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #909090;
    font-size: 13px;
}

.cellTools a {
    color: #909090;
    text-decoration: none;
}

.commentTitle {
    color: #909090;
    font-size: 15px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.commentTitle a:nth-child(1) {
    color: #909090;
    font-size: 15px;
    font-weight: 700;
}


/*子评论*/

.commentChild {
    margin-left: 54px;
}

.commentChild .commentChild {
    margin-left: 0;
}


/*评论分页样式*/

.page-navigator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.page-navigator li {
    list-style: none;
    margin-right: 5px;
}


/*文章尾部结束*/

@media (max-width: 1080px) {
    .postMain {
        width: 80%;
    }
}

@media (max-width: 830px) {
    .postMain {
        width: 100%;
    }
    .siderPost {
        display: none;
    }
    .postText {
        width: 100%;
    }
}


/*文章页面结构结束*/


/*文章样式解析开始*/

.mainText a {
    word-wrap: break-word;
    text-decoration: underline;
    color: #a3a5ff;
}

.mainText img {
    width: 100%;
    height: auto;
}

.mainText ol {
    padding: 0 0 0 40px;
}

.mainText li {
    margin: 10px 0;
}

.mainText pre {
    margin: 5px 0 5px 0;
}

.mainText p {
    letter-spacing: 1px;
    margin: 10px 0;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 26px;
    color: #000000d9;
}

.mainText {
    min-width: 100px;
    /*最小钳位，修复代码高亮顶住flex布局*/
}

.postText {
    min-width: 100px;
    /*最小钳位，修复代码高亮顶住flex布局*/
}


/*文章加密样式*/

p.passw {
    display: inline-block;
    height: auto;
    width: auto;
    border: 1px solid #91d5ff;
    background-color: #e6f7ff;
    padding: 5px 5px;
    line-height: 1;
    color: rgb(61 193 255);
}

form.protected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

form.protected p {
    margin: 0;
    color: red;
}

form.protected p input {
    border: 1px solid #9cd9ff;
    background-color: #e6f7ff;
    color: #4bc6ff;
    outline: none;
    padding: 0 5px 0 5px;
    height: 30px;
}

form.protected p input:nth-child(3) {
    height: 32px;
    padding-bottom: 2px;
}

/*iframe宽高*/
iframe {
    width: 100%;
}

/*p code 代码背景色*/
p code {
    padding: 2px 2px;
    background: pink;
    border-radius: 3px;
}