/**
 * 设置应用专项样式
 */

.settings-page {
    flex: 1;
    overflow-y: auto;
    background: #ededed;
}

/* 设置 app 专项手绘风格 */
.settings-icon {
    color: #000 !important;
    filter: drop-shadow(1px 1px 0px #fff);
}

.settings-small-btn {
    padding: 0 10px;
    border: 2px solid #000;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
    transition: all 0.1s;
}

.settings-small-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0 #000;
}

.settings-main-btn {
    border: 2px solid #000 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: 4px 4px 0 #000 !important;
    transition: all 0.1s;
    width: 90%;
    margin: 20px 5% 0;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

.settings-main-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 #000 !important;
}

.settings-main-btn.secondary {
    background: #fff !important;
    margin-top: 10px;
}

/* 列表组样式 */
.list-group {
    background: #fff;
    margin: 10px 15px;
    border: 2px solid #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

/* 顶部与底部栏黑色边缘线 */
.app-header {
    border-top: 2px solid #000 !important;
    border-bottom: 2px solid #000 !important;
}

/* 底部导航或输入区边缘线 */
.wechat-nav, .chat-input-area {
    border-top: 2px solid #000 !important;
    border-bottom: 2px solid #000 !important;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 54px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:active {
    background: #f2f2f2;
}

.list-item-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-item-title {
    flex: 1;
    font-size: 16px;
    color: #000;
}

.list-item-arrow {
    color: #ccc;
    font-size: 16px;
}

/* 表单样式 */
.form-group {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #000;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
}
