/* iOS 状态栏样式 */
.status-bar {
    height: 44px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-size: 12px;
    color: #000;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.status-bar-time {
    font-weight: 600;
}

.status-bar-icons {
    display: flex;
    align-items: center;
}

.status-bar-icons i {
    margin-left: 5px;
}

/* 底部导航栏样式 */
.tabbar {
    height: 50px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.tab-item i {
    font-size: 20px;
    margin-bottom: 2px;
    color: #7b7b7b;
}

.tab-item.active i {
    color: #07c160;
}

.tab-item .tab-label {
    font-size: 10px;
    color: #7b7b7b;
}

.tab-item.active .tab-label {
    color: #07c160;
}

/* 内容区域样式 */
.content {
    padding: 15px;
    height: calc(100% - 94px);
    overflow-y: auto;
    /* 隐藏滚动条但保留滚动功能 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* 适用于WebKit浏览器（Chrome、Safari等） */
.content::-webkit-scrollbar {
    display: none;
}

/* 微信小程序风格的按钮 */
.wx-btn {
    background-color: #07c160;
    color: white;
    border-radius: 5px;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    width: 100%;
    border: none;
    margin-top: 15px;
}

.wx-btn-outline {
    background-color: transparent;
    color: #07c160;
    border: 1px solid #07c160;
    border-radius: 5px;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
}

/* 表单元素样式 */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
}

/* 卡片样式 */
.card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* 列表样式 */
.list-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-title {
    font-size: 16px;
    color: #333;
}

.list-item-subtitle {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.list-item-right {
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.list-item-right i {
    margin-left: 5px;
}

/* 标题栏样式 */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    position: relative;
    padding: 0 15px;
}

.nav-bar-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.nav-bar-left, .nav-bar-right {
    z-index: 1;
}

/* 微信文本样式 */
.primary-text {
    color: #07c160;
}

.secondary-text {
    color: #576b95;
}

.danger-text {
    color: #fa5151;
}

.gray-text {
    color: #999;
}

/* 微信图标样式 */
.wx-icon {
    font-size: 24px;
    color: #07c160;
}

/* 分割线 */
.divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 10px 0;
}

/* 上传控件样式 */
.upload-box {
    width: 80px;
    height: 80px;
    border: 1px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f9f9f9;
}

.upload-box i {
    font-size: 24px;
    color: #999;
}

/* 评分控件样式 */
.rating-container {
    display: flex;
    align-items: center;
}

.rating-item {
    margin-right: 15px;
    text-align: center;
}

.rating-value {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

/* 通知提示样式 */
.notification {
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.notification i {
    color: #f5a623;
    margin-right: 10px;
    font-size: 16px;
}

.notification-text {
    color: #666;
    font-size: 14px;
}

/* 徽章样式 */
.badge {
    background-color: #fa5151;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* 去除全局滚动条 */
html, body {
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
} 