
        :root {
            --primary-color: #1e88e5;
            --secondary-color: #f8f9fa;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
            --info-color: #17a2b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            padding-top: 10px;
            max-width: 100%;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }

        /* 修改顶部header样式 */
        .header {
            background: white;
            color: #333;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #e0e0e0; /* 添加细微边框 */
        }

        /* 修改header-content布局 */
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .header-text {
            text-align: left;
            font-size: 18px;
            font-weight: bold;
            margin: 0;
            flex-shrink: 0; /* 防止文字被压缩 */
        }

        .header-right-content {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px; /* 控制图片和文字之间的间距 */
        }

        .header-image {
            height: 25px;
            width: 25px;
            object-fit: cover;
            border-radius: 0px;
            flex-shrink: 0; /* 防止图片被压缩 */
        }

        .header-right-text {
            font-size: 14px;
            white-space: nowrap; /* 防止文字换行 */
        }

        .data-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 15px;
            margin-bottom: 20px;
        }

        .data-card h2 {
            color: var(--primary-color);
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            text-align: center;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .data-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative; /* 为分隔线定位 */
        }

        /* 添加分隔线 */
        .data-item:not(:nth-child(2n))::after {
            content: '';
            position: absolute;
            right: -7.5px;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 1px;
            background-color: #e0e0e0;
        }

        .data-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
        }

        .data-value {
            font-size: 18px;
            font-weight: bold;
        }

        .yield-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .yield-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 15px;
        }

        .yield-card h3 {
            color: var(--primary-color);
            font-size: 15px;
            margin-bottom: 15px;
            text-align: center;
        }

        .yield-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .yield-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative; /* 为分隔线定位 */
        }

        /* 添加分隔线 */
        .yield-item:not(:nth-child(2n))::after {
            content: '';
            position: absolute;
            right: -7.5px;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 1px;
            background-color: #e0e0e0;
        }

        .yield-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 5px;
        }

        .yield-value {
            font-size: 16px;
            font-weight: bold;
            min-width: 80px;
            text-align: center;
        }
        .red {
            color: var(--danger-color);
        }

        .green {
            color: var(--success-color);
        }

        .black {
            color: #333;
        }

        .footer {
            text-align: center;
            padding: 0px 0;
            color: #666;
            font-size: 13px;
            margin-top: 0px;
        }

        .date-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .date-item {
            font-size: 13px;
        }

        .wechat-warning {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 1000;
            padding: 50px 20px;
            text-align: center;
        }

        .wechat-warning h2 {
            color: var(--danger-color);
            margin-bottom: 20px;
        }

        /* 加载指示器 */
        .loader {
            display: none;
            text-align: center;
            padding: 10px;
            color: var(--primary-color);
        }