﻿.row {
    margin-top: 40px;
}

.custom-container {
    margin-bottom: 0; /* 确保没有下边距 */
}

.no-margin-top {
    margin-top: -40px;
}

.custom-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
    color: #fff;
    font-size: 1.2em;
    height: 50px;
    margin-bottom: -5px;
}

.border-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.custom-list {
    margin-top: 0;
    list-style-type: none;
    background-color: #fff;
    padding-inline-start: 0;
}

    .custom-list .list-group-item {
        position: relative;
        padding-left: 30px;
        background-color: #fff;
    }

        .custom-list .list-group-item::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background-color: #c3e6cb;
            display: inline-block;
        }

@media (max-width: 768px) {
    .custom-title {
        font-size: 1em;
    }

    .custom-container {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .custom-title {
        font-size: 0.9em;
    }
}
