.topsearch{
    height: auto !important;
}
.steps-content{
    width: 100%;
    padding-top:25px;
}
.steps-item{
    width: 100%;
    text-align: center;
}
.steps-span{
    font-size: 22px;
    color: #3fbab8;
    display: inline-block;
    margin:0 10px;
}
.steps-item a{
    display: inline-block;
    margin:0 15px;
    line-height: 48px;
    height: 48px;
    width: 200px;
    text-align: center;
    color: #333333;
    font-size: 18px;
    border: #a4dedf solid 1px;
    border-radius: 3px;
}
.steps-item a.on {
    background: #3fbab8;
    color: #fff;
    border: #3fbab8 solid 1px;
}
.quick-list-content{
    width: 100%;
    color: #333333;
    padding: 5px 0 12px 0;
}
.quick-list-content .item{
    width: 270px;
    margin: 0 0 0 15px;
    display: inline-block;
    line-height: 38px;
    height: 38px;
}
.quick-list-content .area-item{
    width: 210px;
    margin: 0 0 0 15px;
    display: inline-block;
    line-height: 38px;
    height: 38px;
}
.quick-checkbox{
    margin-right: 5px;
}
.quick-button-line{
    width: 100%;
    text-align: center;
    line-height: 48px;
    padding: 10px 0 20px 0;
    background: #fff;
    margin-bottom: 20px;
}
.quick-submit{
    background: #3fbab8;
    color: #ffffff;
    border: #3fbab8 solid 1px;
    padding: 8px 45px;
    border-radius: 3px;
    font-size: 14px;
    margin: 0 10px;
}
.quick-title-icon-open{
    float: right;
    color: #3fbab8;
    transform: rotate(-90deg);
    cursor: pointer;
}
.quick-title-icon-close{
    float: right;
    color: #3fbab8;
    transform: rotate(90deg);
    cursor: pointer;
}
.quick-list-div-none{
    display: none;;
}
.quick-list-title{
    margin-bottom: 10px !important;
}
.quick-loading{
    position: absolute;
    top: 345px;
    left: 50%;
    color: #ffffff;
    font-size: 18px;
    margin-left: -135px;
}
.loading-icon {
    display: inline-block;
    margin-right: 12px;
    width: 20px; /* 设置图标的宽度 */
    height: 20px; /* 设置图标的高度 */
    border: 4px solid #f3f3f3; /* 设置边框样式 */
    border-top: 4px solid #3498db; /* 设置上部分边框样式（表示转圈）*/
    border-radius: 50%; /* 设置边框为圆形 */
    animation: spin 1s linear infinite; /* 应用名称为spin的动画，持续时间为1秒，线性变化无限次重复 */
}
@keyframes spin {
    0% { transform: rotate(0deg); } /* 初始状态，角度为0度 */
    100% { transform: rotate(360deg); } /* 结束状态，角度为360度 */
}