| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | .search_box {    display: flex;    justify-content: space-between;    align-items: center;    height: 60rpx;    width: 100vw;    padding: 0 24rpx;    box-sizing: border-box;}.searc {    flex: 1;    display: flex;    align-items: center;    height: 100%;    opacity: 0.37;    padding-left: 20rpx;}input {    flex: 1;    text-align: left;    padding-left: 5rpx;}.searc_but {    width: 118rpx;    height: 60rpx;    line-height: 60rpx;    text-align: center;    background: #FFB600;    border-radius: 10rpx;    font-size: 28rpx;    font-weight: 500;    color: #FFFFFF;    margin-left: 16rpx;}.clear {    display: flex;    justify-content: center;    align-items: center;    width: 50rpx;    height: 100%;    line-height: 100%;    z-index: 999;}
 |