index.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @import '/static/unread.wxss';
  2. @import '/static/dropdown-switch.wxss';
  3. page{
  4. height: 100vh !important;
  5. padding: 0 !important;
  6. overflow: hidden;
  7. }
  8. /* 搜索和上传按钮 */
  9. .search-and-upload {
  10. width: 750rpx;
  11. height: 104rpx;
  12. background-color: var(--primary);
  13. box-sizing: border-box;
  14. padding: 20rpx 30rpx;
  15. .con {
  16. display: flex;
  17. justify-content: space-between;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. }
  22. .upload-box {
  23. position: relative;
  24. width: 190rpx;
  25. height: 100%;
  26. .upload {
  27. position: absolute;
  28. height: 64rpx;
  29. display: flex;
  30. align-items: center;
  31. line-height: 64rpx;
  32. border-radius: 32rpx;
  33. border: 1rpx solid #fff;
  34. padding: 0 20rpx !important;
  35. box-sizing: border-box;
  36. margin: 0 20rpx;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Bold, PingFang SC;
  39. font-weight: bold;
  40. color: #FFFFFF;
  41. top: -30rpx;
  42. text {
  43. margin-right: 15rpx;
  44. }
  45. }
  46. }