
        /* 结果展示区域 */
        .results-section {
            margin-top: 40px;
            display: none;
        }
        
        .results-title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .disabled-section {
            opacity: 0.6;
            pointer-events: none;
        }
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .logo-item {
            border: 1px solid #eee;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .logo-img {
            max-width: 100%;
            height: auto;
            max-height: 150px;
            object-fit: contain;
        }
        
        .logo-name {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .load-more {
            text-align: center;
            margin-top: 20px;
        }
        
        
        
        .tpss{
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left:-120px;
        }
        
.diamond-grid {
    width: auto;
    min-height: 70vh;
    background-color: #ffffff;
    background-size: 40px 40px;
    background-position: 
        0 0,
        0 20px,
        20px -20px,
        -20px 0px;
    padding-bottom: 60px;
}
#generate-ico-btn {display:none}
.down-wen.generate-ico-btn{
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 5px 12px;
    font-size: 15px;
    border: none;
    border-radius: 3px;
}
.transparent-image-container {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: inline-block;
    padding-bottom: 50px;
}
.transparent-image-container div{
    width:33.3333%;
    float:left;
    position: relative;
}
.transparent-image {
    max-width: 100%;
    height: auto;
    padding: 1rem;
}
.button-containera {
    position: fixed;
    bottom: 0;
    left: 380px;
    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);
}
.preview-area{
    display:block;
}
#download-main-btn{display:none}
.down-wen {
    flex: 1;
    color: #fff;
    max-width: 100%;
    padding: 12px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    background-color: #1c86ee;
    cursor: pointer;
}
.load-more-btn{
    flex: 1;
    color: #fff;
    max-width: 200px;
    padding: 12px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    background-color: #1c86ee;
    cursor: pointer;
}
.action-btn.reupload-btn {
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}
.action-btn.reupload-btn:hover {
    background-color: #e0e0e0;
}
.action-btn {
    flex: 1;
    border: none;
    padding: 12px;
    max-width: 200px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s;
}
.option-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .option-button {
            flex: 0 0 calc(50% - 6px); /* 每行两个，考虑gap */
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 5px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            position: relative;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }
        .option-button:hover {
            border-color: #d0d0d0;
            background-color: #f5f5f5;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        .option-button.selected {
            border-color: #1890ff;
            background-color: #1890ff;
            color: white;
            box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2);
        }
        .option-button.selected::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 30px 30px;
            border-color: transparent transparent #ffb700 transparent;
        }
        .option-button.selected::before {
            content: "✓";
            position: absolute;
            bottom: -2px;
            right: 3px;
            font-size: 12px;
            color: white;
            z-index: 2;
            font-weight: bold;
        }
@media (max-width: 768px) {
    .transparent-image-container div{
        width:100%;
    }
    .button-containera {
        left: 0;
        width: 100%;
        z-index: 102;
    }
    .diamond-grid{
        min-height:auto;
        margin-bottom: 120px;
    }
}