my.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* pages/my/my.wxss */
  2. .demo-text-1 {
  3. width: 100%;
  4. height: 100%;
  5. background: #00f;
  6. }
  7. .demo-text-2 {
  8. width: 100%;
  9. height: 100%;
  10. background: #f0f;
  11. }
  12. .demo-text-3 {
  13. width: 100%;
  14. height: 100%;
  15. background: #ff0;
  16. }
  17. .demo-text-4 {
  18. width: 100%;
  19. height: 100%;
  20. background: #f00;
  21. }
  22. .demo-text-5 {
  23. width: 100%;
  24. height: 100%;
  25. background: aqua;
  26. }
  27. .demo-text-6 {
  28. width: 100%;
  29. height: 100%;
  30. background: plum;
  31. }
  32. .demo-text-7 {
  33. width: 100%;
  34. height: 100%;
  35. background: orange;
  36. }
  37. .demo-text-8 {
  38. width: 100%;
  39. height: 100%;
  40. background: hotpink;
  41. }
  42. .demo-text-9 {
  43. width: 100%;
  44. height: 100%;
  45. background: seagreen;
  46. }
  47. .page-section-spacing{
  48. margin-top: 60rpx;
  49. }
  50. .scroll-view_H{
  51. white-space: nowrap;
  52. }
  53. .scroll-view-item{
  54. height: 300rpx;
  55. }
  56. .scroll-view-item_H{
  57. display: inline-block;
  58. width: 30%;
  59. height: 300rpx;
  60. margin-left: 30rpx;
  61. }
  62. .main {
  63. width: 100%;
  64. height: 300rpx;
  65. display: flex;
  66. }
  67. .main .left {
  68. flex: 4;
  69. }
  70. .main .right {
  71. flex: 2;
  72. height: 300rpx;
  73. background: yellowgreen;
  74. margin-left: 30rpx;
  75. }