.searchBox{
    width: 100%;
    background-color: #007ec3;
    margin-top: 20px;
    padding: 20px;
    padding-top: 30px;
    border-radius: 10px;
}

.searchInput{
    width: 100%;
    box-sizing: border-box;
    height: 38px;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    border-radius: 10px !important;
    overflow: hidden;
}

.searchButtonBox{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.searchButton{
    width: 200px;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 18px;
    color: #007ec3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}


.typeContent{
    width: 100%;
    padding: 20px 0;
    background-color: #FFF;
}

.tabBar{
    display: flex;
    border-bottom: 1px solid #e1e1e1;
}

.tabItem{
    font-size: 18px;
    padding: 15px 45px 15px 45px;
    background-repeat: no-repeat;
    background-position: 45px center;
    background-color: #e1e1e1;
    color: #333;
    display: inline-block;
    border: 1px solid #e1e1e1;
    margin-right: 5px;
}

.active{
    background-color: #FFF;
}


.tabTitle{
    background: #e5f1f9;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
}

.tabRow{
    padding: 10px;
}

.row1{
    width: 27%;
}
.row2{
    width: 45%;
}
.row3{
    width: 10%;
}
.row4{
    width: 9%;
}
.row5{
    width: 9%;
}

.rowValueBox{
    display: flex;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.rowValue{
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 10px;
    text-align: center;
    line-height: 20px;
    word-wrap: break-word;
}


@media (max-width: 731px) {
    .tabBar{
        flex-wrap: wrap;
        justify-content: center;
    }

    .tabItem{
        width: 50vw;
        height: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
}

@media (max-width: 311px) {
    .tabItem{
        margin-bottom: 10px;
    }
}

@media (max-width: 535px) {
    .tabItem{
        margin-bottom: 10px;
    }
}