/* ========== home-page ========== */
    .home-header {
      background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
      color: white;
      padding: 44px 24px 32px;
      position: relative;
      overflow: hidden;
    }

    .home-header::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
    }

    .home-header::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -30px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
    }

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .header-seedling {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .seedling-anim {
      font-size: 44px;
      display: inline-block;
      animation: seedlingFloat 2.5s ease-in-out infinite;
    }

    @keyframes seedlingFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .header-greeting {
      font-size: 14px;
      opacity: 0.85;
      margin-bottom: 4px;
    }

    .header-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* Quick Actions */
    .banner-carousel {
      margin: 0;
      position: relative;
      z-index: 2;
      border-radius: 0;
      overflow: hidden;
    }

    .banner-wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 10px;
      z-index: 4;
      pointer-events: none;
    }

    .banner-carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .banner-slide {
      min-width: 100%;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .banner-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .banner-slide-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }

    .banner-slide-placeholder .emoji {
      font-size: 48px;
    }

    .banner-slide-placeholder .title {
      font-size: 18px;
      font-weight: 700;
    }

    .banner-slide-placeholder .subtitle {
      font-size: 12px;
      opacity: 0.85;
    }

    .banner-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 3;
    }

    .banner-dot {
      width: 6px;
      height: 6px;
      border-radius: 3px;
      background: rgba(255,255,255,0.5);
      transition: all 0.3s;
    }

    .banner-dot.active {
      width: 18px;
      background: #fff;
    }

    /* Banner */
    .quick-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 16px 16px 8px;
    }

    .quick-nav-item {
      width: calc(25% - 8px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: transform 0.15s, opacity 0.15s;
    }

    .quick-nav-item:active {
      transform: scale(0.95);
      opacity: 0.85;
    }

    .quick-nav-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .quick-nav-icon.custom-icon {
      border-radius: 0;
      background: none !important;
    }
    .quick-nav-icon.custom-icon img {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }
    .quick-nav-icon svg {
      width: 30px;
      height: 30px;
    }
    .quick-nav-icon.green { background: #a5d6a7; }
    .quick-nav-icon.orange { background: #ffcc80; }
    .quick-nav-icon.blue { background: #90caf9; }

    /* 呼吸缩放特效 */
    .gold-glow-icon {
      animation: breatheScale 2s ease-in-out infinite;
    }
    @keyframes breatheScale {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(0.7); }
    }

    .quick-nav-text {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .home-tools {
      padding: 0 16px;
      margin-bottom: 8px;
    }

    .home-tools-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0 12px;
    }

    .home-tools-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .home-tools-title::before {
      content: '';
      width: 4px;
      height: 18px;
      background: #ff9800;
      border-radius: 2px;
    }

    .home-tools-more {
      font-size: 13px;
      color: var(--text-hint);
      cursor: pointer;
    }

    .home-tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px 8px;
      background: #f5f8f5;
      border-radius: var(--radius-md);
      padding: 16px 12px;
      box-shadow: var(--shadow-sm);
      margin-top: 10px;
    }

    .home-tools-banner {
      grid-column: 1 / -1;
      margin-bottom: 8px;
    }

    .home-tool-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: transform 0.15s;
    }

    .home-tool-item:active {
      transform: scale(0.92);
    }

    .home-tool-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .home-tool-icon.custom-icon {
      border-radius: 0;
      background: none !important;
    }
    .home-tool-icon.custom-icon img {
      width: 44px;
      height: 44px;
      object-fit: contain;
    }

    .home-tool-icon svg {
      width: 24px;
      height: 24px;
    }

    .home-tool-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      text-align: center;
      line-height: 1.3;
    }

    .recommend-lands {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .recommend-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(45, 140, 60, 0.08);
    }

    .recommend-card-cover {
      height: 180px;
      background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .recommend-card-emoji {
      font-size: 80px;
    }

    .recommend-card-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(46, 125, 50, 0.9);
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
    }

    .recommend-card-price-tag {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(230, 81, 0, 0.9);
      color: #fff;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
    }

    .recommend-card-price-tag small {
      font-size: 11px;
      font-weight: 400;
      opacity: 0.8;
    }

    .recommend-card-body {
      padding: 14px 16px;
    }

    .recommend-card-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .recommend-card-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .recommend-card-distance {
      font-size: 12px;
      color: var(--text-secondary);
      white-space: nowrap;
    }

    .recommend-card-location {
      font-size: 12px;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 10px;
    }

    .recommend-card-location svg {
      width: 14px;
      height: 14px;
      fill: var(--green-primary);
      flex-shrink: 0;
    }

    .recommend-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 10px;
      border-top: 1px solid rgba(45, 140, 60, 0.06);
    }

    .recommend-farmer {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .recommend-farmer-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #81c784, #4caf50);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .recommend-farmer-info {
      display: flex;
      flex-direction: column;
    }

    .recommend-farmer-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
    }

    .recommend-farmer-label {
      display: none;
    }

    .recommend-card-btn {
      background: linear-gradient(135deg, #e65100, #ff8f00);
      color: #fff;
      border: none;
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .news-item {
      background: var(--card);
      border-radius: var(--radius-md);
      padding: 16px;
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid rgba(45, 140, 60, 0.06);
    }

    .news-item:active {
      transform: scale(0.98);
    }

    .news-tag {
      display: inline-block;
      background: var(--green-lighter);
      color: var(--green-primary);
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .news-title {
      font-size: 15px;
      color: var(--text-primary);
      margin-bottom: 6px;
      font-weight: 600;
      line-height: 1.4;
    }

    .news-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    .news-time {
      font-size: 12px;
      color: var(--text-hint);
    }

    .news-read {
      font-size: 12px;
      color: var(--green-primary);
    }

    .news-modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 10001;
      background: #f5f8f5;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .news-modal.active {
      transform: translateX(0);
    }

    .news-modal-content {
      height: 100%;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .news-modal-header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(45, 140, 60, 0.06);
    }

    .news-modal-back {
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .news-modal-back svg {
      width: 24px;
      height: 24px;
      fill: var(--text-primary);
    }

    .news-modal-header-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .news-detail-cover {
      background: linear-gradient(135deg, #1b5e20, #2d8c3c);
      padding: 32px 24px;
      text-align: center;
    }

    .news-detail-cover-icon {
      font-size: 56px;
      margin-bottom: 12px;
    }

    .news-detail-tag {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: #fff;
      padding: 3px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .news-detail-title {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .news-detail-meta {
      display: flex;
      justify-content: center;
      gap: 16px;
      font-size: 13px;
      color: rgba(255,255,255,0.75);
    }

    .news-detail-content {
      background: #fff;
      margin: -20px 16px 16px;
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: 0 2px 12px rgba(45, 140, 60, 0.08);
      position: relative;
      z-index: 1;
    }

    .news-detail-content h3 {
      font-size: 17px;
      font-weight: 700;
      color: #1a2e1a;
      margin: 20px 0 10px;
      padding-left: 10px;
      border-left: 3px solid #2d8c3c;
    }

    .news-detail-content h3:first-child {
      margin-top: 0;
    }

    .news-detail-content p {
      font-size: 15px;
      color: #3a4e3a;
      line-height: 1.8;
      margin: 10px 0;
    }

    .news-detail-content ul {
      padding-left: 20px;
      margin: 10px 0;
    }

    .news-detail-content li {
      font-size: 14px;
      color: #3a4e3a;
      line-height: 2;
      list-style-type: disc;
    }

    .news-detail-content strong {
      color: #2d8c3c;
    }
