.header {
    display: flex;
    flex-direction: column;
    padding: 0.05rem;
}
.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.05rem;
}
.title span{
    font-size: 0.16rem;
    font-weight: bold;
}
.notice {
    text-align: center;
    line-height:0.2rem;
}
.notice span {
    font-size: 0.12rem;
}
.split-line {
    width: 100%;
    height: 10px;
    background: #f5f5f5;
}
.result-area {
    padding: 0.1rem;
    position: relative;
}
.select-option {
    /* display: flex; */
    flex-direction: row;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 0.1rem;
}
.select-area {
    position: relative;
}
.select-area .area{
    display: block;
    min-width: 0.66rem;
    height: 0.4rem;
    line-height: 0.4rem;
    /*border: none;*/
    /*outline: none;*/
    background: #148feb;
    font-size: 0.12rem;
    border-radius: 15px;
    padding-right: 40px;
    padding-left: 15px;
    color: #fff;
}
.icon-arrow {
    display: block;
    width: 10px;
    height: 13px;
    background: url("../img/arrow.png") center no-repeat;
    background-size: cover;
    position: absolute;
    top: 35%;
    right: 15px;
    /* transform: translateY(-50%); */
}
.data-list-table {
    width: 94%;
    min-height: 30px;
    /* max-height: 33rem; */
    margin: 0 auto;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    overflow-y: scroll;
}
.row {
    /*display: flex;*/
    /*height: 2.5rem;*/
    /*flex-direction: row;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    display: grid;
    grid-template-columns: 16% 20% 28% 36%;
    grid-template-rows: auto auto auto auto;
}
.row .col {
    /*min-height: 100%;*/
    padding: 3px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 0.12rem;
}
.row .col:first-child {
    /* min-width: 2rem; */
}
.load-more {
    width: 100%;
    position: absolute;
    bottom: -50px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.load-more .has-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    font-size:0.12rem;
}
.load-more .has-more span:last-child{
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/double-arrow.png") center no-repeat;
    background-size: cover;
    margin-top: 3px;
}
