
header {
    width: 100%;
    height: 150px;
    background-image: url(../img/bg-shop.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

header p {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
}

main {
    width: 100%;
    /* min-height: calc(100vh - 150px); */
    background-color: #f5f7f6;
    padding: 2vh 0;
}

.page-info{
    margin: 2vh 0;
}
.page-title{
    font-size: 24px;
    font-weight: bold;
    color: #0F172A;
}
.page-subtitle{
    color: #94A3B8;
    font-size: 14px;
    margin-top: 1vh;
}
.modules-title{
    margin: 2vh 0;
    display: flex;
    align-items: center;
}
.moduels-line{
    width: 4px;
    height: 14px;
    background-color: #173F3F;
    border-radius: 14px;
    margin-right: 10px;
}
.modules-title{
    font-size: 18px;
    font-weight: bold;
    color: #0F172A;
}
.service-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-item{
    width: 49%;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.service-item img{
    width: 50px;
    height: 50px;
}

.service-img{
    background-color: #F8FAFC;
    padding: 1vh 3vw;
    margin: 5vh 0;
}

.service-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5vh;
}
.service-title{
    font-weight: bold;
    margin-bottom: 2vh;
    font-size: 18px;
}
.service-desc{
    color: #94A3B8;
}

/* 表格 */
.table {
    width: 100%;
    border-collapse: collapse;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden
}

.table th {
    background: #f1faf2;
    text-align: left;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 14px;
    color: #173F3F;
    border-bottom: 0.5px solid #EBEDF2;
}

.table td {
    padding: 12px 14px;
    border-bottom: 0.5px solid #EBEDF2;
    vertical-align: middle;
    transition: all .5s;
    font-size: 14px;
    color: #173F3F;
}

.table tr:last-child td {
    border-bottom: none
}

.table tr:hover td {
    background: #f9f8f8;
}
.table-query{
    display: flex;
    align-items: flex-end;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    padding: 10px 20px;
    margin-bottom: 2vh;
}
.query-item{
    display: flex;
    flex-direction: column;
    font-size: 14px;
    margin-right: 20px;
}
.query-item input,
.query-item select{
    width: 200px;
    height: 30px;
    border: 1px solid #D1D5DB;
    border-radius: 2px;
    padding: 0px 10px;
    outline: none;
    margin-top: 6px;
}
.btn{
    width: 80px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
}
.btn-query{
    background-color: #16A34A;
    margin-right: 10px;
}
.btn-reset,
.btn-back{
    background-color: #DADADA;
    color: #000;
}

.business-login-required{
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    color: #2080c0;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 2vh;
}

.business-login-required:hover{
    text-decoration: underline;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 12px;
}

.pg-info {
    flex: 1;
    font-size: 12px;
    color: #64748B;
}

.pg-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #D1D5DB;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    color: #173F3F;
}

.pg-btn.active {
    background: #2080c0;
    color: #fff;
    border-color: #2080c0;
}

.pg-btn:disabled {
    cursor: not-allowed;
    opacity: .5;
}

.pg-dots {
    color: #64748B;
    padding: 0 2px;
}
