quantify.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. .price{
  46. border: #b7332e solid 5rpx;
  47. background-color: #ffebec;
  48. border-radius: 18rpx;
  49. margin-top: 5%;
  50. padding: 10%;
  51. font-size: larger;
  52. font-weight: 600;
  53. color: #b7332e;
  54. width: 100%;
  55. }
  56. .inputBox{
  57. display: flex;
  58. flex-direction: column;
  59. background-color: #FFFFFF;
  60. border-radius: 10rpx;
  61. height: 30vh;
  62. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  63. margin-top: 5%;
  64. padding: 5%;
  65. }
  66. .input{
  67. display: flex;
  68. justify-content: space-between;
  69. margin-bottom: 3%;
  70. }
  71. .input input{
  72. text-align: end;
  73. }
  74. .line{
  75. width: 100%;
  76. background-color: #8a8989;
  77. height: 1rpx;
  78. margin-bottom: 5%;
  79. }
  80. .fastInput{
  81. display: flex;
  82. flex-wrap: wrap;
  83. height: 50%;
  84. }
  85. .fastItem{
  86. flex:1 1 25%;
  87. box-sizing: border-box;
  88. text-align: center;
  89. border: #f2f2f2 solid 2rpx;
  90. background-color: #f2f2f2;
  91. border-radius: 30rpx;
  92. margin: 1%;
  93. height: 100rpx;
  94. line-height: 100rpx;
  95. color: #acacac;
  96. }
  97. .typeSelect{
  98. display: flex;
  99. margin-top: 5%;
  100. }
  101. .typeSelect radio{
  102. margin: 3% 3% 0% 3%;
  103. }
  104. .anthorization{
  105. background-color: #d81e07;
  106. color: #FFFFFF;
  107. margin-top: 5%;
  108. width: 90%;
  109. height: 7vh;
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. border-radius: 20rpx;
  114. }