my_riding.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. /* overflow-y: scroll; */
  7. }
  8. map{
  9. width: 100%;
  10. }
  11. .box{
  12. width: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. margin-top: 10rpx;
  17. padding-bottom: 20rpx;
  18. /* height: 540rpx; */
  19. overflow-y: scroll;
  20. }
  21. .box .title{
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. }
  26. .box .title text:nth-of-type(1){
  27. font-size:32rpx;
  28. font-family:PingFang-SC-Regular;
  29. font-weight:400;
  30. color:rgba(42,42,42,1);
  31. }
  32. .box .title text:nth-of-type(2){
  33. width:80rpx;
  34. height:4rpx;
  35. background:rgba(24,213,185,1);
  36. border-radius:2rpx;
  37. margin-top: 18rpx;
  38. }
  39. .box .list{
  40. width: 80%;
  41. display: flex;
  42. flex-direction: column;
  43. margin-top: 40rpx;
  44. }
  45. .box .list view{
  46. width: 100%;
  47. display: flex;
  48. justify-content: space-between;
  49. margin-bottom: 34rpx;
  50. }
  51. .box .list view text{
  52. font-size:24rpx;
  53. font-family:PingFang-SC-Regular;
  54. font-weight:400;
  55. color:rgba(42,42,42,1);
  56. }
  57. .box .bottom{
  58. display: flex;
  59. width: 80%;
  60. justify-content: space-between;
  61. align-items: center;
  62. margin-top: -6rpx;
  63. }
  64. .box .bottom .left{
  65. display: flex;
  66. flex-direction: column;
  67. }
  68. .box .bottom .right{
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. font-size:24rpx;
  73. font-family:PingFang-SC-Regular;
  74. font-weight:400;
  75. margin-right: -14rpx;
  76. }