/* style.css - 订单报名统计系统 商务风 */
body {
    font-family: 'Inter', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f6fa;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
    padding: 40px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1 {
    text-align: center;
    color: #1e3a8a;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

/* 上传区域卡片 */
.upload-box {
    background: #fff;
    padding: 36px 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    margin-bottom: 36px;
    border: 1px solid #e2e8f0;
}

.upload-box h2 {
    font-size: 18px;
    font-weight: 500;
    color: #334155;
    margin: 0 0 16px 0;
}

/* 按钮 */
button {
    background: #1e3a8a;
    color: #fff;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

button:hover {
    background: #1e2d6b;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

/* 结果区 */
.result {
    background: #fff;
    padding: 28px 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

/* 活动标题 */
.activity-title {
    font-size: 20px;
    color: #0f172a;
    margin: 32px 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e3a8a;
    font-weight: 600;
}

.activity-title:first-of-type {
    margin-top: 0;
}

/* 上车点组 */
.pickup-group {
    margin: 12px 0;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
}

.pickup {
    font-size: 15px;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.total {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.names {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    word-break: break-word;
}