/**
 * 模板样式表
 */

.small {
    font-size: 12px;
}
code {
    padding: 10px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}
/* 全局样式
---------------------------------------------------*/
/* 搜索栏 */
.search-bar {
/*    width: 180px;*/
    box-shadow: none;
    float: left;
    font-size: 1rem;
/*    padding: 0 0.8rem;*/
    margin: 0 3rem 0 0;
    color: #495057;
    background-color: #F6F6F6FF;
    border: 1px solid #f3f3f3;
    /* 兼容 Safari ，Safari默认input会有1px的上下外边距 */
    margin-block: 0;
    border-radius: 1.35rem;  
}

.search-bar:focus ,.form-control:focus, div.dataTables_wrapper div.dataTables_filter input:focus, .dual-listbox .dual-listbox__search:focus { color: #3c4d62; background-color: #fff; border-color: #6576ff;border-radius: 5px; outline: none; box-shadow: 0 0 0 2px rgba(101, 118, 255, 0.1); }
.blog-header .icon-search{
    position: absolute;
    top: 10px;
    right: 15px;
    
}


.search-bar,.hlogo{
    position: relative;
    top: -6px;
}
.search-bar{
    top: -3px;
}
.hlogo,.mflex{ 
    display: flex;
    align-content: center;
    align-items: center;
}
.hlogo .oturl{ 
    margin-top: 5px;
}
.search-bar input {
/*    width: 120px;*/
    box-shadow: none;
    font-size: 1rem;
    color: #495057;
    border: none;
    background: transparent; 
    padding: 6px 40px 6px 18px; 
    resize: none;
    outline: none;
    max-width: 210px;
    box-sizing: border-box;
}

.log-sort {
    margin: 0;
    padding: 10px 5px;
    font-size: 14px;
/*    margin-bottom: 15px;*/
}
.oturl a{
    margin: 0 10px;
}

.log-sort-name {
    margin: 10px 5px;
    font-size: 16px;
}

.log-sort-desc {
    margin: 10px 5px;
}

/* 文章发布时间和文章阅读评论数两列的配置 */
.log-avatar {
    margin: 0 3px;
}
ul,li{
    list-style: none;
}
.log-avatar img {
    width: 48px;
    max-height: 48px;
    border-radius: 48px;
    margin: 0;
    border: 1px solid #f3f3f3;
    background-color: var(--bodyBground);
    margin-right: 5px;
}

.em-badge {
    display: inline-block;
    padding: 2px 5px;
    background-color: var(--aHoverColor);
    color: #fff;
    border-radius: 5px;
    font-size: small;
}

.em-badge-primary {
    display: inline-block;
    padding: 1px 5px;
    background-color: #3B77EF;
    color: #fff;
    border-radius: 8px;
    font-size: small;
    font-size: 12px;
}

.em-badge-success {
    display: inline-block;
    padding: 1px 5px;
    background-color: rgba(14, 161, 103, 0.73);
    color: #fff;
    border-radius: 8px;
    font-size: small;
    font-size: 12px;
}

.em-badge-comment {
    display: inline-block;
    padding: 2px 10px;
    background-color: #c9c8c8;
    color: #fff;
    border-radius: 10px;
    font-size: small;
}

.em-badge-comment2 {  
    padding: 0 5px; 
    position: relative;
    top: -2.5px;
}

.em-badge-mute {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    white-space: nowrap;
    background-color: antiquewhite;
}

/* 禁止页面溢出出现滚动条 */
:root {
    overflow-x: hidden
}

/* 一些变量 */
* {
    --marRadius: 3px; /* 卡片圆角 */
    --conBgcolor: #ffffff; /* 导航、卡片、内容的背景颜色 */
    --bodyBground: #f3f8fb; /* 页面背景颜色 */
    --fontColor: #5a5c69; /* 普通文本的颜色 */
    --aColor: #333333; /* a 标签的颜色 */
    --aHoverColor: #FC8049; /* a 标签 hover 状态的颜色 */
    --lightColor: #757575 /* 比较浅一点的文本颜色 */
}

/* 定义所有元素的 width =（border+padding），方便后续计算 */
/*
* {
    box-sizing: border-box
}
*/

/* 初始化 */
body {
    margin: 0;
    line-height: 1.5;
    font-size: 16px!important;
    color: var(--fontColor);
/*    background-color: var(--bodyBground);*/ 
/*    background: linear-gradient(180deg, #ecfafa, #fff);*/ 
    background-repeat: no-repeat;
    background-size: cover;
    font-family: PingFang SC, Source Han Sans CN, Microsoft YaHei, system, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, wenquanyi micro hei, Hiragino Sans GB, Hiragino Sans GB W3, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, sans-serif!important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 400
}

p {
    line-height: 2;
    margin: 30px 0
}

a {
    color: var(--aColor);
    transition: all 0.2s;
    text-decoration: none
}

a:focus, a:hover {
    color: var(--aHoverColor);
    text-decoration: none
}

img,canvas {
    max-width: 100%;
}

hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

blockquote {
    font-style: italic;
    color: #868e96;
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

input, textarea {
    font-family: inherit;
    color: #495057;
    outline: none
}

input[type="submit"] {
    cursor: pointer
}

textarea {
    padding: 1rem 0.75rem
}

footer {
    margin-top: 10px;
    background-color: var(--conBgcolor);
}

footer .list-inline {
    margin: 0;
    padding: 0
}

footer .copyright {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center
}

/* 无样式列表  */
.unstyle-li {
    padding-left: 0px;
    list-style: none;
    margin-block: 8px;
    font-size: medium
}

/* 卡片属性。页面以卡片形式组成，这里直接配置，让整个页面的卡片有统一的内边距。 */
.card-padding {
    padding: 1.25rem
}

/* 布局
   行（row）上选择flex布局，并设置允许换行（wrap）
   列（col）则需要通过根据大小屏分别配置，这是网页最重要的地方，是整个网页的骨架
---------------------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.column-big {
    padding-right: 10px;
    flex: 2; 
    box-sizing: border-box;
    margin-top: 10px;
}

.column-big .item h2{
    margin: 25px auto ; 
    border-left: 4px solid var(--theme-color);
    line-height: 18px;
    padding-left: 10px;
/*    font-weight: bold;*/
    font-size: 18px;
} 
.column-big .item h2 .taga,.column-big .item .taga a{
    margin-left: 15px;
}
.column-big .item .taga a{
    color: #888;
}
.column-big .item h2 .fr,.column-big .item h2 span{
    font-size: 13px;
    color: #888;
    margin-left: 5px;
}
.column-big .item h2 .fr:hover,.column-big .item .taga a:hover{
    color:  var(--theme-color);
}
.column-big .item h2 .fr i{
    position: relative;
    top: 2px;
    left: 2px;
}
.column-big .item h3{
    margin: 0 auto;
    padding: 0;  
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25rem;
}
.column-big .mul{
    overflow: hidden;
    margin: 0 -1.5%;
}
.column-big .mul li{
    width: 22%;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 15px;
    float: left;
    border:1px solid #eee; 
    margin: 10px 1.5%;
}
.column-big .mul li:hover{
    background: linear-gradient(180deg, #fff, #fafcff);
    box-shadow: 1px 1px 20px rgba(55, 99, 170, .1);
}
.column-big .mul li:hover h3,.unstyle-li li a:hover{ 
    color: var(--theme-color);
}
.column-big .mul .info,.column-big .mul .nums{
    font-size: 12px;
    color: #888;
    padding: 4px 0;
}
.column-big .mul .nums{
    position: relative;
    top: 5px;
    color: #999;
}
.column-big .mul .nums i{
    font-size: 14px;
    position: relative;
    top: 1px;
    margin-right: 5px;
    color: #999;
}
.column-big .mul .info{
    font-size: 12px;
    color: #888;
    padding: 3px 0;
}
.column-big .item h3,.column-big .mul .info,.texthide{ 
    white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
#emlogEchoLog{
    margin: 30px auto;
/*    display: none;*/
}
.wzright{
    margin: 0 8px;
    font-size: 0;
    background: url(../images/right.png) no-repeat center center;
    background-size:contain;
    display: inline-block;
    width: 10px;
    height: 21px;  
    position: relative;
    top: 5px;
}
.top-5 .tags{ 
    margin: 10px;
    display: inline-block;
}
/* 工具栏列 */
.column-small {
    font-size: medium;
    padding:  0; 
    padding-left: 15px;
    flex: 1; 
    box-sizing: border-box;
    max-width: 250px;
}
.newhot{
    margin-bottom: 15px;
    padding: 15px 0 2px 6px;
}
.newhot .ndiv{
    width: 50%;  
    box-sizing: border-box;
}
.newhot .nleft{
    padding-right: 15px;
}
.newhot .nright{
    padding-left: 15px;
}
.newhot .unstyle-li {
    width: 100%;
}
.newhot .unstyle-li li{
    margin-bottom: 5px;
    border-top: 1px dashed #f1f1f1;
    width: 100%;
    padding: 8px 0;
}
/* 中屏ipad下的列 */
 
.side-bar .shadow-theme { 
    margin: 0 auto;
/*    border-bottom: 1px dashed #f1f1f1; */
}
.side-bar .shadow-theme h3{
    margin: 10px auto;
}
 .unstyle-li li a{
    display: block; 
    width: 100%;
    padding: 2px 0;
    border-radius: 5px;
     box-sizing: border-box;
}
 
 


/* 中屏ipad下的列 */
@media (min-width: 768px) and (max-width: 1024px) {
   
  .column-small { 
    max-width: 100%;
}
    /* 文章发布时间和文章阅读评论数这两列的配置 */
    .info-row {
        padding: 0.8rem 0.2rem !important;
        display: flex;
    }

    .log-info {
        flex: 0 0 85%;
        max-width: 80%
    }

    .log-count {
        margin-top: 15px;
        margin-right: 20px;
    }
}

@media (max-width: 960px) {
    .blog-header .oturl{
        display: none;
    }
}
.copys a{
    margin-left: 15px;
}
/* 大屏下的列 */
@media (min-width: 1440px) {
  

    /* 文章发布时间和文章阅读评论数这两列的配置 */
    .info-row {
        padding: 0.8rem 0.2rem !important;
        display: flex; 
    }

/*
    .log-info {
        flex: 0 0 85%;
        max-width: 85%
    }
*/

    .log-count {
        margin-top: 15px;
        margin-right: 20px;
    }
} 
 

/* 最外层整体容器的响应式配置，即 container 配置
---------------------------------------------------*/
.container {
    width: 100%;
    align-items: center; /* 网页容器在整个网页中垂直居中 */
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box; 
    max-width: 1150px
}

.topright{ width: 100%;background: #fafcff;padding: 10px 0;margin-top: -20px;}
.topright .al1{ float:left; width:413px; padding:5px 5px 5px 0; border:1px solid #dedede; height:53px; overflow:hidden; position:relative;font-size: 13px;}
.topright .al1 .gg{ position:absolute; background:#ccc; color:#fff; width:18px; right:0; bottom:0; line-height:12px; padding:4px 0; text-align:center;font-size: 12px;}
.topright .al1 li{ height:18px; line-height:18px; float:left; overflow:hidden; width:185px; padding-right:0px; padding-left:13px;}
.topright .al2{position: relative; float:left; width:275px;height:65px;}
.topright .al2 img{ width:100%; height:100%;}
.topright .al2 .sgin_ad{display: inline-block;position: absolute;right: 0;bottom: 0;background: url(../images/ad_tips.png);background-repeat: no-repeat;background-position:center center;font-size: 0px;width: 30px;height: 18px;}   
.topright .al3{position: relative; width:100%;height:auto;padding-top: 9px;padding-bottom: 5px;font-size: 13px;}
.topright .al3 img{ width:100%; height:100%;}
.topright .al3 .sgin_ad{display: inline-block;position: absolute;right: 0;bottom: 0;background: url(../images/ad_tips2.png);background-repeat: no-repeat;background-position:center center;font-size: 0px;width: 20px;height: 30px;}   
.topright .al3 li{height: 28px; float:left; overflow:hidden; width:20%; padding-right:0px;text-align: center;}
.topright .al3 ul{
    overflow: hidden;
}
.piclist {margin: 20px -10px 0;position: relative;overflow: hidden;}
.piclist .li{width:30%;margin:0 1.5% 20px;float:left;background:#fff;box-shadow:0 0 15px rgba(0,0,0,0.075);position:relative;border-radius:3px;background-size: cover;background-position: center;transition: all .3s ease 0s;}
.piclist .li:hover{box-shadow:0 0 15px rgba(0,0,0,0.15);-webkit-transform: translateY(-3px);transform: translateY(-3px);}
.piclist .li .img{overflow: hidden;border-radius:3px 3px 0 0;position: relative;height: 120px;}
.piclist .li .img a{display: block;height: 100%}
.piclist .li img{width:100%;height:100%;border-radius: 3px 3px 0 0;transition: all .3s ease-out 0s;object-fit: cover;background: #f0f0f0;display: block;font-size:0;}
.piclist .li img:hover{-webkit-transform: scale(1.03);transform: scale(1.03);transition: all .3s ease-out 0s;}
.piclist .li h3{font-size:15px;font-weight:normal;margin:5px 15px 10px;position:relative;}
.piclist .li h3 a{color:#062743;line-height:20px;overflow:hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height:20px}
.piclist .li h3 a:hover{color: #ff5f33}
.piclist .li .cat{padding: 15px 0 0 15px;display: block;font-size: 12px;color: #8a92a9;margin-left: 18px;position: relative;}
.piclist .li .cat:after {content: " ";width: 4px;height: 4px;display: block;border-radius: 15px;position: relative;left: -18px;top: -13px;border: 2px solid #ff5f33;}
.piclist .li .cat{
    display: inline-block;
}
.piclist .li .meta{color:#8a92a9;padding:0 15px 8px 15px;font-size:12px;height: 26px;overflow: hidden;}
.piclist .li .meta .time,.piclist .li .meta .views{margin-right: 8px;position: relative;}
.piclist .li .meta .time i,.piclist .li .meta .views i{font-size: 10px;margin-right: 5px;}
.piclist .li .meta .video{color: #ff5f33;position: absolute;right: 15px;top: 8px;z-index: 9;}
.piclist .li .meta .video .iconfont{font-size: 20px}
.left_menus .navcon{
    display: none;
}
.yaoqing{
    color: #0053a5;text-decoration: none;font-size: 12px; border: 1px solid #3B77EF;color: #3B77EF; border-radius: 20px; padding:0; float: right; width: 67px; text-align: center; display: inline-block; line-height: 20px; height: 20px;margin-top: 5px;
}
.sd_w_tit {
    height: 52px;
    line-height: 64px;
    font-size: 16px; 
    border-bottom: 1px solid #f5f5f5;
/*    color: #3B77EF;*/
    position: relative;
}.sd_w_tit span {
    width: 31px;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #3B77EF;
}
.cl:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
} 
.index_sign{padding:20px;margin-bottom:20px; border-bottom:1px solid #f5f5f5; height:37px; line-height:37px;} 
.index_sign .fontss{ font-size:16px; color:#333;margin-left:10px; float:left;line-height:37px;}
.index_sign a{display:block;}
.index_sign span{margin-left: 5px;font-size: 12px;}
.sd_w_rw li {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}
 .leftactive .navcon{
    display: block;
}
.sd_w_gg {
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px; 
    height: auto;
    width: 100%;
    box-sizing: border-box;
}
.sd_w_gg a {
    display: block;
    float: left;
    color: #333;
    text-decoration: none;
    font-size: 14px;  
    line-height: 28px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.userinfox a{
    display: inline;
    float: none;
   color: var(--aHoverColor);
}
.log-info .a{
    font-size: 12px;
}
.log-info .t8{ 
    color: #fff;
    border: 1px solid #5FBA00;
    background: #5FBA00;
    margin-left: 10px;
    padding: 0px 10px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}
.sd_w_gg .ggr{
    float: right;
    margin-right: 5px;
}
.column_left { 
    position: sticky;
    left: 0;
    top: 70px; 
    background: #fff;
    z-index: 2;
    margin-top: 5px;
    min-width: 100px;
}
.blog-myside{    
    position: sticky; 
    top: 65px;
    right: 0;
}
.aleftnav .navcon ul {
    padding-left: 0;
}
.aleftnav .navcon li {
    position: relative;
}
.aleftnav .navtit h2 {
    font-weight: 600;
    margin: 12px auto;   
    font-size: 16px;
}
.aleftnav .navtit h2 img{  
    margin-right: 10px;
}
.left_menus{
    margin: 10px 0;
}
.aleftnav .navcon li a {
    display: block;
    color: #333;
    font-size: 16px;
    height: 39px;
    line-height: 39px;
    border: 1px solid #ffffff;
    text-align: left;
/*    width: 80px;*/
    padding-left:6px;
    display: block;
    white-space: nowrap;
    overflow: hidden;  
    border-radius: 4px;
}
.aleftnav .navcon li a:hover,.wenda_tit .fatie:hover,.aleftnav .navcon .act {
    color: #FC8049;
    opacity: 0.9;
/*
    text-decoration: none; 
    background: #3B77EF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #3B77EF;
    border-right: none;
*/
}
.leftactive .h2a,.sd_w_rw .sp1,.index_sign .sp1{
    color: #FC8049
}
.sd_w_rw .sp2{
   color: #999; 
    font-size: 12px;
}
.wenda_tit {
    height: 40px;
    line-height: 40px;
    padding: 10px 0;
    border-bottom: 1px solid #E3E3E3;
    position: sticky;
    top: 2px;
}
.wenda_tit a {
    font-size: 16px;
    margin-right: 20px;
    color: #666;
}
.wenda_tit a.a {
    color: #3B77EF;
}
.rowflex{
    display: flex;
    align-content:space-between;
   align-items: flex-start;
}
.column_left{
     flex: 1;
}
.column_right{
     flex: 8;
}
.fatie{
    border: 1px solid #3B77EF;
    border-radius: 4px;
    height: 33px;
    line-height: 33px;
    display: inline-block;
    width: 70px;
    text-align: center;
    font-size: 14px;
    color: #3B77EF;
    position: relative;
    top: -8px;
}
.rebtns{
    border: 1px solid var(--aHoverColor);
    color: var(--aHoverColor);
    margin-left: 15px;
    
}
.fatie:hover{
    background: #3B77EF;
    color: #fff;
}
.rebtns:hover{
    background: var(--aHoverColor);
}
.wenda_tit .fatie{
    position: relative;
    top: 0; 
    right: -10px;
}
.tit2 {
    margin-top: -8px;
    line-height: 1.6;
    color: #666;
    margin-bottom:10px;
    font-size: 13px;  
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.0em; 
    line-height: 1.5em;  
    text-overflow: ellipsis;
}
/*__________________________________________________侧边浮菜单*/

.floatAsideFooter {
    position: fixed;
    width: auto;
    height: auto;
    right: 0;
    bottom: 60px;
    z-index: 9980;
} 
.floatAsideItem { 
    text-align: center;
    border-radius: 5px 0 0 5px;
    background-color: var(--theme-bg-color);
    box-shadow: -4px 0px 30px 0px rgb(181 181 181 / 32%);
    padding: 8px;
    margin-bottom: 10px;
} 
.floatAsideItem i{
    font-size: 20px;
}
.darkBrightSwitch{
    display: none;
}
.log-title {
    margin:20px -5px;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px;
    background: rgba(55, 99, 170, .025); 
    border-radius: 5px;
}
.log-title .fr a{
    margin-left: 30px;
}
#pt{  
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}
#pt .xq{
    display: inline-block;
    max-width: 260px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    top: 6px;
}
/* 分页按钮样式
---------------------------------------------------*/
.em_pagination {
    margin-top: 30px;
    font-size: 14px;
    padding: 10px;
    text-align: center
}

.em_pagination span {
    padding: 5.5px 6px 3px 6px;
    margin: 0 5px;
    border-radius: 8px;
    line-height: 3;
    color: #858796
}

.em_pagination a {
    color: #c0bcbc;
    padding: 5.5px 10px 6px 10px;
    background: white;
    margin: 0 5px;
    line-height: 3;
    border-radius: 8px;
    font-size: 18px;
}

#pagenavi span,#pagenavi a,.em_pagination span,.em_pagination a  {
    display: inline-block;
    margin-left: 8px;
    padding: 0;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0px 4px 5px 0px #E6EBF5;
    border-radius: 2px;
}
#pagenavi span,.em_pagination span{
    background-color: #3B77EF;
    color: #fff;
    box-shadow: 0px 2px 5px 0px #3B77EF;
}
.em_pagination em{
    position: relative;
    top: -12px;
} 
/*boot*/
.col-md-12 {
    width: 100%;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    color: #788D9A;
    background-color: #F9FBFB;
    border-color: #d6e9c6;
}
.alert-dismissable, .alert-dismissible {
    padding-right: 35px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert>p, .alert>ul {
    margin-bottom: 0;
}
.panel {
    margin-bottom: 10px;
}
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.emEchoLog{
    margin: 30px auto;
}
.dateUlContainer{
    height: 500px!important;
}
.acontainer .aside,.acontainer .main{
    box-sizing: border-box;
}
.form-group {
    margin-bottom: 15px;
}
.acontainer{
    display: flex;
    align-content: center;
    align-items: center;
    
}
.col-sm-6,.col-md-6 {
    width: 50%;
    float: left;
    box-sizing: border-box;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn-success {
    color: #fff;
    background-color: #4DC86F;
    border-color: #4cae4c;
}
.btn-info {
    color: #fff;
    background-color: #0F9ACF;
    border-color: #46b8da;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
textarea {
    overflow: auto;
    vertical-align: top;
    resize: none;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
}
.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    box-sizing: border-box;
}

.form-inline .form-group{
    display: block;
}
.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.blog-header .form-control { 
    height: 38px; 
    margin: 0 auto;
}
.blog-header .list-menu{ 
    position: relative;
    top: 5px;
}
.col10main textarea,#json-target{
    min-height: 300px;
    box-sizing: border-box;
}
.form-horizontal .form-group{
    overflow: hidden;
}
.form-group .col-sm-12{
    padding: 10px;
    box-sizing: border-box;
}
.form-horizontal .form-group .btn{
    margin-right: 10px;
}
#json-target{
    position: relative;
    left: 5px;
}
.panel>.table-responsive:first-child>.table:first-child, .panel>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel>.table-bordered, .panel>.table-responsive>.table-bordered {
    border: 0;
}
.panel>.panel-collapse>.table, .panel>.table, .panel>.table-responsive>.table {
    margin-bottom: 0;
}
.table-bordered {
    border: 1px solid #ddd;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table {
    background-color: transparent;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
} 
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #ddd;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.input-group-lg > .form-control {
    height: calc(2.5rem + 2px);
    padding: .715rem .8rem;
    font-size: 1rem;
    border-top-left-radius: .15rem;
    border-bottom-left-radius: .15rem;
}
 
.tool-content-wrap.bg-gray {
    background-color: #f7f7f4;
}
.tool-content-wrap {
    background-color: #fdfae9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 2px;
}
.col-md-2 {
    width: 16.66666667%;
}
.col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

.text-muted {
    color: #999;
}
.tool-body .form-group{ 
    display: block;
    flex-wrap: wrap; 
}
.content .dis {
    padding: 15px 20px;
    background: #f7f7f7;
    margin-bottom: 20px;
}
.sf-sear form .int {
    padding-left: 5px;
    width: 100%;
    height: 58px;
    line-height: 58px;
    font-size: 20px;
    border: solid 1px #ddd;
}.sf-sear form .btn {
    width: 120px;
    height: 60px;
    _height: 58px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    border: none;
    background: #1179ca;
}
.sf-sear .fl{
    width: 80%;
}
.el-table .cell{
    max-width: 160px;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px;
}
.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}
#nmain {
    font-size: 12px; 
    padding-top: 5px;
    padding-bottom: 10px; 
    margin-bottom: 5px;
/*    background: linear-gradient(0deg, #fff, #fafcff);*/
    border-bottom: 1px solid #e4ebf5;
}
#nmain .container{ 
    position: relative;
}
#nmain a{
    margin: 0 3px;
}
.nemail_input {  
    font-size: 12px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 1px;
}
.nemail_input .ltip a{
    padding: 3px;
    border-radius: 3px;
    border:1px solid #eee;
}
#m4 { 
    width: 116px;
    background: #FFFFFF; 
    font-size: 13px;
    border: #C6D0F4 solid 1px;
    position: relative; 
    z-index: 10; 
    display: none;
}
.nemail_input:hover  #m4{
   display: block;
}
#m4 li {
    width: 111px;
    _width: 106px;
    background: #FFFFFF;
    line-height: 22px;
    padding-left: 5px;
    text-align: left;
    _margin-left: -10px;
}
.website .items{
    margin: 15px auto ;
/*    overflow: hidden;*/
}
.website .items .item,.website .links{ 
    margin: 0 -1.5%;
    display: flex; 
    flex-wrap: wrap;
}
.linksite{
/*    border-top: 1px solid #eee;*/
    padding: 10px 0;
    margin: 0 -10px;
} 
.linksite .links{
    margin: 10px auto;
}
.linksite .links li{
    margin: 2px 10px;
    font-size: 14px;
}
.topsite .links li{
    margin-bottom: 10px;
}
.website .items h3{
    font-size: 16px;
    font-weight: 600;
    color: #0AA770;
    margin: 5px auto 15px;
    font-weight: normal;
    position: relative;
}
.website .items h3:after{
    position: absolute;
    content: '';
    border-bottom: 1px solid #0AA770;
    width: 60px;
    height: 1px;
    left: 0;
    bottom: -5px;
}
.website .items h3 a{
    display: block;
}
.listsite .items h3 a{
    display: inline;
}
.website .items h3 a,.linksite .links b{
    color: #0AA770;
}
.website .items h3  a:hover{
    color: var(--aHoverColor);
}
.website .items h3:hover:after{
    border-bottom: 1px solid var(--aHoverColor);
}
.listsite .items h3{
    color: #888;
}
.listsite .items h3:after{
    border-bottom: none!important;
}
.website .items h3 .fr{
    font-size: 12px;
    opacity: 0.8;
}
.website .items .site,.topsite .links li{ 
    width: 10.25%;
    float: left;
    flex: auto;
    font-size: 15px;
    padding:3px 5px;
    margin:0 1%;
   -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.listsite .items .site{
    width: 14%;
    margin-top: 8px;
    margin-bottom: 8px;
}
.detailsSiteAbout .items .site{
   width: 23%;   
}
.topsite .links li{
    width: 8%;
    font-size: 14px;
}
#contentad{
    border-top: 1px solid #e4ebf5;
    border-bottom: 1px solid #e4ebf5;
    padding: 15px 0 ;
    text-align: center;
}
#contentad a{
    margin: 0 5px;
    font-size: 14px;
}
.website .items .mya{
    position: relative; 
}
.website .cl1{
    display: flex; 
    justify-content: flex-start;  
}

.website .cl1 img{ 
    height:15px;
}

.website .cl1 h4{ 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    text-align: left;
    margin: 2px 0;
}
.website .cl2{
    position: absolute;
    top: 5px; 
    left: -17px;
    font-size: 14px;
    display: none;
    z-index: 10;
}
.website .site:hover .cl2{
    display: block;
}




/* 设置 container 在小型屏幕上的内外边距 ，使其更符合小型屏幕的观感体验 */
@media (min-width: 768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto
    }
}

/* 在绝对定位情况下，主边栏的全宽(可供一些位于主边栏的难以计算宽度的对象使用)
---------------------------------------------------*/
@media (min-width: 1px) {
    .rea-width {
        width: calc(100% - 18px)
    }
}

@media (min-width: 576px) {
    .rea-width {
        width: 524px
    }
}

@media (min-width: 768px) {
    .rea-width {
        width: 450px
    }
}

@media (min-width: 992px) {
    .rea-width {
        width: 609px
    }
}

@media (min-width: 1201px) {
    .rea-width {
        width: 730px
    }
}

/* 博客页面底部（footer）没有空隙（即防止 footer 在页面中间位置出现的诡异现象）
---------------------------------------------------*/
body {
    display: flex;
    flex-direction: column;
/*    height: 100vh;*/
}

.blog-header {
    flex: 0 0 auto; 
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 100; 
}

.blog-container {
    flex: 1 0 auto;
} 
.blog-container p{
    margin: 5px auto;
}
.blog-myside {
    flex: 1;  
}
/*内容页面*/
.searchContent{
    margin-bottom: 35px!important;
}
 
#pt{ 
/*    margin-top: 100px;*/
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}
#pt .xq{
    display: inline-block;
    max-width: 260px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    top: 6px;
}
#pgt{
    margin: 30px auto 15px;
}
 
#pgt .pgb,#pgt .pgb i{
    font-size: 12px;
    color: #999;
}
.showcont{
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
    border: 1px solid #eee;
    border-radius: 5px; 
} 
.showcont aside{
    padding: 5px 20px;
    text-align: center;
    position: -webkit-sticky;
    position: sticky;
    top: 70px;  
} 
.showcont .asrow{ 
    max-width: 250px;
    flex: 2;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
} 
.showcont article{
    flex: 8;
    max-width: 900px;
}
.showcont .onetop{
    margin: 0 -20px;
}
.showcont .as_top,.showcont .as_user_num{
    font-size: 12px;
    color: #999;
    justify-content: center;
}
.showcont .as_top {
    border-bottom: 1px solid #eee; 
    height: 50px;
} 
.showcont .as_top span,.showcont .as_user_num span{
    font-size: 12px;
    color: var(--aHoverColor);
    margin-right: 10px; 
}

.showcont .as_user .uname{
     border-bottom: 1px dashed #eee;
    padding: 6px 0 8px;
    margin: 0 auto 30px;
}
.rerow .as_user .uname{
    padding: 3px 0 8px;
}
.showcont .as_user .lv{
    display: block;
    font-size: 10px;
    color: #999;
}
.showcont .as_user img{
    width: 100%;
    max-width:100px;
    border-radius: 100px;
    margin-top:-5px;
    border:5px solid #eee;
    margin-bottom: 15px;
}
.showcont .as_user_num{
    padding: 10px 0 20px;
    background: #f9f9f9;
    border-radius: 5px;
    justify-content: center;
}
.showcont .as_user_num span{
    border-right: 1px solid #eee;  
    width: 33.3%;
    display: block; 
}
.showcont .as_user_num span:last-child{
    border: none;
}
.showcont .as_user_num p{
    line-height: 0;
    color: #999;
    margin: 0;
    margin-top: 10px;
}  
.showcont .artcont h1{ 
    font-size: 18px;
    font-weight: 400;  
    height: 40.5px;
    padding: 0 20px;
    line-height:54px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.showcont .artcont h1 a{
    color: #999;
    margin-left: 10px;
    display: inline-block;
    padding: 0 5px;
}
.showcont .artcont h1 .fr{ 
    position: relative;
    top: 2px;
    right: -5px;
}
.showcont .artcont h1 .em-badge{
    line-height: 24px;
    margin-right: 10px;
}
.showcont .artcont h1 a:hover{
    color: var(--aHoverColor);
}
.showcont .echocont{  
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; 
    padding: 20px;
}
.rerow .echocont{  
  border-top: none;
}
.showcont .echoart{
    min-height: 200px;
}
.echocont .userinfo{
    font-size: 12px;
    color: #999;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 25px;
}
.echocont .userinfo .look{
    margin-left: 10px;
}
.artcont .userqm{
    margin: 20px auto 0;
    font-size: 14px;
    color: #999;
    border-top: 1px dashed #eee;
    padding-top: 20px;
    opacity: 0.5;
}
.showcont .echocont:hover .userqm{ 
    opacity: 1;
}

.plh5{
    margin: 30px auto;
    font-size: 18px;
}
.col10main{
    position: relative;
}  
.hscenter,.LengthCountCent,.PowerCountCent,.PressureCountCent,.TemperatureCountCent{
    text-align: right;
    max-width: 520px;
    margin: 0 auto;
    margin-left: 20%;
}
#matoolsContainer .form-group{
    padding: 15px;
    display: block;
    width: 100%;
}
/*__________________________________________________网址详情页*/

.sDWrap {
/*    width: 1200px;*/
    width: var(--index-wrap);
    margin: auto;
    margin-top: 10px;
}

.sDLeft {
    float: left;
    position: sticky;
    top: 70px;
    width: 60px;
    margin-right: 10px;
    background: var(--theme-bg-color);
    border-radius: var(--border-radius);
    padding: 5px;
    text-align: center;
}

.etailsLeftItem {
    display: flex;
    width: 40px;
    height: 40px;
    margin: 5px 0;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sDLeftContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.etailsLeftItem img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #efefef;
}

.sDCenter {
    width: calc(73% - 80px);
    margin-right: 10px;
    float: left;
}

.detailsSiteInfo {
    background: var(--theme-bg-color);
    display: flex;
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.detailsSiteIco {
    display: flex;
    position: relative;
    height: 220px;
    width: 220px;
    border-radius: var(--border-radius);
    align-items: center;
    justify-content: center;
    background: #e6e8ed;
    overflow: hidden;
}

.backgroundCover {
    position: absolute;
    background-size: cover;
    opacity: .2;
    inset: 0;
    filter: blur(10px);
    animation: rotate 30s linear infinite;
}

.iconImg {
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100px;
    height: 100px;
}

.iconImg img {
    height: 100%;
    width: 100%;
}

.detailsSiteBody {
    flex: 1;
    width: 0;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.detailsSiteTitle h1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 28px;
    font-weight: 500;
}

.detailsSiteDesc {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1;
    word-wrap: break-word;
}

.detailsSiteDesc p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detailsSiteTell {
    font-size: 14px;
    line-height: 2;
    word-wrap: break-word;
    font-weight: 600;
}

.detailsSitetag {
    font-size: 14px;
    line-height: 2;
    word-wrap: break-word;
}

.detailsSiteTime {
    font-size: 14px;
    line-height: 2;
    word-wrap: break-word;
}

.detailsSiteBtn a {
    padding: 6px 10px;
    background-color: var(--theme-color);
    color: #FFFFFF;
    border-radius: 2px;
    display: inline-block;
    line-height: 1;
}


.detailsSiteAbout {
    background: var(--theme-bg-color);
    display: flex;
    padding: 10px;
    border-radius: var(--border-radius);
    flex-direction: column;
    margin-bottom: 10px;
}

.aboutSiteTitle {
    margin-top: 0 !important;
}

.aboutSiteContent {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 -5px;
}


.detailsSiteMain {
    background: var(--theme-bg-color);
    display: flex;
    padding: 10px;
    border-radius: var(--border-radius);
    flex-direction: column;
    margin-bottom: 10px;
}

.sDCenter img {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.detailsSiteContent p {
    font-size: 16px;
    line-height: 1.8;
    word-wrap: break-word;
    margin: 0 0 10px;
    text-align: justify;
}

.sDCenter h3 {
    border: none;
    line-height: 1.46;
    padding-left: 18px;
    position: relative;
    margin: 10px 0;
}

.sDCenter h3:before {
    background-color: var(--theme-color);
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .15), transparent);
    border-radius: 3px;
    content: "";
    height: calc(100% - 8px);
    left: 0;
    position: absolute;
    top: 4px;
    width: 3px
}

.detailsSiteCopyright {
    margin-top: 10px;
    font-size: .875rem;
    line-height: 1.6;
    border-radius: var(--border-radius);
    background: #f3f5fc;
    color: var(--theme-shallow-color);
    word-wrap: break-word;
}

.copyrightContent {

    text-align: justify
}

.detailsSiteCopyright div {
    padding: 8px 20px;
}

.copyrightFooter {
    border-top: 1px solid rgba(130, 130, 130, .1);
    font-size: .75rem;
    display: flex;
    justify-content: space-between;
}

.detailsSiteComments {
    background: var(--theme-bg-color);
    display: flex;
    padding: 10px;
    border-radius: var(--border-radius);
    flex-direction: column;
    margin-bottom: 10px;
}

.sDRight {
    width: 25%;
    float: right;
    margin-bottom: 10px;
    position: sticky;
    top: 70px;
}

/*__________________________________________________公共边栏*/
.widget {

    background-color: var(--theme-bg-color);
    border-radius: var(--border-radius); 
    margin-bottom: 10px;
}

.widget:last-child {
    margin-bottom: 0px !important;
}

.widget-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin: 2px 0 15px;
    padding: 0 0 0 12px;
    position: relative;
}

.sDRight .widget-title:before {
    background-color: var(--theme-color);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), transparent);
    border-radius: 3px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 3px;
}
/*__________________________________________________边栏-随机网址*/
.random-site {
    display: flex;
    flex-wrap: wrap;
}

.random-site-item {
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
}
.sDRight .random-site-item { 
    width: 50%; 
}

.random-site-item a {
    display: flex;
    align-items: center; 
    
} 

.random-site-img {
    display: flex;
    margin-right: 5px;
}

.random-site-img img {
    width: 20px;
    height: 20px;
}

.random-site-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;

}
.sDWrap,.rDWrap {
    width: 100%;
    margin: 0;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
}

.sDLeft {
/*    display: none;*/
}
 
 
.footinfo {
    line-height: 2;
    padding-block: 20px;
    text-align: center !important;
    
}
.footinfo .copys ,.footinfo .copys a{
    color: #888;
}
.footinfo  p{
    margin: 0 auto;
}


















.blog-footer {
    flex: 0 0 auto;
    font-size: 0.85rem;
}

.blog-footer-links {
    margin: 10px;
}
.blog-footer-links a{
    margin-left: 15px;
}
/* 博客头部属性的配置
---------------------------------------------------*/
.blog-header {
    margin-bottom: 1.3rem;
/*
    background-color: var(--conBgcolor);
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.04)
*/
/*
    background: linear-gradient(180deg, #fff, #fafcff);
    box-shadow: 8px 8px 20px rgba(55, 99, 170, .1);
*/
}

.ilogo{
/*
    font-size: 18px;
    font-weight: 600;
    position: relative;
    top: 1px;
    color: var(--aHoverColor);
*/
    margin-right: 10px!important;
}
.nlogo{
    max-width: 160px;
}
#nwjmg{
    max-width: 200px;
}
.blog-header-c { 
    height: 70px;
    display: flex; 
    justify-content: space-between ;
    display: none;
}

/* 博客标题和副标题 */
.blog-header-title {
    font-size: 24px;
    z-index: 1;
    margin-right: 10px;
}

.blog-header-subtitle {
    font-size: small;
    letter-spacing: 0.2rem;
    position: absolute;
    padding-top: 48px;
    z-index: 0
}
 
.blog-header .nav-link {
    padding: 0 0.5rem;
}

.list-menu {
    list-style: none
}

/* 导航列表的响应式配置
   在不同大小的屏幕上，导航菜单会有不同的样式。
   样式根据屏幕大小分为两种：767px以上，767px以下
---------------------------------------------------*/
/* 大屏幕 */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
/*        padding-block: 4.5px;*/
        text-align: center
    }

    /* 大屏幕列表样式 */
    .list-menu .list-menu {
        border-bottom: 1px solid #f1f1f1;
    }

    .list-menu:last-child {
        border-bottom: unset
    }

    .blog-header-toggle {
        display: none
    }
}


/* 大屏幕下的下拉框样式，这里设置的透明度为0（opacity: 0.0;）。但小屏状态下
 * 没有隐藏，所以下面会在小屏部分，即767px及以下的部分对这个属性覆盖。 */
.dropdown-menus {
    background: white;
    opacity: 0.0;
    z-index: 4;
    list-style: none;
    margin-left: -26px;
    position: absolute;
    padding-left: 0px;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    top: -3000px;
    margin-bottom: -34px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02)
}

.dropdown-menus .list-menu {
    padding: 6px
}
 

/* 下拉框的样式 */
.list-menu:hover .dropdown-menus {
    opacity: 0.95;
    top: 56px;
    transition: opacity 0.2s
}

/* 列出文章（或文章条目）页
---------------------------------------------------*/
/* 卡片上的文章发布时间这部分的属性 */
.info-row {
    padding: 1.2rem!important; 
    border-bottom: 1px solid #f5f5f5; 
    justify-content:flex-start;
    box-sizing: border-box;
    flex-wrap: nowrap;
    max-width: 100%;
}
.info-row:hover{
    background: #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}
/* 文章阅读页
---------------------------------------------------*/
/* 文章作者、时间等信息下hr水平线的属性，设置margin-bottom为四级 */
.bottom-5 {
    margin-bottom: 1.5rem !important
}

/* 标签的属性，设置margin-top为三级 */
.top-5, .mtop-5 {
    margin-top: 3rem !important
}

/* 验证码模态窗的配置 */
.modal-dialog {
    display: none;
    background-color: white;
    border-radius: var(--marRadius);
    border: 1px solid #dedede;
    position: fixed;
    z-index: 100;
    /* 定位 */
    top: 35%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}

/* 验证码模态窗的按钮 */
.btn {
    cursor: pointer;
    color: #848798;
    background-color: white;
    padding: 5px 15px;
    font-weight: 800; 
    margin-block: 12px;
    margin-inline: 17.5px;
    border: 1px solid #dedede;
    border-radius: 5px;
} 
.nav-list {
    display: flex; 
    text-align: center;
    align-content: center;
    align-items: center;
}
.blog-header .btn{
    background: linear-gradient(135deg, #f59f54 10%, #ff6922 100%);
    color: #fff;
    animation: scale-breathe 2s infinite linear;
    display: inline-block;
    margin: 0  10px 0 0;
}

@keyframes scale-breathe{0%{transform:scale(1)}25%{transform:scale(1.1)}75%{transform:scale(.9)}to{transform:scale(1)}}

.btn:hover {
    opacity: 0.8;
}

.modal-header {
    text-align: center;
    border-bottom: 0px;
    width: 250px;
    padding: 20px
}

.modal-content img {
    float: left;
    height: 32px;
    margin-left: 20px;
    margin-block: 30px
}

.modal-content input[name="imgcode"] {
    padding: 6px 8px !important;
    margin-right: 20px;
    margin-left: 8px;
    text-align: left;
    margin-block: 30px;
    border: 1px solid #dedede
}

.modal-content .modal-footer {
    padding: 10px;
    text-align: center
}

/* 弹出验证码模态窗后，屏幕背景要锁住 */
.lock-screen {
    display: none;
    z-index: 99;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #2d2d2b;
    top: 0;
    left: 0;
    opacity: 0.5
}

/* 验证码的点击样式 */
#captcha {
    cursor: pointer
}

/* 禁止滚动 */
.scroll-fix {
    overflow: hidden
}

/* 阴影
   文章列出页的文章摘要卡片和边栏组件卡片的阴影和鼠标浮动后的阴影
---------------------------------------------------*/
.shadow-theme {
/*    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02);*/
    border-radius: var(--marRadius);
/*    background-color: var(--conBgcolor);*/
    transition: box-shadow 0.4s
}

/* 日历样式
---------------------------------------------------*/
/* 日历的加载样式，防止翻页造成太大的视觉变化 */
.cal_loading {
    margin-bottom: 243px
}

#calendar {
    color: #212529
}

.calendartop {
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #000
}

.calendartop a {
    font-weight: 100 !important
}

.calendar {
    margin-bottom: -10px;
    width: 100%
}

.calendar td {
    text-align: center;
    padding: 1px 10px;
    line-height: 1.6
}

.calendar td a:link {
    color: #000;
    font-weight: bolder;
    text-decoration: underline
}

.calendar td a:hover {
    color: #886353;
    text-decoration: none
}

.calendar tr {
    height: 40px
}

.day {
    color: #212529;
    background: #eaeaea;
    border-radius: var(--marRadius)
}

.sun {
    color: #333
}

.week {
    color: #333
}

/* 侧边栏卡片样式
---------------------------------------------------*/
/* 卡片的内边距和外边距 */
 
.side-bar {
    font-size: medium;  
}
.toptab{
    padding: 5px;
/*    border-top: 1px solid #f5f5f5;*/
    border-bottom: 1px solid #f5f5f5;
/*    background: #f9f9f9;*/
/*    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.04);*/
    border-radius: 5px;
}
.toptab a{
    margin-right: 5px;
    display: inline-block; 
    padding: 1px 2px;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
 
.side-bar .widget-title {
    padding: 5px 0px;
}
.column-big .widget-title h3{
    margin-bottom: 0;
}

/* 边栏组件的标题 */
.side-bar h3 {
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: solid 1px #eee;
    padding: 10px;
}

.side-bar .widget li {
    position: relative;
    color: #6f6f6f;
    line-height: 2;
    border-bottom: 1px solid #f5f5f5;
    padding: 5px 0;
}

/* 分页按钮样式
---------------------------------------------------*/
.em_pagination {
    font-size: 14px;
    padding: 10px;
    text-align: center
}

.em_pagination span {
    padding: 5.5px 6px 3px 6px;
    margin: 0 5px;
    border-radius: 8px;
    line-height: 3;
    color: #858796
}

.em_pagination a {
    color: #c0bcbc;
    padding: 5.5px 10px 6px 10px;
    background: white;
    margin: 0 5px;
    line-height: 3;
    border-radius: 8px;
    font-size: 18px;
}

.em_pagination a:hover {
    text-decoration: none
}
.echopage{
    display: block; 
    position: relative;
    height: 40px;  
}
.echopage .epage{
    position: absolute;
    top: 0;
    left: -2px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding:30px 30px 0px 0; 
}
.renewrow{
    margin-top: 2px;
}
#pagenavi {
    text-align: center;
    font-size: 14px; 
    position: relative;
    top: -5px;
    margin-left: 10px;
}
#comments{
    border-top: 1px solid #eee;
}
#pagenavi span,#pagenavi a,.em_pagination span,.em_pagination a  {
    display: inline-block;
    margin-left: 8px;
    padding: 0;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0px 4px 5px 0px #E6EBF5;
    border-radius: 2px;
}
#pagenavi span,.em_pagination span{
    background-color: #3B77EF;
    color: #fff;
    box-shadow: 0px 2px 5px 0px #3B77EF;
}
.em_pagination em{
    position: relative;
    top: -12px;
} 

/* 评论样式
---------------------------------------------------*/
/* 发表评论表单样式 */
@media (min-width: 768px) {
    .commentform {
        height: 200px;
        box-sizing: border-box;
    }
}

#commentss { 
    margin: 20px auto;
    width: 100%;
    box-sizing: content-box; 
}

.comment-name {
    float: left;
    border-bottom-left-radius: 10px !important
}

.comment-mail {
    float: left
}

.comment-url {
    border-right: 1px #d6d6d6 solid !important;
    border-bottom-right-radius: 10px !important
}

.form-controls {
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-in-out
}

.comment-info {
    width: auto
}

.com_control {
    display: block;
    border-radius: 0px;
    border: 1px #d6d6d6 solid;
    border-right: 0px;
    height: 50px
}

/* 评论处的输入框提示，居中、隐藏 */
.com_control:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0)
}

.com_control::-webkit-input-placeholder {
    color: rgba(116, 116, 116, 0.336)
}

@media (min-width: 578px) {
    .com_control::-webkit-input-placeholder {
        text-align: center
    }
}

.comment-header {
    padding-bottom: 5px;
}

.comment-post {
    clear: both;
    margin-top: 15px;
}

.comment-post p {
    margin: 5px 0px
}

.comment-post .cancel-reply {
    float: right;
    cursor: pointer;
    padding-right: 10%
}

.comment-post .cancel-reply:hover {
    text-decoration: underline
}

.comment-post small {
    font-size: 12px;
    color: #999
}

.comment-post input {
    padding: 7px 40px;
    font-size: small;
    color: #848797;
    width: 33.3333334%
}

.comment-post #comment {
    width: 100%;
    border: 1px #d6d6d6 solid;
    font-size: small;
    border-radius: var(--marRadius) 10px 0 0;
    height: 130px;
    resize: none;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px ;
    margin: 0 auto; 
}

.comment-post #comment_submit,.comment-post .cancele {
    width: 84px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    margin: 10px 0px;
    float: right;
    margin-right: 1px;
    border-radius: 8px;
    border: 1px solid #dedede;
    padding: 7px 10px;
    justify-content: center
}
.comment-post .cancele{
    background: #f9f9f9;
    margin: 10px 20px;
}
.comment-post #comment_submit:hover {
    cursor: pointer;
    color: #fff;
    background: linear-gradient(-90deg, #f59f54 10%, #ff6922 100%);
}

.comment-post .input {
    width: 100px
}
.comment { 
    padding: 10px ;
    font-size: medium;
    border-bottom: 1px #f3f3f3 solid;
    overflow: hidden;
    color: #333;  
    border-radius: 10px;
    width: 100%; 
    box-sizing: border-box;
}

.comment span {
    color: #ff7a15
}

.comment .comment-time {
    color: #999999;
    display: inline;
    font-size: 10px;
    margin-left: 10px;
}

.comment .avatar {
    float: left;
    margin: 5px 4px
}

.comment .comment-infos {
    background: #f7f7f7;
    padding: 12px; 
    border-radius: var(--marRadius);
    margin-top: 9px;
    margin-left: 58px
}

.comment .comment-infos-unGravatar {
    padding: 5px
}
.unichen .fr{
    font-size: 12px;
    color: #666;
}
.unichen .fr a{
    margin: 0 5px;
}
.com-bottom {
    margin-bottom: 80px;
}

/* 评论列表中指向评论者头像的箭头 */
.arrow {
    position: absolute;
    margin-top: 3px;
    margin-left: -34px;
    border-width: 13px;
    border-style: solid;
    border-color: transparent #f7f7f7 transparent transparent
}

.comment .comment-content {
    margin: 8px 0px 8px 0px;
    word-break: break-word; 
    padding: 20px 5px;
}

.comment .comment-reply {
/*    float: right;*/
    font-size: 12px;
    cursor: pointer;
    margin-top: -15px;
}

.comment .comment-reply img{
    height: 12px;
}

 

.comment-children {
    margin: 20px auto;
    clear: both;
    border: none;
    padding: 0;
/*    background: #f9f9f9;*/
    padding: 20px;
    
}

.comment .comment-post {
    width: 90%;
    margin: 15px auto
}

.comment-info {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: -8px;
    white-space: nowrap
}

/* 边栏处的最新评论信息margin-top应该是0 */
.unstyle-li .comment-info {
    margin-top: 4px
}

.cancel-reply {
    font-size: large
}

/* 评论人的头像 */
.avatar img {
    width: 40px;
    margin-top: 9px;
    margin-right: 4px;
    border-radius: 50%
}

.unstyle-li input[type="submit"] {
    background-color: #313131;
    color: #FFFFFF;
    margin-left: -25px;
    height: 39px;
    width: 55px;
    border: 0;
    border-radius: 0 3px 3px 0;
    padding: 0
}

/* 评论区的 回复、取消回复 按钮 */
.comment-replay-btn {
    border: none;
    cursor: pointer;
    padding: 0;
    background-color: unset
}

.comment-replay-btn:hover {
    color: var(--aHoverColor);
    text-decoration: underline;
    transition: all 0.2s
}

/*文章条目中的部分样式
---------------------------------------------------*/
/* 文章条目的标题 */
.card-title {
    margin-bottom: 0px
}

/* 文章条目中的置顶图案 */
.log-topflg {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 4.5px;
    bottom: 3.5px;
    font-size: 14px;
    margin-left: 8px;
    cursor: default;
    background-color: antiquewhite
}
.markdown pre,.showcont .echoart pre{ 
    word-break: break-all;
    max-width: 100%;
    overflow-x: hidden;
    white-space: pre-line;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 5px;
}
.markdown code,.showcont .echoart code{
    white-space: pre-line;
    word-break: break-all;
}
/* 文章内容页样式
---------------------------------------------------*/
.log-con {
    background-color: var(--conBgcolor);
    border-radius: var(--marRadius); 
    padding: 30px 30px;
    font-size: 16px;
    height: fit-content;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    flex: 2.5; 
    max-width: 820px;
} 
.comtlist{
/*
    box-shadow: 0 1px 5px #eee;
    padding: 30px; 
*/
    margin: 0 -15px;
    box-sizing: content-box;
}
.qianming{
    border-bottom: 1px dashed #ddd;
    padding:15px 0;
    font-size: 12px;
    color: #ddd;
}
.reright{
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 30px auto;
} 
.btn_lyreciation {
    display: inline-block;
    width: 75px;
    height: 35px; 
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    border-radius: 5px;
    background: #00b551;
    margin-left: 30px;
    text-decoration: none;
}
.log-con p {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.log-con .date {
    margin-bottom: 0px
}

.log-con .markdown {
    margin-inline: 5px;
}
.downbtns a{
    display: block;
    margin: 10px;
}
.markdown .downbtns a{
    display:inline-block;
    margin: 5px 30px 5px 0;
}
.loglist-content h1 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h2 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h3 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h4 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h5 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content p {
    font-size: medium;
    font-family: inherit;
    margin: 0
}

/* 需要改名，侧边栏链接卡片的友情链接属性 */
.no-margin-bottom {
    font-size: medium;
    padding-left: 10px
}

/* 摘要内容部分 */
.loglist-body {
    margin-bottom: 0px;
    font-size: small
}

.loglist-body p {
    margin: 0 -6px 0 0
}

/* 文章标题和标签等 */
.loglist-title {
    font-size: 17px; 
    display: inline-block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 3.0em; 
    line-height: 1.5em;  
    text-overflow: ellipsis;
    white-space: normal; 
    color: #333;
    font-weight: 700;
}
.mflex .em-badge{
    margin-right: 10px;
    min-width: 30px;
    text-align: center;
}
.logavatar{
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
    margin-right: 5px;
    border: 1px solid #f3f3f3;
    background-color: var(--bodyBground);
    display: inline;
    border-radius: 20px;
}
.log-avatar{ 
    max-width: 80px;
}
.new-log {
    color: #000;
}
.new-log:visited{
    color: #999;
}

.loglist-tag {
    margin-top: 30px;
    line-height: 2;
    color: #000000
}

.loglist-tag a {
    color: #929292
}

.loglist-cover {
    width: 100%;
    height: 205px;
    border-radius: var(--marRadius) 10px 0 0
}

.loglist-cover img {
    position: absolute;
    opacity: 0.8;
    border-radius: var(--marRadius) 10px 0 0;
    transition: all 0.4s;
    clip: rect(50px, 730px, 250px, 0px);
    margin-top: -50px
}

.loglist-cover img:hover {
    opacity: 0.7;
    transform: scale(1.01);
    clip: rect(50px, 730px, 250px, 0px)
}

/* 文章分类 */
.loglist-sort {
    user-select: none;
    display: inline-block;
    position: relative;
    margin-left: 10px;
    bottom: 2px;
    padding: 6px;
    padding-bottom: 3px;
    border: 1px solid #e8e8e8
}

@media (max-width: 415px) {
    .loglist-cover {
        height: 160px;
        overflow: hidden
    }

    .loglist-cover img {
        position: unset;
        width: 730px;
    }
}

@media (max-width: 375px) {
    .loglist-cover {
        height: 140px;
        overflow: hidden
    }

    .loglist-cover img {
        position: unset;
        width: 730px;
    }
}

/* 条目的其他内容 */
.loglist-content {
    font-size: medium;
    margin-left: 1px;
    margin-bottom: 5px;
    margin-right: 3px;
    margin-top: 30px
}

.log-info {
    font-size: small;
    letter-spacing: 0.5px;
}

.log-sub-info {
    color: #9e9e9e;
    margin-top: 5px;
}
.info-row{
    position: relative;
}
.log-count {
    font-size: small;
    position: absolute;
    right: 0;
    bottom: 20px;
}
.weizhi{
    padding-bottom: 20px;
}
.wzright{
    margin: 0 8px;
    font-size: 0;
    background: url(../images/right.png) no-repeat center center;
    background-size:contain;
    display: inline-block;
    width: 10px;
    height: 21px;  
    position: relative;
    top: 5px;
}
/* 侧边栏组件的一些样式 */
.bloggerinfo {
    margin-bottom: -10px;
    text-align: center
}
.userinfox{
    position: relative;
    
 
    
/*    border: 1px solid #f5f5f5;*/
/*    background-color: var(--conBgcolor);*/
/*    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.04)*/
    
}
.userinfox:after{
    position: absolute;
    width: 100%;
    left: 0;
    height: 50%;
    background: linear-gradient(180deg, #f8fafd, #fff);
    content: '';
    top: 0;
    z-index: -1;
    border-radius: 5px;
    
/*    border: 1px solid #f5f5f5;*/
/*    background-color: var(--conBgcolor);*/
/*    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.04)*/
    
} 
.bloggerinfo-img {
    width: 60px;
    height: 60px;
    border: 0px solid #c2a9a9;
    border-radius: 50%;
    margin-bottom: 10px;
}

.comm-lates-name {
    font-weight: bolder
}

.bloginfo-name {
    font-size: large;
    margin-top: 15px;
    margin-bottom: 0px
}

.bloginfo-descript {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #929292
}

/* 搜索栏 */
.search {
    width: 80%;
    box-shadow: none;
    float: left;
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    border: 1px solid #ced4da;
    /* 兼容 Safari ，Safari默认input会有1px的上下外边距 */
    margin-block: 0;
    border-radius: 0.25rem
}

/* 文章阅读和文章条目的标签 */
.tags {
/*    border: 1px solid #e8e8e8;*/
/*    padding: 1px 6px;*/
/*    border-radius: 4px;*/
    white-space: nowrap;
/*    background-color: #f5f5f5;*/
    margin-left: 5px;
}
.arttag{
    padding: 15px 0;
    font-size: 14px;
}
.favorite-container{
    padding: 50px 0;
}
.article-tag a{
    margin-right: 15px;
}
/* 侧边栏组件中的标签 */
.tag-container {
    margin-block: 0;
    text-overflow: ellipsis
}

.tags-side {
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap
}

/* 侧边栏组件中的最新文章样式 */
.blog-lates, .blog-hot {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

/* 返回上页图标 */
.back-top {
    font-size: 20px;
    text-align: center;
    height: 34px;
    width: 34px;
    margin-left: -90px;
    position: absolute;
    top: 151px;
    border: 1px solid #dcdcdd;
    color: #dcdcdd;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
}

.back-top:hover {
    border: 1px solid #bbbbbb;
    color: #bbbbbb
}

/* 文章条目中的分割线 */
.list-line {
    border: 0;
    margin-top: 12px;
    margin-bottom: -7px;
    border-top: 2px solid rgb(245, 245, 246)
}

/* 侧边栏组件中的文章分类 */
.log-classify-f {
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400
}

.log-classify-c {
    margin-left: -27px;
    list-style: none;
    font-size: medium
}

/* 侧边栏组件中的最新评论 */
.logcom-latest-time {
    position: absolute;
    right: 10px;
    color: var(--lightColor);
    margin-left: 10px;
    font-size: small
}

.comment-info_img {
    width: 27px;
    margin-bottom: 4px;
    margin-right: 3px;
    border-radius: 50%;
    vertical-align: middle;
    border-style: none
}

/* 各处的日期文字样式 */
.date {
    margin: 0;
    color: #7f7f7f
}

.date a {
    color: #7f7f7f
}
.date .rounded-pill{
     color: #000;
}
.log-con .date {
    font-size: small;
    margin-top: 6px;
    padding-bottom: 6px;
}
.log-con .date .fr{ 
    margin-top: 3px; 
}
.log-con .date span{ 
    color: #3B77EF
}
.userlevel,.userlevel1,.userlevel2,.userlevel3{
    padding: 0 7px;
    color: #fff;
    background: #f04142;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
    margin: 0 5px;
}
.userlevel1{ 
    background: #ff8800; 
}
.userlevel2{ 
    background: #a4bb37; 
}
.userlevel3{ 
    background: #6999ee; 
}
.updates{
    font-size: 12px; 
    color: #999;
    text-align: center;
    margin-bottom: 10px;
}
.log-title {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.page-title {
    margin-bottom: 30px;
    font-size: 1.75rem
}

/* 相邻文章按钮的样式 */
.neighbor-log {
    overflow: hidden;
    margin-block: 20px
}

.prev-log {
    margin: 3px 0px;
    float: left;
    padding: 6px 6px 4px 6px;
    font-size: medium;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50rem
}

.next-log {
    margin: 3px 0px;
    float: right;
    padding: 6px 6px 4px 6px;
    font-size: medium;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50rem
}

.comment-info a {
    color: var(--lightColor);
    padding-left: 5px;
    font-size: 14px;
}

.comment-info hr {
    margin: 4px 0px
}

/* 网页足部
---------------------------------------------------*/
.footinfo {
    line-height: 2;
    padding-block: 20px;
    text-align: center !important;
}

/* 图片放大
---------------------------------------------------*/
img[data-action="zoom"] {
    cursor: zoom-in
}

.zoom-img,
.zoom-img-wrap {
    position: relative;
    z-index: 666;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

img.zoom-img {
    cursor: zoom-out
}

.zoom-overlay {
    z-index: 420;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
    opacity: 1;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
    cursor: default;
}

.cover-unclip {
    /* 放大后的图片无裁剪、无圆角、无透明度 */
    clip: unset !important;
    border-radius: unset !important;
    opacity: 1 !important
}

/* toc
---------------------------------------------------*/
.toc-con {
    padding: 30px;
    padding-right: 50px;
    left: 150px;
    width: 300px;
    position: absolute;
    top: 200px
}

.toc-con .close-toc {
    color: #dcdcdd;
    left: 0px;
    position: absolute;
    padding-top: 5px;
}

.toc-con ul {
    margin: 0;
    padding: 0
}

.toc-con li {
    font-size: 14px;
    line-height: 1.8rem;
    cursor: pointer;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.toc-con div {
    scrollbar-color: #0000002b #fff0
}

.toc-con div::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(0 0 0 / 0%)
}

.toc-con div::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 10%)
}

/* page 页面 */
#page {
    margin-bottom: 24px
}

/* 摘要的溢出（overflow）操作
---------------------------------------------------*/
.subtitle-overflow {
    max-width: 700px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

/* 「归档」的样式
---------------------------------------------------*/
.archive {
    color: #929292;
    font-size: 16px;
    padding: 4px;
    border-color: #ced4da
}

/* 文章列出页 编辑 链接的样式
---------------------------------------------------*/
.loglist-article-edit a {
    color: #929292
}

/* 一些适应各屏幕尺寸显示效果的样式
---------------------------------------------------*/
@media all and (max-width: 1200px) and (min-width: 992px) {

    /* mh 是方便在中、小屏幕隐藏元素的 class */
    .mh {
        display: none
    }

    .bloggerinfo-img {
        width: 60px;
        height: 60px
    }

    .bloginfo-name {
        margin-top: 32px
    }

    /* 中型屏状态下的日历 */
    #calendar {
        margin-left: -8px;
    }
}

@media all and (max-width: 991px) {
    /* 头部无容器的限宽 */
    .blog-header-c {
        max-width: unset !important
    }
 

    body {
        width: 100%;
        margin: -2px;
        padding-left: 2px
    }

    /* mh 是方便在中、小屏幕隐藏元素的 class */
    .mh {
        display: none
    }

    .loglist-title {
        font-size: 18px;
        font-weight: 500
    }

    .bloggerinfo {
        margin-bottom: 0px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 2rem !important
    }

    .log-title {
        text-align: left
    }

    .log-con {
        padding: 30px 16px
    }

    .commentform .comment-info {
        width: 100%
    }

    /* 展开菜单后，博客头部的下边距变大 */
    .bottom-change {
        margin-bottom: 13px
    }

    /* 为文章列出页卡片在小屏幕的观感体验优化 */
    .card-title {
        margin-bottom: 0px
    }

    .loglist-content {
        margin-top: 10px
    }

    .loglist-tag {
        margin-top: 10px
    }

    /* 博客头部的下边距 */
    .blog-header {
        margin-bottom: 1.6rem
    }

    /* 评论的信息栏变化 */
    .comment-post input {
        padding: 0.5em 0.75em
    }

    /* 侧边栏日历 */
    #calendar {
        margin-left: 0
    }
}

/* 在平板一些处于中间尺寸的不常见设备所做的缩放和其他一些调整样式 */
@media all and (max-width: 991px) and (min-width: 768px) {

    #calendar {
        transform: scale(0.8);
        margin-left: -14px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    /* 中屏幕下缩短边栏评论日期显示 */
    .logcom-latest-time {
        max-width: 60px
    }

}

/* 对一些极小尺寸屏幕所做的比较妥协的缩放等调整 */
@media all and (max-width: 349px) {

    #calendar {
        transform: scale(0.7);
        margin-left: -46px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    .bloginfo-name {
        font-size: small
    }
}

/* 普通移动设备的显示样式 */
@media all and (max-width: 577px) {
    .dropdown-menus .list-menu {
        padding-bottom: 0px
    }

    .nav-link {
        padding: 8px;
    }

    /* 卡片容器内边距略小一点 */
    .card-padding {
        padding: 14px;
    }

    .side-bar .widget {
        margin-bottom: 1.5rem
    }

    .em_pagination:after {
        content: "";
        margin-bottom: 20px;
        display: block;
        clear: both
    }

    .bar_top_line {
        display: block;
        margin-bottom: 23px
    }

    .em_pagination span {
        padding: 5.5px 9px 3px 9px
    }

    .em_pagination a {
        padding: 5.5px 9px 3px 9px
    }

    .comment .comment-info {
        float: left;
        margin-left: unset;
        width: 100%
    }

    .com_control {
        height: 44px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 1.6rem !important
    }

    #pagenavi {
        line-height: 45px
    }

    .loglist-content p {
        font-size: 14px;
    }

    /* 评论相关 */
    .comment-post #comment {
        border-radius: 6px;
    }

    .comment-post input {
        width: 100%
    }

    .commentform .comment-info {
        margin-top: -5px
    }

    #commentss {
        margin-bottom: 20px
    }

    .com_control {
        border: 1px solid #ced4da;
        border-radius: 6px !important;
        margin-top: 10px
    }

    .comment-mail {
        margin-bottom: 10px;
    }

    .comment .comment-post {
        display: table
    }

    /* 评论列表换新样式 */
    .arrow {
        display: none
    }

    .comment .comment-infos {
        margin-left: 0;
        font-size: 14px
    }

    .comment .avatar {
        margin: 6px 8px;
        height: 30px;
        width: 30px;
    }

    /* 摘要的溢出（overflow）操作 在 小屏幕上要截得多一点 */
    .subtitle-overflow {
        max-width: 80%
    }

    /* 网页顶部的下拉菜单在移动端的显示优化 */
    .dropdown-menus .list-menu {
        padding: 0px;
        letter-spacing: 2px
    }
}

/* 为 toc 移动端设立的样式 */
@media all and (max-width: 1274px) {
    .toc-con {
        height: 100vh;
        width: 60%;
        max-width: 300px;
        padding-right: 30px;
        /* 磨砂效果 */
        background: rgba(237, 237, 237, 0.8);
        backdrop-filter: blur(2px);
        /* 兼容 Safari 磨砂效果 */
        -webkit-backdrop-filter: blur(2px);
        /* 始终固定位置 */
        z-index: 2;
        position: fixed !important;
        top: 0 !important
    }

    .toc-link {
        color: rgb(189, 189, 189);
        font-size: 10px;
        padding-left: 10px;
    }
}

/*__________________________________________________侧边浮菜单*/

.floatAsideFooter {
    position: fixed;
    width: auto;
    height: auto;
    right: 0;
    bottom: 60px;
    z-index: 9980;
} 
.floatAsideItem { 
    text-align: center;
    border-radius: 5px 0 0 5px;
    background-color: var(--theme-bg-color);
    box-shadow: -4px 0px 30px 0px rgb(181 181 181 / 32%);
    padding: 8px;
    margin-bottom: 10px;
} 
.floatAsideItem i{
    font-size: 20px;
}
.darkBrightSwitch{
    display: none;
}

/* 小屏幕 */
@media (max-width: 761px) {
    body{
       overflow-x: hidden;
    }
    .nowaps{display:none;}
     #toplogomail,.nemail_input,.website .items .site:last-child,.linksite .links li:last-child{
        display: none;
    }
    .listsite .items .site:last-child{
        display: block;
    }
    .search-bar{
        margin:  0 auto;
        background: none;
    } 
    .searchContent{
        margin-top:100px!important;
    }
    .website{
        padding: 15px;
    } 
    .topsite .links li,.website .items .site, .topsite .links li{
        width: 31%;
    } 
    #nmain {
        padding: 10px 15px;
    }
    #nmain .ilogo{
        font-size: 18px;
        font-weight: 600;
    }
    #nmain .mflex{
        display: block;
    }
    #nmain .nleft,#nmain .nright{
        display: inline; 
    }
    .wapli{
        display: block;
        left: 9px;
    }
    .search-bar input{
        max-width: 100%;
        background-color: #F6F6F6FF;
        border-radius: 50px;
    }
    .column-big .mul li{
        width: 47%;
    }
    .showcont .artcont h1{
      white-space: wrap;  
      text-overflow: inherit;
    }
    #accordion2 .PressureCountCent,.hscenter,.LengthCountCent,.PowerCountCent,.PressureCountCent,.TemperatureCountCent{
        margin-left: 0!important;
    }
    .darkBrightSwitch{
        display: block;
    }
    .search-bar{
        float: none;
        top: 0;
    }
    .comtlist{
        margin: 10px 5px;
    }
    #emlogEchoLog,#comments,.plh5{
        padding: 10px;
    }
    .plh5{
        margin: 15px auto 0;
    }
    .topright .al3 li{
        width: 50%;
        font-size: 14px;
        margin-bottom: 10px;
        height: 26px;
        overflow: hidden;
    }
    .piclist {
        margin-left: 1%;
    }
    .piclist .li{
        width: 46%;
    }
    .column_left{
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        width: 100%; 
        z-index: 10;
        background: rgba(0,0,0,.6);
        border-left: 1px solid #eee;
        display: none;
        height: 100%;
    }
    .column_left .aleftnav{
        position: absolute;
        background: #fff;
        padding-top:30px;
        top: 0;
        right: 0;
        width: 50%;
        bottom: 0;
        padding-top: 100px;
        padding-left: 40px;
        box-sizing: border-box;
        max-width:200px;
        overflow-y: auto;
    }
        
     .topright .al3 li:last-child{
        display: none;
    }
     .newhot .ndiv,.newhot .unstyle-li li{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .column-big {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%; 
        flex: 0 0 100%;
    }
   
    .toptab a{
        margin-bottom: 5px;
        
    }
    /* 工具栏列 */
    .column-small {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%; 
        flex: 0 0 100%;
        max-width: 100%;
    }
    .yaoqing{
        margin-right: 5px;
    }

    /* 文章发布时间和文章阅读评论数两列的配置 */
    .log-info {
        flex: 0 0 100%;
        max-width: 100%
    }
    .info-row{
/*        padding-left: 0!important;*/
    }
    .log-count {
        line-height: 12px;
        margin-right: 5px;
        margin-top: 10px;
        margin-left: auto;
    }
     .nav-list {
         display: block;
        text-align: left !important;
        padding: 0 10%;
        letter-spacing: 3px;
        line-height: 17px
    }

    .dropdown-menus {
        opacity: 1;
        margin-left: 0px;
        position: unset;
        padding-left: 30px;
        border: 0px solid #f1f1f1;
        width: auto;
        top: 0px;
        margin-bottom: 0px;
        box-shadow: 0 0 0 0 white;
        font-size: smaller
    }
    .header {
        padding: 0.6rem 1rem;
        margin-bottom: 30px !important;
        height: 80px
    }
    .hlogo{
        position:inherit;
    }    
    .blog-header-title {
        position: absolute;
        left: 15px;
        top: 17px;
        width: 150px;
    }
    .showcont{
        display: block;
        width: 100%;
        margin-top: 75px;
    }
    .blog-header-subtitle {
        padding-top: 60px;
        left: 17px;
        top: -9px
    }
    .log-avatar img{
        width: 40px;
        height: 40px;
    }
    .loglist-title{
        max-width: 100%!important;
    }
    /* 仅在小屏幕上显示切换菜单边框和切换菜单 */
    .blog-header-toggle {
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .blogtoggle-icon {
        display: inline-block;
        width: 28px;
        height: 19px;
        margin-top: -3px;
        vertical-align: middle;
    }

    /* 小屏幕的导航变成下拉框 */
    .blog-header-nav {
        display: none;
        z-index: 999;
        position: fixed;
        width: calc(100% - 4px);
        background: white;
        top: 70px;
        left: 0;
        box-shadow: 0 2px 5px #eee;
    }
    .blog-header .btn{
        display: block;
        margin-left: 0;
        padding: 8px 0;
        width: 100%; 
        text-align: center;
    }

    /* 小屏幕上头部的列表样式 */
    .nav-list {
        margin-top: 10px;
        margin-bottom: 10px
    }

    .list-menu {
        line-height: 28px;
        width: 90%;
       display: block;
    }
    .list-menu a{
       display: block;
        padding:6px 0;
        font-size: 18px;
    }
    .nav-list li{
        padding: 5px 0;
    }
    .neighbor-log .prev-log,.next-log{
        float: none;
        display: block;
        border: none;
        margin: 10px auto;
    }
    #pt,#pgt{
        padding-left: 15px;
        padding-right: 15px;
    }
    #pt .xq{
        max-width: 180px;
    }
    #pgt .pgb{
       float: none;
       display: block;
        position: relative;
        top: 80px;
    }
    .showcont aside,.putime{
        display: none;
    }
    .showcont .row{
        display: block; 
    }
    .showcont .artcont h1{
        height: auto;
        line-height: 40px;
    }
    .showcont article{
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .sDWrap .sDLeft,.sDWrap .detailsSiteIco{
        display: none;
    }
    .sDWrap .detailsSiteInfo{
        padding: 0;
    }
   .sDWrap .sDCenter,.sDWrap .sDRight{
        width: 100%;
    }
    
    
    
    
    
    
    
    
    
}