/* Minification failed. Returning unminified contents.
(248,25): run-time error CSS1046: Expect comma, found '255'
(248,32): run-time error CSS1046: Expect comma, found ')'
 */
header {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    header i {
        font-style: normal;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo h1 {
        font-size: 24px;
        background: linear-gradient(45deg, #3498db, #1abc9c);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
    }

.logo-icon {
    font-size: 28px;
    color: #3498db;
}

.controls {
    display: flex;
    gap: 15px;
}

.file-input {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

    .file-input input[type="file"] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

.btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #3498db, #1abc9c);
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn i {
        font-size: 18px;
    }

/*.container {
    display: flex;
    flex: 1;
    overflow: hidden;
}*/

.viewer-section {
    flex: 1;
    position: relative;
}

#canvas-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.info-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    display: flex;
}

    .info-panel h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #3498db;
    }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #95a5a6;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #ecf0f1;
}

.stats-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stats-box {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 10px 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
    font-size: 14px;
    color: #3498db;
    margin-bottom: 5px;
}

.stats-value {
    font-size: 18px;
    font-weight: 700;
    color: #2ecc71;
}

.settings-section {
    width: 350px;
    background: rgba(30, 30, 40, 0.9);
    padding: 20px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.settings-group {
    margin-bottom: 25px;
}

    .settings-group h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #3498db;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .settings-group h2 i {
            font-size: 20px;
        }

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-label {
    font-size: 14px;
    color: #ecf0f1;
}

.setting-control {
    display: flex;
    gap: 10px;
}

.color-picker {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.slider {
    width: 120px;
}

.format-support {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.format-badge {
    padding: 5px 10px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.instructions {
    background: rgb(255 255 255);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

    .instructions h3 {
        color: #3498db;
        margin-bottom: 10px;
    }

    .instructions ul {
        padding-left: 20px;
    }

    .instructions li {
        margin-bottom: 8px;
    }

/*@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .settings-section {
        width: 100%;
        max-height: 300px;
    }
}*/
.tool-operation-link {
    color: #006cbf;
    cursor: pointer;
    text-decoration: none;
    transition: color .3s;
}
.info-panel-close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
    font-weight: bold;
    user-select: none;
}
    .info-panel-close-btn:hover {
        color: #ffffff;
    }
.instructions-close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #999;
    font-weight: bold;
    user-select: none;
}
    .instructions-close-btn:hover {
        color: #000000;
    }
.model-prview-setting {
    min-height: 100px;
    overflow-y: auto;
    padding: 12px;
    margin-top: 8px;
    flex: 1;
}
.setting-color-input {
    padding: 0px !important;
    margin-bottom: 0px !important;
    height: 30px !important;
    cursor: pointer;
}

/*
    全屏
*/
.fullScreen {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999999999999;
    height: 100%;
}
