index.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. /* 页面左右间距 */
  28. /* 文字尺寸 */
  29. /*文字颜色*/
  30. /* 边框颜色 */
  31. /* 图片加载中颜色 */
  32. /* 行为相关颜色 */
  33. .myBox {
  34. height: 100vh;
  35. width: 100%;
  36. background-color: #fff;
  37. }
  38. .myBox .myhead {
  39. height: 290rpx;
  40. background-color: #D9332E;
  41. }
  42. .myBox .myhead .myheadImg {
  43. padding: 10rpx 32rpx 0 0;
  44. height: 85rpx;
  45. text-align: right;
  46. line-height: 85rpx;
  47. }
  48. .myBox .myhead .myNmae {
  49. display: -webkit-box;
  50. display: -webkit-flex;
  51. display: flex;
  52. -webkit-box-pack: justify;
  53. -webkit-justify-content: space-between;
  54. justify-content: space-between;
  55. -webkit-box-orient: horizontal;
  56. -webkit-box-direction: normal;
  57. -webkit-flex-direction: row;
  58. flex-direction: row;
  59. -webkit-box-align: center;
  60. -webkit-align-items: center;
  61. align-items: center;
  62. padding: 20rpx 32rpx 0 32rpx;
  63. }
  64. .myBox .myhead .myNmae .myNmaeLeft {
  65. display: -webkit-box;
  66. display: -webkit-flex;
  67. display: flex;
  68. -webkit-box-orient: horizontal;
  69. -webkit-box-direction: normal;
  70. -webkit-flex-direction: row;
  71. flex-direction: row;
  72. -webkit-box-align: center;
  73. -webkit-align-items: center;
  74. align-items: center;
  75. color: #fff;
  76. }
  77. .myBox .myhead .myNmae .myNmaeLeft .myNmaeImg {
  78. width: 128rpx;
  79. height: 128rpx;
  80. border-radius: 50%;
  81. padding-right: 32rpx;
  82. }
  83. .myBox .myhead .myNmae .myNmaeLeft .myNmaeImg image {
  84. width: 100%;
  85. height: 100%;
  86. border-radius: 50%;
  87. background-color: #fff;
  88. }
  89. .myBox .myhead .myNmae .myNmaeRight {
  90. width: 144rpx;
  91. height: 52rpx;
  92. background: rgba(255, 255, 255, 0.27);
  93. border-radius: 44rpx;
  94. border: 2rpx solid white;
  95. color: #fff;
  96. line-height: 52rpx;
  97. text-align: center;
  98. font-size: 24rpx;
  99. }
  100. .myBox .myorder {
  101. padding: 0 32rpx;
  102. }
  103. .myBox .myorder .orderList {
  104. padding: 28rpx 0;
  105. display: -webkit-box;
  106. display: -webkit-flex;
  107. display: flex;
  108. }
  109. .myBox .myorder .orderOne {
  110. -webkit-box-flex: 1;
  111. -webkit-flex: 1;
  112. flex: 1;
  113. -webkit-box-orient: vertical;
  114. -webkit-box-direction: normal;
  115. -webkit-flex-direction: column;
  116. flex-direction: column;
  117. text-align: center;
  118. }
  119. .myBox .myorder .orderOne .imagewidth {
  120. width: 44rpx;
  121. height: 44rpx;
  122. background-color: red;
  123. }