quantify.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. .typeSelect{
  99. display: flex;
  100. margin-top: 5%;
  101. }
  102. .typeSelect radio{
  103. margin: 3% 3% 0% 3%;
  104. }
  105. .anthorization{
  106. background-color: #0d7ee7;
  107. color: #FFFFFF;
  108. margin-top: 5%;
  109. width: 90%;
  110. height: 7vh;
  111. display: flex;
  112. align-items: center;
  113. justify-content: center;
  114. border-radius: 20rpx;
  115. }
  116. .fast-item-hover {
  117. background-color: #e0e0e0;
  118. }
  119. .authorization-hover {
  120. background-color: #0a6bc5;
  121. color: white;
  122. }
  123. text[loading="true"] {
  124. animation: loadingAnimation 1s linear infinite;
  125. }
  126. @keyframes loadingAnimation {
  127. from {
  128. transform: rotate(0deg);
  129. }
  130. to {
  131. transform: rotate(360deg);
  132. }
  133. }