/* ==================== 顶部导航栏样式 ==================== */

/* 导航栏容器 - 固定在顶部 */
.dh {
    height: 80px;
    background-color: #f7f7f7;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* 导航栏内容容器 - 居中布局 */
.header-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo区域 - 包含图标和文字 */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
    width: 270px;
    margin-left: -20px;
}

/* Logo图标样式 */
.logo-icon {
    width: 55px;
    height: 55px;
    margin-left: 0;
    vertical-align: middle;
}

/* QuietZone文字Logo */
.logo .QuietZone {
    margin-left: 20px;
    width: 130px;
    height: 25px;
    vertical-align: middle;
}

/* ==================== 导航菜单样式 ==================== */

/* 导航菜单容器 */
.nav-menu {
    display: flex;
    align-items: center;
}

/* 导航菜单列表 */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* 导航菜单项 */
.nav-menu ul li {
    margin-right: 15px;
}

/* 导航链接样式 */
.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.7s ease;
}

/* 导航链接悬停效果 */
.nav-menu ul li a:hover {
    color: white;
    background-color: #0a9ce7;
    border-color: #0A9CE7;
}

/* 导航链接激活状态 */
.nav-menu ul li a.active {
    color: white;
    background-color: #0a9ce7;
    border-color: #0A9CE7;
}

/* ==================== 用户操作区域样式 ==================== */

/* 用户操作容器 */
.user-actions {
    display: flex;
    align-items: center;
    height: 80px;
}

/* 用户操作链接 */
.user-actions a {
    text-decoration: none;
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 4px;
}

/* 用户中心链接 */
.user-center {
    color: #929292;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

/* 用户中心悬停效果 */
.user-center:hover {
    color: #0a9ce7;
}

/* 登录按钮样式 */
.login-btn {
    width: 80px;
    text-align: center;
    background-color: #0a9ce7;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    border: none;
}

/* ==================== 主内容区域样式 ==================== */

/* 主内容容器 - 包含侧边栏和内容区 */
.main-content {
    width: 85%;
    margin: 24px auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    min-height: calc(100vh - 112px);
}

/* ==================== 侧边栏样式 ==================== */

/* 侧边栏容器 */
.sidebar {
    width: 240px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    flex-shrink: 0;
}

/* 侧边栏头部 - 头像和用户名 */
.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 16px;
}

/* 头像占位符 */
.avatar-placeholder {
    width: 80px;
    height: 80px;
    background-color: #e8e8e8;
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 侧边栏标题 */
.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* ==================== 信用分卡片样式 ==================== */

/* 信用分卡片容器 */
.credit-score {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f6ffed 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #d9f7be;
    box-shadow: 0 2px 8px rgba(82, 196, 26, 0.08);
}

/* 信用分头部 */
.credit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* 信用分标签 */
.credit-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* 信用分信息容器 */
.credit-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 信用分数值显示 */
.credit-score .credit-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 28px;
    font-weight: 700;
    color: #52c41a;
    line-height: 1;
    border: 2px solid #52c41a;
    border-radius: 8px;
    background-color: #f6ffed;
}

/* 信用等级标签 */
.credit-level {
    font-size: 13px;
    color: #52c41a;
    font-weight: 600;
    background-color: #f6ffed;
    padding: 4px 10px;
    border-radius: 12px;
}

/* 信用分展开/收起箭头 */
.credit-arrow {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
}

/* 信用分箭头悬停效果 */
.credit-arrow:hover {
    color: #4a90e2;
    background: #e6f7ff;
    transform: scale(1.05);
}

/* 箭头图标尺寸 */
.credit-arrow svg {
    width: 14px;
    height: 14px;
}

/* 信用分进度条容器 */
.credit-progress {
    width: 100%;
    margin-top: 16px;
}

/* 进度条背景 */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 进度条填充 */
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #52c41a 0%, #73d13d 50%, #95de64 100%);
    border-radius: 5px;
    transition: width 0.6s ease;
    box-shadow: 0 0 8px rgba(82, 196, 26, 0.3);
}

/* 信用分说明区域 */
.credit-explanation {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    border-radius: 8px;
    border-left: 4px solid #1890ff;
    box-shadow: 0 2px 6px rgba(24, 144, 255, 0.1);
}

/* 信用分说明激活状态 */
.credit-explanation.active {
    display: block;
    animation: slideDown 0.3s ease;
}

/* 下滑动画 */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 说明标题 */
.credit-explanation h4.explanation-title {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1890ff;
    text-align: center;
}

/* 说明文本 */
.credit-explanation p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* 箭头旋转状态 */
.credit-arrow.rotated {
    transform: rotate(180deg);
}

/* ==================== 侧边栏导航样式 ==================== */

/* 侧边栏导航容器 */
.sidebar-nav {
    display: flex;
    flex-direction: column;
}

/* 导航项 */
.sidebar-nav-item {
    padding: 12px 24px;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
}

/* 导航项悬停效果 */
.sidebar-nav-item:hover {
    background-color: #f5f7fa;
    color: #4a90e2;
}

/* 导航项激活状态 */
.sidebar-nav-item.active {
    background-color: #4a90e2;
    color: #fff;
}

/* ==================== 内容区域样式 ==================== */

/* 内容区域容器 */
.content-area {
    flex: 0.85;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

/* 内容头部 */
.content-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
}

/* 内容标题 */
.content-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* 内容提示 */
.content-tip {
    font-size: 14px;
    color: #999;
}

/* ==================== 安全设置列表样式 ==================== */

/* 安全设置列表 */
.security-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 安全设置项 */
.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s;
}

/* 安全设置项悬停效果 */
.security-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 安全设置信息 */
.security-info {
    flex: 1;
}

/* 安全设置标题 */
.security-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

/* 安全设置描述 */
.security-desc {
    font-size: 14px;
    color: #999;
}

/* 安全设置值 */
.security-value {
    font-size: 14px;
    color: #666;
}

/* 表单操作按钮组 */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

/* ==================== 按钮样式 ==================== */

/* 通用按钮 */
.btn {
    padding: 10px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

/* 主要按钮 */
.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

/* 主要按钮悬停效果 */
.btn-primary:hover {
    background-color: #357abd;
}

/* 次要按钮 */
.btn-secondary {
    background-color: #fff;
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

/* 次要按钮悬停效果 */
.btn-secondary:hover {
    background-color: #f5f7fa;
}

/* 轮廓按钮 */
.btn-outline {
    background-color: transparent;
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

/* 轮廓按钮悬停效果 */
.btn-outline:hover {
    background-color: #e6f7ff;
    border-color: #4a90e2;
}

/* 危险按钮 */
.btn-danger {
    background-color: transparent;
    color: #ff4d4f;
    border: 1px solid #ff4d4f;
}

/* 危险按钮悬停效果 */
.btn-danger:hover {
    background-color: #fff1f0;
    border-color: #ff4d4f;
}

/* ==================== 弹窗样式 ==================== */

/* 弹窗容器 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

/* 弹窗激活状态 */
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 弹窗遮罩层 */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

/* 弹窗内容 */
.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

/* 大型弹窗 */
.modal-large {
    max-width: 600px;
}

/* 弹窗滑入动画 */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 弹窗头部 */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

/* 弹窗标题 */
.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* 弹窗关闭按钮 */
.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f7fa;
    color: #999;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s;
    cursor: pointer;
}

/* 弹窗关闭按钮悬停效果 */
.modal-close:hover {
    background-color: #e8e8e8;
    color: #666;
}

/* 弹窗表单 */
.modal-form {
    padding: 24px;
}

/* ==================== 表单样式 ==================== */

/* 表单组 */
.form-group {
    margin-bottom: 20px;
}

/* 表单标签 */
.form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

/* 表单输入框和下拉框 */
.form-input,
.form-select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
    font-family: inherit;
}

/* 输入框和下拉框聚焦效果 */
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #4a90e2;
}

/* 输入框占位符 */
.form-input::placeholder {
    color: #ccc;
}

/* 下拉框禁用状态 */
.form-select:disabled {
    background-color: #f5f7fa;
    cursor: not-allowed;
}

/* 验证码输入组 */
.code-input-group {
    display: flex;
    gap: 12px;
}

/* 验证码输入组内输入框 */
.code-input-group .form-input {
    flex: 1;
}

/* 验证码按钮 */
.code-btn {
    white-space: nowrap;
}

/* 弹窗操作按钮 */
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* ==================== 设备列表样式 ==================== */

/* 设备列表 */
.device-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 设备项 */
.device-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

/* 设备信息 */
.device-info {
    flex: 1;
}

/* 设备时间 */
.device-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

/* 设备详情 */
.device-detail {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

/* 设备IP地址 */
.device-ip {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

/* 设备位置 */
.device-location {
    font-size: 13px;
    color: #999;
}

/* ==================== 底部栏样式 ==================== */

/* 底部栏容器 */
.last {
    position: relative;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    height: 225px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 40px 20px 20px 20px;
    background-color: #0a9ce7;
    border: 3px solid #fff;
}

/* 底部栏Logo */
.last .logo-last {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 160px;
    height: auto;
    z-index: 10;
}

/* Logo图片 */
.last .logo-last img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 底部栏链接列表 */
.last ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    min-width: 120px;
    text-align: center;
    margin-left: 50px;
}

/* 底部栏标题 */
.last h5 {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

/* 底部栏列表项 */
.last ul li {
    margin: 0;
}

/* 底部栏版权信息 */
.last p {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
    text-align: right;
    max-width: 50%;
}

/* 底部栏链接 */
.last ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* 底部栏链接悬停效果 */
.last ul li a:hover {
    color: #e0e0e0;
}

/* ==================== 响应式设计 ==================== */

/* 平板设备适配 */
@media (max-width: 991.98px) {
    /* 导航栏适配 */
    .header-container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo {
        width: 220px;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* 主内容区域适配 */
    .main-content {
        width: 95%;
        margin: 20px auto;
        padding: 0 15px;
        gap: 20px;
    }
    
    .sidebar {
        width: 200px;
    }
    
    .content-area {
        flex: 1;
    }
    
    /* 列表适配 */
    .settings-list {
        font-size: 13px;
    }
    
    .settings-item {
        padding: 12px 16px;
    }
    
    /* 设备管理表格适配 */
    .device-table {
        font-size: 13px;
    }
    
    .device-table th,
    .device-table td {
        padding: 10px 12px;
    }
    
    /* 按钮适配 */
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* 底部栏适配 */
    .last {
        flex-wrap: wrap;
        gap: 50px;
        padding: 20px;
    }

    .last ul {
        min-width: 100px;
        margin-left: 0;
    }

    .last p {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        text-align: center;
        max-width: 100%;
    }
}

/* 小型平板设备适配 */
@media (max-width: 767.98px) {
    /* 导航栏适配 */
    .dh {
        height: 70px;
    }
    
    .header-container {
        width: 100%;
        padding: 0 10px;
    }
    
    .logo {
        width: 180px;
    }
    
    .logo .QuietZone {
        width: 100px;
        height: 20px;
    }
    
    .user-actions {
        gap: 10px;
    }
    
    .user-center {
        font-size: 13px;
    }
    
    .login-btn {
        width: 60px;
        font-size: 13px;
        padding: 8px 12px;
    }
    
    /* 主内容区域适配 */
    .main-content {
        flex-direction: column;
        width: 100%;
        margin: 15px auto;
        padding: 0 10px;
        gap: 15px;
    }
    
    .sidebar {
        width: 100%;
        padding: 20px 0;
    }
    
    .sidebar-header {
        padding-bottom: 20px;
        margin-bottom: 12px;
    }
    
    .avatar-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .sidebar-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .credit-score {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .credit-score .credit-score {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .credit-level {
        font-size: 12px;
    }
    
    .sidebar-nav-item {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* 内容区域适配 */
    .content-area {
        width: 100%;
    }
    
    .content-header {
        padding: 16px 20px;
        margin-bottom: 16px;
    }
    
    .content-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .content-tip {
        font-size: 12px;
    }
    
    /* 列表适配 */
    .settings-list {
        font-size: 12px;
    }
    
    .settings-item {
        padding: 10px 14px;
    }
    
    /* 设备管理表格适配 */
    .device-table {
        font-size: 12px;
    }
    
    .device-table th,
    .device-table td {
        padding: 8px 10px;
    }
    
    .device-table th:nth-child(1),
    .device-table td:nth-child(1) {
        width: 80px;
    }
    
    .device-table th:nth-child(2),
    .device-table td:nth-child(2) {
        width: 100px;
    }
    
    .device-table th:nth-child(3),
    .device-table td:nth-child(3) {
        width: 80px;
    }
    
    .device-table th:nth-child(4),
    .device-table td:nth-child(4) {
        width: 60px;
    }
    
    /* 按钮适配 */
    .content-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .content-actions button {
        width: 100%;
    }
    
    /* 弹窗适配 */
    .modal {
        padding: 20px;
    }
    
    .modal-header {
        margin-bottom: 16px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-body {
        font-size: 13px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer button {
        width: 100%;
    }
    
    /* 底部栏适配 */
    .last {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }

    .last .logo-last {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

    .last ul {
        min-width: 100%;
        margin-left: 0;
    }

    .last p {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        text-align: center;
        max-width: 100%;
    }
}

/* 手机设备适配 */
@media (max-width: 575.98px) {
    /* 导航栏适配 */
    .dh {
        height: 60px;
    }
    
    .header-container {
        width: 100%;
        padding: 0 8px;
    }
    
    .logo {
        width: 150px;
        height: 60px;
        margin-left: -10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo .QuietZone {
        width: 80px;
        height: 18px;
        margin-left: 12px;
    }
    
    .user-actions {
        gap: 8px;
    }
    
    .icon-home {
        width: 18px;
        height: 18px;
    }
    
    .user-center {
        font-size: 12px;
    }
    
    .login-btn {
        width: 50px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* 主内容区域适配 */
    .main-content {
        width: 100%;
        margin: 12px auto;
        padding: 0 8px;
        gap: 12px;
    }
    
    .sidebar {
        width: 100%;
        padding: 16px 0;
    }
    
    .sidebar-header {
        padding-bottom: 16px;
        margin-bottom: 10px;
    }
    
    .avatar-placeholder {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .sidebar-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .credit-score {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .credit-header {
        margin-bottom: 12px;
    }
    
    .credit-label {
        font-size: 12px;
    }
    
    .credit-score .credit-score {
        width: 36px;
        height: 36px;
        font-size: 20px;
        border-width: 1.5px;
    }
    
    .credit-level {
        font-size: 11px;
    }
    
    .credit-arrow {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-nav-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    /* 内容区域适配 */
    .content-area {
        width: 100%;
    }
    
    .content-header {
        padding: 14px 16px;
        margin-bottom: 14px;
    }
    
    .content-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .content-tip {
        font-size: 11px;
    }
    
    /* 列表适配 */
    .settings-list {
        font-size: 11px;
    }
    
    .settings-item {
        padding: 8px 12px;
    }
    
    /* 设备管理表格适配 */
    .device-table {
        font-size: 11px;
    }
    
    .device-table th,
    .device-table td {
        padding: 6px 8px;
    }
    
    .device-table th:nth-child(1),
    .device-table td:nth-child(1) {
        width: 60px;
    }
    
    .device-table th:nth-child(2),
    .device-table td:nth-child(2) {
        width: 80px;
    }
    
    .device-table th:nth-child(3),
    .device-table td:nth-child(3) {
        width: 60px;
    }
    
    .device-table th:nth-child(4),
    .device-table td:nth-child(4) {
        width: 50px;
    }
    
    /* 按钮适配 */
    .content-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }
    
    .content-actions button {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* 弹窗适配 */
    .modal {
        padding: 16px;
        max-width: 90%;
    }
    
    .modal-header {
        margin-bottom: 14px;
    }
    
    .modal-title {
        font-size: 15px;
    }
    
    .modal-body {
        font-size: 12px;
        padding: 0;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
    
    .modal-footer button {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* 底部栏适配 */
    .last {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px;
    }

    .last .logo-last {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 15px;
        width: 120px;
    }

    .last ul {
        min-width: 100%;
        margin-left: 0;
    }

    .last h5 {
        font-size: 14px;
    }

    .last ul li a {
        font-size: 12px;
    }

    .last p {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
        max-width: 100%;
        font-size: 11px;
    }
}
