body {
    padding-top: 70px;
    color: #666;
    background: #F4F7F7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
/* 默认样式 */
.container {
    width: 100%;
    margin: 0 auto;
}

/* 平板设备（宽度小于 768px）*/
@media screen and (max-width: 768px) {
    .container {
        width: calc(100% - 15%); /* 平板缩短 15% */
    }
}

/* 手机设备（宽度小于 480px）*/
@media screen and (max-width: 480px) {
    .container {
        width: calc(100% - 10%); /* 手机缩短 10% */
    }
}

/* 电脑设备（宽度大于 768px）*/
@media screen and (min-width: 769px) {
    .container {
        width: calc(100% - 20%); /* 电脑缩短 20% */
    }
}
/* 电脑超宽屏设备（宽度大于 1800px）*/
@media screen and (min-width: 1800px) {
    .container {
        width: calc(100% - 30%); /* 电脑缩短 30% */
    }
}
.body-card {
    margin-top: 15px;
    margin-bottom: 25px;
}

/** section */
.section {
    margin: 0;
}

.section:nth-child(odd) {
    background-color: #fff;
}

.section-title {
    padding: 40px 0;
    text-align: center;
}

.section-title > h2 {
    color: #333;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-title > p {
    font-size: 18px;
    color: #999;
}

/** //section */

/** 返回顶部 */
.ele-back-up {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: var(--back-up-size);
  height: var(--back-up-size);
  background-repeat: no-repeat;
  background-size: var(--back-up-icon-size);
  background-image: var(--back-up-icon-image);
  background-position: var(--back-up-icon-image-posotion);
  background-color: var(--back-up-backgroud-color);
  box-shadow: var(--back-up-backgroud-box-shadow);
  transition: all var(--duration-medium);
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
}

.ele-back-up:hover {
  background-color: var(--back-up-backgroud-color-hover);
}

.ele-back-up:not(.show) {
  pointer-events: none;
  opacity: 0;
}

/** 顶部导航 */
.ele-header {
  display: flex;
  padding: var(--header-padding);
  font-size: var(--header-font-size);
  font-family: var(--header-font-family);
  background: var(--header-background);
  box-shadow: var(--header-box-shadow);
  transition: padding .3s;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.ele-header .ele-logo {
  color: var(--color-text-heading);
  font-size: var(--header-logo-font-size);
  line-height: var(--header-height);
  padding-left: calc(var(--header-logo-size) + 12px);
  background-image: url(https://cdn.eleadmin.com/20200610/logo.svg);
  background-position: 0 calc(var(--header-height) / 2 - var(--header-logo-size) / 2);
  background-size: var(--header-logo-size);
  background-repeat: no-repeat;
  font-weight: 500;
}

.ele-header .ele-header-left {
  flex: 1;

}

.ele-header .ele-nav-group {
  position: relative;
}

.ele-header .ele-nav-group .ele-nav-toggle {
  width: var(--sidebar-toggle-width);
  height: var(--sidebar-toggle-height);
  padding-top: calc((var(--sidebar-toggle-height) - var(--sidebar-toggle-icon-height)) / 2);
  cursor: pointer;
  display: none;
}

.ele-header .ele-nav-group .ele-nav-toggle:before,
.ele-header .ele-nav-group .ele-nav-toggle:after,
.ele-header .ele-nav-group .ele-nav-toggle > i {
  content: "";
  width: var(--sidebar-toggle-icon-width);
  height: var(--sidebar-toggle-icon-stroke-width);
  background-color: var(--sidebar-toggle-icon-color);
  margin-top: calc((var(--sidebar-toggle-icon-height) - (var(--sidebar-toggle-icon-stroke-width) * 3)) / 2);
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.ele-header .ele-nav-group .ele-nav-toggle:before {
  margin-top: 0;
}

.ele-header .ele-nav {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.ele-header .ele-nav .ele-nav-item {
  margin: 0 12px;
  position: relative;
}

.ele-header .ele-nav .ele-nav-item a {
  padding: 0 6px;
  color: var(--color-text-heading);
  border-top: var(--header-nav-item-border-width) solid transparent;
  border-bottom: var(--header-nav-item-border-width) solid transparent;
  line-height: calc(var(--header-height) - var(--header-nav-item-border-width) * 2);
  transition: color .3s, border-top-color .3s, border-bottom-color .3s, background-color .3s;
  position: relative;
  cursor: pointer;
  display: block;
}

.ele-header .ele-nav .ele-nav-item:not(.ele-nav-sub):hover > a,
.ele-header .ele-nav .ele-nav-item:not(.ele-nav-sub).ele-active > a {
  color: var(--theme-color);
  border-top-color: var(--header-nav-item-border-top-color);
  border-bottom-color: var(--header-nav-item-border-bottom-color);
}

.ele-header .ele-nav .ele-nav-item.ele-nav-sub > a {
  padding-right: 13px;
}

.ele-header .ele-nav .ele-nav-item.ele-nav-sub > a:after {
  content: "";
  width: 12px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-image: var(--sidebar-nav-link-arrow-image);
}

.ele-header .ele-nav-child {
  position: absolute;
  right: -5px;
  top: 100%;
  padding: 5px 0;
  margin: -5px 0 0 0;
  min-width: max-content;
  background: var(--header-nav-child-background);
  box-shadow: var(--header-nav-child-shadow);
  border-radius: var(--border-radius-s);
  transition: all .2s;
  transition-delay: .3s;
  transform-origin: 0 0;
  transform: scaleY(.8);
  pointer-events: none;
  opacity: 0;
}

.ele-header .ele-nav-sub.ele-nav-item:hover > .ele-nav-child {
  transition-delay: 0s;
  transform: scaleY(1);
  pointer-events: auto;
  opacity: 1;
  z-index: 1;
}

.ele-header .ele-nav-child > dd {
  margin: 0;
}

.ele-header .ele-nav .ele-nav-item .ele-nav-child > dd > a {
  border: none;
  line-height: 1;
  padding: var(--header-nav-child-padding);
}

.ele-header .ele-nav .ele-nav-item .ele-nav-child > dd > a:hover {
  background: var(--header-nav-child-hover-background);
}

.ele-btn {
  line-height: 1;
  padding: 3px 9px;
  margin-left: 12px;
  color: var(--color-text-heading);
  font-size: var(--font-size-xs);
  border: var(--header-button-border);
  border-radius: var(--border-radius-s);
  transition: color var(--duration-medium), border-color var(--duration-medium);
  user-select: none;
  cursor: pointer;
}

.ele-btn:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.ele-btn-danger:hover {
  color: var(--notice-error-color);
  border-color: var(--notice-error-color);
}

.ele-btn:active {
  box-shadow: var(--button-box-shadow);
}

.ele-btn-danger:active {
  box-shadow: var(--button-danger-box-shadow);
}

@media screen and (max-width: 1150px) {
  .ele-header {
    padding: 0 15px;
  }

  .ele-header .ele-nav-group {
    order: 1;
    margin-left: 10px;
  }

  .ele-header .ele-nav-group .ele-nav-toggle {
    display: block;
  }

  .ele-header .ele-nav {
    position: absolute;
    right: 0;
    top: 100%;
    padding: 5px 0;
    min-width: 150px;
    width: max-content;
    margin: -2px 0 0 0;
    background: var(--header-nav-child-background);
    box-shadow: var(--header-nav-child-shadow);
    border-radius: var(--border-radius-s);
    transition: all .2s;
    transition-delay: .3s;
    transform-origin: 0 0;
    transform: scaleY(.8);
    pointer-events: none;
    display: block;
    opacity: 0;
  }

  .ele-header .ele-nav-group:hover .ele-nav {
    transition-delay: 0s;
    transform: scaleY(1);
    pointer-events: auto;
    opacity: 1;
  }

  .ele-header .ele-nav .ele-nav-item {
    margin: 0;
  }

  .ele-header .ele-nav .ele-nav-item a {
    border: none;
    line-height: 1;
    padding: var(--header-nav-child-padding);
    transition: color .3s, background-color .3s;
  }

  .ele-header .ele-nav .ele-nav-item:not(.ele-active) a:hover {
    color: inherit;
    background: var(--header-nav-child-hover-background);
  }

  .ele-header .ele-nav .ele-nav-item:not(.ele-nav-sub).ele-active > a {
    background: var(--theme-color-extra-lighter);
  }

  .ele-header .ele-nav .ele-nav-item.ele-nav-sub > a:after {
    right: 12px;
    transform: rotate(-90deg);
  }

  .ele-header .ele-nav-child {
    right: 100%;
    bottom: 100%;
    top: auto;
    margin: 0 -5px -40px 0;
  }

  .ele-btn {
    margin-left: 10px;
  }

  .ele-back-up {
    right: 20px;
    bottom: 30px;
  }
}

/** header */
.ew-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    padding: 0 60px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/* nav */
.ew-header .layui-nav {
    padding: 0;
    background-color: transparent;
    position: absolute;
    right: 70px;
    top: 0;
}

.ew-header .layui-nav > .layui-nav-item {
    padding: 0 20px;
}

.ew-header .layui-nav > .layui-nav-item > a {
    height: 70px;
    line-height: 70px;
    color: #666;
    font-size: 16px;
    padding: 0 5px;
    position: relative;
    cursor: pointer;
}

.ew-header .layui-nav > .layui-nav-item > a > span {
    max-width: 90px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ew-header .layui-nav > .layui-nav-item > a:hover, .ew-header .layui-nav > .layui-nav-item.layui-this > a {
    color: #1890ff;
}

.ew-header .layui-nav .layui-nav-more {
    border-color: #999 transparent transparent;
}

.ew-header .layui-nav .layui-nav-mored {
    border-color: transparent transparent #999;
}

.ew-header .layui-nav > .layui-nav-item > a:hover > .layui-nav-more, .ew-header .layui-nav > .layui-nav-item.layui-this > a > .layui-nav-more {
    border-color: #1890ff transparent transparent;
}

.ew-header .layui-nav > .layui-nav-item > a:hover > .layui-nav-mored, .ew-header .layui-nav > .layui-nav-item.layui-this > a > .layui-nav-mored {
    border-color: transparent transparent #1890ff;
}

.ew-header .layui-nav .layui-nav-bar, .ew-header .layui-nav > .layui-nav-item:after {
    display: none;
}

.ew-header .layui-nav > .layui-nav-item > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    margin: 0 auto;
    height: 3px;
    background-color: #1890ff;
    transition: width .2s ease-out;
}

.ew-header .layui-nav > .layui-nav-item.layui-this > a:after, .ew-header .layui-nav > .layui-nav-item > a:hover:after {
    width: 100%;
}

.ew-header .layui-nav > .layui-nav-item > .layui-nav-child {
    top: 75px;
    border-radius: 0;
    border-color: #dfdfdf;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    min-width: unset;
    width: 120px;
    right: 0;
    margin: 0 auto;
}

.ew-header .layui-nav > .layui-nav-item.nav-btn-login {
    height: 70px;
    line-height: 70px;
    padding: 0 0 0 15px;
}

.ew-header .layui-nav > .layui-nav-item.nav-btn-login > a {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    border-radius: 35px;
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, .08);
}

.ew-header .layui-nav > .layui-nav-item.nav-btn-login > a:hover {
    color: #666;
    background-color: rgba(0, 0, 0, .15);
}

.ew-header .layui-nav > .layui-nav-item.nav-btn-login > a:after {
    display: none;
}

/* nav-toggle */
.ew-header .nav-toggle {
    display: none;
}

/** 公共类 */
.layui-text {
    color: #666;
}

.layui-text a:not(.layui-btn), .layui-text a:not(.layui-btn):hover {
    color: #1890ff;
    text-decoration: none;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.layui-btn {
    background-color: #1890ff;
    box-sizing: border-box;
}

.layui-btn-primary {
    color: #666;
    border-color: #ccc;
    box-sizing: border-box;
    background-color: transparent;
}

.layui-btn-primary:hover {
    border-color: #ccc;
}

.layui-btn-danger {
    background-color: #FF5722;
}

.layui-btn-warm {
    background-color: #FFB800;
}

.layui-btn-normal {
    background-color: #1E9FFF;
}

/** 如果按钮加图标减少内边距 */
.icon-btn {
    padding: 0 10px;
}

/** 辅助样式 */

*[ew-href], *[lay-tips], *[ew-event] {
    cursor: pointer;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.inline-block {
    display: inline-block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.bg-white, .bg-white > body {
    background-color: white;
}

.text-muted {
    color: #c2c2c2 !important;;
}

.text-primary {
    color: #1890ff !important;;
}

.text-success {
    color: #5FB878 !important;;
}

.text-info {
    color: #01AAED !important;;
}

.text-warning {
    color: #FFB800 !important;;
}

.text-danger {
    color: #FF5722 !important;
}

span.icon-text .layui-icon {
    font-size: 14px;
    margin-left: 2px;
}

/** 下拉菜单默认隐藏 */
.dropdown-menu {
    display: inline-block;
}

.dropdown-menu .dropdown-menu-nav {
    display: none;
}

.dropdown-menu + .dropdown-menu, .layui-btn + .dropdown-menu, .dropdown-menu + .layui-btn {
    margin-left: 10px;
}

/** 徽章 */
.layui-badge-rim + .layui-badge-rim {
    margin-left: 8px;
}

.layui-form-select-top .layui-form-select > dl {
    top: unset;
    bottom: 42px;
}

.layui-badge-green {
    color: #52c41a;
    background: #f6ffed;
    border: 1px solid #b7eb8f
}

.layui-badge-blue {
    color: #1890ff;
    background: #e6f7ff;
    border: 1px solid #91d5ff
}

.layui-badge-red {
    color: #f5222d;
    background: #fff1f0;
    border: 1px solid #ffa39e
}

.layui-badge-yellow {
    color: #faad14;
    background: #fffbe6;
    border: 1px solid #ffe58f
}

.layui-badge-gray {
    color: #8c8c8c;
    background: #fafafa;
    border: 1px solid #ccc
}

/** 徽章列表 */
.layui-badge-list .layui-badge {
    margin-right: 6px;
}

.layui-badge-list .layui-badge {
    padding: 2px 7px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    background-color: #fafafa !important;
}

.layui-input, .layui-textarea {
    background-color: transparent;
    border-color: rgba(111, 121, 122, 0.3);
    border-radius: 0;
}

.layui-input.layui-input-lg {
    height: 46px;
    line-height: 46px;
}

.layui-form-label.layui-input-lg {
    padding: 13px 15px;
}

.layui-card-header {
    height: 45px;
    line-height: 45px;
}

/** //公共类 */

/** banner */
.ew-banner {
    color: #fff;
    position: relative;
    background-image: url("../images/homebg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.ew-banner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .2);
}

.ew-banner > .layui-container {
    text-align: center;
    padding: 120px 15px 100px 15px;
}

.ew-banner h1 {
    font-size: 42px;
    margin-bottom: 35px;
}

.ew-banner p {
    font-size: 20px;
}

.ew-banner p.small {
    font-size: 14px;
}

.ew-banner .ew-banner-btngroup {
    margin: 55px 0 35px 0;
}

.ew-banner .layui-btn {
    line-height: 45px;
    height: 45px;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 45px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.ew-banner .layui-btn:first-child {
    margin-right: 20px;
}

.ew-banner .layui-btn:last-child {
    background-color: #00ADB5;
}

.ew-banner .layui-btn > .layui-icon {
    font-size: 18px;
    margin: -2px 0 0 6px;
    display: inline-block;
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
}

.ew-banner .layui-btn:last-child > .layui-icon {
    font-size: 16px;
}

/** 底部 */
.ew-footer {
    background-color: #41444B;
    padding: 50px 0 20px 0;
}

.ew-footer .footer-item-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
}

.ew-footer p {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 35px;
}

.ew-footer .layui-row > div:nth-child(2) p {
    line-height: 42px;
}

.ew-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.ew-footer p .layui-icon {
    color: #1890ff;
    font-size: 24px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}

.ew-footer p.img-group {
    position: relative;
    padding-left: 150px;
    height: 130px;
    max-width: 300px;
    display: table-cell;
    vertical-align: middle;
}

.ew-footer p.text-group {
    position: relative;
    padding-left: 150px;
    height: 130px;
    max-width: 300px;
    display: table-cell;
    vertical-align: middle;
}

.ew-footer p.img-group > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    height: 130px;
}

.ew-footer .footer-copyright {
    padding-top: 20px;
}

/** //底部 */

/** 移动端样式 */
@media screen and (max-width: 935px) {
    body {
        padding-top: 55px;
    }

    .body-card {
        margin-top: 35px;
        margin-bottom: 25px;
    }

    .ew-header {
        padding: 0 15px;
    }

    .ew-header .layui-logo {
        height: 55px;
        line-height: 55px;
        background-position: 0 12px;
    }

    .ew-header .layui-nav {
        position: absolute;
        top: 50px;
        right: 0px;
        width: 160px;
        border-radius: 5px;
        background-color: #fff;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, .15);
        overflow: hidden;
        transform: scale(0);
        transform-origin: top right;
        opacity: 0;
        -webkit-transition: all .3s;
        transition: all .3s;
        max-height: 380px;
        max-height: -moz-calc(100vh - 60px);
        max-height: -webkit-calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .ew-header .layui-nav .layui-nav-item {
        display: block;
        padding: 0;
    }

    .ew-header .layui-nav .layui-nav-item > a {
        line-height: 40px;
        height: 40px;
        text-align: center;
        font-size: 14px;
    }

    .ew-header .layui-nav .layui-nav-item > a .layui-nav-more {
        right: 15px;
    }

    .ew-header .layui-nav .layui-nav-item.layui-this > a:after, .ew-header .layui-nav .layui-nav-item > a:hover:after {
        display: none;
    }

    .ew-header .layui-nav .layui-nav-item.layui-this > a {
        color: #fff;
        background-color: #1890ff;
    }

    .ew-header .layui-nav > .layui-nav-item.nav-btn-login {
        line-height: unset;
        height: unset;
        padding: 0;
    }

    .ew-header .layui-nav > .layui-nav-item.nav-btn-login > a {
        line-height: 40px;
        height: 40px;
        background-color: transparent;
        display: block;
        border-radius: 0;
    }

    .ew-header .layui-nav > .layui-nav-item.nav-btn-login > a:hover {
        background-color: transparent;
        color: #1890ff;
    }

    .ew-header .layui-nav > .layui-nav-item > .layui-nav-child {
        position: static;
        background-color: transparent;
        box-shadow: none;
        animation: none;
        border: none;
        margin: 0;
        width: 100%;
    }

    .ew-header .layui-nav > .layui-nav-item > .layui-nav-child a {
        text-align: center;
        line-height: 40px;
        height: 40px;
        font-size: 14px;
    }

    .ew-header .layui-nav > .layui-nav-item > .layui-nav-child a:hover {
        background-color: transparent;
        color: #1890ff;
    }

    /* nav-toggle */
    .ew-header .nav-toggle {
        line-height: 53px;
        height: 55px;
        cursor: pointer;
        display: block;
        padding: 0 3px;
        color: #666;
    }

    .ew-header .nav-toggle > i {
        display: inline-block;
        font-size: 24px;
        font-weight: 600;
        vertical-align: middle;
        -webkit-transition: all .3s;
        transition: all .3s;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }

    .ew-header .ew-nav-group {
        position: absolute;
        right: 5px;
        top: 0;
    }

    .ew-header .ew-nav-group:hover > .layui-nav {
        transform: scale(1);
        opacity: 1;
    }

    .ew-header .ew-nav-group:hover .nav-toggle > i {
        transform: rotate(-90deg);
    }
}

/** 新版banner区域 */
.ew-banner {
    max-width: 100vw;
    overflow: hidden;
    background: #fff;
    color: #333;
    position: relative;
}

.ew-banner:before {
    display: none;
}

.ew-banner p {
    color: #999;
}

.ew-banner img.shape {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}

.ew-banner img {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    img.shape-main {
        width: 90% !important;
        max-width: 370px !important;
        right: 15px !important;
        top: 30px !important;
    }

    .ew-banner > .layui-container {
        padding-top: 320px;
        padding-bottom: 20px !important;
        padding-right: 20px !important;
    }

    img.shape6 {
        top: 510px !important;
    }

    img.shape4 {
        left: 5px !important;
        bottom: 300px !important;
    }

    .layui-logo > img {
        top: 12px !important;
    }

    .ew-footer .img-group {
        padding-left: 100px !important;
        height: 103px !important;
    }

    .ew-footer .img-group > img {
        width: 90px !important;
        height: 90px !important;
        top: 7px !important;
    }
}


/*全局样式*/
.shadow {
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.1);
    border-radius: 10px;
}

.clear {
    clear: both;
}

.blog-body {
    margin-top: 75px;
}

.blog-container {
 margin: 0 auto;
 position: relative;
}

.blog-main {
    margin-top: 15px;
    width: 100%;
    position: relative;
}

.blog-main > .home-tips {
    padding: 10px 10px;
    background: #fff;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-main > .home-tips > i {
    color: #009688;
    font-size: 15px;
}

.blog-main > .home-tips > .home-tips-container {
    margin-left: 20px;
    height: 17px;
    overflow: hidden;
}

.blog-main > .home-tips > .home-tips-container > span {
    display: block;
}

.blog-main > .blog-main-left {
    width: 100%;
    float: left;
}

.blog-main > .blog-main-right {
    width: 100%;
    float: right;
}

/* 小屏幕（平板，大于等于 768px） */
@media (min-width: 768px) {
		
    .blog-container {
        width: 738px;
        margin: 0 auto;
    }

    .blog-main > .blog-main-right > .blog-module {
        width: 45%;
        margin-bottom: 15px;
    }

    .blog-main > .blog-main-right > .blog-module:nth-child(odd) {
        float: left;
        clear: left;
    }

    .blog-main > .blog-main-right > .blog-module:nth-child(odd).blog-module:last-child {
        width: auto;
        float: none;
        clear: both;
    }

    .blog-main > .blog-main-right > .blog-module:nth-child(even) {
        float: right;
        clear: right;
    }
}

/* 中等屏幕（桌面显示器，大于等于 992px） */
@media (min-width: 992px) {
    .blog-container {
        width: 962px;
    }

    .blog-main > .blog-main-left {
        width: 66%;
    }

    .blog-main > .blog-main-right {
        width: 32%;
    }

    .blog-main > .blog-main-right > .blog-module {
        width: auto;
        float: none !important;
    }
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {
    .blog-container {
        width: 1170px;
    }
}
/*全局样式END*/

/*文章列表（网站首页和文章专栏共用）*/
.article {
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    border-left: 5px solid #fff;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.article:hover {
    border-left: 5px solid #009688;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.article > .article-left {
    width: 25%;
    float: left;
}

.article > .article-left > img {
    width: 100%;
    height: auto;
    max-height: 90px;
}

.article > .article-right {
    width: 73%;
    float: right;
    padding-left: 2%;
}

.article > .article-right > .article-title a:hover {
    color: #009688;
}

.article > .article-right > .article-abstract {
    display: none;
}

.article > .article-footer {
    margin-top: 5px;
    font-size: 11px;
    padding: 2px;
    color: #a6a6a6;
}

.article > .article-footer > span {
    padding-right: 3%;
}

.article > .article-footer a {
    color: #009688;
}

.article > .article-footer .article-viewinfo,
.article > .article-footer .article-author {
    display: none;
}

.icon-stick {
    border: 1px solid #FF5722;
    color: #FF5722;
    padding: 0 2px 0 0;
    font-family: SimHei;
    display: inline-block;
    margin-right: 3px;
    position: relative;
    top: -1px;
    font-size: 13px;
}

@media (min-width: 768px) {
    .article > .article-right > .article-title a {
        font-size: 17px;
    }

    .article > .article-right > .article-abstract {
        font-size: 14px;
        display: block;
        margin-top: 10px;
        text-indent: 2em;
    }

    .article > .article-footer {
        margin-top: 10px;
        font-size: 13px;
    }

    .article > .article-footer .article-viewinfo {
        display: inline;
        float: right;
    }

    .article > .article-footer .article-author {
        display: inline;
    }

    .icon-stick {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .article > .article-right > .article-title a {
        font-size: 18px;
    }

    .icon-stick {
        font-size: 15px;
    }
}
/*文章列表END*/

/** 文档正文 */
.Xblog-body {
  margin: 0 auto;
  max-width: var(--content-max-width);
  padding: 0 !important;
  position: relative;
}

.Xblog-body p,
.Xblog-body ul,
.Xblog-body ol,
.Xblog-body figure {
  margin: 1em 0;
}

.Xblog-body ol, .Xblog-body ul {
  padding-left: 1.5rem;
}

.Xblog-body ol ol,
.Xblog-body ol ul,
.Xblog-body ul ol,
.Xblog-body ul ul {
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.Xblog-body a {
  color: var(--link-color);
  -webkit-text-decoration: var(--link-text-decoration);
  text-decoration: var(--link-text-decoration);
  -webkit-text-decoration-color: var(--link-text-decoration-color);
  text-decoration-color: var(--link-text-decoration-color);
}

.Xblog-body a:hover {
  color: var(--link-color--hover, var(--link-color));
  -webkit-text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration));
  text-decoration: var(--link-text-decoration--hover, var(--link-text-decoration));
  -webkit-text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color));
  text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color));
}

.Xblog-body a.anchor {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-color: var(--link-text-decoration-color, var(--link-text-decoration-color));
  text-decoration-color: var(--link-text-decoration-color, var(--link-text-decoration-color));
}

.Xblog-body a.anchor:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color));
  text-decoration-color: var(--link-text-decoration-color--hover, var(--link-text-decoration-color));
}

/* 图片 */
.Xblog-body img {
    display: block;
    max-width: 100%;
    margin: 15px auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.Xblog-body img:hover {
    box-shadow: 0 0 20px 0 rgb(44 101 144 / 30%); /* 添加阴影效果 */
    transform: translate(0, -3px); /* 图片上移3像素 */
    cursor: pointer; /* 鼠标指针变为手型 */
}

@media (max-width: 69em) {
  .Xblog-body img {
    height: auto !important;
  }
}

video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* 标题 */
.Xblog-body h1:first-child,
.Xblog-body h2:first-child,
.Xblog-body h3:first-child,
.Xblog-body h4:first-child,
.Xblog-body h5:first-child,
.Xblog-body h6:first-child {
  margin-top: 0;
}

.Xblog-body h1 code,
.Xblog-body h2 code,
.Xblog-body h3 code,
.Xblog-body h4 code,
.Xblog-body h5 code,
.Xblog-body h6 code {
  font-size: 0.875em;
}

.Xblog-body h1 + h2,
.Xblog-body h1 + h3,
.Xblog-body h1 + h4,
.Xblog-body h1 + h5,
.Xblog-body h1 + h6,
.Xblog-body h2 + h3,
.Xblog-body h2 + h4,
.Xblog-body h2 + h5,
.Xblog-body h2 + h6,
.Xblog-body h3 + h4,
.Xblog-body h3 + h5,
.Xblog-body h3 + h6,
.Xblog-body h4 + h5,
.Xblog-body h4 + h6,
.Xblog-body h5 + h6 {
  margin-top: 1rem;
}

.Xblog-body h1 {
  padding: var(--heading-padding);
}

.Xblog-body h2 {
  padding: var(--heading-padding);
}

.Xblog-body h3 {
  padding: var(--heading-padding);
}

.Xblog-body h4 {
  padding: var(--heading-padding);
}

.Xblog-body h5 {
  padding: var(--heading-padding);
}

.Xblog-body h6 {
  padding: var(--heading-padding);
}

/* 页面不存在 */
.Xblog-state-group {
    color: #aaa;
    font-size: 16px;
    padding: 65px 0;
    text-align: center;
}

.Xblog-state-group > img {
    height: 155px;
    margin-bottom: 15px;
}

.Xblog-state-group > .btn-group {
    margin-top: 35px;
}

.Xblog-state-group > .btn-group .layui-btn {
    margin: 0 20px 0 0;
    border-radius: 0;
}

/** 表格 */
.Xblog-body table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #e6e6e6;
}

.Xblog-body table th,
.Xblog-body table td {
  padding: 8px 15px;
  line-height: 1.6;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6; /* 添加列边框样式 */
}

.Xblog-body table th {
  background-color: #f2f2f2;
}

.Xblog-body table td {
  font-weight: 400;
}

.Xblog-body table tr:hover {
  background-color: #f5f5f5;
}

/** 文档正文 */

/* 标题 */
.Xblog-title {
    text-align: center;
    margin: 20px 0px;
    color: white;
    font-weight: 700;
    text-shadow: 0 0 8px #000000;
    font-size: 24px;
    word-break: break-all;
}

/* 虚线编辑栏 */
.Xblog-info {
    border: 1px dashed #808080;
    font-size: 13px;
    color: #808080;
    padding: 5px 0;
    font-family: SimSun;
    text-align: center;
    margin: 0 0 10px;
}

.Xblog-info span {
    margin: 0 5px;
}


/* 日历 */
.Xblog-calendar table {
    width: 100%;
    margin: auto;
    text-align: center;
}

.Xblog-calendar table tr:nth-child(1) td {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

.Xblog-calendar table tr:nth-child(2) th {
    color: #364E65;
    font-weight: normal;
}

.Xblog-calendar th,
.Xblog-calendar td {
    border: 2px solid #ECF5FF;
    /*border-radius: 100%;*/
    height: 35px;
    color: #6c757d;
}

.Xblog-calendar .today {
    color: red;
    font-weight: bold;
}

/* 归档 */
.recharge-amount li {
    cursor: pointer;
    margin: 0px 5px 10px 17px;
    padding: 5px 15px;
    color: #4d5259;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 3px solid transparent;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .175);
    box-shadow: 0 0 2px rgba(0, 0, 0, .175);
}

/* 文章列表 */

/* 无序列表 */
.Xblog-body ul li {
    list-style-type: circle; /* 更换为其他值如：disc, square 等 */
    margin-left: 20px; /* 调整左边距 */
    padding-left: 20px; /* 调整内边距 */
}

/* 有序列表 */
.Xblog-body ol li {
    list-style-type: decimal; /* 更换为其他值如：lower-alpha, upper-roman 等 */
    margin-left: 20px; /* 调整左边距 */
    padding-left: 20px; /* 调整内边距 */
}

/* 代码块 */
/*.Xblog-body pre code {*/
/*    display: block;*/
/*    background-color: #f2f2f2;*/
/*    border: 1px solid #e6e6e6;*/
/*    border-radius: 2px;*/
/*    padding: 10px;*/
/*    margin: 10px 0;*/
/*    font-family: Consolas, Monaco, 'Andale Mono', monospace;*/
/*    font-size: 14px;*/
/*    line-height: 1.6;*/
/*    color: #333;*/
/*    overflow: auto;*/
/*}*/

/*.Xblog-body pre code span {*/
/*    color: #333;*/
/*}*/

/*.Xblog-body pre code .keyword {*/
/*    color: #d14;*/
/*}*/

/*.Xblog-body pre code .comment {*/
/*    color: #999;*/
/*}*/

/*.Xblog-body pre code .string {*/
/*    color: #2b91af;*/
/*}*/

/*.Xblog-body pre code .number {*/
/*    color: #d14;*/
/*}*/

/*.Xblog-body pre code .operator {*/
/*    color: #333;*/
/*}*/

/*.Xblog-body pre code .punctuation {*/
/*    color: #333;*/
/*}*/

/*.Xblog-body pre code .function {*/
/*    color: #990;*/
/*}*/

/*.Xblog-body pre code .variable {*/
/*    color: #06f;*/
/*}*/

/*.Xblog-body pre code .class {*/
/*    color: #990;*/
/*}*/

/*.Xblog-body pre code .tag {*/
/*    color: #d14;*/
/*}*/

/*.Xblog-body pre code .attribute {*/
/*    color: #06f;*/
/*}*/

.Xblog-body pre {
    background: #000 !important;
    border-left: 8px solid #ddd !important;
}


.Xblog-body pre::-webkit-scrollbar {

    height:6px;
}
.Xblog-body pre::-webkit-scrollbar-track {
    -webkit-box-shadow: inset005pxrgba(0,0,0,0.2);
    border-radius:0;
    background:#848080;
}

.Xblog-body pre::-webkit-scrollbar-thumb {
    border-radius:5px;
    -webkit-box-shadow: inset005pxrgba(0,0,0,0.2);
    background:#dc9e9e;
}

/* 代码复制组件 */


/** 引用块 */
.Xblog-body blockquote {
  padding: 15px;
  margin: 20px 0;
  border-left: 5px solid #009688;
  background-color: #f2f2f2;
}

/** 提示框 */


/*右侧模块（网站首页和文章列表以及文章详细共用）*/
.blog-module {
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    height: 100%;
}

.blog-module > .blog-module-title {
    border-bottom: 1px solid #009688;
    font-size: 15px;
    font-weight: 500;
    padding: 0 0 5px 0;
    margin-bottom: 5px;
}
.blog-module P{
    padding: 5px 0px;
    line-height: 24px;
    font-size:13px;
    word-break: break-all;
}

.blog-module-ul li,
.blog-module-ul .fa {
    margin: 3px 0px;
}

.blog-module-ul li .fa {
    color: #009688;
}
/*右侧模块END*/

/*文章分类导航*/
.article-category {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    background: #393D49;
    color: #eee;
    width: 130px;
    font-size: 11px;
    padding: 10px;
    display: none;
    margin: 0;
    z-index: 999;
}

.article-category > .article-category-title {
    text-align: center;
    border-bottom: 1px solid #009688;
    font-size: 15px;
    font-weight: 500;
    padding: 0 0 5px 0;
    margin-bottom: 5px;
}

.article-category > a {
    display: block;
    color: #eee;
    padding: 5px 1%;
    margin: 4px 0;
    background: #009688;
    width: 98%;
    text-align: center;
    line-height: 19px;
    word-break: keep-all; /* 不换行 */
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 内容超出宽度时隐藏超出部分的内容 */
    text-overflow: ellipsis; /* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
    float: left;
}

.article-category > a:hover {
    color: #fff;
    background: #5FB878;
}

.category-toggle {
    position: fixed;
    right: 0;
    top: 40%;
    width: 15px;
    background: #009688;
    color: #fff;
    font-size: 16px;
    padding: 30px 0;
    z-index: 9999;
}

.category-toggle > i {
    display: block;
    height: 16px;
}

.categoryIn {
    -moz-animation: categoryIn 0.5s;
    -o-animation: categoryIn 0.5s;
    -webkit-animation: categoryIn 0.5s;
    animation: categoryIn 0.5s;
}

.categoryOut {
    -moz-animation: categoryOut 0.5s;
    -o-animation: categoryOut 0.5s;
    -webkit-animation: categoryOut 0.5s;
    animation: categoryOut 0.5s;
}

/*分类导航In动画*/
@keyframes categoryIn {
    from {
        right: -140px;
    }

    to {
        right: 0;
    }
}

@-moz-keyframes categoryIn {
    from {
        right: -140px;
    }

    to {
        right: 0;
    }
}

@-webkit-keyframes categoryIn {
    from {
        right: -140px;
    }

    to {
        right: 0;
    }
}

/*分类导航Out动画*/
@keyframes categoryOut {
    from {
        right: 0;
    }

    to {
        right: -140px;
    }
}

@-moz-keyframes categoryOut {
    from {
        right: 0;
    }

    to {
        right: -140px;
    }
}

@-webkit-keyframes categoryOut {
    from {
        right: 0;
    }

    to {
        right: -140px;
    }
}

@media (min-width: 768px) {
    .article-category {
        font-size: 13px;
        width: 260px !important;
    }

        .article-category > .blog-module-title {
            text-align: start;
        }

        .article-category > a {
            padding: 7px 1%;
            margin: 5px 0;
            width: 46%;
        }

            .article-category > a:nth-child(odd) {
                float: right;
            }

            .article-category > a:nth-child(even) {
                float: left;
            }

    @keyframes categoryIn {
        from {
            right: -280px;
        }

        to {
            right: 0;
        }
    }

    @-moz-keyframes categoryIn {
        from {
            right: -280px;
        }

        to {
            right: 0;
        }
    }

    @-webkit-keyframes categoryIn {
        from {
            right: -280px;
        }

        to {
            right: 0;
        }
    }

    @keyframes categoryOut {
        from {
            right: 0;
        }

        to {
            right: -280px;
        }
    }

    @-moz-keyframes categoryOut {
        from {
            right: 0;
        }

        to {
            right: -280px;
        }
    }

    @-webkit-keyframes categoryOut {
        from {
            right: 0;
        }

        to {
            right: -280px;
        }
    }
}

@media (min-width: 992px) {
    .article-category {
        display: block;
        position: static;
        background: #fff;
        color: #333;
        width: auto !important;
        font-size: 14px;
        margin: 0 0 15px 0;
    }

        .article-category a {
            background: inherit;
            border: 1px solid #d2d2d2;
            color: #444;
        }

            .article-category a:hover {
                border: 1px solid #5FB878;
                background: inherit;
                color: #5FB878;
            }

    .category-toggle {
        display: none;
    }
}
/*文章分类导航END*/

/***********************************************动画定义*************************************************/
/*侧边导航In动画*/
@keyframes leftIn {
    from {
        left: -200px;
    }

    to {
        left: 0;
    }
}

@-moz-keyframes leftIn {
    from {
        left: -200px;
    }

    to {
        left: 0;
    }
}

@-webkit-keyframes leftIn {
    from {
        left: -200px;
    }

    to {
        left: 0;
    }
}

/*侧边导航Out动画*/
@keyframes leftOut {
    from {
        left: 0;
    }

    to {
        left: -200px;
    }
}

@-moz-keyframes leftOut {
    from {
        left: 0;
    }

    to {
        left: -200px;
    }
}

@-webkit-keyframes leftOut {
    from {
        left: 0;
    }

    to {
        left: -200px;
    }
}

/*淡入动画*/
@keyframes maskFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes maskFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes maskFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*淡出动画*/
@keyframes maskFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-moz-keyframes maskFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes maskFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


/*博主信息*/
.blogerinfo {
    text-align: center;
    padding: 0 15px;
    background: #fff;
    margin-bottom: 15px;
}

.blogerinfo-figure {
    display: inline-block;
    margin: 20px auto;
}

    .blogerinfo-figure img {
    	height:150px;
        border-radius: 80px;
    }

.blogerinfo-nickname {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.blogerinfo-introduce {
    margin: 15px auto;
    font-size: 18px;
    width: 90%;
}

.blogerinfo-location {
    color: #808080;
    margin: 15px;
}

.blogerinfo-contact {
    padding: 15px;
    padding-top: 5px;
}

    .blogerinfo-contact > a {
        padding: 0 10px;
    }
/*博主信息END*/

/*友情链接*/
.blogroll > li {
    display: inline-block;
    vertical-align: middle;
    padding: 2px 5px;
}
/*友情链接END*/


.hotusers-list-item {
    list-style: none;
    text-align: -webkit-match-parent;
    border-bottom: 1px dotted #B5B4B0;
    padding: 10px 10px;
    height: 43px;
}
.hotusers-list-item {
    list-style: none;
    text-align: -webkit-match-parent;
    border-bottom: 1px dotted #B5B4B0;
    padding: 10px 10px;
    height: 43px;
}
.hotusers-list-item {
    list-style: none;
    text-align: -webkit-match-parent;
    border-bottom: 1px dotted #B5B4B0;
    padding: 10px 10px;
    height: 43px;
}
.hotusers-list-item {
    list-style: none;
    text-align: -webkit-match-parent;
    border-bottom: 1px dotted #B5B4B0;
    padding: 10px 10px;
    height: 43px;
}


.hotusers-avator {
    float: left;
    margin-right: 10px;
    margin-left: 15px;
}
.hotusers-avator img {
    border-radius: 50%;
}


.remark-content {
    margin-left: 60px;
    border: 1px solid #efefef;
    height: 59px;
    padding: 5px 8px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    overflow: hidden;
    line-height: 18px;
    background-color: #efefef;
    color: #666;
    margin-top: -53px;
}

/*评论与留言*/
.blog-comment {
    position: relative;
    margin-bottom: 10px;
}

    .blog-comment li {
        border-bottom: 1px dotted #01AAED;
        padding: 15px 0 10px 0;
    }

    .blog-comment .content,
    .blog-comment .info,
    .blog-comment .replycontainer {
        margin-left: 53px;
    }

    .blog-comment .fa-clock-o {
        font-size: 18px;
    }

    .blog-comment .info,
    .blog-comment .replycontainer {
        padding-top: 5px;
    }

        .blog-comment .replycontainer .layui-form-item {
            margin-bottom: 5px;
        }

        .blog-comment .info a img {
            padding-right: 5px;
            font-size: 14px;
            height:16px;
            width:16px
        }
		
		.blog-comment .info .dh {
			margin-left: 10%;
		}
		
		.blog-comment .info .dh a{
			padding-right: 10px;
		}
		
		.blog-comment .info a img:hover {
			opacity: 0.8;
		}
		
        .blog-comment .info .username {
            color: #01AAED;
            font-size: 14px;
        }

        .blog-comment .info .btn-reply {
            color: royalblue;
        }

    .blog-comment .content {
        padding: 2px 0 5px 0;
        min-height: 30px;
        font-size: 14px;
    }

    .blog-comment hr {
        margin-left: 53px;
    }

.comment-parent > img {
    width: 45px;
    height: 45px;
    margin: 5px 5px 5px 0;
    position: absolute;
    border-radius: 50px;
}

.comment-child > img {
    width: 40px;
    height: 40px;
    margin: 5px 5px 5px 0;
    position: absolute;
    border-radius: 50px;
}

.comment-child {
    margin-left: 53px;
    min-height: 50px;
}
/* 评论与留言END */

/* 其他样式属性 */
blockquote,button,dd,div,dl,dt,form,input,li,ol,p,pre,textarea,ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

a:active,
a:hover {
    outline: 0
}

img {
    display: inline-block;
    border: none;
    vertical-align: middle
}

li {
    list-style: none
}

button,input,select,textarea {
    font-size: 100%
}

button,input,optgroup,option,select,textarea {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    outline: 0
}


hr {
    height: 0;
    line-height: 0;
    margin: 10px 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #eee;
    clear: both;
    overflow: hidden;
    background: 0 0
}

a {
    color: #333;
    text-decoration: none
}

a:hover {
    color: #777
}

a cite {
    font-style: normal;
    *cursor: pointer
}