/* 通用样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
    height: 100vh;
    font-size: 14px;
}

.status-bar {
    height: 44px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-size: 12px;
}

.placeholder-image {
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 13px;
}

/* 调整标题字体大小 */
h1 {
    font-size: 18px;
    font-weight: bold;
}

h2 {
    font-size: 16px;
    font-weight: 600;
}

h3 {
    font-size: 15px;
    font-weight: 600;
}

/* 内容字体大小 */
p, div, span {
    font-size: 14px;
}

/* 小号文本 */
.text-xs, .text-sm {
    font-size: 12px;
}

/* 导航栏文本 */
.bottom-nav-text {
    font-size: 11px;
}

/* 按钮文本 */
button, .btn {
    font-size: 13px;
}

/* 表单元素 */
input, select, textarea {
    font-size: 14px;
}

/* 标签元素 */
.tag {
    font-size: 11px;
    padding: 2px 6px;
} 