    /* 右侧内容区域 */
        .sidebar {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .sidebar-title {
            font-size: 18px;
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            flex: 1; /* 确保标题占据剩余空间 */
        }

        .sidebar-section .d-flex.justify-content-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-section .d-flex.justify-content-between a {
            margin-left: 10px; /* 调整链接与标题的间距 */
        }

        .sidebar-list li {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .sidebar-list .price {
            color: #e74c3c;
            font-weight: bold;
        }

        .orange-tag {
            background-color: #FB9252;
            color: #fff;
        }

        .service-item {
            display: flex;
            align-items: center;
        }

        .service-item img {
            width: 80px;
            height: 80px;
            margin-right: 10px;
        }

        .service-info h6 {
            font-size: 16px;
            margin: 0;
        }

        .service-info .price {
            font-size: 18px;
            color: #e74c3c;
            margin: 5px 0;
        }

        .service-info .rating {
            font-size: 14px;
            color: #ffcc00;
        }

        .sidebar-list li.user-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .user-details {
            flex: 1;
            padding-right: 20px;
        }

        .user-name {
            font-size: 16px;
            margin: 0 0 5px;
        }

        .user-company {
            font-size: 14px;
            color: #666;
        }

        .btn-outline-primary {
            padding: 5px 15px;
        }

        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .modal-dialog {
            margin: 15% auto;
            width: 50%;
        }

        .modal-content {
            background-color: #fefefe;
            padding: 20px;
            border: 1px solid #888;
            border-radius: 5px;
        }

        .modal-header {
            border-bottom: 1px solid #ddd;
            margin-bottom: 15px;
        }

        .modal-title {
            text-align: center;
            width: 100%;
        }

        .modal-body {
            margin-bottom: 15px;
        }

        textarea.form-control {
            resize: none;
            width: 100%;
        }

        .modal-footer {
            border-top: 1px solid #ddd;
            text-align: center;
        }

        /* 关闭图标样式 */
        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #000;
            opacity: 0.5;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
            opacity: 1;
        }