body {
    background: #fff;
    padding:0;
    margin:0;
}

.address_inp {
    background: #f4f6fd;
    padding:0.2rem;
    box-sizing:border-box;
    display:flex;
    justify-content:space-between;
}
.cityindustyback {
    height: 1rem;
    font-size: 0.45rem;
    line-height: 1rem;
}
.input_left {
    display: inline-block;
    height: 1rem;
    background: #fff;
    position: relative;
    vertical-align: top;
}

.input_left .search {
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: 50%;
    z-index:10;
    transform: translateY(-50%);
    left: 0.3rem;
}

.input_left input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding-left: 1rem;
    box-sizing: border-box;
    font-size: 0.4rem;
    color: #000;
    border:none;
}

.input_left .off {
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.3rem;
}

.input_right {
    display: inline-block;
    height: 1rem;
    line-height: 1rem;
    vertical-align: top;
    font-size: 0.5rem;
    padding: 0;
    background: rgba(255,255,255,0);
    border: none;
}
.backleftci {
    width: 100%;
    position: fixed;
    bottom: 0;
    left:0;
    height: 1.2rem;
    line-height: 1.2rem;
    border: none;
    font-size: 0.45rem;
    color: #fff;
    background: #CC0000;
}
/* 热门城市 */
.hotAddress {
    width: 100%;
    height: 100%;
    padding: 1.5rem 0.2rem 1.5rem;
    overflow: scroll;
    box-sizing: border-box;
}
/*滚动条*/
.hotAddress::-webkit-scrollbar {
    width: 0.15rem;
}
.hotAddress::-webkit-scrollbar-track {
    background-color: #eee;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
}
.hotAddress::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    border-radius: 0.75rem;
}
.hotAddress .hotHiht {
    width: 100%;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0.4rem;
    color: red;
}
.hotAddress .manual {
    height: 1rem;
    line-height: 1rem;
    border: 1px solid red;
    display: inline-block;
    margin: 0.4rem 0 0;
    padding: 0 0.4rem;
    font-size: 0.4rem;
    color: red;
    border-radius: 10px;
}
.hotAddress .title {
    width: 100%;
    padding: 0.32rem 0;
    font-size: 0.4rem;
    color: #000;
}
/* 城市列表 */
.address {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .address ._item {
        flex-grow: 1;
        flex-basis: 3rem;
        height: 1rem;
        line-height: 1rem;
        font-size: 0.4rem;
        color: #626366;
        text-align: center;
        border: 1px solid #9fa5d9;
        border-radius: 0.1rem;
        margin: 0.05rem;
        margin-bottom: 0.2rem;
    }
/* 行业列表 */
.Industry {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.Industry ._item {
    flex-grow: 1;
    flex-basis: 3rem;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.4rem;
    color: #626366;
    text-align: center;
    border: 1px solid #9fa5d9;
    border-radius: 0.1rem;
    margin: 0.05rem;
    margin-bottom: 0.2rem;
}

/* 关键字搜索 */
.keyWord {
    display: block;
    width: 100vw;
    padding: 0 0.3rem;
    box-sizing: border-box;
    position: fixed;
    background: #fff;
    top: 1.04rem;
    z-index: 10;
}

.keyWord .key_item {
    width: 100%;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.28rem;
    color: #000;
    background: #fff;
    text-align: left;
    padding: 0 0.2rem;
    box-sizing: border-box;
    border-bottom: 0.01rem solid #eee;
}


/* 取消滚动条 */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
}
