| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | @import '/static/unread.wxss';/* 搜索和上传按钮 */.search-and-upload {    width: 750rpx;    height: 104rpx;    background-color: var(--primary);    box-sizing: border-box;    padding: 20rpx 30rpx;    .con {        display: flex;        justify-content: space-between;        width: 100%;        height: 100%;    }}.upload-box {    position: relative;    width: 190rpx;    height: 100%;    .upload {        position: absolute;        height: 64rpx;        display: flex;        align-items: center;        line-height: 64rpx;        border-radius: 32rpx;        border: 1rpx solid #fff;        padding: 0 20rpx !important;        box-sizing: border-box;        margin: 0 20rpx;        font-size: 28rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #FFFFFF;        top: -30rpx;        text {            margin-right: 15rpx;        }    }}
 |