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

135 lines
2.7 KiB

  1. @import '../../../common/css/global';
  2. #distribution-cash {
  3. .cash-to-card {
  4. position: fixed;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. text-align: center;
  9. color: #ffffff;
  10. background: @mainColor;
  11. font-size: 16px;
  12. padding: 12px 0px;
  13. }
  14. .cash-input-container {
  15. margin-bottom:10px;
  16. background: #ffffff;
  17. .cash-input-money {
  18. padding:12px 15px;
  19. font-size: 14px;
  20. color: #8a8a8a;
  21. }
  22. .cash-input-title {
  23. padding:12px 15px;
  24. font-size: 16px;
  25. color: #000000;
  26. font-weight: 600;
  27. }
  28. .cash-input-area {
  29. padding: 20px 15px;
  30. .cash-input {
  31. display: flex;
  32. justify-content: flex-start;
  33. align-items: center;
  34. flex-direction: row;
  35. flex-wrap: nowrap;
  36. .symbol {
  37. font-size: 32px;
  38. margin-right: 15px;
  39. text-indent: -5px;
  40. }
  41. input {
  42. flex: 1;
  43. border: none;
  44. font-size: 18px;
  45. align-self: center;
  46. }
  47. .delete {
  48. display: inline-block;
  49. width: 15px;
  50. height: 15px;
  51. border-radius: 100%;
  52. background: #cccccc;
  53. color: #ffffff;
  54. line-height: 15px;
  55. text-align: center;
  56. margin-right: 15px
  57. }
  58. .cash__input_all {
  59. color: #0e7eff;
  60. font-size: 14px;
  61. }
  62. }
  63. }
  64. }
  65. .cash-card {
  66. //height: 40px;
  67. &.content-box {
  68. background: #ffffff;
  69. padding: 12px 15px;
  70. display: flex;
  71. align-items: center;
  72. justify-content: space-between;
  73. margin-bottom: 10px;
  74. .toCashRecord {
  75. font-size:16px;
  76. line-height:40px;
  77. color:#000000;
  78. font-weight: bold;
  79. }
  80. .arrow {
  81. position: relative;
  82. width: 15px;
  83. height: 100%;
  84. float: right;
  85. &:before {
  86. position: absolute;
  87. content: '';
  88. width: 13px;
  89. height: 13px;
  90. border-top: 1px solid #a5a5a5;
  91. border-right: 1px solid #a5a5a5;
  92. left: -60%;
  93. top: 50%;
  94. transform: rotate(45deg) translate3d(0, -50%, 0);
  95. }
  96. }
  97. }
  98. .card-item {
  99. display: flex;
  100. align-items: center;
  101. width: 90%;
  102. height: 100%;
  103. line-height: 100%;
  104. image {
  105. display: inline-block;
  106. width: 25px;
  107. height: 25px;
  108. object-fit: fill;
  109. margin: 7px 5px 5px 5px;
  110. }
  111. .item__ul {
  112. display: inline-block;
  113. line-height: 1.3;
  114. .item_name{
  115. font-size: 16px;
  116. color: #000000;
  117. }
  118. .item_num{
  119. font-size: 13px;
  120. color: #8a8a8a;
  121. }
  122. }
  123. }
  124. }
  125. }