﻿.content-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 10px;
}

.content {
    text-align: center;
    width: 100%;
}

.row-item {
    margin-bottom: 20px;
}

.required-star {
    color: red;
    font-weight: bold;
}

/*按钮组*/

.btn-group .btn {
    border-radius: 5px; /* 圆角 */
}

.btn-group .btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .btn-group .btn.active {
        background-color: #0d6efd; /* 选中时的背景颜色 */
        transform: scale(1); /* 选中时的缩放效果 */
    }

    .btn-group .btn:active {
    }

    .btn-group .btn.disactive {
        background-color: #fff; /* 取消选中时的背景颜色 */
        color: #0d6efd;
    }


.d-flex.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.btn-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.form-check {
    width: 40%;
    display: flex;
}

.before-submit {
    min-height: 120px;
}

#submit-btn{
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
}


