menu.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* pages/student/menu/menu.wxss */
  2. page{
  3. background-color: #f5f5f5;
  4. }
  5. .menu{
  6. width: 690rpx;
  7. margin: 0 auto;
  8. margin-top: 20rpx;
  9. display: flex;
  10. flex-wrap:wrap;
  11. justify-content: center;
  12. background: #fff;
  13. border-radius: 10rpx;
  14. padding: 20rpx 10rpx;
  15. }
  16. .menu-list{
  17. width: 306rpx;
  18. height: 110rpx;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. background: red;
  23. margin: 10rpx;
  24. border-radius: 10rpx;
  25. }
  26. .menu-icon{
  27. width: 44rpx;
  28. height: 44rpx;
  29. }
  30. .menu-title{
  31. margin-left: 20rpx;
  32. font-size: 34rpx;
  33. color: #fff;
  34. }
  35. /* 列表 */
  36. .list{
  37. margin-top: 20rpx;
  38. width: 100%;
  39. background: #fff;
  40. }
  41. .line{
  42. margin: 0 auto;
  43. width: 690rpx;
  44. height: 110rpx;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. border-bottom: 1rpx solid #e5e5e5;
  49. }
  50. .line view{
  51. font-size: 30rpx;
  52. color:#333;
  53. }
  54. .line image{
  55. width: 14rpx;
  56. height: 26rpx;
  57. }
  58. .list :last-child .line {
  59. border-bottom:none;
  60. }
  61. .list-title{
  62. display: flex;
  63. height: 100%;
  64. align-items: center;
  65. }
  66. .list-title image{
  67. width: 36rpx;
  68. height: 36rpx;
  69. margin-left: 30rpx;
  70. }
  71. .list-title view{
  72. margin-left: 10rpx;
  73. }