sms.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. page {
  2. background-color: #161616;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .page {
  7. background-color: #161616;
  8. width: 100%;
  9. height:100vh;
  10. }
  11. .header {
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: flex-start;
  15. align-items: center;
  16. width: 750rpx;height: 320rpx;
  17. padding-top: calc(var(--status-bar-height) + 0rpx);
  18. background: url('../../static/home/top_bg.png');
  19. background-size: 100% 100%;
  20. .left {
  21. display: flex;flex-direction: row;width:200rpx;height:120rpx;
  22. justify-content: center;
  23. padding-left:50rpx;
  24. image {
  25. width:84rpx;height:52rpx;
  26. }
  27. }
  28. }
  29. .thread {
  30. height: 20rpx;
  31. }
  32. .thread2 {
  33. height: 60rpx;
  34. }
  35. .tab_list {
  36. width:750rpx;display: flex;flex-direction: row;justify-content: space-around;align-items: center;margin-top:-120rpx;
  37. padding:0 50rpx;
  38. .item {
  39. display: flex;flex-direction: column;justify-content: center;align-items: center;
  40. font-weight: 400;
  41. font-size: 28rpx;
  42. color: #999999;
  43. .yuan {
  44. width: 96rpx;height: 96rpx;border-radius: 48rpx;
  45. border: 2rpx solid #404040;
  46. display: flex;flex-direction: row;justify-content: center;align-items: center;margin-bottom:10rpx;
  47. }
  48. .icon {
  49. width:64rpx;height:64rpx;
  50. }
  51. }
  52. .active {
  53. display: flex;flex-direction: column;justify-content: center;align-items: center;
  54. .yuan {
  55. background: linear-gradient( 180deg, #3E223E 0%, #857283 100%);
  56. }
  57. font-weight: 400;
  58. font-size: 28rpx;
  59. color: #FFFFFF;
  60. }
  61. }
  62. .no-content {
  63. display: flex;flex-direction: column;justify-content: center;align-items: center;
  64. image {
  65. width:276rpx;height:276rpx;
  66. }
  67. font-weight: 400;
  68. font-size: 24rpx;
  69. color: #999999;
  70. }