123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- page {
- height: 100vh;
- overflow: hidden;
- padding: 0 !important;
- }
- /* 搜索和上传按钮 */
- .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;
- }
- }
- }
- .switch {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- width: 500rpx;
- padding-right: 30rpx;
- }
- .main-active {
- color: var(--assist) !important;
- }
- .content-active {
- color: var(--assist) !important;
- }
- /* 未读 */
- .unread {
- width: 750rpx;
- height: 34rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin: 12rpx 0 -5rpx 0;
- }
|