orders.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. body {
  2. background-color: #f7f7f8;
  3. }
  4. /* 公共样式 */
  5. .red {
  6. color: #cf4444;
  7. }
  8. .pannel {
  9. margin-bottom: 10px;
  10. background-color: #fff;
  11. border-radius: 5px;
  12. }
  13. /* 主体内容 */
  14. .main {
  15. /* 80px: 为了内容不被底部区域盖住 */
  16. padding: 12px 11px 80px;
  17. }
  18. /* 用户信息 */
  19. .user_msg {
  20. display: flex;
  21. align-items: center;
  22. padding: 15px 0 15px 11px;
  23. }
  24. .user_msg .location {
  25. width: 30px;
  26. height: 30px;
  27. margin-right: 10px;
  28. background-image: linear-gradient(90deg,
  29. #6fc2aa 5%,
  30. #54b196 100%);
  31. border-radius: 50%;
  32. text-align: center;
  33. line-height: 30px;
  34. color: #fff;
  35. }
  36. .user_msg .user {
  37. flex: 1;
  38. }
  39. .user_msg .user .top {
  40. display: flex;
  41. }
  42. .user_msg .user .top h5 {
  43. width: 55px;
  44. font-size: 15px;
  45. font-weight: 400;
  46. }
  47. .user_msg .user .top p {
  48. font-size: 13px;
  49. }
  50. .user_msg .user .bottom {
  51. margin-top: 5px;
  52. font-size: 12px;
  53. }
  54. .user_msg .more {
  55. width: 44px;
  56. height: 44px;
  57. /* background-color: pink; */
  58. text-align: center;
  59. line-height: 44px;
  60. color: #808080;
  61. }
  62. /* 主体内容 */
  63. /* 底部支付 */
  64. .pay {
  65. position: fixed;
  66. left: 0;
  67. bottom: 0;
  68. display: flex;
  69. /* 主轴对齐方式 */
  70. justify-content: space-between;
  71. /* 侧轴对齐方式 */
  72. align-items: center;
  73. width: 100%;
  74. height: 80px;
  75. padding: 0 11px;
  76. /* background-color: pink; */
  77. border-top: 1px solid #ededed;
  78. }
  79. .pay .left {
  80. font-size: 12px;
  81. }
  82. .pay .left i {
  83. font-size: 20px;
  84. }
  85. .pay .right a {
  86. display: block;
  87. width: 90px;
  88. height: 35px;
  89. background-image: linear-gradient(90deg,
  90. #6fc2aa 5%,
  91. #54b196 100%);
  92. border-radius: 3px;
  93. text-align: center;
  94. line-height: 35px;
  95. font-size: 13px;
  96. color: #fff;
  97. }
  98. /* 底部支付 */