﻿.btn-submit {
    background-color: #0071e3; /* 苹果蓝 */
    color: #ffffff;
    border-radius: 12px;
    font-weight: 500;
    border: none;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.85;
    color: #ffffff;
}

/* 强制覆盖 BS5 默认图标，确保它显示 */
.btn-close {
    background: none !important; /* 清除可能损坏的默认背景图 */
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem !important;
}
    /* 使用文本符号作为备份，防止 SVG 加载失败出现黑块 */
    .btn-close::before {
        content: '✕';
        font-weight: bold;
        color: #555;
        font-size: 1.2rem;
    }

/* sweetAlert */
.custom-confirm-button {
    background-color: #4CAF50 !important; /* 设置按钮背景颜色 */
    color: white !important;             /* 设置按钮文字颜色 */
    border: 0px solid #000 !important;   /* 去除边框 */
    border-radius: 5px !important;       /* 设置圆角 */
    padding: 10px 20px !important;       /* 调整按钮内边距 */
    font-size: 16px !important;          /* 调整字体大小 */
    cursor: pointer !important;          /* 鼠标指针样式 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    width: 100px;
}

.custom-confirm-button:hover {
    background-color: #45a049 !important; /* 鼠标悬停时颜色 */
}
/* sweetAlert */

/* MUJI 风格核心：色调柔和，强调留白 */
.common-header {
    background-color: #f8f7f5; /* 极浅的米灰色，比纯白更有质感 */
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.common-title {
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
    /* 标题下方的小装饰线 */
    .common-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
        background-color: #999;
    }