金诚优选前端代码
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.

152 lines
3.0 KiB

  1. @import '../../../common/css/global';
  2. #store-payment {
  3. .order-item{
  4. margin-top: 10px;
  5. .title{
  6. height: 35px;
  7. line-height: 35px;
  8. color: #4A4A4A;
  9. background: #FFFFFF;
  10. padding: 0 20px;
  11. font-size: 14px;
  12. }
  13. .info{
  14. font-size: 14px;
  15. background: #FFFFFF;
  16. padding: 10px 20px;
  17. }
  18. .goods{
  19. background-image: none;
  20. color: #8a8a8a;
  21. .goods-item {
  22. display: flex;
  23. .item-left {
  24. overflow: hidden;
  25. image{
  26. width: 50px;
  27. height: 50px;
  28. border: 1px solid #e5e5e5;
  29. display: block;
  30. }
  31. }
  32. .item-right{
  33. flex: 1;
  34. padding-left: 10px;
  35. overflow: hidden;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: space-between;
  39. .item{
  40. display: flex;
  41. align-items: center;
  42. justify-content: space-between;
  43. .name{
  44. color: #000000;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. white-space: nowrap;
  48. width: 90%;
  49. }
  50. }
  51. }
  52. }
  53. }
  54. .type{
  55. label{
  56. display: flex;
  57. align-items: center;
  58. }
  59. }
  60. .money{
  61. font-size: 17px;
  62. color: #ed0000;
  63. }
  64. .balance{
  65. padding: 10px 20px;
  66. display: flex;
  67. align-items: center;
  68. .num{
  69. display: flex;
  70. align-items: center;
  71. flex: 1;
  72. margin-right: 20px;
  73. font-size: 20px;
  74. input{
  75. display: inline-block;
  76. width: 100%;
  77. outline: none;
  78. border: none;
  79. }
  80. i{
  81. font-size: 20px;
  82. color: #CCCCCC;
  83. }
  84. }
  85. .text{
  86. font-size: 14px;
  87. color:#0e7eff;
  88. }
  89. }
  90. .no-balance{
  91. background: #FFFFFF;
  92. padding: 10px 20px;
  93. }
  94. }
  95. .pay-balance{
  96. background: #FFFFFF;
  97. padding: 10px 20px;
  98. margin-top: 8px;
  99. }
  100. .order-info{
  101. margin-top: 10px;
  102. padding: 0px 20px;
  103. .item{
  104. display: flex;
  105. align-items: center;
  106. justify-content: space-between;
  107. font-size: 14px;
  108. .left{
  109. color:#8a8a8a;
  110. }
  111. }
  112. }
  113. button{
  114. margin: 20px;
  115. background: #FB5054;
  116. color: #FFFFFF;
  117. &:after {
  118. border: none;
  119. }
  120. }
  121. radio .wx-radio-input{
  122. border-radius: 100%;
  123. background-color: #fff;
  124. border: 1px solid #c1caca;
  125. box-shadow: 0 1px 2px rgba(0,0,0,.05), inset 0 -15px 10px -12px rgba(0,0,0,.05);
  126. height: 14px;
  127. width: 14px;
  128. }
  129. radio .wx-radio-input.wx-radio-input-checked::before{
  130. border-radius: 100%;
  131. background-color: @globalColor;
  132. border: 3px solid @globalColor;
  133. }
  134. .order-over {
  135. text-align: center;
  136. padding: 20px 0;
  137. background: #FFF;
  138. .over-btn {
  139. display: inline-block;
  140. padding: 5px 10px;
  141. border: 1px solid @globalColor;
  142. font-size: 14px;
  143. border-radius: 20px;
  144. margin-top: 20px;
  145. color: @globalColor;
  146. }
  147. }
  148. }