/**
 * 模板样式表
 */

.small {
    font-size: 12px;
}
code {
    padding: 10px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}
/* 全局样式
---------------------------------------------------*/
/* 搜索栏 */
.search-bar {
    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{ 
    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: 20px; 
    flex: 1; 
    box-sizing: border-box;
    max-width: 220px;
}
 
.side-bar .shadow-theme { 
    margin: 0 15px;
    border-bottom: 1px dashed #f1f1f1; 
}
.side-bar .shadow-theme h3{
    margin: 10px auto;
}
 .unstyle-li li a{
    display: block; 
    width: 100%;
    padding: 8px 15px;
    border-radius: 5px;
     box-sizing: border-box;
}
.unstyle-li li a:hover{
    background: #f9f9f9;
}
/* 中屏ipad下的列 */
 
/* 中屏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 ul{
    overflow: hidden;
}
.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;}
 /*__________________________________________________侧边浮菜单*/

.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;
}
















/* 设置 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;
}
.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%;
}














 
.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);
}

.blog-header-c { 
    height: 70px;
    display: flex; 
    justify-content: space-between /* 导航栏为主轴方向两端对齐，即大标题与导航两部分，一个向左靠齐，一个向右靠齐 */
}

/* 博客标题和副标题 */
.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
}

/* 导航链接的上下内边距（padding-block）要大，可使光标离开字符后一段距离依然能唤起子导航标签
 * 另外li标签的列表项标记为空 （list-style: none） */
.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
}
  
/* 评论样式
---------------------------------------------------*/
/* 发表评论表单样式 */
@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
}
.blog-header-nav{
    display: block;
} 
.btn-success {
    color: #fff;
    background-color: #1cc88a;
    border-color: #1cc88a;
}
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.wapli{
    display: none;
}
pre,code {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 小屏幕 */
@media (max-width: 761px) {
    body{
       overflow-x: hidden;
    }
    .search-bar{
        margin:  0 auto;
        background: none;
    }
    .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;
    }
    
    
    
    
    
    
    
    
    
    
}