*{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}
.self_service_form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.header{
    width: 10rem;
    height: 1.12rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-left: 0.427rem;
    background-color: #eaeaea;
    font-size: 0.4rem;
    color: #666666;
    box-sizing: border-box;
}

.header a {
    text-decoration: none;
    color: #666666;
}
.font-icon{
    display: inline-block;
    width: 0.32rem;
    height: 0.32rem;
    border-top: 0.04rem solid #666666;
    border-right: 0.04rem solid #666666;
}
.left-icon{
    transform:rotate(-135deg);
    -ms-transform:rotate(-135deg); 	/* IE 9 */
    -moz-transform:rotate(-135deg); 	/* Firefox */
    -webkit-transform:rotate(-135deg); /* Safari 和 Chrome */
    -o-transform:rotate(-135deg);
}
.question_title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: bold;
    font-size: 0.36rem;
}

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

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;
    font-size: 0.3rem;
}

th {
    background-color: #f2f2f2;
}

@media screen and (max-width: 768px) {
    /* .self_service_form {
                padding: 10px;
            }
            .form_container {
                padding: 15px;
            } */
}

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

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

.input-box {
    margin-bottom: 10px;
}

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

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

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

.pagination {
    display: inline-block;
}

.pagination a,
.pagination span {
    color: #007bff;
    float: left;
    padding: 0.08rem 0.16rem;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 0.04rem;
    font-size: 0.28rem;
}

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

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

.result-container {
    h4 {
        margin: 0.2rem 0;
        font-size: 0.36rem;
    }

    p {
        font-size: 0.28rem
    }
}


.topText {
    margin-bottom: 0.1rem;
}
/* 订单示例弹窗 */
.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: 14px;
    height: 14px;
    text-align: center;
    line-height: 12px;
    font-size: 12px;
    margin-right: 5px;
    display: inline-block;
}
.required {
    color: red;
}