groud.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .groud {
  2. width: 100%;
  3. padding: 30rpx;
  4. border-bottom: 1px solid #DDDDDD;
  5. .label {
  6. height: 40rpx;
  7. font-size: 28rpx;
  8. font-family: PingFang SC-Regular, PingFang SC;
  9. color: #333333;
  10. }
  11. .content {
  12. display: flex;
  13. flex-wrap: wrap;
  14. width: 100%;
  15. .but {
  16. width: 188rpx;
  17. height: 72rpx;
  18. background: #F5F5F5;
  19. border-radius: 8rpx;
  20. font-size: 28rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #333333;
  23. box-sizing: border-box;
  24. margin-right: 20rpx;
  25. margin-top: 20rpx;
  26. padding: 0;
  27. }
  28. .active {
  29. border: 1px solid #3874F6;
  30. color: #3874F6;
  31. font-weight: bold;
  32. background-color: #F5F5F5;
  33. }
  34. }
  35. .time{
  36. .partition {
  37. margin-right: 20rpx;
  38. display: flex;
  39. align-items: center;
  40. }
  41. .tbox {
  42. width: 220rpx;
  43. height: 72rpx;
  44. text-align: center;
  45. line-height: 72rpx;
  46. background: #F5F5F5;
  47. border-radius: 8rpx;
  48. font-size: 28rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #333333;
  51. box-sizing: border-box;
  52. margin-right: 20rpx;
  53. margin-top: 20rpx;
  54. }
  55. }
  56. }