@charset "utf-8";

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
    margin: 0;
    padding: 0;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset,img{
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var{
    font-style: normal;
    font-weight: normal;
}
ol,ul{
    list-style: none;
}
caption,th{
    text-align: left;
}
h1,h2,h3,h4,h5,h6{
    font-size: 100%;
    font-weight: normal;
}
abbr,acronym{
    border: 0;
    font-variant: normal;
}
input,textarea,select{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-size: 100%;
}

@font-face{
  font-family: tao;
  src: url('../font/tao.otf');
}
@font-face{
  font-family: encode;
  src: url('../font/Encode_Sans.woff2');
}
html, body{
    font-size: 13px;
    font-family: encode,tao,"Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;
}
body{
    background: #E7EBF0 url(../images/bg.jpg);
}
a{
    text-decoration: none;
    font-size: 13px;
    font-family: encode,tao,"Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;
    color: #1f4977;
}
a:visited{
    color: #1f4977;
}
button{
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid #5f8ece;
    padding: 6px 11px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #fff;
    background-color: #5f8ece;
    cursor: pointer;
}
input{
    padding: 6px 11px;
    font-size: 13px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input:focus{
    color: #495057;
    background-color: #fff;
    border-color: #4788cf;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(31, 73, 119, 0.25);
}

/* 顶部 */
.tao-head{
    width: 100%;
    background-color: #343a40;
    padding: 7px 14px;
    box-sizing: border-box;
}
.tao-head .container{
    width: 1030px;
    height: 36px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1030px){
    .tao-head .container{
        width: 100%;
        flex-wrap: wrap;
        height: auto;
    }
}
.tao-head .container .logo{
    margin-top: 3px;
    margin-right: 16px;
}
.tao-head .container .logo img{
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 1030px){
    .tao-head .container .logo{
        margin-top: 4px;
        margin-right: 8px;
    }
    .tao-head .container .logo img{
        width: 28px;
        height: 28px;
    }
}
.tao-head .container .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    flex-wrap: wrap;
}
@media (max-width: 1030px){
    .tao-head .container .nav{
        display: none;
        width: 100%;
        flex-basis: 100%;
        padding-top: 21px;
        box-sizing: border-box;
    }
}
.tao-head .container .nav ul{
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: row;
}
.tao-head .container .nav ul li{
    padding: 8px;
    box-sizing: border-box;
}
@media (max-width: 1030px){
    .tao-head .container .nav ul{
        flex-direction: column;
        width: 100%;
    }
    .tao-head .container .nav ul li{
        padding: 0px 8px;
    }
}
.tao-head .container .nav ul li a{
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1030px){
    .tao-head .container .nav ul li a{
        display: block;
        border-bottom: 1px solid rgba(134, 142, 150, 0.3);
        padding: 10px 0px;
        box-sizing: border-box;
    }
}
.tao-head .container .nav ul li a:hover{
    color: rgba(255, 255, 255, 0.75);
}
.tao-head .container .nav ul li a svg{
    fill: rgba(255, 255, 255, 0.5);
    vertical-align: text-bottom;
    height: 16px;
}
.tao-head .container .nav ul li a img{
    width: 16px;
    height: 16px;
    border-radius: .3rem;
    vertical-align: text-bottom;
    margin-right: 2px;
}
.tao-head .container button{
    display: none;
}
@media (max-width: 1030px){
    .tao-head .container button{
        display: inline-block;
        cursor: pointer;
        background-color: transparent;
        color: rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
        padding: 0.25rem 0.75rem;
        font-size: 1.25rem;
        line-height: 1;
        border-radius: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}
.tao-head .container button span{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

/* 内容 */
.tao-cont{
    width: 100%;
    margin-top: 14px;
    min-height: 500px;
}
.tao-cont .container{
    width: 1030px;
    min-height: 180px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1030px){
    .tao-cont .container{
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}
/* 内容 左边 */
.tao-cont .container .cont-left{
    width: 786px;
}
@media (max-width: 1030px){
    .tao-cont .container .cont-left{
        width: 100%;
    }
}
/* 内容 左边 搜索 */
.tao-cont .container .cont-left .left-search{
    width: 100%;
    padding: 1.25rem;
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 2px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
}
.tao-cont .container .cont-left .left-search form{
    width: 100%;
    display: flex;
}
.tao-cont .container .cont-left .left-search input{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    flex: 1 1 auto;
}
.tao-cont .container .cont-left .left-search button{
    color: #fff;
    font-size: 12px;
    background-color: #5f8ece;
    border-color: #5f8ece;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.tao-cont .container .cont-left .left-search button:hover{
    background-color: #699fea;
    border-color: #699fea;
}
/* 内容 左边 列表 */
.tao-cont .container .cont-left .left-list{
    width: 100%;
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
}
.tao-cont .container .cont-left .left-list .head{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border: 1px solid #f8f9fa;
    box-sizing: border-box;
    background-color: #f6f6f6;
    padding: 4px 8px 0px 8px;
}
.tao-cont .container .cont-left .left-list .head a{
    border-bottom: 1px solid #343a40;
    background: rgba(0, 0, 0, 0);
    color: #495057;
    padding: 8px 14px;
    box-sizing: border-box;
    font-size: 13px;
    display: inline-block;
}
.tao-cont .container .cont-left .left-list ul{
    width: 100%;
    padding: 6px 0 10px 0;
    box-sizing: border-box;
}
.tao-cont .container .cont-left .left-list ul .list-hr{
    margin: 0 1.25rem;
    border-bottom: 1px solid #e9ecef;
}
.tao-cont .container .cont-left .left-list ul .list-hr:nth-last-child(1){
    border-bottom: 0;
}
.tao-cont .container .cont-left .left-list ul li{
    width: 100%;
    display: flex;
    padding: 10px 16px;
    box-sizing: border-box;
    margin-left: -2px;
    border-left: 2px solid transparent;
}
.tao-cont .container .cont-left .left-list ul li:hover{
    border-left: 2px solid #aab0c6;
    background-color: #f6f6f642;
}
.tao-cont .container .cont-left .left-list ul li .err{
    color: #212529;
}
.tao-cont .container .cont-left .left-list ul li .list-left{
    margin: 4px 14px 0 4px;
}
.tao-cont .container .cont-left .left-list ul li .list-left img{
    width: 28px;
    height: 28px;
    border-radius: 10px;
}
.tao-cont .container .cont-left .left-list ul li .list-right{
    width: 730px;
}
.tao-cont .container .cont-left .left-list ul li .list-right .top a{
    font-size: 13px;
}
.tao-cont .container .cont-left .left-list ul li .list-right .top a:hover{
    color: #6293d4;
}
.tao-cont .container .cont-left .left-list ul li .list-right .top a svg{
    vertical-align: text-bottom;
    height: 16px;
}
.tao-cont .container .cont-left .left-list ul li .list-right .bottom{
    display: flex;
    justify-content: space-between;
    letter-spacing: .2px;
    font-size: 11px;
    color: #748594;
    margin-top: 3px;
}
.tao-cont .container .cont-left .left-list ul li .list-right .bottom .bottom-left a{
    font-size: 11px;
    color: #748594;
}
.tao-cont .container .cont-left .left-list ul li .list-right .bottom .bottom-right span{
    padding: 2px 8px 2px 8px;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 400;
}
.tao-cont .container .cont-left .left-list ul li .list-right .bottom .bottom-right .hui{
    background: #aab0c6;
    color: #fff;
}
.tao-cont .container .cont-left .left-list ul li .list-right .bottom .bottom-right .huan{
    background: #F3CC9A;
    color: #593300;
}
/* 内容 左边 分页 */
.tao-cont .container .cont-left .left-page{
    display: flex;
    justify-content: center !important;
    margin-top: 14px;
}
.tao-cont .container .cont-left .left-page a{
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    padding: 7px 12px;
    box-sizing: border-box;
    background-color: #FFF;
    color: #1f4977;
    cursor: pointer;
}
.tao-cont .container .cont-left .left-page a:hover{
    color: #0f243a;
    background-color: #e9ecef;
}
.tao-cont .container .cont-left .left-page span{
    background-color: #5f8ece;
    border-color: #5f8ece;
    color: #fff;
    padding: 7px 12px;
    box-sizing: border-box;
}
.tao-cont .container .cont-left .left-page em{
    padding: 7px 12px;
    box-sizing: border-box;
    background-color: #FFF;
    color: #1f4977;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    user-select: none;
}
/* 内容 左边 路径 */
.tao-cont .container .cont-left .left-brea{
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    padding: 11px 14px;
    box-sizing: border-box;
    border-radius: 0.25rem;
    color: #1f4977;
    margin-bottom: 14px;
}
@media (max-width: 1030px){
    .tao-cont .container .cont-left .left-brea{
        display: none;
    }
}
.tao-cont .container .cont-left .left-brea a{
    font-size: 13px;
    color: #1f4977;
    display: inline-block;
}
.tao-cont .container .cont-left .left-brea a:hover{
    color: #6293d4;
}
.tao-cont .container .cont-left .left-brea a svg{
    fill: #1f4977;
    vertical-align: text-bottom;
}
.tao-cont .container .cont-left .left-brea .hua{
    padding: 0 7px;
    box-sizing: border-box;
    display: inline-block;
}
/* 内容 左边 文章内容 */
.tao-cont .container .left-echo{
    background: #fff;
    width: 100%;
    margin-top: 14px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
}
.tao-cont .container .left-echo:first-child{
    margin-top: 0;
}
.tao-cont .container .left-echo .head{
    width: 100%;
    display: flex;
    box-sizing: border-box;
    background-image: url(../images/bg_echohead.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    border-radius: 0.25rem 0.25rem 0 0;
}
.tao-cont .container .left-echo .head .left{
    margin: 4px 14px 0 4px;
}
.tao-cont .container .left-echo .head .left img{
    width: 28px;
    height: 28px;
    border-radius: 36%;
}
.tao-cont .container .left-echo .head .right h1{
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 7px;
    color: #212529;
}
.tao-cont .container .left-echo .head .right .bottom{
    color: #748594;
    font-size: 11px;
    margin-bottom: 4px;
}
.tao-cont .container .left-echo .head .right .bottom a{
    color: #748594;
    font-size: 11px;
    margin-right: 6px;
}
.tao-cont .container .left-echo .head .right .bottom svg{
    fill: #748594;
    height: 12px;
    vertical-align: text-bottom;
    margin: 0 2px;
}
.tao-cont .container .left-echo .head .right .bottom span{
    margin-right: 10px;
}
.tao-cont .container .left-echo .cont{
    padding: 17px;
    box-sizing: border-box;
    color: #212529;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}
.tao-cont .container .left-echo .cont h1{
    border-left: 4px solid #6293d4;
    text-indent: 16px;
    font-weight: bold;
    padding: 2px 0px;
    margin: 14px 0px;
    font-size: 18px;
    box-sizing: border-box;
    line-height: 28px;
}
.tao-cont .container .left-echo .cont h2{
    border-left: 4px solid #6293d4;
    text-indent: 16px;
    font-weight: bold;
    padding: 2px 0px;
    margin: 12px 0px;
    font-size: 16px;
    box-sizing: border-box;
    line-height: 20px;
}
.tao-cont .container .left-echo .cont h3{
    border-left: 4px solid #f57e42;
    text-indent: 16px;
    font-weight: bold;
    padding: 2px 0px;
    margin: 10px 0px;
    box-sizing: border-box;
    font-size: 14px;
}
.tao-cont .container .left-echo .cont pre{
    color: #0c4218;
    background-color: #d1e5d5;
    padding: 8px 42px 8px 12px;
    margin: 8px 0;
    border: 1px solid #bedbc4;
    border-radius: 0.25rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    display: block;
    font-size: 12px;
    position: relative;
    box-sizing: border-box;
    min-height: 46px;
}
.tao-cont .container .left-echo .cont pre .pre-copy{
    z-index: 3;
    padding: 6px;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 8px;
    border: 1px solid #92a997;
    text-align: center;
    width: 28px;
    height: 28px;
}
.tao-cont .container .left-echo .cont pre .pre-copy svg{
    fill: #738777;
    vertical-align: text-bottom;
}
.tao-cont .container .left-echo .cont a{
    color: #1f4977;
}
.tao-cont .container .left-echo .cont a:hover{
    color: #6293d4;
}
.tao-cont .container .left-echo .cont img{
    max-width: 100%;
}
.tao-cont .container .left-echo .cont p{
    margin: 4px 0;
    line-height: 1.7;
}
.tao-cont .container .left-echo .cont > code{
    color: #0c4218;
    background-color: #d1e5d5;
    padding: 8px 12px;
    margin: 8px 0;
    border: 1px solid #bedbc4;
    border-radius: 0.25rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
}
.tao-cont .container .left-echo .cont ul{
    margin: 8px 0;
    padding-left: 2em;
}
.tao-cont .container .left-echo .cont ul > li{
    margin: 4px 0;
    list-style: disc;
}
.tao-cont .container .left-echo .cont ol{
    margin: 8px 0;
    padding-left: 2em;
}
.tao-cont .container .left-echo .cont ol > li{
    margin: 4px 0;
    list-style: decimal;
}
.tao-cont .container .left-echo .cont blockquote{
    color: #212529;
    background-color: #e9ecef;
    padding: 8px 12px;
    margin: 8px 0;
    border: 1px solid #c1bfc3;
    border-radius: 0.25rem;
    display: block;
    font-size: 12px;
    background-image: url(../images/quote.png);
    background-repeat: no-repeat;
    background-position: top right;
}
.tao-cont .container .left-echo .cont strong{
    font-weight: bolder;
    color: #000000;
}
.tao-cont .container .left-echo .cont em{
    font-size: 11px;
}
.tao-cont .container .left-echo .cont-tag{
    color: #868e96;
    width: 100%;
    padding: 20px 17px;
    box-sizing: border-box;
}
.tao-cont .container .left-echo .cont-tag ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.tao-cont .container .left-echo .cont-tag ul li{
    margin-right: 6px;
    margin-bottom: 4px;
}
.tao-cont .container .left-echo .cont-tag ul li a{
    color: #868e96;
    cursor: pointer;
    padding: 4px 6px 4px 6px;
    box-sizing: border-box;
    border: 1px solid #aab6c3;
    border-radius: 4px;
    display: inline-block;
    font-size: 11px;
}
.tao-cont .container .left-echo .cont-tag ul li a:hover{
    color: #fff;
    background-color: #868e96;
    border-color: #868e96;
}
.tao-cont .container .left-echo .cont-zan{
    color: #868e96;
    display: flex;
    justify-content: center;
    padding: 18px 0;
    box-sizing: border-box;
    font-size: 12px;
}
.tao-cont .container .left-echo .cont-zan div{
    display: flex;
    user-select: none;
}
.tao-cont .container .left-echo .cont-zan div span{
    cursor: pointer;
    padding: 5px 10px 6px 10px;
    box-sizing: border-box;
    border: 1px solid #aab6c3;
    border-radius: 4px;
    display: inline-block;
}
.tao-cont .container .left-echo .cont-zan div .left{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}
.tao-cont .container .left-echo .cont-zan div .right{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.tao-cont .container .left-echo .cont-zan div span:hover{
    color: #fff;
    background-color: #868e96;
    border-color: #868e96;
}
.tao-cont .container .left-echo .cont-zan div span svg{
    vertical-align: text-bottom;
}
.tao-cont .container .left-echo .cont-comments{
    padding: 17px;
    box-sizing: border-box;
}
.tao-cont .container .left-echo .cont-comments .comment-header{
    font-weight: bolder;
    color: #212529;
    font-size: 13px;
    margin-bottom: 12px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li{
    display: flex;
    padding: 10px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #e9ecef;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .left{
    margin-right: 14px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .left img{
    width: 28px;
    height: 28px;
    border-radius: 36%;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right{
    flex-grow: 1;
    min-width: 0;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .nt{
    display: flex;
    justify-content: space-between;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .nt .nt-left a{
    color: #868e96;
    font-size: 12px;
    font-weight: bold;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .nt .nt-left span{
    color: #748594;
    font-size: 10px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .nt .nt-right a,
.tao-cont .container .left-echo .cont-comments .comment-list li .right .nt .nt-right span{
    color: #748594;
    font-size: 11px;
    letter-spacing: 1px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .comcont{
    margin-top: 4px;
    font-size: 13px;
    word-wrap: break-word;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right > .comment-chi{
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    padding: 7px 14px 4px 14px;
    background-color: #e9ecef;
    background-image: url(../images/quote.png);
    background-repeat: no-repeat;
    background-position: top right;
    margin-top: 6px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .comment-chi .nc{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 6px;
    font-size: 12px;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    margin: 3px 0;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .comment-chi .nc img{
    width: 20px;
    height: 20px;
    border-radius: 36px;
    margin-right: 6px;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .comment-chi .nc a{
    color: #868e96;
    font-weight: bold;
}
.tao-cont .container .left-echo .cont-comments .comment-list li .right .comment-chi .nc span{
    word-wrap: break-word;
    max-width: 100%;
}
.tao-cont .container .left-echo .cont-post{
    width: 100%;
}
.tao-cont .container .left-echo .cont-post form{
    width: 100%;
    padding: 0 17px 17px 17px;
    box-sizing: border-box;
}
.tao-cont .container .left-echo .cont-post form .comment-info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}
.tao-cont .container .left-echo .cont-post form .comment-info input[type=text]{
    flex: 1 1 140px;
}
.tao-cont .container .left-echo .cont-post form .comment-info input[name=inpVerify]{
    flex: 0 0 90px;
}
.tao-cont .container .left-echo .cont-post form .comment-info img{
    cursor: pointer;
}
.tao-cont .container .left-echo .cont-post form textarea{
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    border-radius: 0.25rem;
}
.tao-cont .container .left-echo .cont-post form textarea:focus{
    color: #495057;
    background-color: #fff;
    border-color: #4788cf;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(31, 73, 119, 0.25);
}
.tao-cont .container .left-echo .cont-post form .btn{
    height: 28px;
    cursor: pointer;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.32);
    border-color: transparent;
    line-height: 1.5;
    border-radius: 0.2rem;
    padding: 3.5px 7px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    box-sizing: border-box;
    margin-top: 7px;
}
/* 内容 右边 */
.tao-cont .container .cont-right{
    width: 230px;
    margin-left: 14px;
}
@media (max-width: 1030px){
    .tao-cont .container .cont-right{
        display: none;
    }
}
/* 内容 右边 个人资料 */
.tao-cont .container .cont-right .right-user{
    margin-bottom: 14px;
    background-color: #FFF;
    border-radius: 2px;
}
.tao-cont .container .cont-right .right-user .cont{
    padding: 28px 18px 28px 18px;
    box-sizing: border-box;
}
.tao-cont .container .cont-right .right-user .cont .des{
    font-size: 11.2px;
    font-weight: 400;
    line-height: 1.8;
    color: #212529;
}
.tao-cont .container .cont-right .right-user .cont .user{
    text-align: center;
}
.tao-cont .container .cont-right .right-user .cont .user img{
    width: 84px;
    height: 84px;
    margin-bottom: 8px;
    border-radius: 36%;
}
.tao-cont .container .cont-right .right-user .cont .user p{
    color: #1f4977;
    font-size: 17px;
}
.tao-cont .container .cont-right .head{
    font-size: 13PX;
    background-color: #f6f6f6;
    border-color: #e9ecef;
    color: #454d55;
    border-bottom: 1px solid #dee2e6;
    padding: 11px 18px;
    box-sizing: border-box;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    position: relative;
}
.tao-cont .container .cont-right .head:after{
    content: "";
    background-color: #282828;
    left: 18px;
    width: 40px;
    height: 1px;
    top: 39px;
    position: absolute;
}
/* 内容 右边 分类 */
.tao-cont .container .cont-right .right-sort{
    background-color: #FFF;
    margin-bottom: 14px;
    border-radius: 2px;
}
.tao-cont .container .cont-right .right-sort .cont{
    padding: 18px 18px 12px 18px;
    box-sizing: border-box;
}
.tao-cont .container .cont-right .right-sort .cont ul{
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tao-cont .container .cont-right .right-sort .cont ul li{
    border-radius: 4px;
    margin: 0 0 8px 0;
    width: 92px;
}
.tao-cont .container .cont-right .right-sort .cont ul li a{
    font-size: 12px;
    color: #555;
    padding: 4px 8px;
    display: inline-block;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    background: #e9ecef;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tao-cont .container .cont-right .right-sort .cont ul li a:hover{
    border: 1px solid #5f8ece;
    background: #fff;
}
/* 内容 右边 标签 */
.tao-cont .container .cont-right .right-tag{
    background-color: #FFF;
    margin-bottom: 14px;
    border-radius: 2px;
}
.tao-cont .container .cont-right .cont{
    padding: 18px;
    box-sizing: border-box;
}
.tao-cont .container .cont-right .right-tag .cont ul{
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
}
.tao-cont .container .cont-right .right-tag .cont ul li{
    border-radius: 4px;
    margin: 0 5px 8px 0;
}
.tao-cont .container .cont-right .right-tag .cont ul li a{
    font-size: 12px;
    color: #555;
    padding: 2px 8px;
    display: inline-block;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    background: #e9ecef;
}
.tao-cont .container .cont-right .right-tag .cont ul li a:hover{
    border: 1px solid #5f8ece;
    background: #fff;
}
/* 内容 右边 自定义 */
.tao-cont .container .cont-right .right-text{
    background-color: #FFF;
    margin-bottom: 14px;
    border-radius: 2px;
}
/* 内容 右边 链接 */
.tao-cont .container .cont-right .right-link{
    background-color: #FFF;
    margin-bottom: 14px;
    border-radius: 2px;
}
.tao-cont .container .cont-right .right-link .cont ul{
    font-size: 11px;
    padding-left: 16px;
    box-sizing: border-box;
}
.tao-cont .container .cont-right .right-link .cont ul li{
    margin-bottom: 6px;
}
.tao-cont .container .cont-right .right-link .cont ul li a{
    font-size: 11px;
    color: #1f4977;
}
.tao-cont .container .cont-right .right-link .cont ul li a span{
    font-size: 16px;
    margin-right: 6px;
}
/* 内容 右边 文章列表 */
.tao-cont .container .cont-right .right-list{
    background-color: #FFF;
    margin-bottom: 14px;
    border-radius: 2px;
    position: relative;
}
.tao-cont .container .cont-right .right-list .cont{
    padding: 10px 18px 18px 18px;
}
.tao-cont .container .cont-right .right-list .cont ul{
    font-size: 11px;
}
.tao-cont .container .cont-right .right-list .cont:after{
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 10px;
    background-color: #F8F9FA;
}
.tao-cont .container .cont-right .right-list .cont ul li{
    padding: 10px 0;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}
.tao-cont .container .cont-right .right-list .cont ul li:nth-last-child(1){
    border-bottom: 0;
}
.tao-cont .container .cont-right .right-list .cont ul li a{
    font-size: 11px;
    color: #1f4977;
}
.tao-cont .container .cont-right .right-list .cont ul li a:hover{
    color: #6293d4;
}
.tao-cont .container .cont-right .right-list .cont ul li em{
    float: right;
    font-style: normal;
    color: #999;
}
/* 内容 右边 搜索框 */
.tao-cont .container .cont-right .right-search{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
}
.tao-cont .container .cont-right .right-search form{
    width: 100%;
    display: flex;
}
.tao-cont .container .cont-right .right-search label{
    flex: 1 1 auto;
    display: flex;
}
.tao-cont .container .cont-right .right-search input{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    flex: 1 1 auto;
    border-color: #ced4da;
    padding: 8px 12px;
    font-size: 12px;
    min-width: 0;
}
.tao-cont .container .cont-right .right-search input[type=submit]{
    flex: 0 0 auto;
    padding: 5px 14px;
    color: #fff;
    font-size: 12px;
    background-color: #5f8ece;
    border-color: #5f8ece;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-right: 1px solid #5f8ece;
}
.tao-cont .container .cont-right .right-search input[type=submit]:hover{
    background-color: #699fea;
    border-color: #699fea;
}
/* 内容 全屏 */
.tao-cont .container .cont-cent{
    width: 100%;
}
/* 内容 全屏 错误 */
.tao-cont .container .cont-cent .cent-err{
    background-color: #FFF;
    padding: 160px 18px;
    box-sizing: border-box;
    font-size: 16px;
    color: #212529;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tao-cont .container .cont-cent .cent-err:before{
    color: #000;
    content: "404";
    font-size: 30rem;
    font-weight: 700;
    left: 100px;
    opacity: .1;
    pointer-events: none;
    position: absolute;
    top: -30px;
    z-index: 0;
}
@media (max-width: 915px){
    .tao-cont .container .cont-cent .cent-err:before{
        font-size: 17rem;
        left: 20px;
        top: 50px;
    }
}
.tao-cont .container .cont-cent .cent-err h2{
    font-size: 36px;
    position: relative;
    z-index: 1;
}
.tao-cont .container .cont-cent .cent-err .cent-err-msg{
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: #748594;
    font-size: 13px;
}
.tao-cont .container .cont-cent .cent-err .cent-err-reason{
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 14px auto 0;
    padding: 10px 14px;
    background: #f6f6f6;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    color: #495057;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
}
.tao-cont .container .cont-cent .cent-err .cent-err-reason a{
    color: #1f4977;
    font-size: 12px;
}
.tao-cont .container .cont-cent .cent-err .err-btn{
    padding: 20px 0 20px 0px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.tao-cont .container .cont-cent .cent-err .err-btn a{
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 4px;
}
.tao-cont .container .cont-cent .cent-err .err-btn a:nth-child(1){
    color: #fff;
    background-color: #5f8ece;
    border-color: #5f8ece;
}
.tao-cont .container .cont-cent .cent-err .err-btn a:nth-child(2){
    color: #555;
    border: 1px solid #f1f1f1;
    background: #e9ecef;
    margin-left: 8px;
}
/* 尾部 */
.tao-foot{
    width: 100%;
    margin-top: 14px;
    background-color: #343a40 !important;
    color: #868e96;
    font-size: 11px;
}
.tao-foot .container{
    width: 1030px;
    height: 54px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1030px){
    .tao-foot .container{
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .tao-foot .container .foot-right{
        display: none;
    }
}
.tao-foot .container a{
    color: #868e96;
    font-size: 11px;
    margin-right: 4px;
}
.tao-foot a img{
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/* LiteVipDown 插件兼容：让下载框/用户中心贴合本主题卡片 */
.tao-cont .container .left-echo .cont .lvd-box{
    box-shadow: none;
    border-color: #e3e8ee;
}
.tao-cont .container .left-echo .cont .lvd-uc{
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}
.tao-cont .container .left-echo .cont .lvd-uc h3{
    border-left: 4px solid #2f7dff;
    text-indent: 0;
    padding: 0 0 0 10px;
    margin: 22px 0 10px;
    font-size: 16px;
    font-weight: normal;
}
.tao-cont .container .left-echo .cont .lvd-uc .lvd-uc-nav a{
    font-size: 14px;
}
.tao-cont .container .left-echo .cont .lvd-uc .lvd-buy-form{
    margin-left: 0;
}
.tao-cont .container .left-echo .cont .lvd-lock{
    background: #f5f7fa;
}
/* 主题的高优先级链接色会覆盖插件按钮文字色，这里显式还原插件配色 */
.tao-cont .container .left-echo .cont a.lvd-btn,
.tao-cont .container .left-echo .cont a.lvd-btn:hover{
    color: #333;
}
.tao-cont .container .left-echo .cont a.lvd-btn-primary,
.tao-cont .container .left-echo .cont a.lvd-btn-primary:hover,
.tao-cont .container .left-echo .cont a.lvd-btn-down,
.tao-cont .container .left-echo .cont a.lvd-btn-down:hover,
.tao-cont .container .left-echo .cont a.lvd-btn-buy,
.tao-cont .container .left-echo .cont a.lvd-btn-buy:hover{
    color: #fff;
}
.tao-cont .container .left-echo .cont a.lvd-uc-link,
.tao-cont .container .left-echo .cont a.lvd-uc-link:hover{
    color: #2f7dff;
}
.tao-cont .container .left-echo .cont .lvd-uc-nav a{
    color: #555;
}
.tao-cont .container .left-echo .cont .lvd-uc-nav a:hover,
.tao-cont .container .left-echo .cont .lvd-uc-nav a.lvd-cur{
    color: #2f7dff;
}

/* 主题登录页 */
.tao-cont .container .cont-cent .cent-login{
    width: 460px;
    max-width: 100%;
    margin: 36px auto;
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(26,26,26,.1);
}
.tao-cont .container .cont-cent .cent-login .head{
    font-size: 13px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #dee2e6;
    color: #454d55;
    padding: 11px 18px;
    box-sizing: border-box;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.tao-cont .container .cont-cent .cent-login .cont{
    padding: 20px 18px;
    box-sizing: border-box;
}
.tao-cont .container .cont-cent .cent-login .login-row{
    margin-bottom: 14px;
}
.tao-cont .container .cont-cent .cent-login .login-row>label{
    display: block;
    color: #555;
    margin-bottom: 4px;
}
.tao-cont .container .cont-cent .cent-login .login-row input[type=text],
.tao-cont .container .cont-cent .cent-login .login-row input[type=password]{
    width: 100%;
    box-sizing: border-box;
    height: 34px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0 10px;
    color: #495057;
}
.tao-cont .container .cont-cent .cent-login .login-row input:focus{
    border-color: #4788cf;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(31, 73, 119, 0.25);
}
.tao-cont .container .cont-cent .cent-login .login-code{
    display: flex;
    align-items: center;
    gap: 8px;
}
.tao-cont .container .cont-cent .cent-login .login-code input{
    flex: 1 1 auto;
    min-width: 0;
}
.tao-cont .container .cont-cent .cent-login .login-code img{
    cursor: pointer;
    border-radius: 4px;
}
.tao-cont .container .cont-cent .cent-login .login-remember label{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}
.tao-cont .container .cont-cent .cent-login .login-remember input{
    width: auto;
    height: auto;
}
.tao-cont .container .cont-cent .cent-login .login-submit{
    width: 100%;
    height: 36px;
    border: 1px solid #5f8ece;
    background: #5f8ece;
    color: #fff;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 14px;
}
.tao-cont .container .cont-cent .cent-login .login-submit:hover{
    background: #699fea;
    border-color: #699fea;
}
.tao-cont .container .cont-cent .cent-login .login-extra{
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: #888;
}
.tao-cont .container .cont-cent .cent-login .login-extra a{
    color: #1f4977;
    font-size: 12px;
}
.tao-cont .container .cont-cent .cent-login .login-extra a:hover{
    color: #6293d4;
}
