@import url(css/style.css);
:root {
  --text: #1f2d3d;
  --accent: #00c1d4;
  --muted: #e5e8eb;
  --shadow: 0px 0px 2px rgb(98 124 153 / 10%);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html, body {
  margin: 0;
  padding: 0
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: var(--text);
  background: #f5f6f7;
  line-height: 1.65
}
a {
  color: inherit;
  text-decoration: none;
  transition-duration: .25s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
a:hover{
	color: var(--accent);
}
img {
  max-width: 100%;
  display: block
}
ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
em, i {
  font-style: normal;
}
table {
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table, table td, table th {
  border: 1px solid rgba(170, 172, 182, 0.15)
}
table td, table th {
  padding: 6px
}
table th {
  background-color: rgba(277, 277, 277, 0.1)
}
sup {
  font-size: .685em;
  font-weight: normal;
  margin-left: 4px;
  opacity: .8
}
.container {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto
}
.cla {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}
/* 头部 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #21242b;
  color: #fff;
  border-bottom: 1px solid #0f1115;
  -webkit-transition: .3s;
  transition: .3s;
}
.site-header.slideUp {
  top: -66px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px
}
.logo {
  color: #00e5ff;
  font-weight: 800;
  letter-spacing: .5px;
  flex-shrink: 0;
  font-size: 1.5em
}
.logo img {
  height: 34px;
}
.nav {
  display: flex;
  gap: 18px
}
.nav .menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}
.nav a {
  color: #c7d0d9;
  font-weight: 500;
  padding: 8px 6px;
  border-bottom: 2px solid transparent
}
.nav a i,.drawer .menu a i{
margin-right: 2px;
    font-size: .95em;
}
.nav a.active, .nav a:hover {
  color: #fff;
  border-color: var(--accent)
}
.nav .has-sub {
  position: relative
}
.nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background: #1a1d23;
  border: 1px solid #2a2f36;
  border-radius: 8px;
  padding: 6px 0;
  list-style: none;
  margin: 6px 0 0 0;
  display: none;
  z-index: 10
}
.nav .sub-menu a {
  display: block;
  padding: 8px 12px;
  color: #d8e0e7
}
.nav .sub-menu a:hover {
  background: #242a33
}
.nav .has-sub:hover > .sub-menu {
  display: block
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center
}
.search_wrap {
  position: relative;
}
.search_wrap .search {
  height: 34px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #2a2f36;
  background: #16181d;
  color: #e9eef3
}
.search_wrap button {
  position: absolute;
  bottom: 0;
  right: 2px;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #c7d0d9
}
.btn-login {
  background: var(--accent);
  color: #00333a;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700
}
.btn-login:hover {
  background: var(--accent-dark)
}
/* 汉堡等 */
.hamburger, .search-btn {
  display: none;
  background: none;
  border: none;
  width: 26px;
  height: 34px;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  font-size: 17px
}
.navico {
  display: none;
}
.drawer {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  width: 260px;
  background: #0f1115;
  border-right: 1px solid #1f232a;
  transform: translateX(-100%);
  transition: transform .3s ease;
  transition: .3s;
  z-index: 999;
}
.drawer.slideUp {
  top: 0
}
.drawer.active {
  transform: translateX(0)
}
.drawer-menu, .drawer .menu {
  list-style: none;
  margin: 0;
  padding: 12px
}
.drawer .menu li {
  border-bottom: 1px solid #1f232a;
  position: relative;
}
.drawer .menu li a {
  display: block;
  color: #d8e0e7;
  padding: 12px
}
.drawer .sub-menu {
  display: none;
  font-size: .95em;
    margin-left: 10px;
	opacity: .8
}


.drawer .d-item.active > .sub-menu {
  display: block
}
.drawer .menu li em.dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
  line-height: 50px;
}
/* 轮播 */
.hero {
  background: #282b34
}
.hero .container {
  padding: 18px 0
}
.hero-slider {
  position: relative;
  height: 360px;
  font-size: 1.5rem;
  border-radius: 8px;
  overflow: hidden
}
.hero-slider .slide {
  display: block;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}
.hero-slider .swiper-wrapper {
  height: 100%
}
.hero-slider .swiper-slide {
  height: 100%
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: calc(50% + 23px);
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.hero-slider:hover .swiper-button-next, .hero-slider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.swiper-button-next {
  right: 16px;
  transform: translate(20px, -50%);
}
.swiper-button-prev {
  left: 16px;
  transform: translate(-20px, -50%);
}
.hero-slider:hover .swiper-button-next {
  transform: translate(0, -50%);
}
.hero-slider:hover .swiper-button-prev {
  transform: translate(0, -50%);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
}
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center
}
.hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .6);
  opacity: 1
}
.hero-slider .swiper-pagination-bullet-active {
  background: #fff;
  height: 10px;
  width: 10px;
}
.hero-slider .slide_text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 15px 25px;
  text-align: center;
  z-index: 1;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
}
.hero-slider .slide_text a {
  color: #fff;
}
.hero-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}
.mini-card {
  background: #21242b;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9eef3;
  padding: 8px
}
.mini-card i {
    width: 33.33%;
}
	
.mini-card img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0
}
.mini-card span {
  font-size: 15px;
  flex-grow: 1;
  -webkit-line-clamp: 1
}
/* 面包屑 */
.breadcrumb {
  background: #fff;
  color:rgba(31,45,61,.8);
  padding: 12px 0;
  border-bottom: 1px solid var(--muted);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--text);
}
.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .container{
	display: flex;
    align-items: center;
    gap: 5px;
}
/* 布局 */
.layout {
  /* display: grid; */
  /* grid-template-columns: 1fr 320px; */
  /* gap: 24px; */
  /* margin: 24px auto */
  overflow: hidden;
  margin-top: 20px
}
.main {
  float: left;
  width: 100%;
  overflow: hidden;
}
.main-col {
  margin-right: 340px;
  margin-bottom: 20px
}
.side-col {
  width: 325px;
  float: right;
  display: block;
  /* position: relative; */
  z-index: 1;
  margin-left: -325px;
  font-size: 15px;
}
.section-title {
  font-size: 22px;
  margin: 20px 0 14px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  line-height: 1.4
}
.nmtop {
  margin-top: 0
}
/* 卡片 */
.card-list {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow)
}
.card i, .post-row i {
  position: relative;
  width: 100%
}
.thumb {
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: block;
}
.thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: transform .5s
}
.card:hover .thumb img, .post-row:hover .thumb img {
  transform: scale(1.06)
}
.list-cate {
  top: 6px;
  left: 6px;
  position: absolute;
  width: auto;
  height: 25px;
  line-height: 25px;
  background: #000;
  opacity: .5;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
}
.card-body {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 4px
}
.card-body h3 {
  font-size: 18px;
  line-height: 1.4
}
.card-body p {
  opacity: .8
}
.meta {
  display: flex;
  gap: 10px;
  opacity: .6;
  font-size: 14px
}
.jz_bs,.jz_ban,.jz_banl{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 12px
}

.jz_ban{
	border-radius: 8px;
	background-color: transparent
}
.jz_banl{
	margin-top: 12px
}

.widget[id^=side-] img, .avd img {
    vertical-align: middle;
}

/* 分类 */
.page-title {
  margin: 0 0 15px 0;
  line-height: 1.4
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.post-row {
  display: flex;
  gap: 4px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow)
}
.post-row i {
  width: 25%;
  flex: 0 0 auto;
}
.post-row .thumb {
  padding-bottom: 75%;
}
.post-row .content {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.post-row .content h3 {
  line-height: 1.4;
  font-size: 19px;
  position: relative;
}
.isTop{
  margin-right: 4px;
  padding: 1px 5px;
  font-size: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  font-weight: normal;
  vertical-align: 1px
}
.post-row .content p {
  line-height: 1.6;
  opacity: .8
}
.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 18px 0
}
.pagination .page {
  background: #fff;
  border: 1px solid var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow)
}
.pagination .page.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent
}
.pagination .page:hover {
  border-color: var(--accent)
}
.pagination .ellipsis {
  background: transparent;
  border: none;
  box-shadow: none
}
.pageload {
  padding: 0;
  position: relative;
  height: 50px;
  margin: 20px 30% 10px 30%;
}
.pageload .view-more-button, .pageload .page-load-status p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 5px;
  vertical-align: middle;
  text-align: center;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
}
.pageload .view-more-button {
  cursor: pointer;
}
.pageload .page-load-status p {
  z-index: 1;
}
.pageload .page-load-status p.infinite-scroll-last {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}
.pagelist a {
  color: #666;
  margin: 0 2px 5px 2px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 3px;
  background: #f8f9fa
}
.pagelist a:hover {
  color: #19585d;
}
.pagelist b {
  padding: 5px 10px;
  background: var(--colora);
  color: #fff;
  border-radius: 3px;
  font-weight: normal
}
/* 侧栏 */
.widget {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden
}
.widget-title {
  margin: 0;
  padding: 12px 15px 0;
  position: relative;
  font-size: 17px
}
/* .widget-title:before { */
/* position: absolute; */
/* top: 15px; */
/* left: 0; */
/* content: ''; */
/* width: 4px; */
/* height: 23px; */
/* background: var(--accent) */
/* } */
.widget ul {
  padding: 4px 9px 9px;
}
.widget li {
  padding: 6px 8px;
  border-radius: 5px;
}
.widget li:hover {
  background-color: rgba(165, 176, 187, .1);
}
.widget li.widlist {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  transition-duration: .25s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.widget li.widlist i {
  width: 105px;
  display: block;
  height: 70px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
  flex-shrink: 0;
}
.widget li.widlist i img {
  width: 100%;
  height: 70px
}
.widget img, .hotlist img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.widget li:hover img {
  transform: scale(1.15)
}
.widget li.widlist .item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}
.widget li.widlist h3 {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}
.widget li.widlist .sidefoot {
  padding-top: 3px;
  opacity: .6
}
#divContorPanel {
  padding-bottom: 10px;
}
#divContorPanel div {
  text-align: center;
}
#divContorPanel .cp-hello {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 0 10px 0;
  display: inline-block
}
#divContorPanel .cp-login a, #divContorPanel .cp-vrs a {
  text-align: center;
  line-height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 4px;
  padding: 4px 8px;
}
#divSearchPanel .widget-title {
  display: none;
}
#divSearchPanel form {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px 1px rgba(1, 28, 67, .15);
}
#divSearchPanel input[type="submit"] {
  border: 0;
  background: 0;
  color: #fff;
  outline: none;
  position: absolute;
  width: 29%;
  height: 46px;
  background: var(--accent);
  font-weight: bold;
  font-size: 15px;
}
#divSearchPanel input[type="text"] {
  border: 0;
  line-height: 46px;
  height: 46px;
  width: calc(72% - 20px);
  outline: none;
  display: inline-block;
  margin: 0 10px;
  border-radius: 0;
  background-color: #fff
}
#divArchives ul, #divNavBar ul, #divStatistics ul, #divCatalog ul, #divFavorites ul, #divLinkage ul, #divAuthors ul {
  display: flex;
  flex-wrap: wrap;
}
#divArchives li, #divNavBar li, #divStatistics li, #divCatalog li {
  width: 50%;
  overflow: hidden;
}
#divNavBar ul ul, #divCatalog ul ul {
  display: none
}
#divCalendar {
  padding: 10px;
  border-radius: 5px;
}
#divCalendar div {
  margin-bottom: 0;
}
#divCalendar table {
  width: 100%;
  border-collapse: collapse
}
#divCalendar caption {
  line-height: 36px;
}
#divCalendar caption a {
  font-size: 15px;
  color: #123
}
#divCalendar thead {
  background: #f6f7f8
}
#divCalendar th {
  height: 36px
}
#divCalendar td {
  height: 36px;
  text-align: center
}
#divCalendar td a {
  font-weight: 700;
  color: #123
}
#divCalendar td a:hover {
  color: #f63
}
#divTags ul {
  padding: 4px 11px 10px;
  overflow: hidden
}
#divTags li {
  float: left;
  padding: 0;
}
#divTags li:hover, #side-new-comment-item li:hover, #side-tui-article-item li:hover {
  background-color: unset
}
#divTags ul li a {
  display: block;
  color: #fff !important;
  background: #00c1d4;
  padding: 4px 12px;
  margin: 4px;
  font-size: 14px;
  border-radius: 100px;
  transition-duration: .25s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
#divTags ul li:nth-child(5n) a {
  background: #00d47d;
}
#divTags ul li:nth-child(5n + 1) a {
  background: #00c1d4;
}
#divTags ul li:nth-child(5n + 2) a {
  background: #008cd4;
}
#divTags ul li:nth-child(5n + 3) a {
  background: #00d4b2;
}
#divTags ul li:nth-child(5n + 4) a {
  background: #00d413;
}
#divTags ul li a:hover {
  opacity: .6
}
#side-new-comment-item li:last-child .widger-comment-plane {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0
}
#side-new-comment-item .widger-comment-plane {
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#side-new-comment-item .widger-comment-plane p {
  opacity: .6;
  font-size: 14px;
}
#side-new-comment-item .widger-comment-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap
}
#side-new-comment-item .widger-comment-user {
  display: flex
}
#side-new-comment-item .widger-avatar img {
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  width: 30px;
  height: 30px
}
#side-new-comment-item .widger-comment-name, #side-new-comment-item .widger-comment-time {
  margin-left: 5px;
  line-height: 30px
}
#side-new-comment-item .widger-comment-time {
  opacity: .6
}
#side-new-comment-item .widger-comment-excerpt {
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  background: #f7f7f7;
  border-radius: 3px;
}
#side-new-comment-item .widger-comment-excerpt:before {
  position: absolute;
  left: 10px;
  top: -10px;
  content: "";
  width: 0;
  height: 0;
  line-height: 0;
  border: 5px solid transparent;
  border-bottom-color: #f7f7f7
}
#side-new-comment-item .widger-comment-excerpt p {
  line-height: 1.5;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis
}
#side-tui-article-item li {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  width: 100%;
  transition-duration: .25s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
#side-tui-article-item li i {
  display: block;
  overflow: hidden;
  background-color: #f8f9fa;
  border-radius: 5px;
  width: 100%;
  height: 158px;
  margin: 0
}
#side-tui-article-item li i img {
  width: 100%;
  height: 100%;
}
#side-tui-article-item li .widget-footer {
  position: absolute;
  bottom: 6px;
  left: -2px;
  width: calc(100% - 16px);
  margin: 0 10px;
  padding: 15px;
  border-radius: 0 0 5px 5px;
  color: #fff;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .85));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .85));
}
#side-tui-article-item li .widget-footer h3 a {
  color: #fff;
  margin: 8px 0 0;
  max-height: 84px;
  line-height: 1.4;
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* 页脚 */
.site-footer {
  margin-top: 30px;
  background: #21242b;
  color: #a8b3bd
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px
}
.footer-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap:wrap;
  line-height: 1.2;
  padding: 10px 0 20px
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0
}
.footer-left .logo {
  color: #00e5ff
}
/* 文章 */
.article .post-meta {
  opacity: .6;
  font-size: 14px;
  margin-bottom: 15px
}
.post-cover {
  margin: 12px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow)
}
.post-content {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: var(--shadow)
}
/* 段落样式 */
.post-content p {
  margin: 0 0 15px;
  opacity: .9;
}
.post-content p:last-child {
  margin-bottom: 0;
}
/* 标题样式 */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 600;
  line-height: 1.4;
  margin: 20px 0 16px;
}
.post-content h1 {
  font-size: 2em;
}
.post-content h2 {
  font-size: 1.75em;
}
.post-content h3 {
  font-size: 1.5em;
}
.post-content h4 {
  font-size: 1.25em;
}
.post-content h5 {
  font-size: 1.1em;
}
.post-content h6 {
  font-size: 1em;
}
/* 引用样式 */
.post-content blockquote {
  margin: 16px 0;
  padding: 16px;
  background: #f9fbfc;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  font-style: italic;
}
.post-content blockquote p {
  margin: 0;
}
/* 列表样式 */
.post-content ul, .post-content ol {
  margin: 16px 0;
  padding-left: 20px;
}
.post-content ul {
  list-style-type: disc;
}
.post-content ol {
  list-style-type: decimal;
}
.post-content li {
  margin-bottom: 8px;
  list-style: disc
}
.post-content li:last-child {
  margin-bottom: 0;
}
.post-content ul ul, .post-content ol ol {
  margin: 8px 0;
}
/* 表格样式 */
.post-content table {
  width: 100%;
  margin: 16px 0;
}
.post-content th, .post-content td {
  padding: 12px;
}
.post-content th {
  background: #fafafa;
}
.post-content tr:nth-child(even) {
  background: #fafafa;
}
/* 图片样式 */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
}
/* 分割线样式 */
.post-content hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #f0f0f0;
}
/* 链接样式 */
.post-content a {
  color: var(--accent);
  transition: color 0.3s;
}
.post-content a:hover {
  color: #ff1a1a;
}
/* 强调样式 */
.post-content strong {
  font-weight: 600;
  color: #000;
}
.post-content em {
  font-style: italic;
  color: #666;
}
.post-tags {
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.post-tags a {
  background: #f0fbfc;
  color: #08707b;
  border: 1px solid #b7eaef;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 12px
}
.copyright {
  margin: 30px 0 0;
  line-height: 1.6;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid var(--muted);
  padding: 10px 15px;
  color: #999;
  word-wrap: break-word
}
.news-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 14px 0;
}
.news-nav-prev, .news-nav-next {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  box-shadow: var(--shadow)
}
.news-nav-prev a span, .news-nav-next a span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.news-nav-prev a h4, .news-nav-next a h4 {
  font-size: 18px;
  margin: 0;
}
.news-nav-next {
  text-align: right;
}
.related .card .thumb {
  padding-bottom: 50%;
}
.related h4 {
  -webkit-line-clamp: 1;
}
/* 留言 */
.comments .comment-form {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  box-shadow: var(--shadow)
}
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px
}
.form-row input, .comment-form textarea {
  width: 100%;
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 10px;
  background: #fff
}
.form-row input:focus, .comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 193, 212, 0.1);
}
.inpVerify {
  position: relative;
}
.inpVerify img.jz-code {
  position: absolute;
  right: 3px;
  bottom: 3px;
  height: 30px;
  width: auto;
}
.form-group {
  flex: 1;
}
.form-btn-group {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.btn-primary {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer
}
.cancel-btn {
  background: #fafafa;
  color: #666;
  border: 1px solid #f0f0f0;
}
.comment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.comment-item {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  margin-top: 20px
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: 0 0 36px;
  overflow: hidden
}
.comment-body {
  flex: 1
}
.comment-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px
}
.comment-meta{
  display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.comment-item .time,.commentIP {
opacity: .6;
  font-size: 12px
}
.reply-link {
  color: var(--accent);
  font-size: 12px;
  margin-left: auto;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.comment-item:hover .reply-link {
  opacity: 1;
  visibility: visible;
}
.children {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}
.children .comment-item, .comment-item .comment-item {
  background: #f9fbfc;
  border: 1px solid var(--muted);
  box-shadow: none;
  margin-top: 0
}
#go-to-top {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  border-radius: 5px;
  opacity: .8;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: rgba(10, 10, 10, 0.2);
  overflow: hidden;
  display: none;
  z-index: 999;
}
#go-to-top:hover {
  background: var(--accent);
  opacity: 1;
}
#go-to-top::before {
  font-family: icomoon;
  font-size: 20px;
  content: '\e93c';
  color: #fff;
}
#go-to-top.active {
  display: block
}
/* 自适应 */
@media (max-width: 960.1px) {
  .nav {
    display: none
  }
  .navico, .hamburger, .search-btn {
    display: inline-flex
  }
  .search_wrap {
    position: absolute;
    top: 155px;
    left: 0;
    right: 0;
    width: 90%;
    max-height: 0;
    overflow: hidden;
    z-index: 100;
    max-width: 1024px;
    margin: auto;
  }
  .search_wrap .search {
    width: 100%;
    border: none;
    height: 46px;
  }
  .search_wrap button {
    width: 34px;
    height: 46px;
  }
  .active .search_wrap {
    max-height: 78px;
    overflow: unset;
  }
  .fademask.active {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(95, 95, 95, .85);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
  }
  .hero-slider {
    font-size: 1.2rem
  }
  
  .card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }
  .card-list .meta {
    display: none
  }
  .main-col {
    margin-right: 0
  }
  .side-col {
    width: 100%;
    margin-left: 0
  }
  /* 最后一项是奇数 */
  .card-list li:last-child:nth-child(odd) {
    display: none;
  }
  /* 只有一项 */
  .card-list li:first-child:last-child {
    display: flex;
  }
  .post-row i {
    width: 28%
  }
  .news-navigation{ 
  
  grid-template-columns: 1fr;
  gap: 15px}
  
  .news-nav-next {
    text-align: left
}
}
@media (max-width: 767.9px) {
  .layout {
       margin-top: 15px
    }
	.section-title{margin-top: 5px}
  .post-row .content p, .card-body p {
    -webkit-line-clamp: 1
  }
  .post-row .content {
    padding: 10px
  }
  
  .mini-card {
    gap: 5px
	}
  
  .mini-card i {
    width: 45%;
	}

  .mini-card .thumb {
    padding-bottom: 75%;
}
  
  .post-row i {
    width: 33.33%
  }
  .post-row .thumb {
    padding-bottom: 87%;
  }
  .hero-slider {
    height: 180px
  }
  .swiper-button-next, .swiper-button-prev {
    top: calc(50% + 18px);
    width: 36px;
    height: 36px;
  }
  .hero-slider:hover .swiper-button-next {
    transform: translate(10px, -50%);
  }
  .hero-slider:hover .swiper-button-prev {
    transform: translate(-10px, -50%);
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
  }
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
	gap: 10px
  }
  .form-row {
    flex-direction: column
  }
  .card-body{
	  padding: 10px 12px;
  }
  
  .post-row .content h3,.card-body h3 {
    font-size: 17px;
  }
  .page-title {
  font-size: 1.75em;
}

.page-title.posttit {
  font-size: 1.65em;
}
  
  
}
@media (max-width: 390px) {
  .post-row .thumb {
    padding-bottom: 96%;
  }
}