DonateKeyForm.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .com-donate-key{
  2. width:95%;
  3. margin:auto;
  4. margin-bottom:10px;
  5. border:3px solid #653b18;
  6. border-radius: 10px;
  7. height:260px;
  8. display:flex;
  9. flex-direction: column;
  10. position:relative;
  11. overflow: hidden;
  12. z-index:890;
  13. margin-bottom:70px;
  14. .bg{
  15. width:100%;
  16. height:100%;
  17. position: absolute;
  18. background:#FFF;
  19. top:0px;
  20. left:0px;
  21. opacity: 0.8;
  22. z-index:-1;
  23. }
  24. .current{
  25. height:40px;
  26. line-height: 40px;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. font-size:12px;
  31. color:$teacher-main-color;
  32. }
  33. .press-key{
  34. height:30px;
  35. line-height: 30px;
  36. display:flex;
  37. flex-direction: row;
  38. justify-content: center;
  39. align-items: center;
  40. .sign{
  41. background:#9b7f6a;
  42. height:25px;
  43. width: 30px;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. color:#FFF;
  48. }
  49. .text{
  50. width:50px;
  51. height:25px;
  52. overflow: hidden;
  53. text-align:center;
  54. }
  55. .left{
  56. border-top-left-radius: 10px;
  57. border-bottom-left-radius: 10px;
  58. }
  59. .right{
  60. border-top-right-radius: 10px;
  61. border-bottom-right-radius: 10px;
  62. }
  63. }
  64. .number-key{
  65. display: flex;
  66. margin-left: 10px;
  67. margin-right: 10px;
  68. margin-top:10px;
  69. flex-direction:row;
  70. .left{
  71. display: flex;
  72. width:70%;
  73. flex-direction: column;
  74. .number{
  75. .key{
  76. float:left;
  77. background:#9b7f6a;
  78. width:30%;
  79. margin-right: 3px;
  80. height:40px;
  81. margin-bottom:5px;
  82. margin-left:3px;
  83. display:flex;
  84. justify-content: center;
  85. align-items: center;
  86. color:#FFF;
  87. border-radius: 10px;
  88. font-size:12px;
  89. }
  90. }
  91. .number1{
  92. display:flex;
  93. flex-direction: row;
  94. height:30px;
  95. .key{
  96. width:40%;
  97. display:flex;
  98. justify-content: center;
  99. align-items: center;
  100. color:#FFF;
  101. border-radius: 10px;
  102. background:#9b7f6a;
  103. margin-left:5px;
  104. font-size:12px;
  105. }
  106. .all{
  107. width:60%;
  108. display:flex;
  109. justify-content: center;
  110. align-items: center;
  111. color:#FFF;
  112. border-radius: 10px;
  113. background:#9b7f6a;
  114. margin-left:5px;
  115. margin-right: 10px;
  116. font-size:12px;
  117. }
  118. }
  119. }
  120. .right{
  121. width:30%;
  122. display: flex;
  123. flex-direction: column;
  124. .delete{
  125. background:#9b7f6a;
  126. // margin-left:5px;
  127. margin-right:5px;
  128. display: flex;
  129. color:#FFF;
  130. justify-content: center;
  131. align-items: center;
  132. height:30%;
  133. border-radius: 10px;
  134. font-size:12px;
  135. }
  136. .enter{
  137. background:#9b7f6a;
  138. // margin-left:5px;
  139. margin-right:5px;
  140. display: flex;
  141. color:#FFF;
  142. justify-content: center;
  143. align-items: center;
  144. height:65%;
  145. border-radius: 10px;
  146. margin-top:5px;
  147. font-size:12px;
  148. }
  149. }
  150. }
  151. }