/* 重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* 容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏 */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-box{font-size: 12px;color: #999;}
.info-box p{color: #999;font-weight: normal;}
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-brand img {
  margin-right: 10px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-bottom: 0;
}
.desktop-nav ul li{margin-bottom: 0;}
.desktop-nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #333;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0 20px;
}

.mobile-nav li {
  margin: 0.5rem 0;
}

.mobile-nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* 主要内容区域 */
.wrapper {
  width: 1160px;
  margin: 0 auto;
}

.sidebar-sticky {
  width: 150px;

  position: sticky;
  top: 80px;
  height: fit-content;
}

.sidebar-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}

.toc ul {
  list-style: none;
  padding: 0 1.5rem;
}

.toc li {
  margin: 0.5rem 0;
}

.toc a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.toc a:hover {
  color: #333;
}

.content {
  flex: 1;
  padding: 2rem;
  background-color: #fff;
  margin: 2rem 0;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  
}
.content img.maps{width: 100%;height: 100%;}
/* 标题样式 */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0 1rem 0;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 1.5rem 0 0.75rem 0;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 1rem 0 0.5rem 0;
}

/* 段落和文本 */
p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 列表样式 */
ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
  color: #555;
}

/* 网格布局 */
.grid-layout {
  display: flex;
  gap: 2rem;
}

.grid--4 {
  max-width: 1400px;
  margin: 0 auto;
}

/* 卡片样式 */
.card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #6c757d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #5a6268;
  text-decoration: none;
}

.btn-primary {
  background-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* 图标样式 */
.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* 警告框 */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* 表格样式 */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .wrapper {
    flex-direction: column;
  }
  
  .sidebar-sticky {
    width: 100%;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .content {
    margin: 1rem;
    padding: 1rem;
  }
  
  .grid-layout {
    flex-direction: column;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

/* 首页特定样式 */
.hero {
  text-align: center;
  padding: 3rem 0;
  background-color: #f8f9fa;
  margin: -2rem -2rem 2rem -2rem;
  border-radius: 4px 4px 0 0;
}

.hero h1 {
  border-bottom: none;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 1rem;
}

.feature-card .btn {
  margin-top: 1rem;
}

/* 快速链接样式 */
.quick-links {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.quick-links h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.quick-links li {
  margin: 0;
}

.quick-links a {
  display: block;
  padding: 0.5rem;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

.quick-links a:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

/* 隐藏不需要的元素 */
.theme-switcher,
.feedback-container,
#search {
  display: none !important;
}

/* 专业网格 */
.profession-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.profession-grid a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.profession-grid a:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

/* 专精网格 */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.specialization-grid .gblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  text-align: center;
}

.specialization-grid .gblock:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.specialization-grid .gblock .icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

/* 扩展介绍 */
.expansion-intro {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.expansion-intro img {
  margin-bottom: 1rem;
  border-radius: 8px;
  float: none;

}
.sidebar-right{
  width: 200px;
  font-size: 12px;
}
.related-guides li{list-style: none;}
.expansion-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* 指南标题 */
.guide-heading {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
  margin: 0 0 2rem 0;
  color: #333;
}

/* 文本居中 */
.text-align-center {
  text-align: center;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
} 
.text-align-center a.gblock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  font-size: 13px;
}

/* 专业专精和采集指南容器样式 */
.specializations-container,
.farming-container {
  text-align: center;
  margin: 0 0 2rem 0;
}

.specializations-container .flex-container,
.farming-container .flex-container {
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.specializations-container .flex-container {

}

.farming-container .flex-container {

}

/* Flex-container 样式 */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

/* Flex-box 样式 */
.flex-box {
  
  border-radius: 8px;
  
 
  min-width: 200px;
  flex: 1;
}

.flex-box h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  background: #e9eff3;
  border-radius: 4px;
  padding: 0.2rem;
  text-align: center;
}

.flex-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flex-box li {
  margin: 0.5rem ;
}

.flex-box a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #34495e;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.flex-box a:hover {
  background-color: #e9ecef;
}
.expansion-intro img.maps{width: auto;}
.table-container{font-size: 13px;}
/* 左侧导航激活状态样式 */
.sidebar-sticky.left a.active {
    font-weight: bold !important;
}

/* 左侧导航高亮样式 */
.toc a.active { 
  color: #e67e22 !important; 
  font-weight: bold !important; 
  background-color: rgba(230, 126, 34, 0.1) !important;
  border-left: 3px solid #e67e22 !important;
  padding-left: 8px !important;
}
.left-sidebar-menu a{color: #666;font-size: 13px;}
.left-sidebar-menu a:hover {
  color: #e67e22 !important;
 }

/* 首页样式 */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
  
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.feature-card .btn:hover {
    background: #0056b3;
}

.quick-links {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.quick-links h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.quick-links ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin: 0;
}

.quick-links a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: #007bff;
    color: white;
    transform: translateX(5px);
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    
    margin: 3rem 0;
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-links ul {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .quick-links {
        padding: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}
.topbgonewrd{background: #070c21;color: #666;font-size: 12px;z-index: 22222;position: relative;}

.topbgonewrdmid{height: 26px;line-height: 26px;}

.frloginpubLbox{padding-right: 20px;}
.frloginpubRbox{float: right;}
.frloginpubLbox a{color: #a7a9b3}
.frloginpubRbox a.zhuce{color:#1fabff}
.frloginpubLbox a:hover,.frloginpubRbox a.zhuce:hover{color:#1fabff;text-decoration: underline;}

.top821box{background: #121a31;    height: 70px;line-height: 70px;z-index:3;position: relative;}
.top821boxmid{padding-left: 25px;display: flex;justify-content: center;}
.top821indextxt{float: left;height: 70px;line-height: 70px;text-align: center;font-size: 16px;}
.top821indextxt a{color: rgb(194, 198, 216);margin: 0 15px;}
.top821indextxt a:hover{color:rgb(71, 134, 255)}
.topLogoimg{color: #c9c9c9;float: left;}
.topLogoimg a{display: block;width: 234px;height:30px;background: url(https://image.nfuwow.com/static/nfuwow/source/front/new/images/logo.png) no-repeat;margin-top: 19px;}
.topnavbox{display: block;color: #0057ff;font-size: 16px;}
.topQaright{float: right;}
.topQaright img{padding-right: 5px;position: relative;top: 5px;}
.topQaright a{color: #c9c9c9;margin-left: 25px;}
.topQaright a:hover{color:rgb(71, 134, 255);}
.top821indextxt a img{    position: relative;
  top: 3px;
  margin-right: 5px;
  width: 16px;
  height: 20px;}
.footerbox-flex{    font-size: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 50px;}
@media screen and (max-width: 960px) and (min-width: 0px) {
    .top821indextxt{display: none;}
  }