@charset "UTF-8";
.breadcrumb {
    background: #f8fafd;
    padding: 14px 30px;
    margin-bottom: 30px;
    border: 1px solid #e6edf5;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .breadcrumb a {
        color: #1a3a8f;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: #ff9b00;
        }

.post-container {
    background: white;
    padding: 30px;
    margin-bottom: 40px;
}

.post-header {
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 18px;
}

    .post-header h2 {
        color: #1a3a8f;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .post-header h2::before {
            color: #ffcc00;
            font-size: 36px;
            content: '\01F56E';
            font-family: "FontAwesome";
        }

.floor-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

    .floor-list > div {
        background: #f8fafd;
        border-radius: 10px;
        padding: 20px;
        transition: all 0.25s ease;
        border: 1px solid #eef2f8;
        border-left-width: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

        .floor-list > div:hover {
            background: #eef4ff;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -10px rgba(26,58,143,0.2);
        }

.floor-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 20px;
    margin-bottom: 15px;
}

    .floor-header div:nth-child(1) {
        background: white;
        padding: 6px 18px 6px 12px;
        border-radius: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        border: 1px solid #dde5f0;
        font-weight: 600;
        color: #236d8b;
    }

        .floor-header div:nth-child(1)::before {
            content: '\f007';
            font-family: "FontAwesome";
        }

    .floor-header div:nth-child(2) {
        background: #ffe169;
        color: #1a3a8f;
        padding: 4px 12px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .floor-header div:nth-child(3) {
        margin-left: auto;
        color: #5e6f8d;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        background: #f3f3f3;
        padding: 5px 15px;
        border-radius: 30px;
    }

        .floor-header div:nth-child(3)::before {
            content: '\f017';
            font-family: "FontAwesome";
            color: #ffcc00;
        }

.floor-content {
    border-left: 3px solid #cbd6ed;
    padding: 10px 20px;
    background: rgba(255,255,255,0.7);
    line-height: 1.7;
    overflow: hidden;
}

    .floor-content p {
        margin-bottom: 12px;
    }

    .floor-content a {
        color: #1a3a8f;
        text-decoration: none;
    }

        .floor-content a:hover {
            color: #ff9b00;
        }

    .floor-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        border: 1px solid #e0e9f5;
        margin: 8px 0;
    }

#dv_UploadFileList {
    background: #fffcef;
    border-radius: 18px;
    padding: 18px 25px;
    margin: 15px 0 5px;
    border: 1px dashed #1a3a8f;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

    #dv_UploadFileList a::before {
        content: '\f0c6';
        font-family: "FontAwesome";
        color: #d70000;
        padding-right: 5px;
    }

.post-footer {
    background: #f0f5ff;
    padding: 15px 25px;
}

@media (max-width: 768px) {
    .post-header h2 {
        font-size: 24px;
    }

    .floor-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .floor-header div:nth-child(3) {
            margin-left: 0;
        }
}
@media (max-width: 480px) {
    .container {
        padding: 0;
    }

    .post-container, .floor-content {
        padding: 3px;
    }

    .floor-list > div {
        padding: 15px 3px;
    }
}