| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | @import '/static/unread.wxss';@import '/static/dropdown-switch.wxss';page{    height: 100vh !important;    padding: 0 !important;    overflow: hidden;}/* 搜索和上传按钮 */.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;        }    }}
 |