quantify.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .quantifyContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background-color: #f2f2f2;
  6. height: 100vh;
  7. }
  8. .tip{
  9. display: flex;
  10. align-self: flex-start;
  11. margin: 3%;
  12. width: 100%;
  13. }
  14. .tip text{
  15. color: #fbac15;
  16. margin-left: 3%;
  17. }
  18. .quantifyBox{
  19. display: flex;
  20. flex-direction: column;
  21. width: 90%;
  22. margin-top: 5%;
  23. }
  24. .oilInfoBox{
  25. display: flex;
  26. align-items: center;
  27. background-color: #FFFFFF;
  28. border-radius: 10rpx;
  29. height: 18vh;
  30. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  31. }
  32. .oilInfoBox image {
  33. width: 200rpx;
  34. height: 200rpx;
  35. }
  36. .oilInfo{
  37. display: flex;
  38. flex-direction: column;
  39. margin-left: 10%;
  40. }
  41. .oil{
  42. font-weight: 600;
  43. font-size: x-large;
  44. }
  45. .flip-image {transform: scaleX(-1);}
  46. .price{
  47. border: #0d7ee7 solid 5rpx;
  48. background-color: #e8efff;
  49. border-radius: 18rpx;
  50. margin-top: 5%;
  51. padding: 10%;
  52. font-size: larger;
  53. font-weight: 600;
  54. color: #0d7ee7;
  55. width: 100%;
  56. }
  57. .inputBox{
  58. display: flex;
  59. flex-direction: column;
  60. background-color: #FFFFFF;
  61. border-radius: 10rpx;
  62. height: 30vh;
  63. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  64. margin-top: 5%;
  65. padding: 5%;
  66. }
  67. .input{
  68. display: flex;
  69. justify-content: space-between;
  70. margin-bottom: 3%;
  71. }
  72. .input input{
  73. text-align: end;
  74. }
  75. .line{
  76. width: 100%;
  77. background-color: #8a8989;
  78. height: 1rpx;
  79. margin-bottom: 5%;
  80. }
  81. .fastInput{
  82. display: flex;
  83. flex-wrap: wrap;
  84. height: 50%;
  85. }
  86. .fastItem{
  87. flex:1 1 25%;
  88. box-sizing: border-box;
  89. text-align: center;
  90. border: #f2f2f2 solid 2rpx;
  91. background-color: #f2f2f2;
  92. border-radius: 30rpx;
  93. margin: 1%;
  94. height: 100rpx;
  95. line-height: 100rpx;
  96. color: #acacac;
  97. }
  98. .fastItemClick{
  99. flex:1 1 25%;
  100. box-sizing: border-box;
  101. text-align: center;
  102. border: #f2f2f2 solid 2rpx;
  103. background-color: #0d7ee7;
  104. border-radius: 30rpx;
  105. margin: 1%;
  106. height: 100rpx;
  107. line-height: 100rpx;
  108. color: #ffffff;
  109. }
  110. .typeSelect{
  111. display: flex;
  112. margin-top: 5%;
  113. }
  114. .typeSelect radio{
  115. margin: 3% 3% 0% 3%;
  116. }
  117. .anthorization{
  118. background-color: #0d7ee7;
  119. color: #FFFFFF;
  120. margin-top: 5%;
  121. width: 90%;
  122. height: 7vh;
  123. display: flex;
  124. align-items: center;
  125. justify-content: center;
  126. border-radius: 20rpx;
  127. }
  128. .fast-item-hover {
  129. background-color: #e0e0e0;
  130. }
  131. .authorization-hover {
  132. background-color: #0a6bc5;
  133. color: white;
  134. }
  135. text[loading="true"] {
  136. animation: loadingAnimation 1s linear infinite;
  137. }
  138. @keyframes loadingAnimation {
  139. from {
  140. transform: rotate(0deg);
  141. }
  142. to {
  143. transform: rotate(360deg);
  144. }
  145. }