/* 全局重置样式：清除所有元素默认内外边距，统一盒模型，设置全局字体 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 页面根元素样式：设置全屏尺寸，渐变背景，隐藏滚动条 */
html, body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F2F5FA 0%, #E7EDF8 100%);
    overflow: hidden;
}

/* 应用容器：模拟手机端APP容器，固定宽高，居中显示 */
.app-container {
    width: 100%;
    height: 800px;
    max-width: 420px;
    background: #F2F5FA;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    margin: 0 auto;
}

/* 移动端适配：屏幕≤480px时，APP铺满全屏 */
@media (max-width: 480px) {
    .app-container {
        height: 90vh;
        max-width: 100%;
        border-radius: 0;
    }
}

/* 毛玻璃效果通用类 */
.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 30, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 10px 10px;
}

/* 页面容器 —— 固定布局，防止其他页面修改影响 */
.page {
    display: none;
    width: 100% !important;
    height: calc(100% - 70px) !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 4px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex: none !important;
    outline: none !important;
    border: none !important;
}

.page.active {
    display: block;
}

/* 底部导航栏 */
.nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
    border-radius: 0 0 10px 10px;
}

/* 导航项 */
.nav-item {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #666;
    transition: color 0.2s ease;
    padding: 4px 0;
    cursor: pointer;
}

.nav-item.active {
    color: #007aff;
    font-weight: 600;
}

/* 中间圆形按钮 */
.center-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #007aff 0%, #0095ff 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
    transition: transform 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-size:14px;
}

.center-btn:hover {
    transform: scale(1.05);
}

/* ========== 首页样式 ========== */
#home {
    background: #f5f5f5;
    padding: 0 !important;
}

.page-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
    padding-bottom: 0;
}

.page-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.top-tip {
    width: 100%;
    height: 40px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-image: url('1.jpg') !important;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.history-top-tip {
    background-image: url('1.jpg') !important;
}

.top-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.top-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}

.top-slide.active {
    opacity: 1;
}

.top-slide-text {
    font-size: 18px;
    font-weight: 900;
    color: #1976d2;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.today-count {
    background: #fff9e6;
    color: #ff3b30;
    font-size: 11px;
    padding: 2px 0;
    text-align: center;
    border-bottom: 1px solid #ffdba2;
    flex-shrink: 0;
    border-radius: 30px 30px 0 0;
    transition: color 0.5s ease;
}

.container {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.date-section {
    flex: 1;
    background: linear-gradient(135deg, #e8eef5, #d4e0ec);
    padding: 4px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
}
/* 1 删除年份水印 */
.date-section::before {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.search-icon {
    font-size: 14px;
    margin-right: 6px;
    color: #666;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3px;
    flex: 1;
    width: 100%;
    min-height: 0;
    position: relative;
    z-index: 2;
}

.date-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.date-loading img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.date-item {
    border-radius: 6px;
    padding: 2px 1px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
/* 历史记录本月背景 = 首页本月背景 */
#historyDateGrid .date-item.current-month {
    background: rgba(255, 255, 255, 0.5) !important;
}
#historyDateGrid .date-item {
    background: #E4EDEA !important;
}
.date-item.next-month {
    background: #E4EDEA !important;
}

.date-item.today-bg {
    background: rgba(227, 242, 253, 0.7);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* 日期文字缩小 5% */
.date-item .day {
    font-weight: bold;
    color: #222;
    white-space: nowrap;
    margin-bottom: 4px;
    font-size: 123.5% !important; /* 原130% → 缩小5% = 123.5% */
}

.date-item .week {
    font-size: 11.115px !important; /* 原11.7px → 缩小5% = 11.115px */
    color: #444;
    white-space: nowrap;
}

.date-item .tag {
    position: absolute;
    top: 1px;
    right: 1px;
    background: #ff4444;
    color: #fff;
    font-size: 8px;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: bold;
}

.date-item .today-tag {
    position: absolute;
    top: 1px;
    left: 1px;
    background: #ff9800;
    color: #fff;
    font-size: 8px;
    padding: 0 2px;
    border-radius: 2px;
}

.date-item .holiday-tag {
    position: absolute;
    top: 1px;
    right: 1px;
    background: #e74c3c;
    color: #fff;
    font-size: 7px;
    padding: 0 2px;
    border-radius: 2px;
    white-space: nowrap;
}

.bottom-tip {
    width: 100%;
    background: #fff;
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 4px 0;
    flex-shrink: 0;
    cursor: pointer;
    border-top: 1px solid #ffb300;
    border-bottom: 1px solid #ffb300;
    margin:0;
}

.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 3000;
    display: none;
}

/* ========== 发布页样式 ========== */
#publish {
    padding: 2px !important;
    background: linear-gradient(135deg, #F2F5FA 0%, #E7EDF8 100%);
}

.publish-wrap {
    width: 100%;
    padding: 2px;
}

.publish-btn {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #007aff, #0095ff);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-bottom: 6px;
}

.publish-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
}

.publish-btn.green-btn {
    background: linear-gradient(135deg, #34c759, #2b9e44);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.2);
}

.publish-btn.green-btn:hover {
    box-shadow: 0 6px 16px rgba(52, 199, 89, 0.3);
}

.publish-btn.yellow-btn {
    background: linear-gradient(135deg, #ffcc00, #ffb700);
    color: #222;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
    margin-bottom: 0;
    font-weight: bold;
}

.publish-btn.yellow-btn:hover {
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.3);
}

.ad-banner {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background-image 0.5s ease;
    margin-bottom: 6px;
}
.ad-banner.loaded {
    background-color: transparent;
}
.ad-loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
}
.ad-banner.loaded .ad-loading-text {
    display: none;
}

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

.ad-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.ad-dot.active {
    background: #fff;
}

.my-posts-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin: 6px 0;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
}

.my-posts-section h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    font-size: 13px;
}

.my-posts-table table {
    width: 100%;
    border-collapse: collapse;
}

.my-posts-table th {
    background: #f8f8f8;
    font-weight: normal;
    color: #666;
    font-size: 11px;
    padding: 6px 4px;
    text-align: center;
}

.my-posts-table td {
    color: #333;
    font-size: 11px;
    padding: 6px 4px;
    text-align: center;
}

/* ========== 我的页面样式 ========== */
#mine {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 4px 1px !important;
    gap: 8px;
    overflow: hidden !important;
    background: linear-gradient(135deg, #F2F5FA 0%, #E7EDF8 100%);
    position: relative;
}

#mine .user-card {
    width: 98%;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 30, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 10px 10px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #c44569, #feca57);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    word-break: break-all;
    text-align: center;
    line-height: 1.1;
    padding: 2px;
}

.user-text {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 2px;
}

.user-text p {
    font-size: 11px;
    margin: 0;
    color: #222;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

/* 菜单卡片 - 和上方用户卡片毛玻璃样式完全统一对齐 */
#mine .menu-card {
    width: 98%;
    padding: 12px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 30, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 10px 10px;
}

/* 9 设置按钮铁灰色 */
.setting-btn {
    width: 100%;
    height: 36px;
    background: #666;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin: 0 auto;
}

.setting-btn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
}

/* 我的页面底部图片 与卡片同宽 高度对齐导航栏 */
.mine-bottom-image {
    width: 98%;
    height: calc(350% - 180px);
    max-height: 355px;
    margin-top: 6px;
    background-image: url('https://vs0381.cn/222.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    flex-shrink: 0;
}

/* ========== 模态框样式 ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* 发布弹窗背景恢复，仅卡片灰色 */
#carModal, #personModal {
    background: rgba(0, 0, 0, 0.3);
}
#carModal .modal-box, #personModal .modal-box {
    background: #f2f2f2;
}

.modal-box {
    width: 90%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 30, 80, 0.2);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}
.large-modal{
    max-width: 380px;
    padding:20px;
}

/* 关闭按钮 - 移到最右上角 */
.close-btn-red {
    width: 36px;
    height: 36px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
}

/* 所有弹窗标题统一：黑色 + 居中 */
.modal-box h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center !important;
    margin-bottom: 10px;
}

.car-title {
    background: linear-gradient(135deg, #007aff, #0095ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.person-title {
    background: linear-gradient(135deg, #34c759, #2b9e44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 6 发布输入框整体居左 */
.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: flex-start;
    text-align: left;
}

.form-item label {
    width: 50px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    text-align: left;
}

/* 10 起点终点同行 */
.addr-row {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.addr-label {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0;
    white-space: nowrap;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
    padding: 10px 12px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: 10px;
    background: #ffffff;
    font-size: 14px;
    margin: 4px 0;
    outline: none;
    text-align: left;
}

.modal-box input:focus,
.modal-box select:focus {
    border-color: #007aff;
    background: #ffffff;
}

/* 自定义输入框宽度 */
.half-select {
    width: 45% !important;
}

.short-select {
    width: 30% !important;
}

.half-input {
    width: 50% !important;
    margin-left: 0 !important;
    text-align: left !important;
}

.short-detail {
    width: 60% !important;
    margin-left: 0 !important;
}

.center-input {
    text-align: left !important;
}

.modal-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #333;
    text-align: center;
    margin: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.modal-btn.primary {
    background: linear-gradient(135deg, #007aff, #0095ff);
    color: white;
}

.modal-btn.green {
    background: linear-gradient(135deg, #34c759, #2b9e44);
    color: white;
}

.modal-btn.red {
    background: linear-gradient(135deg, #ff3b30, #ff6b6b);
    color: white;
}

.btns {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.double-select {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
}

.settings-modal {
    max-width: 340px;
}

.settings-menu {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* 加大列表间距 */
}

.settings-item {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin: 0;
}
/* 按压反馈效果 */
.settings-item:active {
    transform: scale(0.96);
    background: #e9ecef;
    opacity: 0.9;
}

/* 友情链接 */
.settings-item.friend-link {
    background: #f0f7ff;
}
.settings-item.friend-link .settings-title {
    color: #007aff;
}

/* 服务人员 */
.settings-item.service {
    background: #f0fff5;
}
.settings-item.service .settings-title {
    color: #34c759;
}

/* 联系客服 */
.settings-item.support {
    background: #fffbf0;
}
.settings-item.support .settings-title {
    color: #ff9800;
}

/* 免责声明 */
.settings-item.notice {
    background: #f5f5f5;
}
.settings-item.notice .settings-title {
    color: #666;
}

/* 清空发布 危险红色 */
.settings-item.danger {
    background: #fff5f5;
}
.settings-item.danger .settings-title {
    color: #ff3b30;
}

.settings-icon {
    font-size: 20px;
    margin-right: 10px;
}

.settings-info {
    flex: 1;
}

.settings-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.settings-desc {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.settings-arrow {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
}

.detail-input {
    margin-top: 4px;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.success-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.success-points {
    font-size: 12px;
    color: #666;
}

/* 我的发布 分栏布局 */
.my-post-modal-box {
    width: 92%;
    max-width: 380px;
    max-height: 85vh;
    overflow-y: auto !important;
    padding: 16px;
}

.posts-split-container {
    display: flex;
    width: 100%;
    gap: 0;
}

.posts-left, .posts-right {
    flex: 1;
    padding: 4px;
    font-size: 70%;
}

.split-line {
    width: 1px;
    background: #eee;
    min-height: 200px;
}

.record-item {
    padding: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    margin: 4px 0;
    background: #f8f9fa;
    line-height: 1.4;
}

.record-item:last-child {
    border-bottom: none;
}

.record-time {
    font-size: 9px;
    color: #999;
    margin-top: 4px;
}

.remaining-count {
    font-size: 12px;
    color: #666;
    align-self: center;
    white-space: nowrap;
}

.checkin-btn {
    font-size: 11px;
    padding: 2px 6px;
    background: #34c759;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 4px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.checkin-btn:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.wechat-item {
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 4px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.partner-link {
    display: block;
    padding: 8px;
    margin: 4px 0;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #007aff;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}

.partner-link:hover {
    background: rgba(0, 122, 255, 0.2);
}

.records-count {
    padding: 6px;
    background: #e8f4ff;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #007aff;
    font-weight: 600;
    text-align: center;
}

/* 删除按钮 - 放到人数行后面 */
.delete-btn-right {
    background: #ff3b30;
    color: #fff;
    border: none;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    cursor: pointer;
    margin-left: 6px;
    white-space: nowrap;
}

.car-text {
    color: #007aff !important;
    font-weight: bold;
}

.person-text {
    color: #34c759 !important;
    font-weight: bold;
}

/* 小屏手机适配 */
@media (max-width: 380px) {
    .date-item {
        padding: 1px;
        font-size: 9px;
    }
    .date-item .week {
        font-size: 8px;
    }
}