/* 全局页面样式 */
body {
    background-color: #FAF8F3; /* 页面背景色 */
    color: #4A4A4A; /* 主要文本颜色 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 颜色系统 */
.text-brand-red {
    color: #D0021B; /* 底部导航活动项颜色 */
}

.bg-brand-orange {
    background-color: #E8A978; /* 开通按钮背景色 */
}

.bg-brand-dark {
    background-color: #2D2D2D; /* 黑卡会员背景色 */
}

.text-content {
    color: #4A4A4A; /* 主要文本颜色 */
}

.text-subtle {
    color: #757575; /* 次要文本/提示文本颜色 */
}

.border-custom-divider {
    border-color: #E0E0E0;
}


/* 底部导航样式 */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.bottom-nav {
    background-color: #fff;
    border-top: 1px solid #e5e1d8;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}


.nav-name {
    font-size: 12px;
}

.nav-item.active {
    color: #D0021B;
}

/* 卡片样式
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    padding: 16px;
}

按钮样式 
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #E8A978;
    color: white;
}

.btn-primary:hover {
    background-color: #D89965;
}
*/
/* 布局工具 
.container {
    padding: 0 16px;
    margin-bottom: 72px; /* 底部导航条高度 + 间距 
}*/
/* 表单元素 
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    margin-bottom: 16px;
    background-color: #F9F9F9;
}*/

/* 弹窗和模态框 
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}
*/
/* 日期和地点选择器 */
/* .datetime-picker, .location-picker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.datetime-picker.active, .location-picker.active {
    transform: translateY(0);
}

.picker-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.picker-action {
    padding: 4px 12px;
    cursor: pointer;
}

.picker-title {
    font-weight: bold;
}

.picker-action.confirm {
    color: #E8A978;
}  */