historicalOrder.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. background: #eee;
  5. }
  6. .box {
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. }
  13. .box .view {
  14. position: relative;
  15. width: 690rpx;
  16. height: 230rpx;
  17. background: rgba(255, 255, 255, 1);
  18. box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
  19. border-radius: 10rpx;
  20. display: flex;
  21. flex-direction: column;
  22. margin-top: 20rpx;
  23. justify-content: space-around;
  24. padding-bottom:10rpx;
  25. }
  26. .box .view .top {
  27. width: 100%;
  28. display: flex;
  29. justify-content: space-between;
  30. margin-top: 24rpx;
  31. }
  32. .box .view .top view {
  33. position: absolute;
  34. top: 0rpx;
  35. right: 0rpx;
  36. padding: 0 40rpx;
  37. height: 42rpx;
  38. border-radius: 0px 2rpx 0px 20rpx;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. font-size: 22rpx;
  43. font-family: PingFang SC;
  44. color: rgba(255, 255, 255, 1);
  45. }
  46. .box .view .center {
  47. display: flex;
  48. justify-content: space-between;
  49. font-size: 26rpx;
  50. font-family: PingFang SC;
  51. font-weight: 400;
  52. color: rgba(77, 77, 77, 1);
  53. opacity: 0.75;
  54. padding: 0rpx 25rpx;
  55. margin: 10rpx 0 10rpx 0;
  56. }
  57. .box .view .text {
  58. font-size: 26rpx;
  59. font-family: PingFang SC;
  60. font-weight: 400;
  61. color: rgba(77, 77, 77, 1);
  62. opacity: 0.75;
  63. padding-left: 25rpx;
  64. }
  65. .box .cut {
  66. margin: 35rpx 0 20rpx;
  67. }