body{
    background-color: #F4F5F9;
}
*{
    margin: 0;
    padding: 0;
}
.container{
    width: 7.5rem;
    line-height: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
}
/*头部*/
.head{
    width: 7.5rem;
    height: 0.88rem;
    background:rgba(201,201,201,1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 0.2rem;
}
.head_new{
    font-size: 0.3rem;
    color: rgba(68,68,68,1);
    font-weight: bold;
}

/*图片*/
.top{
    width: 7.5rem;
    height: 2.18rem;
    display: flex;
    margin-top: 0.88rem;
}
.top img{
    width: 100%;
    height: 100%;
}

/*搜索框*/
.traffic_search{
    width: 4.48rem;
    height: 0.45rem;
    border:1px solid rgba(149,149,149,1);
    border-radius: 0.23rem;
    display: flex;

    justify-content: space-between;
    align-items: center;
    margin-top: 0.43rem;
}
.traffic_search input{
    width: 2.8rem;
    height: 0.4rem;
    margin-left: 0.3rem;
    outline: none;
    border: none;
    background-color: transparent;
}
.traffic_search input::placeholder{
    color: #999999;
}
.traffic_search_bottom{
    width: 1.2rem;
    height: 0.45rem;

    background:rgba(149,149,149,1);
    border:1px solid rgba(149,149,149,1);
    border-radius: 0.23rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*展商列表*/
.items{
    margin-top: 0.2rem;
    display: flex;
    flex-wrap: wrap;
    /*margin-bottom: 1rem;*/
}
.item{
    width: 2.23rem;
    height: 1.68rem;
    background:rgba(255,255,255,1);
    box-shadow:0 0.02rem  0.02rem 0 rgba(0, 0, 0, 0.22);

    margin: 0.21rem 0 0 0.2rem;
}
.item_top{
    width: 2.23rem;
    height: 1.03rem;
}
.item_top img{
    width: 100%;
    height: 100%;
}
.item_underline{
    width: 2.23rem;
    height: 0.02rem;
    background:rgba(244,245,249,1);
    box-shadow:0 0.01rem 0 0 rgba(211,214,227,0.9);
}
.item_bottom{
    font-size: 0.14rem;
    font-family:MicrosoftYaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
    text-align: center;
    line-height: 0.3rem;

    box-sizing: border-box;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

}
.func_page{
    width: 7.5rem;
    display: flex;
    margin-bottom: 1.3rem;
}

/*底部菜单栏*/
.bottom_menu{
    width: 7.5rem;
    height: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
    position: fixed;
    bottom: 0;
}
.bottom_menu_index{
    display: flex;
    flex-flow: column;
    align-items: center;
    color: #666666;
    line-height: 1.2;
}
.bottom_menu_index_text{
    font-size: 0.24rem;
    color: #666666;
}

/*菜单栏目*/
.head_menu{
    width: 1.9rem;
    display: flex;
    flex-flow: column;
    background-color: #F4F5F9;
    position: relative;
}
.head_menu_item{
    width: 1.9rem;
    height: 0.55rem;
    line-height: 0.55rem;
    display: flex;
    align-items: center;
    position: relative;
    color: #333333;
}
/*下划线*/
.head_menu_item:before{
    content: "";
    width: 1.9rem;
    height: 1px;
    position: absolute;
    bottom: 0;
    background-color: #CED5D5;
}
.head_menu_item_text{
    font-size: 0.24rem;
    margin-left: 0.1rem;
}