/*
* Description: 作文网 Theme CSS - 墨韵书香
* Version: 3.0.0
*/
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f0e8;
}
::-webkit-scrollbar-thumb {
  background: rgba(44, 24, 16, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background: rgba(44, 24, 16, 0.3);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
}
body {
  font-size: 16px;
  color: #2c2c2c;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  background: #f5f0e8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}
a {
  color: #2c1810;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: #b8860b;
}
ul,
ol {
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.5s ease;
}
input,
textarea {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  outline: 0;
}
::selection {
  background: rgba(184, 134, 11, 0.2);
  color: #1a1a1a;
}
.zoom {
  display: inline-block;
  vertical-align: top;
}
.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@font-face {
  font-family: 'iconfont';
  src: url('fonts/iconfont.woff2') format('woff2'), url('fonts/iconfont.woff') format('woff'), url('fonts/iconfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.shadow {
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
}
.shadow-lg {
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
}
.wrapper {
  position: relative;
  min-height: 100vh;
  background: #f5f0e8;
  overflow: hidden;
}
.wrapper::before,
.wrapper::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.wrapper::before {
  width: 600px;
  height: 600px;
  background: rgba(184, 134, 11, 0.04);
  filter: blur(80px);
  top: -200px;
  right: -100px;
  animation: inkFloat 25s ease-in-out infinite;
}
.wrapper::after {
  width: 400px;
  height: 400px;
  background: rgba(44, 24, 16, 0.03);
  filter: blur(60px);
  bottom: -100px;
  left: -80px;
  animation: inkFloat 30s ease-in-out infinite reverse;
}
@keyframes inkFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.15);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.wrap {
  width: 1200px;
  margin: 0 auto;
  zoom: 1;
}
.wrap::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1200px) {
  .wrap {
    width: auto;
    padding: 0 24px;
  }
}
.ink-spots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ink-spots .spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
}
.ink-spots .spot:nth-child(1) {
  width: 300px;
  height: 300px;
  background: rgba(184, 134, 11, 0.06);
  top: 10%;
  left: 5%;
  animation: spotDrift 20s ease-in-out infinite;
}
.ink-spots .spot:nth-child(2) {
  width: 250px;
  height: 250px;
  background: rgba(44, 24, 16, 0.04);
  top: 50%;
  right: 10%;
  animation: spotDrift 25s ease-in-out infinite reverse;
}
.ink-spots .spot:nth-child(3) {
  width: 200px;
  height: 200px;
  background: rgba(139, 37, 0, 0.03);
  bottom: 20%;
  left: 40%;
  animation: spotDrift 22s ease-in-out infinite;
}
@keyframes spotDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.2);
  }
}
.header {
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e8ddd0;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}
.header .wrap {
  position: relative;
  z-index: 1;
}
.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, #b8860b 20%, #b8860b 80%, transparent 95%);
  opacity: 0.4;
}
.header .name {
  height: 60px;
  float: left;
  display: inline;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.header .name a {
  font-size: 26px;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  color: #2c1810;
  line-height: 60px;
  letter-spacing: 4px;
  font-weight: 700;
  transition: color 0.3s;
}
.header .name a:hover {
  color: #b8860b;
}
.header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}
.header-shrink {
  box-shadow: 0 2px 30px rgba(44, 24, 16, 0.08);
}
.header-shrink .name a {
  font-size: 22px;
}
.header-shrink .logo a img {
  height: 38px;
}
.header-shrink .menu {
  line-height: 50px;
}
.header-shrink .schico {
  height: 50px;
  line-height: 52px;
}
.logo {
  height: 60px;
  float: left;
  display: inline;
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.logo a {
  width: 100%;
  height: 60px;
  display: table-cell;
  vertical-align: middle;
  transition: all 0.3s;
}
.logo a img {
  height: 50px;
  vertical-align: middle;
}
.logo.on:before {
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(184, 134, 11, 0.15) 100%);
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  transform: skewX(-17deg);
  pointer-events: none;
}
.logo:hover:before {
  animation: shine 1s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.menu {
  float: right;
  display: inline;
  line-height: 60px;
  position: relative;
}
.menu ul {
  padding-right: 35px;
  zoom: 1;
}
.menu ul::after {
  content: "";
  display: block;
  clear: both;
}
.menu ul.nosch {
  padding: 0;
}
.menu li {
  float: left;
  display: inline;
  margin: 0 32px 0 0;
  position: relative;
}
.menu li a {
  font-size: 15px;
  color: #8c8c8c;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  padding: 4px 0;
}
.menu li a::after {
  content: '';
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8860b, transparent);
  position: absolute;
  left: 50%;
  bottom: -2px;
  transition: all 0.35s ease;
  border-radius: 1px;
}
.menu li a:hover {
  color: #2c1810;
}
.menu li a:hover::after {
  width: 100%;
  left: 0;
}
.menu li.on a {
  color: #2c1810;
  font-weight: 600;
}
.menu li.on a::after {
  width: 100%;
  left: 0;
  background: #2c1810;
}
.menu li .subnav {
  min-width: 170px;
  padding: 12px 0;
  line-height: 40px;
  border-top: 2px solid #b8860b;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  border-radius: 0 0 8px 8px;
  background: #faf6ef;
  position: absolute;
  top: 60px;
  left: -20px;
  z-index: 99;
  display: none;
  animation: fadeInUp 0.25s ease both;
}
.menu li .subnav a {
  padding: 0 30px 0 20px;
  font-size: 14px;
  border-bottom: 1px solid #e8ddd0;
  display: block;
}
.menu li .subnav a::after {
  display: none;
}
.menu li .subnav a:hover {
  color: #b8860b;
  background: rgba(184, 134, 11, 0.04);
}
.menu li .subnav a.on {
  color: #2c1810;
  font-weight: 600;
}
.menu li .subnav a:last-child {
  border: 0;
}
.menu li .subnav::before {
  content: '';
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #b8860b;
  position: absolute;
  top: -16px;
  left: 27px;
}
.menu li .subnav::after {
  content: '';
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-bottom-color: #faf6ef;
  position: absolute;
  top: -14px;
  left: 28px;
}
.menu li.subcate {
  margin-right: 44px;
}
.menu li.subcate > a::after {
  display: none;
}
.menu li.subcate .arrow {
  width: 50px;
  text-align: center;
  display: none;
}
.menu li.subcate .arrow::before {
  content: "\e69b";
  font-size: 15px;
  color: #8c8c8c;
  font-family: iconfont;
}
.menu li.subcate .arrow.on::before {
  content: "\e6a4";
}
.menu li.subcate:hover a {
  color: #2c1810;
}
.menu li.subcate:hover .subnav {
  display: block;
}
.menu li.subcate:hover .subnav a:hover {
  color: #b8860b;
}
.menu li.subcate:hover .subnav a.on {
  color: #2c1810;
}
.menu li.subcate .subnav a {
  color: #2c2c2c;
}
.menu.on {
  width: 100%;
  float: none;
  margin: 0 -20px;
  padding: 10px 20px 0;
  border-top: 1px solid #e8ddd0;
  background: #faf6ef;
  position: absolute;
  top: 50px;
  z-index: 9;
  display: block;
}
.menu.on li {
  width: 100%;
  float: none;
  line-height: 40px;
  border-bottom: 1px dotted #e8ddd0;
  display: block;
}
.menu.on li a {
  display: block;
}
.menuico {
  width: 38px;
  height: 38px;
  float: right;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  top: 6px;
  display: none;
  transition: all 0.2s;
}
.menuico span {
  width: 21px;
  height: 2px;
  background: #2c1810;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  transition: all 0.1s;
}
.menuico span:first-child {
  margin-top: -6px;
}
.menuico span:last-child {
  margin-top: 6px;
}
.menuico.on span:first-child {
  width: 20px;
  margin-top: -8px;
  margin-left: -7px;
  transform: rotate(45deg);
}
.menuico.on span:nth-child(2) {
  opacity: 0;
  width: 2px;
  left: 20px;
  transition: all 0.1s;
}
.menuico.on span {
  background: #2c2c2c;
  transform-origin: 0;
}
.menuico.on span:last-child {
  width: 20px;
  margin-top: 6px;
  margin-left: -7px;
  transform: rotate(-45deg);
}
.fademask.on {
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.4);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sch {
  display: inline-block;
}
.schico {
  width: 45px;
  height: 60px;
  line-height: 62px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
}
.schico a {
  display: block;
}
.schico a::after {
  content: "\e6e1";
  font-size: 26px;
  color: #8c8c8c;
  font-family: iconfont;
}
.schico:hover a::after {
  color: #b8860b;
}
.sch-m {
  line-height: 0;
  position: relative;
  display: none;
}
.sch-m input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 50px;
  border: 0;
  border-bottom: 2px solid #b8860b;
  border-radius: 3px;
  box-sizing: border-box;
  background: transparent;
}
.sch-m input:focus {
  color: #2c1810;
}
.sch-m button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.sch-m button::after {
  content: "\e6e1";
  font-size: 30px;
  color: #b8860b;
  font-family: iconfont;
}
.schfixed {
  width: 280px;
  padding: 20px;
  border-top: 2px solid #b8860b;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  border-radius: 0 0 8px 8px;
  background: #faf6ef;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 10;
  display: none;
}
.schfixed::before {
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #b8860b;
  position: absolute;
  top: -20px;
  right: 14px;
}
.schfixed::after {
  content: '';
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #faf6ef;
  position: absolute;
  top: -18px;
  right: 15px;
}
.schfixed form {
  position: relative;
}
.schfixed input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 14px;
  font-size: 14px;
  color: #2c2c2c;
  line-height: 40px;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  box-sizing: border-box;
  background: #f5f0e8;
  transition: all 0.3s;
}
.schfixed input:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}
.schfixed button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  background: #b8860b;
  position: absolute;
  top: 0;
  right: 0;
  transition: background 0.3s;
}
.schfixed button::after {
  content: "\e6e1";
  font-size: 24px;
  color: #fff;
  font-family: iconfont;
  line-height: 42px;
  text-align: center;
  display: block;
}
.schfixed button:hover {
  background: #2c1810;
}
.schfixed.on {
  display: block;
}
.schbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  display: none;
}
.schbox.on {
  display: block;
}
.schbg {
  background: rgba(44, 24, 16, 0.85);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.schclose {
  font-size: 40px;
  color: #b8860b;
  font-family: iconfont;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 40px;
  z-index: 2;
}
.schform {
  width: 600px;
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.schform form {
  position: relative;
}
.schform input {
  width: 100%;
  font-size: 22px;
  color: #2c1810;
  line-height: 50px;
  border: 0;
  border-bottom: 2px solid #b8860b;
  background: transparent;
}
.schform input:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}
.schform button {
  width: 39px;
  height: 39px;
  border: 0;
  cursor: pointer;
  background: transparent;
  position: absolute;
  bottom: 8px;
  right: 0;
}
.schform button::after {
  content: "\e077";
  font-size: 28px;
  color: #b8860b;
  font-family: iconfont;
}
.schads {
  margin-top: 30px;
}
.schads h3 {
  margin: 10px 0;
  font-size: 15px;
  color: #e8ddd0;
  line-height: 30px;
}
.schads a {
  margin-bottom: 10px;
  display: block;
}
.main {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.main.fixed {
  padding-top: 60px;
}
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(44 24 16 / 3%) 0%, rgba(44, 24, 16, 0.2) 60%, transparent 100%);
  z-index: 1;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #b8860b, transparent);
  z-index: 2;
}
.banner .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hellotip {
  width: 90%;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-size: 38px;
  color: #fff;
  letter-spacing: 6px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  word-break: break-all;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hellotip.alone::after {
  content: '';
  width: 80px;
  height: 2px;
  margin-left: -40px;
  background: #b8860b;
  position: absolute;
  left: 50%;
  bottom: -24px;
}
.sitemap {
  margin-bottom: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #8c8c8c;
  line-height: 24px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sitemap a {
  font-size: 13px;
  color: #8c8c8c;
}
.sitemap a:hover {
  color: #b8860b;
}
.content {
  width: 70%;
  float: left;
  display: inline;
}
.content.wide {
  width: 100%;
}
.block {
  margin-bottom: 24px;
  padding: 30px 32px;
  word-break: break-all;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  box-sizing: border-box;
  background: #faf6ef;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.block:hover {
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
}
.block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, transparent);
  border-radius: 2px;
}
.post {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8ddd0;
  position: relative;
  zoom: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post::after {
  content: "";
  display: block;
  clear: both;
}
.post:hover {
  transform: translateY(-3px);
}
.post:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.post h2 {
  margin-bottom: 10px;
  line-height: 1.5;
}
.post h2 a {
  font-size: 22px;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.post h2 a:hover {
  color: #b8860b;
}
.post h2 .istop {
  color: #8b2500;
  vertical-align: top;
  font-size: 14px;
  margin-right: 6px;
}
.post h2 .istop::before {
  content: "\e67a";
  font-size: 34px;
  color: #8b2500;
  font-family: iconfont;
  vertical-align: middle;
}
.post h1 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #b8860b;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.post .info {
  margin-bottom: 14px;
  font-size: 13px;
  color: #8c8c8c;
  zoom: 1;
  letter-spacing: 0.5px;
}
.post .info::after {
  content: "";
  display: block;
  clear: both;
}
.post .user,
.post .date,
.post .cate,
.post .view,
.post .cmt,
.post .edit,
.post .del {
  margin-right: 16px;
  color: #8c8c8c;
  font-size: 13px;
}
.post .user::before,
.post .date::before,
.post .cate::before,
.post .view::before,
.post .cmt::before,
.post .edit::before,
.post .del::before {
  margin-right: 4px;
  font-size: 15px;
  font-family: iconfont;
  vertical-align: top;
}
.post .user a,
.post .date a,
.post .cate a,
.post .view a,
.post .cmt a,
.post .edit a,
.post .del a {
  color: #8c8c8c;
}
.post .user a:hover,
.post .date a:hover,
.post .cate a:hover,
.post .view a:hover,
.post .cmt a:hover,
.post .edit a:hover,
.post .del a:hover {
  color: #b8860b;
}
.post .user:before {
  content: "\e6a9";
}
.post .date:before {
  content: "\e69c";
}
.post .cate:before {
  content: "\e6e2";
}
.post .view:before {
  content: "\e6a7";
}
.post .cmt:before {
  content: "\e6a8";
}
.post .edit:before {
  content: "\e69a";
}
.post .del:before {
  content: "\e6ac";
}
.postimg {
  width: 140px;
  float: left;
  display: inline;
  margin: 0 24px 0 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.postimg a {
  display: block;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  position: relative;
}
.postimg a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.postimg:hover a img {
  transform: scale(1.08);
}
.postimg::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(44, 24, 16, 0.06);
  border-radius: 6px;
  pointer-events: none;
}
.post .intro {
  font-size: 15px;
  color: #8c8c8c;
  line-height: 1.8;
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
}
.post .intro a {
  color: #8c8c8c;
}
.post .intro.isimg {
  height: 84px;
}
.post .readmore {
  width: 100%;
  float: left;
  margin: 14px 0 0;
}
.post .readmore a {
  padding: 7px 24px 7px 28px;
  font-size: 14px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.post .readmore a::after {
  content: "\e6a6";
  margin-left: 6px;
  font-family: iconfont;
  vertical-align: middle;
  font-size: 12px;
}
.post .readmore a:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #886308);
}
.posttitle {
  padding: 0 0 10px;
  line-height: 30px;
  border-bottom: 1px solid #e8ddd0;
  margin-bottom: 16px;
}
.posttitle h1,
.posttitle h2,
.posttitle h3,
.posttitle h4,
.posttitle h5,
.posttitle h6 {
  font-size: 18px;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  letter-spacing: 1px;
}
.post .tags {
  margin-top: 24px;
}
.post .tags a {
  margin: 0 6px 8px 0;
  padding: 4px 16px;
  font-size: 13px;
  color: #8c8c8c;
  line-height: 28px;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  background: #f5f0e8;
  display: inline-block;
  transition: all 0.3s;
}
.post .tags a:hover {
  color: #fff;
  border-color: #8b2500;
  background: #8b2500;
}
body.article .post .info {
  padding: 14px 20px;
  margin-bottom: 20px;
  background: rgba(184, 134, 11, 0.04);
  border-radius: 6px;
  border-left: 3px solid #b8860b;
}
body.article .sidebar .sidebox {
  background: #f8f4ec;
}
body.article .sidebar .sidebox dt {
  color: #8c8c8c;
  font-size: 16px;
  border-bottom-color: rgba(232, 221, 208, 0.6);
}
body.article .sidebar .sidebox dt::after {
  background: rgba(184, 134, 11, 0.4);
}
body.article .sidebar .sidebox dd a {
  color: #6c6c6c;
}
body.article .sidebar .sidebox dd a:hover {
  color: #b8860b;
}
body.article .sidebar .sidebox li {
  border-bottom-color: rgba(232, 221, 208, 0.4);
}
.featured-block {
  margin-bottom: 28px;
  background: linear-gradient(135deg, #faf6ef 0%, #fbf8f3 100%);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 750px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
.featured-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border: 1px solid #e8ddd0;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.featured-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #b8860b;
  transition: height 0.4s ease;
  border-radius: 2px;
}
.featured-item:hover {
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  transform: translateY(-3px);
  border-color: rgba(184, 134, 11, 0.3);
}
.featured-item:hover::before {
  height: 100%;
}
.featured-img {
  width: 110px;
  min-height: 75px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.featured-img a {
  display: block;
  width: 100%;
  height: 75px;
  overflow: hidden;
}
.featured-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.featured-img:hover a img {
  transform: scale(1.1);
}
@media (max-width: 750px) {
  .featured-img {
    display: none;
  }
}
.featured-info {
  flex: 1;
}
.featured-info h3 {
  margin-bottom: 6px;
}
.featured-info h3 a {
  font-size: 17px;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s;
}
.featured-info h3 a:hover {
  color: #b8860b;
}
.featured-info .info {
  font-size: 13px;
  color: #8c8c8c;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.featured-info p {
  font-size: 14px;
  color: #8c8c8c;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.posttitle {
  margin-bottom: 0;
}
.posttitle h1,
.posttitle h2,
.posttitle h3,
.posttitle h4,
.posttitle h5,
.posttitle h6 {
  font-size: 16px;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
}
.posttitle h1::after,
.posttitle h2::after,
.posttitle h3::after,
.posttitle h4::after,
.posttitle h5::after,
.posttitle h6::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #b8860b;
}
.posttitle h4 {
  font-size: 18px;
}
.single {
  padding: 30px 0 20px;
  line-height: 2;
  word-wrap: break-word;
  font-size: 17px;
  color: #2c2c2c;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}
.single p {
  margin-bottom: 1.2em;
  text-align: justify;
  text-indent: 2em;
}
.single p img {
  margin: 2em auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  text-indent: 0;
}
.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ddd0;
  position: relative;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  color: #1a1a1a;
}
.single h1::after,
.single h2::after,
.single h3::after,
.single h4::after,
.single h5::after,
.single h6::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #b8860b;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.single h1 {
  font-size: 28px;
}
.single h2 {
  font-size: 26px;
}
.single h3 {
  font-size: 22px;
}
.single h4 {
  font-size: 18px;
}
.single h5 {
  font-size: 16px;
}
.single h6 {
  font-size: 15px;
}
.single blockquote {
  margin: 1.8em 0;
  padding: 18px 24px 18px 28px;
  font-size: 15px;
  color: #8c8c8c;
  line-height: 1.9;
  border-left: 3px solid #b8860b;
  background: rgba(184, 134, 11, 0.04);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.single blockquote p {
  margin-bottom: 0;
  text-indent: 0;
}
.single blockquote::before {
  content: '"';
  position: absolute;
  top: -4px;
  left: 8px;
  font-size: 40px;
  color: #b8860b;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  opacity: 0.3;
  line-height: 1;
}
.single code {
  padding: 2px 8px;
  font-size: 14px;
  color: #2c1810;
  background: rgba(44, 24, 16, 0.06);
  border-radius: 4px;
  font-family: 'Consolas', 'Monaco', monospace;
}
.single pre {
  margin: 1.8em 0;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  background: #2c1810;
  color: #e8ddd0;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
}
.single pre code {
  padding: 0;
  font-size: 14px;
  color: inherit;
  background: transparent;
}
.single table {
  width: 100%;
  margin: 1.8em 0;
  border-collapse: collapse;
  font-size: 15px;
}
.single table th,
.single table td {
  padding: 12px 16px;
  border: 1px solid #e8ddd0;
  text-align: left;
}
.single table th {
  background: rgba(184, 134, 11, 0.06);
  font-weight: 600;
  color: #1a1a1a;
}
.single table tr:nth-child(even) td {
  background: rgba(44, 24, 16, 0.02);
}
.single ul,
.single ol {
  margin: 1em 0;
  padding-left: 2em;
}
.single ul li,
.single ol li {
  margin-bottom: 0.5em;
  list-style: disc;
  color: #2c2c2c;
}
.single ol li {
  list-style: decimal;
}
.single a {
  color: #b8860b;
}
.single a:hover {
  color: #2c1810;
  text-decoration: underline;
}
.single > p:first-child::first-letter {
  font-size: 3.5em;
  float: left;
  line-height: 1;
  margin: 0.15em 0.15em 0 0;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-weight: 700;
  text-indent: 0;
}
.pages {
  margin-top: 30px;
  padding: 20px 24px;
  overflow: hidden;
  zoom: 1;
  border-radius: 8px;
  border: 1px solid #e8ddd0;
  background: rgba(184, 134, 11, 0.02);
}
.pages::after {
  content: "";
  display: block;
  clear: both;
}
.pages a {
  color: #2c2c2c;
}
.pages a:hover {
  color: #b8860b;
}
.pages p {
  height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}
.pages span {
  color: #8c8c8c;
  font-size: 14px;
}
a.backlist {
  float: right;
  display: inline;
  margin: 10px 0 0;
  padding: 7px 20px 7px 24px;
  font-size: 14px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s;
}
a.backlist::after {
  content: "\e6a6";
  margin-left: 6px;
  font-family: iconfont;
  vertical-align: middle;
  font-size: 12px;
}
a.backlist:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #886308);
}
.relate {
  padding: 24px 0;
  border-top: 1px solid #e8ddd0;
  overflow: hidden;
  zoom: 1;
}
.relate::after {
  content: "";
  display: block;
  clear: both;
}
.relate:last-child {
  padding: 15px 0 3px;
}
.relateinfo h3 {
  margin: 0 0 10px;
}
.relateinfo h3 a {
  font-size: 18px;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-weight: 600;
  transition: color 0.3s;
}
.relateinfo h3 a:hover {
  color: #b8860b;
}
.relateinfo p {
  max-height: 48px;
  font-size: 14px;
  color: #8c8c8c;
  line-height: 26px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
.relateimg {
  width: 120px;
  float: left;
  display: inline;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.relateimg a {
  display: block;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  position: relative;
}
.relateimg a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.relateimg:hover a img {
  transform: scale(1.08);
}
.pagebar,
.cmtpagebar {
  width: 100%;
  margin: 0 auto 28px;
  padding: 20px 0 14px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  box-sizing: border-box;
  background: #faf6ef;
}
.pagebar .now-page,
.cmtpagebar .now-page {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding: 8px 18px;
  margin: 0 4px 6px;
  border-radius: 20px;
  background: linear-gradient(135deg, #b8860b, #926a09);
  display: inline-block;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
}
.pagebar a,
.cmtpagebar a {
  margin: 2px;
  padding: 8px 16px;
  font-size: 14px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  background: #faf6ef;
  display: inline-block;
  transition: all 0.3s;
}
.pagebar a:hover,
.cmtpagebar a:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #926a09);
}
.sidebar {
  width: 28%;
  float: right;
  display: inline;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.sidebox {
  margin-bottom: 24px;
  padding: 24px;
  word-break: break-all;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  box-sizing: border-box;
  background: #faf6ef;
  position: relative;
}
.sidebox dt {
  margin-bottom: 14px;
  padding: 0 0 12px;
  font-size: 18px;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  color: #1a1a1a;
  border-bottom: 1px solid #e8ddd0;
  position: relative;
}
.sidebox dt::after {
  content: '';
  width: 32px;
  height: 2px;
  background: #b8860b;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.sidebox dd {
  line-height: 32px;
}
.sidebox dd li {
  border-bottom: 1px dotted #e8ddd0;
}
.sidebox dd li:last-child {
  border: 0;
}
.sidebox dd a {
  font-size: 14px;
  color: #2c2c2c;
  transition: all 0.2s;
  display: block;
}
.sidebox dd a:hover {
  color: #b8860b;
  padding-left: 6px;
}
#divTags ul {
  margin-left: -6px;
  zoom: 1;
}
#divTags ul::after {
  content: "";
  display: block;
  clear: both;
}
#divTags ul li {
  width: auto;
  float: left;
  display: inline;
  margin: 8px 0 0 6px;
  padding: 0;
  white-space: nowrap;
  border: 0;
}
#divTags ul li a {
  padding: 5px 14px;
  font-size: 13px;
  color: #8c8c8c;
  line-height: 28px;
  border-radius: 20px;
  border: 1px solid #e8ddd0;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
  background: #f5f0e8;
}
#divTags ul li a:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #926a09);
}
.tag-count {
  display: none;
}
#divCalendar .function_t {
  display: none;
}
#divCalendar .function_c {
  padding: 0 4px 15px;
}
#divCalendar table {
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
#divCalendar caption {
  height: 24px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
}
#divCalendar caption a {
  padding: 0 18px;
  color: #8c8c8c;
}
#divCalendar caption a:hover {
  color: #b8860b;
}
#divCalendar th {
  height: 28px;
  color: #fff;
  font-weight: 400;
  line-height: 28px;
  border: 1px solid #2c1810;
  background: linear-gradient(135deg, #2c1810, #190e09);
  border-radius: 2px;
}
#divCalendar td {
  height: 32px;
  color: #8c8c8c;
  line-height: 32px;
  text-align: center;
  border: 1px solid #e8ddd0;
}
#divCalendar td.pad {
  background: none;
}
#divCalendar td a {
  color: #b8860b;
  border: 1px solid #b8860b;
  border-radius: 4px;
  display: block;
  transition: all 0.3s;
}
#divCalendar td a:hover {
  background: #b8860b;
  color: #fff;
}
#divCalendar #today {
  color: #2c1810;
  font-weight: 700;
}
#divAuthors .article-nums {
  display: none;
}
#divPrevious .article-date,
#divNavBar .subnav {
  display: none;
}
#divCatalog ul.ul-subcates li a {
  padding-left: 37px;
}
#divSearchPanel form {
  margin-top: 20px;
  zoom: 1;
}
#divSearchPanel form::after {
  content: "";
  display: block;
  clear: both;
}
#divSearchPanel input[type="text"] {
  width: 68%;
  height: 38px;
  float: left;
  display: inline;
  padding: 5px 12px;
  line-height: 28px;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  transition: all 0.3s;
  background: #f5f0e8;
}
#divSearchPanel input[type="text"]:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}
#divSearchPanel input[type="submit"] {
  width: 28%;
  height: 38px;
  float: right;
  display: inline;
  font-size: 14px;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  cursor: pointer;
  background: #faf6ef;
  transition: all 0.3s;
}
#divSearchPanel input[type="submit"]:hover {
  border-color: #b8860b;
  color: #b8860b;
  background: rgba(184, 134, 11, 0.04);
}
#divContorPanel dd {
  text-align: center;
}
#divContorPanel .cp-hello {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px dotted #e8ddd0;
  display: inline-block;
  color: #1a1a1a;
}
#divContorPanel .cp-hello::before {
  content: "\e6a9";
  margin-right: 3px;
  font-size: 22px;
  font-family: iconfont;
}
#divContorPanel .cp-login a,
#divContorPanel .cp-vrs a {
  padding: 0 16px;
  font-size: 14px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s;
}
#divContorPanel .cp-login a::before,
#divContorPanel .cp-vrs a::before {
  font-size: 20px;
  font-family: iconfont;
  vertical-align: top;
}
#divContorPanel .cp-login a:hover,
#divContorPanel .cp-vrs a:hover {
  color: #b8860b;
  border-color: #b8860b;
  background: rgba(184, 134, 11, 0.04);
}
#divContorPanel .cp-login a::before {
  content: "\e699";
}
#divContorPanel .cp-vrs a::before {
  content: "\e6e2";
}
#divContorPanel .sidecon div {
  padding: 20px;
  text-align: center;
  border: 1px dotted #e8ddd0;
  background: rgba(184, 134, 11, 0.03);
  border-radius: 6px;
}
.cmts-item {
  padding: 22px 0 18px;
  border-bottom: 1px solid #e8ddd0;
  zoom: 1;
}
.cmts-item::after {
  content: "";
  display: block;
  clear: both;
}
.cmts-item .avatar {
  width: 46px;
  height: 46px;
  float: left;
  display: inline;
  margin-right: 14px;
  overflow: hidden;
}
.cmts-item .avatar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #e8ddd0;
}
.cmts-con {
  margin-left: 62px;
  zoom: 1;
}
.cmts-con::after {
  content: "";
  display: block;
  clear: both;
}
.cmts-con > .cmtsitem {
  margin-top: 15px;
  padding-left: 20px;
  border-left: 2px solid #e8ddd0;
}
.cmts-date {
  float: right;
  display: inline;
  font-size: 13px;
  color: #bbb;
}
.cmts-name {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}
.cmts-name a {
  color: #1a1a1a;
}
.cmts-name a:hover {
  color: #b8860b;
}
.cmts-name em {
  margin-left: 6px;
  padding: 0 8px;
  font-size: 12px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 10px;
  background: #f5f0e8;
  display: inline-block;
  vertical-align: top;
}
.cmts-body {
  margin-top: 10px;
  line-height: 1.8;
  font-size: 15px;
  color: #2c2c2c;
}
.cmts-reply {
  margin-top: 15px;
  padding-left: 20px;
  border-left: 2px solid #e8ddd0;
}
.cmts-reply-name {
  font-size: 13px;
  color: #8c8c8c;
}
.cmts-reply-name em {
  padding: 0 8px;
  font-size: 12px;
  border: 1px solid #e8ddd0;
  border-radius: 10px;
  background: #f5f0e8;
  display: inline-block;
  vertical-align: top;
}
.cmts-reply-name a {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
}
.cmts-reply-name a:hover {
  color: #b8860b;
}
.cmts-reply-con {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
}
.cmts-reply-date {
  margin-top: 8px;
  font-size: 13px;
  color: #bbb;
}
.cmts-foot {
  margin-top: 8px;
}
.cmts-foot .reply {
  font-size: 14px;
  color: #8c8c8c;
  transition: color 0.3s;
}
.cmts-foot .reply::before {
  content: "\e6a8";
  margin-right: 3px;
  font-size: 18px;
  font-family: iconfont;
  vertical-align: top;
}
.cmts-foot .reply:hover {
  color: #b8860b;
}
.cmts-foot .reply:hover::before {
  color: #b8860b;
}
.cmt.nocmt {
  padding: 20px 30px;
}
.cmt.nocmt::before {
  content: attr(data-content);
  width: 100%;
  font-size: 16px;
  color: #8c8c8c;
  text-align: center;
  display: inline-block;
}
.reply-frm {
  border-left: 2px solid #e8ddd0;
  padding-left: 20px;
  margin-top: 15px;
}
.reply-frm .cmtimg {
  display: none;
}
.reply-frm .cmtarea {
  padding: 0;
}
#cancel-reply {
  font-size: 14px;
  height: 30px;
  margin-left: 16px;
  padding: 0 14px;
  color: #b8860b;
  line-height: 28px;
  border: 1px solid #b8860b;
  border-radius: 15px;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}
#cancel-reply::before {
  content: "\e69f";
  font-size: 18px;
  font-family: iconfont;
  vertical-align: sub;
  margin-right: 2px;
}
#cancel-reply:hover {
  background: rgba(184, 134, 11, 0.06);
}
.comment {
  margin-top: 24px;
  zoom: 1;
}
.comment::after {
  content: "";
  display: block;
  clear: both;
}
.cmtimg {
  width: 46px;
  float: left;
  text-align: center;
}
.cmtimg img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #e8ddd0;
}
.cmtimg p {
  height: 20px;
  font-size: 12px;
  color: #8c8c8c;
}
.cmtarea {
  padding-left: 66px;
}
.cmtarea textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.6;
  border: 1px solid #e8ddd0;
  border-radius: 8px;
  box-sizing: border-box;
  background: #f5f0e8;
  transition: all 0.3s;
}
.cmtarea textarea:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}
.cmtsubmit button {
  height: 40px;
  margin-right: 10px;
  padding: 0 28px;
  font-size: 15px;
  color: #8c8c8c;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  cursor: pointer;
  background: #faf6ef;
  transition: all 0.3s;
}
.cmtsubmit button::before {
  content: "\e69a";
  margin-right: 4px;
  font-size: 18px;
  font-family: iconfont;
  vertical-align: top;
}
.cmtsubmit button:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #926a09);
}
.cmtsubmit button:hover::before {
  color: #fff;
}
.cmtsubmit span {
  font-size: 14px;
  color: #8c8c8c;
}
.cmtform {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #e8ddd0;
  display: none;
}
.cmtform p {
  width: 49%;
  float: left;
  padding: 5px 0;
}
.cmtform input {
  width: 180px;
  height: 27px;
  padding: 2px 8px;
  color: #2c2c2c;
  border: 1px solid #e8ddd0;
  border-radius: 4px;
  transition: all 0.3s;
}
.cmtform input:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}
.cmtform label {
  padding: 0 10px;
  line-height: 27px;
  cursor: pointer;
}
.cmtform #inpVerify {
  width: 100px;
}
.cmtform img.imgcode {
  width: 68px;
  height: 31px;
  margin-left: 10px;
  border: 1px solid #e8ddd0;
  cursor: pointer;
  vertical-align: top;
  border-radius: 4px;
}
.footer {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding: 0;
  font-size: 14px;
  color: #b8b0a8;
  text-align: center;
  background: linear-gradient(180deg, #2c1810, #1a0f08);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8860b, transparent);
}
.footer-widgets {
  padding: 48px 0 36px;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  text-align: left;
}
@media (max-width: 1080px) {
  .footer-widgets {
    flex-direction: column;
    gap: 28px;
    padding: 36px 24px;
  }
}
.footer-col {
  flex: 1;
}
.footer-col h4 {
  font-size: 16px;
  color: #b8860b;
  margin-bottom: 14px;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #b8860b;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: #999088;
}
.footer-col a {
  font-size: 13px;
  color: #999088;
  line-height: 30px;
  display: block;
  transition: all 0.2s;
}
.footer-col a:hover {
  color: #b8860b;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  font-size: 13px;
  color: #887e76;
}
.footer-bottom a {
  color: #887e76;
}
.footer-bottom a:hover {
  color: #b8860b;
}
.footer .sidebox {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.footer .sidebox dt {
  color: #b8860b;
  font-size: 16px;
  border: 0;
  padding: 0;
  margin-bottom: 14px;
}
.footer .sidebox dt::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #b8860b;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .sidebox dd {
  border: 0;
}
.footer .sidebox dd li {
  border: 0;
}
.footer .sidebox dd li::before {
  display: none;
}
.footer .sidebox dd a {
  font-size: 13px;
  color: #999088;
  line-height: 30px;
  display: block;
}
.footer .sidebox dd a:hover {
  color: #b8860b;
  padding-left: 4px;
}
.seal {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 2px solid #8b2500;
  border-radius: 4px;
  text-align: center;
  line-height: 44px;
  font-size: 14px;
  color: #8b2500;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  font-weight: 700;
  letter-spacing: 0;
  transform: rotate(-3deg);
  margin-right: 8px;
  vertical-align: middle;
}
.edgebar {
  position: fixed;
  right: 16px;
  bottom: 30px;
  z-index: 3;
}
a.backtotop {
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(44, 24, 16, 0.4);
  transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
}
a.backtotop i::after {
  content: "\e600";
  font-size: 22px;
  color: #fff;
  font-family: iconfont;
}
a.backtotop:hover {
  background: linear-gradient(135deg, #b8860b, #926a09);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
}
.errorpage {
  padding: 80px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  box-sizing: border-box;
  background: #faf6ef;
}
.errorpage h3 {
  font-size: 100px;
  line-height: 1;
  color: #1a1a1a;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
  letter-spacing: 8px;
  opacity: 0.8;
}
.errorpage h4 {
  margin: 10px 0 20px;
  font-size: 24px;
  color: #8c8c8c;
  font-family: "PingFang SC", "Microsoft YaHei", STSong, SimSun, "Noto Serif CJK SC", serif;
}
.errorpage p {
  margin-bottom: 24px;
  font-size: 16px;
  color: #8c8c8c;
}
.errorsearch {
  width: 60%;
  margin: 0 auto 20px;
}
.errschtxt {
  width: 72%;
  height: 40px;
  padding: 5px 14px;
  line-height: 30px;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  transition: all 0.3s;
  background: #f5f0e8;
}
.errschtxt:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}
.errschbtn {
  width: 25%;
  height: 40px;
  font-size: 14px;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  cursor: pointer;
  background: #faf6ef;
  transition: all 0.3s;
}
.errschbtn:hover {
  border-color: #b8860b;
  color: #b8860b;
}
.goback {
  height: 40px;
  margin: 0 10px 0 0;
  padding: 0 20px 0 24px;
  font-size: 15px;
  color: #8c8c8c;
  line-height: 38px;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  cursor: pointer;
  background: #faf6ef;
  display: inline-block;
  transition: all 0.3s;
}
.goback::after {
  content: "\e6a6";
  margin-left: 5px;
  font-size: 16px;
  font-family: iconfont;
  vertical-align: middle;
}
.goback:hover {
  color: #fff;
  border-color: #b8860b;
  background: linear-gradient(135deg, #b8860b, #926a09);
}
.goback:hover::after {
  color: #fff;
}
.postcon {
  overflow: hidden;
  position: relative;
}
.teles,
.telesmore {
  width: 100%;
  height: 150px;
  color: #2c1810;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(to bottom, rgba(250, 246, 239, 0), #faf6ef 50%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.telesmore i {
  margin: 100px auto 0;
  line-height: 38px;
  text-align: center;
  border: 1px solid #2c1810;
  border-radius: 20px;
  background: #faf6ef;
  display: inline-block;
  color: #2c1810;
  padding: 0 20px;
  transition: all 0.3s;
}
.telesmore i:hover {
  border-color: #b8860b;
  color: #b8860b;
}
.telesmore i:after {
  content: "\e69b";
  font-size: 20px;
  font-family: iconfont;
  vertical-align: middle;
  margin-left: 4px;
}
.teles i {
  margin: 90px 0 20px;
  font-size: 18px;
  font-style: normal;
  line-height: 28px;
  display: inline-block;
}
.teles i:after {
  content: "\e69b";
  width: 33px;
  margin-left: -20px;
  font-size: 30px;
  font-family: iconfont;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1920px) {
  .wrap {
    width: 1200px;
  }
  .wrapper {
    width: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: auto;
    padding: 0 24px;
  }
  .header .wrap {
    padding: 0;
  }
  .header .name a {
    padding-left: 18px;
  }
  .logo {
    margin-left: 20px;
  }
  .head {
    padding: 0;
  }
}
@media screen and (max-width: 1080px) {
  .header .name {
    height: 50px;
  }
  .header .name a {
    font-size: 20px;
    line-height: 50px;
  }
  .header::after {
    display: none;
  }
  .logo {
    height: 50px;
    margin-left: 10px;
  }
  .logo a {
    height: 50px;
  }
  .logo a img {
    height: 36px;
  }
  .menu {
    width: 100%;
    height: auto;
    float: none;
    margin: 0;
    border-top: 1px solid #e8ddd0;
    display: none;
  }
  .menu ul {
    width: 100%;
    padding-right: 0;
  }
  .menu ul li {
    width: 100%;
    float: none;
    padding: 0;
    line-height: 40px;
    border-bottom: 1px solid #e8ddd0;
  }
  .menu ul li a {
    padding: 0 18px;
    font-size: 15px;
    color: #2c2c2c;
    display: block;
  }
  .menu ul li a::after {
    display: none;
  }
  .menu ul li.subcate .arrow {
    border-left: 1px dotted #e8ddd0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    display: block;
  }
  .menu ul li.subcate:hover .subnav {
    display: none;
  }
  .menu ul li.subcate.slidedown .subnav {
    margin-bottom: -1px;
    padding: 0 2px;
    line-height: 40px;
    border-top: 1px solid #e8ddd0;
    border-bottom: 1px solid #e8ddd0;
    background: #f7f7f7;
    position: static;
    display: block;
  }
  .menu ul li.subcate.slidedown .subnav::before,
  .menu ul li.subcate.slidedown .subnav::after {
    display: none;
  }
  .menu.on {
    width: 100%;
    margin: 0;
    padding: 5px 0 0;
    display: block;
  }
  .menuico {
    right: 5px;
    display: block;
  }
  .schico {
    display: none;
  }
  .sch-m {
    display: block;
  }
  .main.fixed {
    padding-top: 50px;
  }
  .sidebar {
    display: none;
  }
  .content {
    width: 100%;
  }
  .footer-widgets {
    flex-direction: column;
    gap: 28px;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    padding: 0;
  }
  .main {
    margin-bottom: 0;
  }
  .banner {
    margin-bottom: 10px;
    min-height: 150px;
  }
  .hello-tip {
    font-size: 24px;
  }
  .sitemap {
    padding: 0 18px;
  }
  .block {
    margin-bottom: 10px;
    padding: 18px 18px 12px;
    border-radius: 0;
  }
  .block::before {
    left: 18px;
  }
  .post {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .post h2 a {
    font-size: 19px;
  }
  .postimg {
    width: 100px;
    margin: 0 16px 0 0;
  }
  .post .intro {
    font-size: 14px;
    line-height: 1.6;
  }
  .post .intro.isimg {
    height: 68px;
  }
  .post .readmore {
    text-align: center;
    display: none;
  }
  .post h1 {
    font-size: 24px;
  }
  .single {
    font-size: 16px;
    line-height: 1.8;
  }
  .single h1 {
    font-size: 22px;
  }
  .single h2 {
    font-size: 20px;
  }
  .single h3 {
    font-size: 18px;
  }
  .single > p:first-child::first-letter {
    font-size: 2.5em;
  }
  .single blockquote {
    padding: 14px 18px;
    font-size: 14px;
  }
  .single pre {
    padding: 16px;
    font-size: 13px;
  }
  .pages {
    padding: 14px 16px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-item {
    flex-direction: column;
  }
  .featured-img {
    width: 100%;
    min-height: 160px;
  }
  .featured-img a {
    height: 160px;
  }
  a.backlist {
    width: 100%;
    float: none;
    margin-bottom: 16px;
    text-align: center;
  }
  .pagebar,
  .cmtpagebar {
    width: auto;
    margin: 0 0 8px;
  }
  .pagebar .now-page,
  .cmtpagebar .now-page {
    padding: 4px 12px;
  }
  .pagebar a,
  .cmtpagebar a {
    margin: 2px 3px 5px;
    padding: 4px 12px;
  }
  .errorpage {
    padding: 50px 18px;
  }
  .errorpage h3 {
    font-size: 60px;
  }
  .errorpage h4 {
    font-size: 20px;
  }
}
