
  body{max-width: 750px; margin:0 auto;}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    /* 新增顶部导航横条样式 */
    .top-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background-color: #00a011;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .nav-btn {
      color: white;
      background-color: transparent;
      border: none;
      padding: 8px 20px;
      margin: 0 10px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s;
    }
    .nav-btn:hover {
      background-color: #007d0e;
    }
    /* 调整logo容器位置，避免被固定导航遮挡 */
    .logo-container {
      margin-top: 50px;
      text-align: center;
      padding: 10px 0;
    }
    .logo {
      max-width: 700px; /* 根据需要调整最大宽度 */
      height: auto; /* 保持图片比例 */
    }
	.yuming{     width: 100%;
    margin: 0 auto;
    max-width: 700px; }
   .yuming ul{ width:100%;padding-bottom:15px; float:left; display:inline;}
  .yuming li{ width:50%; height:30px; background:#FF0; line-height:30px; border:1px solid #CCC; float:left; display:inline; text-align:center; vertical-align:middle; font-weight:bold;}
  .yuming .biaoti{ text-align:center; height:50px; line-height:50px; font-size:28px; font-weight:bold; color:#FF0; background:#26688a}
  /* 单个横幅样式 */
.banner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px; /* 750px下的合适高度 */
  padding: 0 20px; /* 左右内边距，预留空间 */
  background: linear-gradient(to right, #c00, #900);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 12px; /* 两个横幅间距 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
 /* 新增：金榜高手列表样式 */
    #jinbang {
      max-width: 700px;
      margin: 40px auto;
      padding: 0 10px;
    }
    .experts-header {
      background-color: #d9c3a9;
      padding: 12px 15px;
      text-align: center;
      font-weight: bold;
      font-size: 16px;
      color: #333;
      border: 1px solid #e0d0b8;
    }
    .experts-list {
      border-left: 1px solid #e0d0b8;
      border-right: 1px solid #e0d0b8;
    }
    .expert-item {
      padding: 10px 15px;
      border-bottom: 1px solid #e0d0b8;
      font-size: 14px;
    }
    .expert-item .highlight {
      color: #c72525;
      font-weight: bold;
    }
    .experts-footer {
      background-color: #8b4513;
      color: white;
      padding: 12px 15px;
      text-align: center;
      font-weight: bold;
      margin-top: -1px;
    }
    .header {
      text-align: center;
      margin: 15px 0;
      font-size: 16px;
      padding: 0 30px;
      display: flex;
    justify-content: space-between;
    }
    .header .countdown {
      margin-right: 10px;
    }
    .header .history {
      color: red;
      text-decoration: none;
    }
    .balls-container {
		
      text-align: center;
      margin: 20px 0;
      padding: 0 10px 10px;
	  
    }
    .ball-wrapper {
      display: inline-block;
      text-align: center;
      margin: 0 6px 15px; /* 增加垂直间距，减小水平间距 */ 
    }
    .ball {
      display: inline-block;
      width: 25px; /* 缩小球的尺寸 */
      height: 25px;
      border-radius: 50%;
      text-align: center;
      padding-top: 5px; /* 调整内边距 */
      color: black;
      font-size: 10px;
      font-weight: bold;
      position: relative;
      border: 2px solid #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .ball属相 { /* 属相文字样式 */
      display: block;
      font-size: 20px;
      margin-top: 5px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
.balls-container .plus {
  display: inline-block;
  font-size: 20px;
  margin: 0 5px;
  vertical-align: middle; /* 保持垂直居中 */
  line-height: 50px; /* 与小球高度一致（默认小球高度50px） */
}

/* 适配大屏幕时同步调整 */
@media (min-width: 768px) {
  .balls-container .plus {
    font-size: 24px;
    margin: -30px 8px;
    line-height: 0px; /* 大屏幕小球高度70px，同步调整行高 */
	height: 45px;
  }
}
    .footer {
      text-align: center;
      font-size: 14px;
      margin: 15px 0;
      padding: 0 10px 10px;
      border-bottom:1px solid #999
    }
    .footer .refresh {
      background-color: red;
      color: white;
      border: none;
      padding: 8px 16px; /* 增大按钮点击区域 */
      cursor: pointer;
      margin-left: 10px;
      border-radius: 3px;
      font-size: 14px;
    }

    /* 往期开奖记录样式 */
    .history-section {
      max-width: 700px;
      margin: 30px auto;
      padding: 0 10px;
    }
    .history-title {
      text-align: center;
      margin-bottom: 15px;
      font-size: 18px;
      color: #333;
    }
    .history-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0 auto;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .history-table th, .history-table td {
      padding: 12px 8px;
      text-align: center;
      border: 1px solid #ddd;
      font-size: 14px;
    }
    .history-table th {
      background-color: #f5f5f5;
      font-weight: bold;
    }
    .history-table tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    .history-table tr:hover {
      background-color: #f1f1f1;
    }
    .numbers-cell {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 5px;
    }
    .history-number {
      display: inline-block;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      text-align: center;
      line-height: 30px;
      font-size: 12px;
      font-weight: bold;
      color: black;
      background-color: #eee;
    }
    /* 新增颜色类 */
    .history-number.red {
      background-color: #ff0000;
      color: white;
    }
    .history-number.green {
      background-color: #00a011;
      color: white;
    }
    .history-number.blue {
      background-color: #0025ff;
      color: white;
    }

    /* 适配大屏幕 */
    @media (min-width: 768px) {
      .ball {
        width: 35px;
        height: 35px;
        padding-top: 8px;
        font-size: 12px;
      }
      .ball-wrapper {
        margin: 0 24px;
      }

      .history-table th, .history-table td {
        padding: 12px 15px;
        font-size: 16px;
      }
      .history-number {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
      }
    }

    /* 小屏幕适配 */
    @media (max-width: 640px) {
      .history-table {
        font-size: 12px;
      }
      .history-table th:nth-child(2),
      .history-table td:nth-child(2) {
        display: none;
      }
      .nav-btn {
        padding: 8px 12px;
        font-size: 14px;
        margin: 0 5px;
      }
    }
		.declaration-container {
  max-width: 750px; /* 与横幅、主体内容宽度一致 */
  width: 100%;
  margin: 30px auto 20px; /* 上方距离30px，底部留20px，左右居中 */
  padding: 0 15px; /* 左右内边距，避免贴边 */
  box-sizing: border-box;
  color: #666; /* 灰色文字，弱化视觉权重 */
  font-size: 14px; /* 小字体，符合声明类内容特性 */
  line-height: 1.6; /* 行高适中，提升可读性 */
  background: #f9f9f9; /* 浅灰色背景，与主内容区分 */
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #eee; /* 浅色边框，增强区域感 */
}

/* 声明标题 */
.declaration-title {
  font-size: 16px;
  color: #333; /* 标题稍深，突出层级 */
  margin: 0 0 10px 0; /* 底部间距10px */
  font-weight: bold;
}

/* 声明文本 */
.declaration-text {
  margin: 0 0 8px 0; /* 段落间间距8px */
}

/* 小屏幕适配（≤640px） */
@media (max-width: 640px) {
  .declaration-container {
    font-size: 12px; /* 小屏幕字体缩小 */
    padding: 12px;
    margin-top: 20px;
  }
  .declaration-title {
    font-size: 14px;
  }
}
  /* 心水论坛区块样式 */
        .forum-section {
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        .forum-section h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #337ab7;
        }
        .forum-list {
            max-width: 800px;
            margin: 0 auto;
        }
    .forum-item {
    background-color: #0366bb;
    color: #ffd700;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 16px;
    transition: transform 0.2s;
    font-weight: bold; /* 新增：文字加粗 */
}
.forum-subitem {
    background-color: #337ab7;
    color: #ffd700;
    padding: 10px 20px 10px 40px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold; /* 新增：文字加粗 */
}