.upload-areaa {
        border: 2px dashed #ddd;
        padding: 60px;
        text-align: center;
        margin-bottom: 15px;
        cursor: pointer;
        position: relative;
    }
    .tabs-content a{display:block}
    .tabs-content a.active{background: #ededed;}
        .c-more {
            cursor: pointer;
            display: flex;
            width: 248px;
            min-height: 76px;
            padding: 10px 0;
            justify-content: space-between;
            
        }
        .c-more2 {
            cursor: pointer;
            display: flex;
            width: 248px;
            min-height: 76px;
            padding: 10px 0;
            justify-content: space-between;
            margin-top: 10px;
        }

        .c-more-icon {
            display: flex;
            width: 60px;
            height: 60px;
            justify-content: center;
            align-items: center;
            border-radius: 6px;
            background: #fff;
            margin-left: 5px;
        }
        .c-more-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 20px;
            display: flex;
            align-items: center;
        }
        .c-more-des {
            color: var(--content-system-tertiary);
            font-size: 12px;
            line-height: 18px;
            margin-top: 2px;
        }
        .c-more-body {
            width: 176px;
        }
        .menu-icon2 {
            font-size: 31px;
            margin-bottom: 5px;
            color: #bf53bb;
        }
        .tab-active {
            display: block;
            background: #f0f0f0;
        }
        
        /* 新增的ICO尺寸选择样式 */
        .ico-size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }
        
        .ico-size-option {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            background-color: #f9f9f9;
            text-align: center;
            width: calc(25% - 10px);
        }
        
        .ico-size-option:hover {
            background-color: #f0f0f0;
        }
        
        .ico-size-option.selected {
            background-color: #1E90FF;
            color: white;
            border-color: #1E90FF;
        }
        
        /* 上传图片预览样式 */
        .uploaded-image {
            max-width: 100%;
            max-height: calc(100% - 120px); /* 减去底部按钮高度 */
            border-radius: 4px;
            display: none;
        }
        
        .upload-area.has-image {
            padding: 0;
            border: none;
            background: transparent;
            height: calc(100% - 120px); /* 减去底部按钮高度 */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .upload-area.has-image .upload-icon,
        .upload-area.has-image .upload-text {
            display: none;
        }
        
        .upload-area.has-image img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 4px;
        }
        .preview-images{max-width: 100%; max-height: 100%; border-radius: 4px;}
        /* 底部按钮容器 */
        .button-container {
    position: fixed;
    bottom: 0;
    left: 373px;
    right: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    display: flex
;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: calc(100% - 380px);
        }
        
        /* 按钮样式 */
        .action-btn {
            flex: 1;
            max-width: 200px;
            padding: 12px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            border: none;
        }
        
        .generate-btn {
            background-color: #1c86ee;
            color: white;
        }
        
        .generate-btn:hover {
            background-color: #45a049;
        }
        
        .generate-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        .reupload-btn {
            background-color: #f5f5f5;
            color: #333;
            border: 1px solid #ddd;
        }
        
        .reupload-btn:hover {
            background-color: #e0e0e0;
        }
        
        /* 预览区容器 */
        .preview-upload-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* 加载指示器 */
        .loader {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 4px solid #f3f3f3;
            border-top: 4px solid #4CAF50;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            z-index: 100;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .preview-area{margin-bottom:60px}
        
   @media (max-width: 768px) {
    .function-area {
        width: 100%;
        order: 2;
        margin-bottom: 60px;
    }
    .preview-area{
        margin-bottom:0;
    }
    .button-container{z-index:102;width:100%;left:0}
}