body{font-family: SourceHanSans;}

/* 新导航栏样式 */
.new-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.new-nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.new-nav-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.new-nav-logo span {
  font-size: 18px;
  font-weight: 600;
}

.new-nav-menu {
  display: flex;
  align-items: center;
}

.new-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.new-nav-list li {
  position: relative;
}

.new-nav-list li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.new-nav-list li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* 下拉菜单 - 超级菜单样式 */
.new-nav-dropdown {
  position: static !important;
}

.mega-menu {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 860px;
  width: 90%;
  height: 420px;
  background: rgba(30, 30, 30, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
  display: flex;
  overflow: hidden;
  z-index: 999;
}

.new-nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-sidebar {
  width: 220px;
  min-width: 220px;
  background: rgba(20, 20, 20, 0.95);
  overflow-y: auto;
  padding: 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mega-menu-cat:hover,
.mega-menu-cat.active {
  color: #4fc3f7;
  background: rgba(79, 195, 247, 0.1);
}

.mega-menu-cat i {
  font-size: 11px;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.mega-menu-cat:hover i,
.mega-menu-cat.active i {
  opacity: 1;
  color: #4fc3f7;
}

.mega-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.mega-menu-panel-title {
  display: inline-block;
  color: #4fc3f7;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(79, 195, 247, 0.3);
  transition: all 0.2s ease;
}

.mega-menu-panel-title:hover {
  color: white;
  border-bottom-color: #4fc3f7;
}

.mega-menu-panel-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mega-menu-panel-items a {
  display: inline-block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-panel-items a:hover {
  color: white;
  background: rgba(79, 195, 247, 0.15);
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-1px);
}

/* 滚动条美化 */
.mega-menu-sidebar::-webkit-scrollbar,
.mega-menu-content::-webkit-scrollbar {
  width: 5px;
}

.mega-menu-sidebar::-webkit-scrollbar-track,
.mega-menu-content::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-sidebar::-webkit-scrollbar-thumb,
.mega-menu-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.mega-menu-sidebar::-webkit-scrollbar-thumb:hover,
.mega-menu-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* 搜索框 */
.new-nav-search {
  margin-left: 15px;
  width: 280px;
}

.new-nav-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.new-nav-search-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.new-nav-search-box:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.new-nav-search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  padding: 4px 8px;
}

.new-nav-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.new-nav-search-submit {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-nav-search-submit:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* 移动端隐藏新导航栏 */
@media screen and (max-width: 992px) {
  .new-nav {
    display: none;
  }
}

/* 原有样式保留 */
.two-banner-description{font-size: 50px; margin: 0 auto 40px auto; font-weight: bold; pointer-events: none; color: #333; text-align: center;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none;    }
.two-banner-title{color:white;font-size: 40px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;text-transform: uppercase;}
.two-submit-diy{text-align: center;}
.two-submit-diy > form > div > input{font-size: 16px;color: white;background: #333;padding: 10px 10px 10px 20px;border: 2px solid #444;}
.two-submit-diy > form > div > button{font-size: 16px;margin-left: -50px;color: white;}

.two-nav{display: none;}
.two-nav a{color: white; text-align: center;font-size: 18px;}
.two-nav span{color: white;font-size: 18px;}

.two-diy{max-width:1200px;margin:0 auto;}
.two-posts-description{font-size: 50px; font-weight: bold; color: #333;position: relative; letter-spacing: 4px;-webkit-user-select:none;-moz-user-select:none; -ms-user-select:none;user-select:none;font-family: SourceHanSans;border-bottom:1px solid;    margin-bottom: 30px;margin-top: -30px;text-transform:uppercase;}
.two-posts-title{color:white;font-size: 24px;position: absolute;left: 0;right: 0; bottom: 0;margin: auto;font-weight: 100;font-family: SourceHanSans;text-transform: uppercase;}
.two-pages{font-size:14px;letter-spacing:0.5px;color:white;font-weight:400;bottom: 0; right: 0;position: absolute;opacity:0.8;}
.two-pages .pages-inner{background:transparent;padding:0;margin:0;gap:8px;}
.two-pages .pages-btn{padding:6px 12px;font-size:13px;background:#555;border-radius:4px;}
.two-pages .pages-btn:hover{background:#777;transform:none;}
.two-pages .pages-btn-disabled{background:#333;}
.two-pages .pages-input{width:36px;height:26px;font-size:13px;background:#333;border:1px solid #555;}
.two-pages .pages-sep{color:#aaa;}
.two-pages .pages-total{color:#ddd;}
.two-pages i{    font-size: 20px;}
.two-bw-posts{  padding-bottom: 20px; padding-left: 10px;padding-right: 10px; }

.two-bw-posts img{ width: 100%;object-fit: cover;border-radius: 10px;}
    
    
.two-over-text a{text-decoration:none;cursor:pointer;}

    .two-bwxyz-text {margin:0 0 5px;}
    
         .two-bwxyz-category { text-align:left;margin:0px;font-size: 12px;}
         
         .two-bwxyz-time{text-align:right;float:right;}
   
   .two-footer{text-align:center;letter-spacing:0.8px; font-size: 13px;}

.two-index-nav{display: none;}
.two-nav-frame{width: 1200px;margin: 0 auto;}
.two-nav-frame-line{display: none;}
.two-nav-frame-line-center{display: none;}
.two-nav-frame-line-li{width: 100%;font-weight: 100;text-align: center;background:#222;}
.two-nav-frame-line-li:hover{background: #333;color: white;background: #333;}
.two-nav-frame-line-li:hover a{background: #333;color: white;}
.two-nav-frame-line-focus:focus{display: none;}
.two-nav-frame-line:hover .two-nav-frame-line-center{height:auto;opacity: 1;}
.two-mobile-pages{font-size: 14px;margin-top: 10px;}
 .two-mobile-display-block{display:none;}
 .two-posts-archive-title a{color: white; font-size: 24px;text-decoration:none;}
 .page-navigator > li > a{font-size: 14px;}
 .bw-over > a > img{height:220px;}
 .two-nav-frame-line-li a{font-size:14px;}
@media screen and (max-width: 992px) {
  .two-mobile-display-none{display:none;}
  .two-mobile-display-block{display:block;}
  .bw-over > a > img{height:240px;}
}