/* 账号与安全页面样式 */

.main-content {
    padding-top: 56px;
}

.security-list {
    background: white;
    border-radius: 16px;
    margin: 16px;
    overflow: hidden;
}

.security-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s ease;
}

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

.security-item:active {
    background: #f5f5f5;
}

.security-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-icon {
    font-size: 24px;
    color: #64B5F6;
}

.security-icon.danger {
    color: #ff4757;
}

.security-label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.security-label.danger {
    color: #ff4757;
}

.security-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-status {
    font-size: 14px;
    color: #999;
}

.security-item-right .material-symbols-outlined {
    font-size: 20px;
    color: #ccc;
}

/* 退出登录按钮 */
.logout-btn {
    width: calc(100% - 32px);
    margin: 16px;
    padding: 14px;
    background: white;
    color: #42A5F5;
    border: 1px solid #42A5F5;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(66, 165, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-btn .material-symbols-outlined {
    font-size: 20px;
}

.logout-btn:active {
    transform: scale(0.98);
    background: #42A5F5;
    color: white;
}

