/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 12px; /* 设置基础字体为12px */
}

/* 添加到你的 style.css 文件中 */

.logo{
    min-width: 50px;
    min-height: 50px;
    border-radius: 50px;
    background: #4285f4;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #FFF;
    margin-right: 10px;
}

/* 加载动画容器 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 另一种加载动画样式 - 脉冲点 */
.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.loading-dots div {
    width: 15px;
    height: 15px;
    background-color: #3498db;
    border-radius: 50%;
    margin: 0 5px;
    animation: pulse 1.5s ease-in-out infinite both;
}

.loading-dots div:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* 文字加载提示 */
.loading-text {
    color: white;
    font-size: 18px;
    margin-left: 15px;
}

/* 顶部白色栏 */
.top-bar {
    position: fixed;
    top: 0;
    left: 220px;
    width: calc(100% - 220px);
    height: 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-toggle {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.site-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* 登录按钮样式 */
.login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #4285f4;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #3367d6;
}

/* 用户信息样式 */
.user-info {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f1f3f4;
    padding: 0px 12px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    height: 100%;
    margin-right: -15px;
    border-radius: 0;
}

.user-info:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    width: 150px;
    z-index: 1001;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 12px;
    color: #202124;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f1f3f4;
}

.dropdown-item i {
    width: 16px;
}

.logout-btn {
    background-color: #ea4335;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.logout-btn:hover {
    background-color: #d33a2c;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: slideIn 0.3s;
}

/* 登录/注册模态框容器 */
.auth-form-container {
    padding: 30px;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.modal-content .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.modal-content .close:hover {
    color: #000;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

/* 验证码组样式 */
.captcha-group input {
    width: calc(100% - 130px);
    display: inline-block;
}

.captcha-container {
    position: relative;
}

.captcha-canvas {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.captcha-canvas:hover {
    border-color: #4285f4;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #3367d6;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.auth-toggle {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-toggle a {
    color: #4285f4;
    text-decoration: none;
    font-weight: bold;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 自定义模态框样式 */
.custom-modal {
    max-width: 576px;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    margin-top: 20vh;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 4px;
    width: 90%;
    max-width: 320px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #4285f4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #3367d6;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: slideIn 0.3s;
}
#createCategoryModal .modal-content{
    margin-top:20vh;
}

/* 自定义模态框样式 */
.custom-modal {
    max-width: 480px;
    padding: 20px;
}

#cardCategory{
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
    min-width: 70%;
}

#createCategoryBtn{
    background-color: #f1f3f4;
    color: #202124;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    margin-top: 0;
}

/* 登录/注册模态框容器 */
.auth-form-container {
    padding: 30px;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.modal-content .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.modal-content .close:hover {
    color: #000;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #3367d6;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.auth-toggle {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-toggle a {
    color: #4285f4;
    text-decoration: none;
    font-weight: bold;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.customize-section {
    margin-bottom: 20px;
}

.customize-section h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    margin-right: 5px;
}

.add-card-btn {
    background-color: #34a853;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
}

.add-card-btn:hover {
    background-color: #2e9649;
}

/* 自定义卡片表单 */
.custom-card-form {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.custom-card-form .form-group {
    margin-bottom: 10px;
}

.custom-card-form input,
.custom-card-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
}

.custom-card-form textarea {
    height: 60px;
    resize: vertical;
}

.remove-card-btn {
    background-color: #ea4335;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    float: right;
}

.remove-card-btn:hover {
    background-color: #d33a2c;
}

/* Logo上传区域样式 */
.logo-upload-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-upload-container input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
}

.upload-btn {
    background-color: #f1f3f4;
    color: #202124;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.upload-btn:hover {
    background-color: #e8eaed;
}

/* 文本域样式 */
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 自定义设置按钮样式 */
.customize-save-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #34a853;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.customize-save-btn:hover {
    background-color: #2e9649;
}

/* 添加按钮样式 */
.customize-add-btn {
    position: fixed;
    bottom: 20px;
    right: 120px;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.customize-add-btn:hover {
    background-color: #3367d6;
}

.customize-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* 左侧导航 */
.side-nav {
    position: fixed;
    top: 0px; /* 调整顶部位置 */
    left: 0;
    width: 220px; /* 调小宽度 */
    height: calc(100% - 0px); /* 调整高度 */
    background-color: #2c2e2f;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid #353535;
}

.nav-item > a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #ecf0f1;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 13px;
}

.nav-item > a:hover {
    background-color: #171818;
}

.nav-item > a i {
    width: 18px;
    margin-right: 8px;
    font-size: 14px;
}

.nav-item.has-submenu > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-item.has-submenu.active > a::after {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    background-color: #2c2e2f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-item.active .submenu {
    max-height: 500px;
}

.submenu li a {
    display: block;
    padding: 10px 15px 10px 40px;
    color: #bdc3c7;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    font-size: 12px;
}

.submenu li a:hover {
    background-color: #171818;
    color: #ecf0f1;
}

/* 折叠状态下的导航样式 */
.side-nav.collapsed {
    width: 60px;
}

.side-nav.collapsed .nav-item > a span {
    display: none;
}

.side-nav.collapsed .nav-item > a {
    justify-content: center;
    padding: 15px;
}

.side-nav.collapsed .nav-item > a i {
    margin-right: 0;
    font-size: 18px;
}

.side-nav.collapsed .nav-item.has-submenu > a::after {
    display: none;
}

.side-nav.collapsed .submenu {
    display: none;
    position: absolute;
    left: 60px;
    top: 0;
    width: 200px;
    background-color: #2c2e50;
    max-height: none;
}

.side-nav.collapsed .nav-item:hover .submenu {
    display: block;
}

.side-nav.collapsed .nav-item:hover .submenu li a {
    padding: 10px 15px;
}

/* 主要内容区域 */
.main-content {
    margin-top: 50px;
    margin-left: 220px;
    padding: 15px;
    padding-top:0px;
    transition: all 0.3s ease;
}

.main-content.customizing .content-section.customize-mode h2::after {
    content: " (点击隐藏/显示)";
    font-size: 12px;
    color: #7f8c8d;
    cursor: pointer;
}

.del{
    display:none;
}

.main-content.customizing .card.customize-mode .del{
    content: "✕";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: #ea4335;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
    z-index: 9999;
}

.content-section {
    margin-top:15px;
    margin-bottom: 15px;
    padding: 10px; /* 增加卡片区域的内边距 */
    position: relative;
}

.content-section .content-section h2{
    font-size:14px;
}

.content-section.customize-mode {
    border: 2px dashed #4285f4;
    border-radius: 4px;
    cursor: pointer;
}

.hidden-section{
    display:none;
}

.content-section.customize-mode.hidden-section {
    display:block;
    opacity: 0.5;
    border-style: solid;
}

.content-section h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    border-left: 3px solid #000000;
    padding-left: 8px;
    font-size: 18px;
    line-height: 14px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* 减少卡片宽度 */
    gap: 10px;
}

.card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 70px; /* 设置最小高度确保一致性 */
    position: relative;
    cursor:pointer;
}

.card.customize-mode {
    border: 2px dashed #34a853;
    cursor: pointer;
}

.hidden-card{
    display:none;
}

.card.customize-mode.hidden-card {
    display:flex;
    opacity: 0.5;
    border-style: solid;
    background-color: #f8f9fa;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.card.highlight {
    animation: highlight 3s ease;
}

@keyframes highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(66, 133, 244, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
    }
}

.card-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 50%;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 60px);
    overflow: hidden;
}

.card-title {
    margin-bottom: 3px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: bold;
}

.card-desc {
    color: #7f8c8d;
    font-size: 12px;
    margin-bottom: 5px;
    flex-grow: 1; /* 允许描述区域填充空间 */
}

.card-url {
    display:none;
    color: #FFF;
    font-size: 12px;
    background: #000;
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 150px;
    border-radius: 4px;
    padding: 4px 8px;
}

.card-url:hover {
    text-decoration: underline;
}

/* 自定义设置按钮样式 */
.customize-save-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #34a853;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.customize-save-btn:hover {
    background-color: #2e9649;
}

/* 添加按钮样式 */
.customize-add-btn {
    position: fixed;
    bottom: 20px;
    right: 120px;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.customize-add-btn:hover {
    background-color: #3367d6;
}

.customize-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Logo上传区域样式 */
.logo-upload-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-upload-container input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
}

.upload-btn {
    background-color: #f1f3f4;
    color: #202124;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
}

.upload-btn:hover {
    background-color: #e8eaed;
}

/* 文本域样式 */
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
    }
    
    .side-nav.active {
        transform: translateX(0);
        margin-top: 50px;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        padding: 0 10px;
        left:0;
        width:100%;
    }
    
    .site-name {
        font-size: 15px;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .modal-content {
        width: 95%;
        margin: 15% auto;
        padding: 20px;
        max-width: 320px;
    }
    
    .custom-modal {
        padding: 20px;
        max-width: 480px;
    }
    
    /* 移动端Logo上传区域样式 */
    .logo-upload-container {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    
    .upload-btn {
        align-self: flex-start;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 480px) {
    .card-container {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .card {
        padding: 12px;
        overflow: hidden;
    }
    
    .content-section h2 {
        font-size: 16px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-desc {
        font-size: 12px;
    }
    
    .card-url {
        font-size: 11px;
    }
    
    .modal-content {
        width: 90%;
        padding: 18px;
        max-width: 320px;
        margin-top: 20vh;
    }
    
    .custom-modal {
        padding: 18px;
        max-width: 480px;
        margin-top: 50px;
    }
    
    /* 移动端自定义按钮位置调整 */
    .customize-add-btn {
        right: 100px;
    }
}