.self_service_form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.form_container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    /* font-weight: bold; */
    font-size:15px;
    width: 25%;
}

.form-group .select-label{
    font-size: 15px;
}
.form-group .select-label span{
    font-size: 15px;
}
.form-group .input-box{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

button[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.result-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 8px;
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.date-range {
    display: flex;
    gap: 10px;
}

.date-range .input-box {
    flex: 1;
}

input[type='date'] {
    position: relative;
}

input[type='date']::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    padding-left: calc(100% - 40px);
    /*padding-right: 5px;*/
}

input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.pagination-container {
    margin-top: 15px;
    text-align: center;
}

.pagination {
    display: inline-block;
}

.pagination a,
.pagination span {
    color: #007bff;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination a:hover {
    background-color: #eee;
}

.pagination .current-page {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.topText {
    margin-bottom: 10px;
}

#common-table {
    max-height: 600px;
    overflow-y: auto;
}
#common-table table {
    width: 98%;
}

.yb-btns {
    text-align: left;
    margin-bottom: 20px;
   
}

.yb-btns a {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 10px;
    border-radius: 20px;
    color: #000;
    border: 1px solid #999;
}


.yb-btns a:hover ,.yb-btns a.active {
    background-color: #007bff;
    color: #fff;
    border-color: #fff;
}

/* 订单示例弹窗 */
.order-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 10px;
    box-sizing: border-box;
}
.order-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}
.order-modal-close {
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}
.order-modal img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 8px auto;
    max-width: 360px;
}
.order-modal-tip {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
    display: none;
}

#order-help{
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 15px;
    font-size: 14px;
    margin-right: 5px;
    display: inline-block;
}


.required{
    color: #f00;
    font-size: 16px;
    display: inline-block;
}