金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

186 lines
3.4 KiB

  1. #order-detail{
  2. .status-title {
  3. height: 70px;
  4. line-height: 70px;
  5. text-align: center;
  6. color: #31baff;
  7. background: #e5f6ff;
  8. font-weight: bold;
  9. font-size: 18px;
  10. }
  11. .status-title1{
  12. height: 70px;
  13. line-height: 70px;
  14. text-align: center;
  15. color: #b4b4b4;
  16. background: #f5f5f5;
  17. font-weight: bold;
  18. font-size: 18px;
  19. }
  20. .detail_content{
  21. background-color: #ffffff;
  22. .store_title{
  23. display: flex;
  24. align-items: flex-start;
  25. padding: 10px;
  26. line-height: 20px;
  27. .img{
  28. width: 70px;
  29. height: 70px;
  30. border: 1px solid #e5e5e5;
  31. image{
  32. width: 68px;
  33. height: 68px;
  34. }
  35. }
  36. .store_text{
  37. flex: 1;
  38. padding-left: 10px;
  39. overflow: hidden;
  40. .name{
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. white-space: nowrap;
  44. }
  45. .num{
  46. color:#959595;
  47. }
  48. }
  49. }
  50. .store_content{
  51. padding: 10px;
  52. line-height: 30px;
  53. .store_content_title{
  54. display: flex;
  55. view{
  56. &:first-child{
  57. color: #959595;
  58. }
  59. &:nth-child(2){
  60. flex:1;
  61. padding-left: 25px;
  62. }
  63. }
  64. }
  65. }
  66. }
  67. .status_content{
  68. padding: 10px;
  69. margin: 15px;
  70. border-radius: 8px;
  71. background-color: #3a3a3a;
  72. color: #ffffff;
  73. .status_title{
  74. padding-bottom: 10px;
  75. border-bottom: 1px solid #ffffff;
  76. }
  77. .content{
  78. margin-top: 10px;
  79. }
  80. }
  81. .submit{
  82. position: absolute;
  83. /* #ifdef APP-PLUS || MP-WEIXIN */
  84. bottom: 0;
  85. /* #endif */
  86. /* #ifdef H5 */
  87. bottom: -44px;
  88. /* #endif */
  89. width: 100%;
  90. display: flex;
  91. align-items: center;
  92. text-align: center;
  93. height: 50px;
  94. line-height: 50px;
  95. /* .bottom{
  96. bottom: 50px;
  97. } */
  98. .return-button {
  99. flex: 1;
  100. height: 50px;
  101. line-height: 50px;
  102. color: #FFFFFF;
  103. background: #ED0000;
  104. }
  105. .cancel {
  106. flex: 1;
  107. height: 50px;
  108. line-height: 50px;
  109. color: #0479ff;
  110. background: #FFFFFF;
  111. }
  112. }
  113. button{
  114. border-radius: 0;
  115. font-size: 16px;
  116. &::after{
  117. border: none;
  118. }
  119. }
  120. .popup{
  121. width: 100%;
  122. height:100%;
  123. position: fixed;
  124. left:0;
  125. top: 0;
  126. z-index: 99;
  127. background-color: rgba(1,1,1,.4);
  128. .popup_alert{
  129. position: absolute;
  130. transform: translate(-50%,-50%);
  131. left: 50%;
  132. top: 50%;
  133. display: flex;
  134. flex-direction: column;
  135. background-color: #FFFFFF;
  136. width: 80%;
  137. height: 180px;
  138. .title{
  139. text-align: center;
  140. line-height:20px;
  141. border:1px solid #cccccc;
  142. padding-top:10px;
  143. padding-bottom:10px;
  144. }
  145. .buttom{
  146. display: flex;
  147. border-top: 1px solid #cccccc;
  148. padding-top: 10px;
  149. padding-bottom: 10px;
  150. .cancel{
  151. flex: 1;
  152. color:#b3b3b3;
  153. text-align: center;
  154. border-right: 1px solid #cccccc;
  155. }
  156. .confirm{
  157. color: green;
  158. text-align: center;
  159. flex: 1;
  160. }
  161. }
  162. .content{
  163. flex: 1;
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. input{
  168. display: inline-block;
  169. border: 1px solid black;
  170. width: 80%;
  171. }
  172. }
  173. }
  174. }
  175. }