@import 'iconfont.css';

/* ============================================
   新闻风格主题 - 灰色主调 + 红色点缀
   模块清晰 | 细节极致精细
   ============================================ */

/* ---------- 基础重置与变量 ---------- */
:root {
  --news-bg: #f0f1f3;
  --news-card: #ffffff;
  --news-text: #1a1a1a;
  --news-text-secondary: #555555;
  --news-text-muted: #888888;
  --news-border: #e8e9eb;
  --news-border-light: #f0f0f0;
  --news-accent: #c41e24;
  --news-accent-hover: #a3181e;
  --news-dark: #1a1a1a;
  --news-dark-secondary: #2d2d2d;
  --news-gray: #666666;
  --news-light-gray: #999999;
  --news-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --news-shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.06);
  --news-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --news-radius: 4px;
  --news-radius-sm: 2px;
}

* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  line-height: 1.6;
  background: var(--news-bg);
  color: var(--news-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: var(--news-transition);
  -moz-transition: var(--news-transition);
  -ms-transition: var(--news-transition);
  -o-transition: var(--news-transition);
  transition: var(--news-transition);
}

a:hover {
  color: var(--news-accent);
}

ul, li, p, h1, h2, h3 {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  color: var(--news-text);
  margin: 0;
}

/* ---------- 滚动条美化 ---------- */
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a0a0a0 0%, #808080 100%);
}

body::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #808080 0%, #606060 100%);
}

/* ---------- 工具类 ---------- */
.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background: #000;
  opacity: .5;
  -webkit-opacity: .5;
  z-index: 100;
}

.red {
  color: var(--news-accent);
}

.clear {
  clear: both;
}

.clearfix {
  clear: both;
}

/* ---------- 动画 ---------- */
@keyframes mymove {
  from { -webkit-transform: rotate(45deg); transform: rotate(45deg); }
  to { -webkit-transform: rotate(225deg); transform: rotate(225deg); }
}

@-webkit-keyframes mymove {
  from { -webkit-transform: rotate(45deg); transform: rotate(45deg); }
  to { -webkit-transform: rotate(225deg); transform: rotate(225deg); }
}

@keyframes mymovex {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes mymovex {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes fade-zoom-in {
  0% { opacity: 0; -webkit-transform: scale(1.1); transform: scale(1.1); }
  100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

@-o-keyframes fade-zoom-in {
  0% { opacity: 0; -o-transform: scale(1.1); transform: scale(1.1); }
  100% { opacity: 1; -o-transform: scale(1); transform: scale(1); }
}

@keyframes fade-zoom-in {
  0% { opacity: 0; -webkit-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
  100% { opacity: 1; -webkit-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
}

/* ---------- 布局 ---------- */
.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* ---------- 返回顶部 ---------- */
.backtop {
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  background: var(--news-dark);
  opacity: .6;
  position: fixed;
  right: 24px;
  bottom: 60px;
  cursor: pointer;
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  z-index: 999;
}

.backtop i {
  color: #fff;
  font-size: 18px;
}

.backtop:hover {
  background: var(--news-accent);
  opacity: 1;
  box-shadow: var(--news-shadow-hover);
}

/* ---------- 顶部导航 ---------- */
.topmenu {
  height: 70px;
  background: var(--news-card);
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--news-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.topmenu .wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  width: 25%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  max-width: 100%;
}

.menu {
  width: 75%;
}

.closex {
  display: none;
}

.search {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 20px;
  top: 13px;
  text-align: center;
  line-height: 44px;
  border-radius: var(--news-radius);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.search i {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  color: var(--news-dark);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.search:hover {
  background: var(--news-bg);
}

.search:hover i {
  color: var(--news-accent);
}

/* ---------- 搜索框 ---------- */
.search-box {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.98);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  font-size: 16px;
  -webkit-animation: fade-zoom-in .3s forwards;
  -o-animation: fade-zoom-in .3s forwards;
  animation: fade-zoom-in .3s forwards;
  backdrop-filter: blur(10px);
}

.search-close {
  width: 1000px;
  height: 60px;
  margin: 0 auto;
  padding: 100px 0 0;
}

.search-close i {
  float: right;
  font-size: 36px;
  color: var(--news-text-secondary);
  cursor: pointer;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.search-close i:hover {
  color: var(--news-accent);
  animation: mymovex .5s 1;
  -webkit-animation: mymovex .5s 1;
}

dl.se {
  overflow: hidden;
}

dl.se dt {
  width: 500px;
  float: left;
}

dl.se dt input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 2px solid var(--news-border);
  border-radius: var(--news-radius) 0 0 var(--news-radius);
  font-size: 16px;
  color: var(--news-text);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  outline: none;
}

dl.se dt input:focus {
  border-color: var(--news-accent);
}

dl.se dd button {
  width: 100%;
  border: 0;
  background: var(--news-dark);
  color: #fff;
  height: 54px;
  border-radius: 0 var(--news-radius) var(--news-radius) 0;
  cursor: pointer;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

dl.se dd button:hover {
  background: var(--news-accent);
}

dl.se dd {
  width: 100px;
  float: right;
}

.search-con {
  width: 600px;
  margin: 0 auto;
  padding-top: 20px;
}

.search-tips {
  line-height: 50px;
  padding-top: 30px;
  color: var(--news-text-secondary);
  font-weight: 600;
  font-size: 15px;
}

.search-as {
  line-height: 34px;
}

.search-as a {
  padding: 0 18px;
  border: 1px solid var(--news-border);
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  border-radius: 30px;
  color: var(--news-text-muted);
  font-size: 13px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.search-as a:hover {
  color: var(--news-accent);
  border-color: var(--news-accent);
  background: rgba(196, 30, 36, 0.04);
}

/* ---------- 导航菜单 ---------- */
.wrap_nav#nav {
  display: flex;
  align-items: center;
}

.yiji {
  position: relative;
  z-index: 10;
}

.yiji > .yiji-hd > a {
  color: var(--news-text);
  text-decoration: none;
  line-height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
}

.yiji > .yiji-hd > a em {
  font-style: normal;
}

.yiji > .yiji-hd > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--news-accent);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  transform: translateX(-50%);
}

.yiji > .yiji-hd > a:hover,
.yiji.current > .yiji-hd > a {
  color: var(--news-accent);
  text-decoration: none;
}

.yiji > .yiji-hd > a:hover::after,
.yiji.current > .yiji-hd > a::after {
  width: 60%;
}

/* 下拉菜单 */
.libox {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--news-card);
  box-shadow: var(--news-shadow-hover);
  border-top: 2px solid var(--news-accent);
  border-radius: 0 0 var(--news-radius) var(--news-radius);
  overflow: hidden;
  min-width: 160px;
}

.yiji:hover .libox {
  display: block;
}

.libox a {
  display: block;
  line-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  color: var(--news-text);
  border-bottom: 1px solid var(--news-border-light);
  background: var(--news-card);
  white-space: nowrap;
}

.libox a:last-child {
  border-bottom: none;
}

.libox a:hover {
  background: var(--news-bg);
  color: var(--news-accent);
}

/* 桌面端隐藏展开按钮 */
.toggle-sub {
  display: none;
}

/* ---------- 主体区域 ---------- */
.main {
  clear: both;
  padding: 110px 0 0;
  overflow: hidden;
}

.subbody {
  padding: 110px 0 0;
}

/* ---------- 轮播图 ---------- */
.banner {
  width: 66.666666%;
  float: left;
  padding: 0 15px;
}

@media screen and (min-width: 640px) {
  .banner { height: 430px; }
}

@media screen and (max-width: 640px) {
  .banner { height: 200px; }
}

.banner-info {
  position: absolute;
  z-index: 12;
}

.swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--news-accent);
}

.swiper-slide {
  float: left;
  width: 100%;
  height: 430px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: auto 430px;
  border-radius: var(--news-radius);
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
  opacity: .7;
  width: 40px;
  height: 60px;
  background-size: 40px 60px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.swiper-button-prev {
  background: url(../images/l1.png) no-repeat center;
  left: 10px;
}

.swiper-button-next {
  background: url(../images/r1.png) no-repeat center;
  right: 10px;
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
  display: block;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

/* ---------- 头条新闻 ---------- */
.top-news {
  width: 33.333333%;
  float: left;
  padding: 0 15px;
}

.top-news2 {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.top-news-box {
  background: var(--news-card);
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  border: 1px solid var(--news-border);
  overflow: hidden;
}

.top-news h2,
.top-news2 h2 {
  font-size: 18px;
  padding: 0 16px;
  font-weight: 600;
  line-height: 50px;
  border-top: 3px solid var(--news-accent);
  color: var(--news-text);
  letter-spacing: 0.5px;
  position: relative;
}

.top-news h2::before,
.top-news2 h2::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 4px;
  height: 18px;
  background: var(--news-accent);
  border-radius: 2px;
}

.top-news h2 {
  padding-left: 28px;
}

.top-img {
  padding: 0;
  overflow: hidden;
}

.top-img img {
  max-width: 100%;
  display: block;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.top-img:hover img {
  transform: scale(1.03);
}

ul.topnews li a {
  line-height: 42px;
  display: block;
  height: 42px;
  overflow: hidden;
  padding: 0 16px;
  font-size: 14px;
  color: var(--news-text);
  border-bottom: 1px solid var(--news-border-light);
  position: relative;
  padding-left: 36px;
}

ul.topnews li:last-child a {
  border-bottom: none;
}

ul.topnews li a:hover {
  background: var(--news-bg);
  color: var(--news-accent);
}

ul.topnews li a i {
  font-size: 10px;
  margin-right: 12px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- 热点新闻 ---------- */
.hotnews {
  clear: both;
  padding-top: 24px;
  overflow: hidden;
}

.hotnewlist {
  width: 33.333333%;
  float: left;
  height: 200px;
  padding: 0 15px;
}

.hotdiv {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-table;
  overflow: hidden;
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
}

.overlay {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(270deg, rgba(0,0,0,0.01) 2%, rgba(0,0,0,0.85) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,0.01) 2%, rgba(0,0,0,0.85) 100%);
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
  position: absolute;
  border-radius: var(--news-radius);
}

.hotnewlist:hover .overlay {
  opacity: .5;
}

.hotnewlist:hover .hotdiv {
  box-shadow: var(--news-shadow-hover);
}

.title {
  position: absolute;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  bottom: 0;
  padding: 20px 18px;
  left: 0;
  right: 0;
}

.title span {
  padding: 4px 10px;
  background-color: var(--news-accent);
  color: #fff;
  font-size: 12px;
  margin: 0 3px 6px 0;
  border-radius: var(--news-radius-sm);
  display: inline-block;
  text-shadow: none;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.title h3 {
  color: #fff;
  display: block;
  font-size: 15px;
  max-height: 48px;
  overflow: hidden;
  font-weight: 500;
  line-height: 1.5;
}

.swiper-slide .title h3.f20 {
  font-size: 24px;
  font-weight: 600;
}

.swiper-slide .title {
  padding: 0 10px 30px 18px;
}

/* ---------- 主体内容区 ---------- */
.mainbody {
  clear: both;
  padding-top: 40px;
  overflow: hidden;
}

.left {
  width: 66.666666%;
  float: left;
  padding: 0 15px;
}

.right {
  width: 33.333333%;
  float: right;
  padding: 0 15px;
}

/* ---------- 文章卡片 ---------- */
.items {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 24px;
  background: var(--news-card);
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  border: 1px solid var(--news-border);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.items:hover {
  box-shadow: var(--news-shadow-hover);
  transform: translateY(-2px);
}

.content-box {
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.posts-gallery-img {
  position: relative;
  float: left;
  width: 232px;
  max-height: 174px;
  height: auto;
  overflow: hidden;
  border-radius: var(--news-radius-sm);
}

.posts-gallery-img img {
  width: 100%;
  min-height: 174px;
  transition: .5s;
  display: block;
}

.posts-gallery-img img:hover {
  transform: scale(1.08);
}

.posts-gallery-content {
  margin-left: 256px;
}

.posts-gallery-content h2 {
  position: relative;
  margin: 0 0 16px;
  font-size: 20px;
  max-height: 56px;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.4;
}

.posts-gallery-content h2 a {
  color: var(--news-text);
}

.posts-gallery-content h2 a:hover {
  color: var(--news-accent);
}

.posts-gallery-content .posts-gallery-text {
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--news-text-secondary);
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.posts-default-info {
  position: relative;
  display: inline-block;
}

.posts-gallery-info {
  position: absolute;
  bottom: 28px;
}

.posts-default-info ul li {
  font-size: 12px;
  letter-spacing: 0;
  float: left;
  padding: 0;
  margin: 0 14px 0 0;
  color: var(--news-light-gray);
  position: relative;
  line-height: 1.5;
}

.posts-default-info ul li a {
  color: var(--news-light-gray);
}

.posts-default-info ul li a:hover {
  color: var(--news-accent);
}

.posts-default-info ul li.ico-cat i,
.posts-default-info ul li.ico-time i,
.posts-default-info ul li.ico-eye i {
  font-size: 13px;
  margin-right: 4px;
}

.posts-default-info ul li.ico-cat a {
  color: var(--news-accent);
  font-weight: 500;
}

/* ---------- 分页 ---------- */
.post-nav {
  padding: 0 10px;
  margin-bottom: 15px;
}

.post-nav span {
  cursor: pointer;
  position: relative;
  background: var(--news-card);
  display: inline-block;
  border-radius: 30px;
  padding: 10px 22px;
  margin-top: 10px;
  margin-right: 20px;
  margin-bottom: 10px;
  border: 1px solid var(--news-border);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  font-size: 14px;
  color: var(--news-text-secondary);
  box-shadow: var(--news-shadow);
}

.post-nav span.current,
.post-nav span:hover {
  background: var(--news-dark);
  color: #fff;
  border-color: var(--news-dark);
}

.morebtn {
  text-align: center;
  clear: both;
  padding: 30px 0;
}

.morebtn button {
  cursor: pointer;
  border: 0;
  width: 150px;
  background: var(--news-dark);
  border-radius: var(--news-radius);
  font-size: 15px;
  color: #fff;
  height: 46px;
  line-height: 46px;
  display: inline-block;
  margin: 0 8px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  letter-spacing: 1px;
  font-weight: 500;
}

.morebtn button:hover {
  background: var(--news-accent);
  box-shadow: 0 4px 12px rgba(196, 30, 36, 0.3);
}

/* ---------- 页脚 ---------- */
.footer {
  width: 100%;
  position: relative;
  clear: both;
  background-color: var(--news-dark);
  margin-top: 40px;
  padding: 40px 0 30px;
  border-top: 3px solid var(--news-accent);
}

.footer .footer-copyright {
  float: left;
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-copyright a {
  color: #aaa;
}

.footer .footer-copyright a:hover {
  color: #fff;
}

.footer .footer-social {
  float: right;
  margin-top: 0;
  position: relative;
}

.footer .footer-social a {
  font-size: 20px;
  margin-left: 10px;
}

.footer .footer-social a:first-child {
  margin-left: 0;
}

.footer .copyright-footer p {
  color: #777;
  font-size: 13px;
}

.footer .copyright-footer a {
  color: #999;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.footer .copyright-footer a:hover {
  color: #fff;
}

.footer .links-footer {
  font-size: 12px;
  color: #444;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

.footer .links-footer a,
.footer .links-footer span {
  color: #666;
  line-height: 1.4;
  margin: 0 6px 4px 0;
  font-size: 12px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.footer .links-footer a:hover {
  color: #aaa;
}

.footer .nav-footer {
  margin-bottom: 20px;
}

.footer .nav-footer a {
  color: #ccc;
  margin-right: 14px;
  font-size: 14px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  position: relative;
}

.footer .nav-footer a:hover {
  color: var(--news-accent);
}

.footer .footer-box .nav-footer span {
  margin: 0 10px;
}

.social-footer a i {
  font-size: 18px;
  color: #fff;
}

.social-footer {
  float: right;
}

.social-footer a {
  position: relative;
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--news-dark-secondary);
  text-align: center;
  border-radius: 50%;
  margin: 0 6px;
  color: #fff;
  font-size: 16px;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.social-footer a i {
  color: #aaa;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.social-footer a:hover i {
  color: #fff;
}

.social-footer a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-footer a.ketangdibu:hover {
  background-color: #f74864;
}

.social-footer a.taobaodibu:hover {
  background-color: #ff4200;
}

.social-footer a.mailii:hover {
  background-color: #e64c4c;
}

.social-footer a.wangxiaodibu:hover {
  background-color: #00c5ff;
}

.social-footer a.wxii:hover {
  background-color: #35a999;
}

/* ---------- 侧边栏组件 ---------- */
.widget {
  margin-bottom: 24px;
  clear: both;
  position: relative;
  overflow: hidden;
  background: var(--news-card);
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  border: 1px solid var(--news-border);
  padding: 24px;
}

.widget h3 {
  font-size: 16px;
  color: var(--news-text);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 0.5px;
}

.widget h3::after {
  content: "";
  background-color: var(--news-accent);
  left: 0;
  width: 36px;
  height: 3px;
  bottom: -1px;
  position: absolute;
  border-radius: 2px;
}

.widget h3 span {
  position: relative;
}

.widget_ad {
  margin-bottom: 24px;
  clear: both;
  position: relative;
  overflow: hidden;
  background: var(--news-card);
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  border: 1px solid var(--news-border);
}

/* ---------- 最近文章 ---------- */
.recent-posts-widget li {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--news-border-light);
}

.recent-posts-widget li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-posts-widget li .recent-posts-img {
  float: left;
  width: 100px;
  height: auto;
  max-height: 75px;
  position: relative;
  overflow: hidden;
  border-radius: var(--news-radius-sm);
}

.recent-posts-widget li .recent-posts-img img {
  width: 100px;
  height: auto;
  display: block;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.recent-posts-widget li:hover .recent-posts-img img {
  transform: scale(1.05);
}

.recent-posts-widget li .recent-posts-title {
  margin-left: 115px;
}

.recent-posts-widget li .recent-posts-title h4 {
  font-size: 14px;
  height: 40px;
  overflow: hidden;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.45;
}

.recent-posts-widget li .recent-posts-title h4 a {
  color: var(--news-text);
}

.recent-posts-widget li .recent-posts-title h4 a:hover {
  color: var(--news-accent);
}

.recent-posts-widget li .recent-posts-title span {
  font-size: 12px;
  color: var(--news-light-gray);
}

.recent-posts-widget li .recent-posts-title span i {
  margin-right: 4px;
}

/* ---------- 标签 ---------- */
.widge_tags a {
  text-transform: uppercase;
  -webkit-transition: var(--news-transition);
  -o-transition: var(--news-transition);
  transition: var(--news-transition);
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 20px;
  padding: 5px 14px;
  margin: 0 8px 8px 0;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-sm);
  color: var(--news-text-secondary);
  background-color: var(--news-card);
}

.widge_tags a:hover {
  color: #fff;
  background: var(--news-accent);
  border-color: var(--news-accent);
}

/* ---------- 社交链接 ---------- */
.social-widget-link {
  position: relative;
  margin-bottom: 10px;
  display: block;
  font-size: 13px;
  background: var(--news-card);
  color: var(--news-text-secondary);
  line-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.social-widget-link:hover {
  border-color: var(--news-accent);
  color: var(--news-accent);
}

.social-widget-link-count i {
  margin-right: 9px;
  font-size: 17px;
  vertical-align: middle;
}

.social-widget-link-title {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 100px;
  text-align: center;
  background: rgba(0,0,0,0.04);
  transition: width .3s;
  border-radius: 0 var(--news-radius) var(--news-radius) 0;
}

.social-widget-link:hover .social-widget-link-title {
  width: 116px;
}

.social-widget-link a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ---------- 热门文章 ---------- */
ul.hot-article li {
  position: relative;
  height: 175px;
  margin-bottom: 24px;
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: var(--news-shadow);
}

ul.hot-article li img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

ul.hot-article li:hover img {
  transform: scale(1.05);
}

ul.hot-article li .tits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 15px 12px;
}

ul.hot-article li .tits h4 a {
  color: #f4f4f4;
  line-height: 24px;
  font-size: 14px;
  font-weight: 500;
}

ul.hot-article li a.img .icon-fenxiang {
  font-size: 40px;
  position: absolute;
  z-index: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  -webkit-transition: opacity .35s, -webkit-transform .35s;
  transition: opacity .35s, transform .35s;
}

ul.hot-article li:hover a.img .icon-fenxiang {
  opacity: 1;
}

ul.hot-article li:hover .tits {
  opacity: 0;
}

/* ---------- 微信弹窗 ---------- */
.f-weixin-dropdown {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9998;
  display: none;
  -webkit-animation: fade-zoom-in .3s forwards;
  -o-animation: fade-zoom-in .3s forwards;
  animation: fade-zoom-in .3s forwards;
  -webkit-backface-visibility: hidden;
}

.f-weixin-dropdown .qcode img {
  width: 180px;
  height: auto;
  border-radius: var(--news-radius);
}

.f-weixin-dropdown.is-visible {
  display: block;
}

.f-weixin-dropdown .tooltip-weixin-inner {
  max-width: 220px;
  padding: 0 20px;
  margin: auto;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  height: 280px;
  top: -150px;
  bottom: 0;
}

.f-weixin-dropdown .tooltip-weixin-inner h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.3;
}

.f-weixin-dropdown .close_tip {
  position: fixed;
  z-index: 99999;
  top: 80px;
  right: 80px;
  color: #888;
  font-size: 32px;
  cursor: pointer;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.f-weixin-dropdown .close_tip:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* ---------- 广告位 ---------- */
.topad {
  padding: 0 15px;
  margin-bottom: 15px;
}

.topad img {
  width: 100%;
  height: auto;
  border-radius: var(--news-radius);
}

.left-ad {
  margin-bottom: 15px;
}

.left-ad img {
  width: 100%;
  height: auto;
  border-radius: var(--news-radius);
}

/* ---------- 文章详情页 ---------- */
.article-con {
  padding: 30px;
  background: var(--news-card);
  border-radius: var(--news-radius);
  box-shadow: var(--news-shadow);
  border: 1px solid var(--news-border);
  margin-bottom: 24px;
}

.postion {
  line-height: 30px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--news-text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--news-border-light);
}

.postion a {
  color: var(--news-text-secondary);
}

.postion a:hover {
  color: var(--news-accent);
}

.postion i {
  font-size: 10px;
  padding: 0 4px;
  color: var(--news-light-gray);
}

.art-con h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--news-border);
  color: var(--news-text);
}

.art-con h1::after {
  content: "";
  background-color: var(--news-accent);
  left: 0;
  width: 50px;
  height: 3px;
  bottom: -2px;
  position: absolute;
  border-radius: 2px;
}

.art-txt p a {
  text-decoration: none;
  border-bottom: 1px solid var(--news-text-secondary);
  padding-bottom: 2px;
  color: var(--news-accent);
}

.art-txt {
  padding: 10px 0;
  line-height: 1.9;
  font-size: 15px;
  color: var(--news-text-secondary);
}

.art-txt p {
  margin-bottom: 16px;
}

.art-txt img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--news-radius);
}

.yinyong {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--news-accent);
  background: var(--news-bg);
  border-radius: 0 var(--news-radius) var(--news-radius) 0;
}

.yinyong quote {
  font-size: 18px;
  color: var(--news-text-muted);
  display: inline-block;
  font-style: italic;
}

.yinyong quote p {
  margin-bottom: 0 !important;
}

.art-txt p a.download-button {
  color: #fff;
  background-color: var(--news-accent);
  border: 2px solid var(--news-accent);
  margin-right: 20px;
  text-indent: 0;
  padding: 8px 24px;
  border-radius: var(--news-radius);
  display: inline-block;
  font-weight: 500;
}

.art-txt p a.download-button:hover {
  color: var(--news-accent);
  background-color: #fff;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.42857143;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: var(--news-radius);
  -webkit-transition: var(--news-transition);
  -o-transition: var(--news-transition);
  transition: var(--news-transition);
}

.art-txt a.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 28px;
  font-size: 14px;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 10px 0 20px;
  margin-right: 20px;
  background: var(--news-dark);
  color: #fff;
  border-radius: var(--news-radius);
}

.art-txt a.btn:hover {
  background: var(--news-accent);
  color: #fff;
}

.art-txt a.btn i {
  margin-right: 8px;
}

.ad01 {
  clear: both;
  padding: 10px 0 0;
  overflow: hidden;
}

.ad01_1 {
  float: left;
  width: 336px;
}

.ad01_2 {
  float: right;
  width: 336px;
}

/* ---------- 分享区域 ---------- */
.shareBox {
  text-align: center;
  padding: 30px 0 35px;
  position: relative;
  border-top: 1px solid var(--news-border-light);
  margin-top: 20px;
}

.shareBox p {
  padding-bottom: 0;
}

.shareBox .sharebtn {
  width: 130px;
  height: 42px;
  line-height: 40px;
  border: 1px solid var(--news-accent);
  box-shadow: none;
  background: #fff;
  display: inline-block;
  text-align: center;
  margin: 0 6px;
  color: var(--news-accent);
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--news-radius);
  -webkit-transition: var(--news-transition);
  -o-transition: var(--news-transition);
  transition: var(--news-transition);
  font-weight: 500;
}

.shareBox .like .icon-heart-filled {
  display: none;
  margin-top: -3px;
}

.shareBox .like.current {
  background-color: var(--news-accent);
  color: #fff;
}

.shareBox .like i {
  vertical-align: middle;
  display: inline-block;
  margin-top: -3px;
}

.shareBox .like.current .icon-heart-filled {
  display: inline-block;
  -webkit-animation: waver .3s linear 1;
  -moz-animation: waver .3s linear 1;
  -o-animation: waver .3s linear 1;
  animation: waver .3s linear 1;
}

.shareBox .like.current .icon-heart {
  display: none;
}

.panel-reward {
  position: relative;
  padding: 30px 0 0;
  display: none;
}

.panel-reward ul li {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  padding: 5px;
  border: 1px solid #87ddff;
  border-radius: var(--news-radius);
}

.panel-reward ul .weixinpay {
  border-color: #51c332;
}

.panel-reward ul li img {
  width: 120px;
  height: auto;
  border-radius: var(--news-radius-sm);
}

.panel-reward ul li b {
  display: block;
  font-weight: 400;
  margin-top: 3px;
  font-size: 13px;
}

.action-share {
  padding: 30px 0 0;
  display: none;
}

.bdsharebuttonbox {
  margin: 0 auto;
  width: 190px;
}

.shareBox .J_showAllShareBtn {
  color: var(--news-accent);
  border-color: var(--news-accent);
}

.shareBox .sharebtn:hover {
  background-color: var(--news-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 30, 36, 0.25);
}

.shareBox .publicity-btn {
  background-color: var(--news-dark);
  color: #fff;
  border-color: var(--news-dark);
}

.shareBox .publicity-btn:hover {
  background-color: var(--news-dark-secondary);
  border-color: var(--news-dark-secondary);
}

.shareBox .pay-author {
  border-color: #51c332;
  color: #51c332;
}

.shareBox .pay-author:hover {
  background: #51c332;
  color: #fff;
}

/* ---------- 上下页 ---------- */
.pronext {
  clear: both;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--news-border-light);
}

.propage, .nextpage {
  width: 50%;
  float: left;
  line-height: 26px;
}

.propage span, .nextpage span {
  color: var(--news-text-muted);
}

.propage a, .nextpage a {
  color: var(--news-text-secondary);
  font-weight: 500;
}

.propage a:hover, .nextpage a:hover {
  color: var(--news-accent);
}

.nextpage {
  text-align: right;
  border-left: 1px solid var(--news-border-light);
}

/* ---------- 副标题 ---------- */
h3.subtitle {
  font-size: 20px;
  color: var(--news-text);
  font-weight: 600;
  margin: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  padding-bottom: 14px;
  position: relative;
  letter-spacing: 0.5px;
}

h3.subtitle::after {
  content: "";
  background-color: var(--news-accent);
  left: 0;
  width: 36px;
  height: 3px;
  bottom: -1px;
  position: absolute;
  border-radius: 2px;
}

h3.subtitle em {
  font-style: normal;
  color: var(--news-text-muted);
  font-weight: 400;
}

ul.sub-news {
  overflow: hidden;
  margin-left: -10px;
}

ul.sub-news li {
  width: 50%;
  float: left;
  padding-right: 10px;
}

ul.sub-news li a {
  line-height: 40px;
  display: block;
  height: 40px;
  overflow: hidden;
  padding: 0 12px;
  font-size: 14px;
  color: var(--news-text);
  border-bottom: 1px solid var(--news-border-light);
  position: relative;
  padding-left: 24px;
}

ul.sub-news li a::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--news-border);
  border-radius: 50%;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

ul.sub-news li a:hover {
  background: var(--news-bg);
  color: var(--news-accent);
}

ul.sub-news li a:hover::before {
  background: var(--news-accent);
}

ul.sub-news li a i {
  font-size: 10px;
  margin-right: 10px;
  float: left;
  font-weight: 700;
}

/* ---------- 分页 ---------- */
.pages {
  clear: both;
  margin: 20px auto;
  padding-top: 10px;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
}

.pages ul li {
  display: inline-block;
  border: 1px solid var(--news-border);
  padding: 6px 16px;
  margin: 0 3px;
  line-height: 24px;
  background: var(--news-card);
  color: var(--news-text-muted);
  border-radius: var(--news-radius);
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
  cursor: pointer;
}

.pages ul li:hover {
  background: var(--news-accent);
  color: #fff;
  border-color: var(--news-accent);
  box-shadow: 0 2px 8px rgba(196, 30, 36, 0.25);
}

.pages ul li:hover a {
  color: #fff;
}

.pages ul li.thisclass {
  display: inline-block;
  border: 1px solid var(--news-accent);
  padding: 6px 16px;
  margin: 0 3px;
  background: var(--news-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196, 30, 36, 0.25);
}

.pages ul li.thisclass a {
  color: #fff;
}

.pages ul li a {
  display: block;
  color: var(--news-text-muted);
}

.pages ul li a:hover {
  color: #fff;
}

/* ---------- 标签 ---------- */
.tags .tags-title {
  height: 40px;
  line-height: 40px;
}

.tags .tags-title h2 {
  color: var(--news-text);
  font-weight: 600;
  font-size: 16px;
}

.tags ul {
  padding: 10px 0 20px;
  overflow: hidden;
}

.tags ul li {
  float: left;
  padding: 0 5px 0 0;
  list-style: none;
}

.tags ul li a {
  text-transform: uppercase;
  -webkit-transition: var(--news-transition);
  -o-transition: var(--news-transition);
  transition: var(--news-transition);
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 22px;
  padding: 6px 16px;
  margin: 0 6px 8px 0;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius-sm);
  color: var(--news-text-secondary);
  background-color: var(--news-card);
}

.tags ul li a:hover {
  color: #fff;
  background: var(--news-accent);
  border-color: var(--news-accent);
}

/* ---------- 其他组件 ---------- */
.post-style-tips {
  position: absolute;
  bottom: 28px;
  right: 28px;
}

.post-style-tips a {
  padding: 6px 12px;
  line-height: 1;
  color: #fff;
  background: var(--news-accent);
  display: inline-block;
  font-size: 12px;
  border-radius: var(--news-radius-sm);
  font-weight: 500;
}

.post-style-tips span a:hover {
  background: var(--news-dark);
}

.post-images-item {
  margin-bottom: 20px;
}

.post-images-item ul {
  overflow: hidden;
  margin-left: -10px;
}

.post-images-item ul li {
  float: left;
  width: 33.3333%;
}

.post-images-item ul li .overlay {
  opacity: 0;
}

.post-images-item ul li a:hover .overlay {
  opacity: .3;
}

.post-images-item ul li .image-item {
  margin-left: 10px;
  max-height: 174px;
  position: relative;
  overflow: hidden;
  border-radius: var(--news-radius-sm);
}

.post-images-item ul li a img {
  width: 100%;
  height: auto;
  min-height: 174px;
  display: block;
}

.post-entry-categories {
  margin-bottom: 15px;
}

.post-entry-categories a {
  padding: 4px 12px;
  background-color: var(--news-dark);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 5px 5px 0;
  border-radius: var(--news-radius-sm);
  display: inline-block;
  -webkit-transition: var(--news-transition);
  transition: var(--news-transition);
}

.post-entry-categories a:nth-child(5n) {
  background-color: var(--news-dark-secondary);
}

.post-entry-categories a:nth-child(5n+1) {
  background-color: var(--news-accent);
}

.post-entry-categories a:nth-child(5n+2) {
  background-color: #666;
}

.post-entry-categories a:nth-child(5n+3) {
  background-color: #999;
}

.post-entry-categories a:nth-child(5n+4) {
  background-color: #333;
}

.post-entry-categories a:hover {
  background-color: var(--news-accent);
  color: #fff;
  transform: translateY(-1px);
}

.posts-default-title {
  position: relative;
  margin: 0 0 30px;
}

.posts-default-title h2 {
  position: relative;
  font-size: 22px;
  margin: 0 0 25px;
  padding: 0 0 20px;
}

.posts-default-title h2::after {
  content: "";
  background-color: var(--news-accent);
  left: 0;
  width: 50px;
  height: 3px;
  bottom: -2px;
  position: absolute;
  border-radius: 2px;
}

/* ============================================
   响应式适配
   ============================================ */

@media screen and (max-width: 1100px) {
  .wrap {
    max-width: 760px;
  }

  .right, .top-news {
    width: 100%;
    margin-top: 20px;
  }

  .left, .banner {
    width: 100%;
  }

  .left {
    padding: 0 5px;
  }

  .mainbody {
    padding-top: 10px;
  }

  .topmenu {
    height: 110px;
  }

  .logo {
    width: auto;
    height: 110px;
    margin: 0 auto;
    text-align: center;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    pointer-events: none;
  }

  .logo a,
  .logo img {
    pointer-events: auto;
  }

  .logo img {
    height: 44px;
    width: auto;
  }

  .search {
    top: 33px;
  }

  .menu {
    left: -100%;
    width: 70%;
    background: var(--news-card);
    position: fixed;
    top: 0;
    height: 100%;
    margin: 0;
    padding: 10px;
    z-index: 101;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }

  #nav {
    display: none;
    width: 100%;
  }

  .wrap_nav#nav {
    display: block;
  }

  #mobilemenu {
    position: absolute;
    width: 36px;
    top: 37px;
    height: 36px;
    left: 8px;
    z-index: 20;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: block;
  }

  #mobilemenu::before,
  #mobilemenu::after {
    content: '';
    position: absolute;
    left: 5px;
    right: 5px;
    height: 2px;
    background: var(--news-dark);
  }

  #mobilemenu::before {
    top: 9px;
  }

  #mobilemenu::after {
    bottom: 9px;
  }

  #mobilemenu span {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--news-dark);
  }

  .banner {
    padding: 0 5px;
  }

  .swiper-slide {
    height: 250px;
  }

  .hotnews {
    padding-top: 0;
  }

  .hotnewlist {
    height: 160px;
    padding: 0 5px;
  }

  .items {
    margin-bottom: 12px;
  }

  .content-box {
    padding: 20px 16px;
  }

  .post-nav {
    position: relative;
    margin-bottom: 0;
    box-shadow: none;
    background: var(--news-card);
    height: 45px;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    -webkit-box-pack: justify;
    padding: 0;
    border-bottom: 1px solid var(--news-border);
  }

  .post-nav::after {
    display: none;
  }

  .post-nav span {
    position: relative;
    padding: 0;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
    margin: 0 20px 0 15px;
    color: var(--news-text-muted);
    border-width: 0;
    background: none;
  }

  .post-nav span.current,
  .post-nav span:hover {
    background: 0 0;
    color: var(--news-text);
    border-width: 0;
  }

  .post-nav span.current::after {
    content: "";
    background-color: var(--news-accent);
    left: 0;
    width: 100%;
    height: 2px;
    bottom: 0;
    position: absolute;
    z-index: 1;
  }

  .footer {
    margin-top: 30px;
    padding: 30px 0;
  }

  .social-footer {
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .social-footer a {
    float: none;
    display: inline-block;
  }

  .links-footer, .copyright-footer {
    text-align: center;
  }

  .nav-footer {
    clear: both;
    text-align: center;
  }

  .search-close {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding: 30px 50px 0 0;
  }

  .postion, .topad {
    display: none;
  }

  .subbody {
    padding-top: 120px;
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    max-width: 100%;
    padding: 0 12px;
  }

  .right, .top-news {
    margin-top: 16px;
    width: 100%;
  }

  .left, .banner {
    width: 100%;
  }

  .left {
    padding: 0;
  }

  .mainbody {
    padding-top: 10px;
  }

  .main {
    padding-top: 70px;
  }

  .topmenu {
    height: 64px;
    border-bottom: 1px solid var(--news-border);
  }

  .logo {
    width: auto;
    height: 64px;
    margin: 0 auto;
    text-align: center;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    pointer-events: none;
  }

  .logo a,
  .logo img {
    pointer-events: auto;
  }

  .logo img {
    height: 36px;
    width: auto;
  }

  .search {
    top: 10px;
    right: 16px;
  }

  #mobilemenu {
    position: absolute;
    width: 36px;
    top: 14px;
    height: 36px;
    left: 8px;
    z-index: 20;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: block;
  }

  #mobilemenu::before,
  #mobilemenu::after {
    content: '';
    position: absolute;
    left: 5px;
    right: 5px;
    height: 2px;
    background: var(--news-dark);
    -webkit-transition: var(--news-transition);
    transition: var(--news-transition);
  }

  #mobilemenu::before {
    top: 9px;
  }

  #mobilemenu::after {
    bottom: 9px;
  }

  #mobilemenu span {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--news-dark);
    -webkit-transition: var(--news-transition);
    transition: var(--news-transition);
  }

  .banner {
    padding: 0;
  }

  .swiper-slide {
    height: 200px;
    border-radius: var(--news-radius);
  }

  .hotnews {
    display: none;
  }

  .hotnewlist {
    height: 160px;
    padding: 0 5px;
  }

  .items {
    margin-bottom: 12px;
  }

  .content-box {
    padding: 18px 14px;
  }

  .post-nav {
    position: relative;
    margin-bottom: 0;
    box-shadow: none;
    background: var(--news-card);
    height: 45px;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    -webkit-box-pack: justify;
    padding: 0;
    border-bottom: 1px solid var(--news-border);
  }

  .post-nav::after {
    display: none;
  }

  .post-nav span {
    position: relative;
    padding: 0;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
    margin: 0 20px 0 15px;
    color: var(--news-text-muted);
    border-width: 0;
    background: none;
  }

  .post-nav span.current,
  .post-nav span:hover {
    background: 0 0;
    color: var(--news-text);
    border-width: 0;
  }

  .post-nav span.current::after {
    content: "";
    background-color: var(--news-accent);
    left: 0;
    width: 100%;
    height: 2px;
    bottom: 0;
    position: absolute;
    z-index: 1;
  }

  .footer {
    margin-top: 24px;
    padding: 24px 0;
  }

  .social-footer {
    float: none;
    text-align: center;
    margin-bottom: 16px;
  }

  .social-footer a {
    float: none;
    display: inline-block;
  }

  .links-footer, .copyright-footer {
    text-align: center;
  }

  .nav-footer {
    clear: both;
    text-align: center;
  }

  .footer .nav-footer a {
    font-size: 13px;
  }

  .search-close {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding: 30px 50px 0 0;
  }

  .search-close i {
    font-size: 24px;
  }

  .ad01, .postion, .topad, .left-ad {
    display: none;
  }

  .subbody {
    padding-top: 70px;
  }

  .posts-gallery-img {
    width: 33.3333%;
  }

  .posts-gallery-img img {
    max-height: 130px;
    min-height: 0;
  }

  .posts-gallery-content {
    margin-left: 36%;
  }

  .swiper-slide .title h3.f20 {
    font-size: 16px;
  }

  .posts-gallery-text {
    display: none;
  }

  .posts-gallery-info {
    bottom: 16px;
    position: absolute;
  }

  .posts-gallery-content h2,
  .posts-default-title h2 {
    font-size: 15px;
  }

  li.post-author,
  li.ico-eye,
  li.ico-like,
  .posts-text {
    display: none;
  }

  .art-con li.ico-like,
  .art-con li.ico-eye,
  .art-con li.post-author {
    display: block;
  }

  .shareBox .sharebtn {
    width: auto;
    padding: 0 14px;
    margin: 5px;
    height: 36px;
    line-height: 34px;
    font-size: 13px;
  }

  .propage, .nextpage {
    width: 100%;
  }

  .nextpage {
    text-align: left;
    border-left: none;
    border-top: 1px solid var(--news-border-light);
    margin-top: 10px;
    padding-top: 10px;
  }

  .pronext {
    margin-bottom: 0;
  }

  .article-con {
    padding: 16px;
  }

  .art-con h1 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }

  ul.sub-news li {
    width: 100%;
  }

  .menu {
    left: -100%;
    width: 70%;
    background: var(--news-card);
    position: fixed;
    top: 0;
    height: 100%;
    margin: 0;
    padding: 10px;
    z-index: 101;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }

  .wrap_nav .closex {
    display: block;
    padding: 0 20px;
    line-height: 60px;
    border-bottom: 1px solid var(--news-border);
  }

  .wrap_nav .closex i {
    font-size: 20px;
    font-weight: 700;
    color: var(--news-text);
  }

  #nav {
    display: none;
    width: 100%;
  }

  .wrap_nav#nav {
    display: block;
  }

  .wrap_nav .yiji {
    border-right: 1px solid transparent;
    position: relative;
    z-index: 10;
    float: none;
  }

  .wrap_nav .libox {
    display: none;
    position: relative;
    background: var(--news-card);
    box-shadow: none;
    border: 1px solid var(--news-border);
    border-top: 2px solid var(--news-accent);
    border-radius: 0;
  }

  .wrap_nav .libox a {
    display: block;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    color: var(--news-text);
    border-bottom: 1px solid var(--news-border-light);
    background: var(--news-card);
  }

  .wrap_nav .libox a:last-child {
    border-bottom: none;
  }

  .yiji-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--news-border-light);
  }

  .yiji-hd > a {
    flex: 1;
    color: var(--news-text);
    text-decoration: none;
    line-height: 50px;
    display: block;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .yiji-hd > a em {
    font-style: normal;
  }

  .toggle-sub {
    width: 44px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--news-text-muted);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .toggle-sub i {
    font-size: 14px;
    transition: transform 0.2s ease;
  }

  .toggle-sub.open i {
    transform: rotate(180deg);
  }

  .libox.open {
    display: block !important;
  }

  .search-con {
    width: 90%;
  }

  dl.se dt {
    width: 75%;
    float: left;
  }

  dl.se dd {
    width: 25%;
    float: right;
  }

  .search-tips {
    line-height: 40px;
    padding-top: 10px;
    font-size: 15px;
  }

  .search-as {
    line-height: 34px;
  }

  .search-as a {
    padding: 0 16px;
    border: 1px solid var(--news-border);
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    white-space: nowrap;
    border-radius: 30px;
    color: var(--news-text-muted);
    font-size: 12px;
    line-height: 30px;
  }

  .search-as a:hover {
    color: var(--news-accent);
    border-color: var(--news-accent);
  }

  .top-news-box {
    box-shadow: var(--news-shadow);
  }

  .widget {
    padding: 18px;
  }

  .posts-gallery-img {
    border-radius: var(--news-radius-sm);
  }
}
