index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .order-group {
  2. margin-bottom: 24rpx;
  3. background-color: #ffffff;
  4. border-radius: 16rpx 16rpx 0 0;
  5. }
  6. .order-group .order-group__top {
  7. padding: 24rpx 18rpx 24rpx 32rpx;
  8. border-radius: 16rpx 16rpx 0 0;
  9. }
  10. .order-group__top___title {
  11. font-size: 32rpx;
  12. line-height: 48rpx;
  13. font-weight: bold;
  14. }
  15. .order-group__top__note {
  16. font-size: 28rpx;
  17. }
  18. .order-group__content {
  19. overflow: hidden;
  20. width: 100%;
  21. height: 164rpx;
  22. display: flex;
  23. background-color: #fff;
  24. border-radius: 0 0 16rpx 16rpx;
  25. }
  26. .order-group__item {
  27. overflow: hidden;
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. flex: 1;
  33. }
  34. .order-group__item:first-child {
  35. border-radius: 0 0 0 16rpx;
  36. }
  37. .order-group__item:last-child {
  38. border-radius: 0 0 16rpx 0;
  39. }
  40. .order-group__item__title {
  41. font-size: 24rpx;
  42. color: #666;
  43. line-height: 32rpx;
  44. }
  45. .order-group__item__icon {
  46. margin-bottom: 20rpx;
  47. width: 56rpx;
  48. height: 56rpx;
  49. position: relative;
  50. }
  51. .order-group__top__title {
  52. font-weight: bold;
  53. }
  54. .order-group .order-group__left {
  55. margin-right: 0;
  56. }