order.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/order/order.wxss */
  2. page{
  3. padding: 0;
  4. }
  5. .tab{
  6. height: 80rpx;
  7. display: flex;
  8. }
  9. .tab text{
  10. width: 50%;
  11. line-height: 80rpx;
  12. text-align: center;
  13. color: #333;
  14. font-size: 26rpx;
  15. background: #fff;
  16. transition: .5s;
  17. }
  18. .tab .act{
  19. color: #fff;
  20. background: #3780CD;
  21. }
  22. .content{
  23. height: calc(100vh - 80rpx);
  24. overflow: auto;
  25. padding: 30rpx;
  26. }
  27. .list{
  28. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  29. border-radius: 20rpx;
  30. display: flex;
  31. /* padding: 20rpx; */
  32. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  33. /* margin: 0 20rpx 40rpx; */
  34. padding: 28rpx;
  35. background: #fff;
  36. position: relative;
  37. margin-bottom: 40rpx;
  38. }
  39. .list image{
  40. width: 25%;
  41. height: 210rpx;
  42. }
  43. .list>view{
  44. width: 75%;
  45. padding-left: 20rpx;
  46. vertical-align: middle;
  47. }
  48. .list .title{
  49. margin-bottom: 20rpx;
  50. text-overflow: ellipsis;
  51. overflow: hidden;
  52. white-space: nowrap;
  53. font-size: 28rpx;
  54. }
  55. .list text{
  56. color: #999;
  57. display: block;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. display: -webkit-box;
  61. -webkit-line-clamp: 2;
  62. -webkit-box-orient: vertical;
  63. white-space: normal;
  64. font-size: 22rpx;
  65. }
  66. .btn{
  67. width: 132rpx;
  68. height: 56rpx;
  69. background: #09A65E;
  70. border-radius: 6px;
  71. text-align: center;
  72. line-height: 56rpx;
  73. color: #fff;
  74. font-size: 26rpx;
  75. position: absolute;
  76. bottom: 28rpx;
  77. right: 28rpx;
  78. }
  79. .bg{
  80. position: fixed;
  81. width: 100%;
  82. height: 100vh;
  83. top: 0;
  84. left: 0;
  85. z-index: 99;
  86. background: rgba(0,0,0,.5);
  87. padding: 50rpx 0;
  88. }
  89. .form{
  90. background: #fff;
  91. border-radius: 18rpx;
  92. padding: 80rpx 100rpx;
  93. display: block;
  94. position: absolute;
  95. width: 90%;
  96. height: 700rpx;
  97. margin: auto;
  98. top: 0;
  99. bottom: 0;
  100. left: 0;
  101. right: 0;
  102. text-align: center;
  103. }
  104. .form .tt{
  105. font-size: 32rpx;
  106. }
  107. .code{
  108. width: 400rpx;
  109. height: 400rpx;
  110. border: 1px solid #D0D0D0;
  111. margin: 40rpx auto;
  112. }
  113. .code image{
  114. width: 100%;
  115. }
  116. .form text{
  117. color: #999;
  118. font-size: 26rpx;
  119. }