quantify.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. }
  23. .oilInfoBox{
  24. display: flex;
  25. align-items: center;
  26. background-color: #FFFFFF;
  27. border-radius: 10rpx;
  28. height: 18vh;
  29. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  30. }
  31. .oilInfoBox image {
  32. width: 200rpx;
  33. height: 200rpx;
  34. }
  35. .oilInfo{
  36. display: flex;
  37. flex-direction: column;
  38. margin-left: 10%;
  39. }
  40. .oil{
  41. font-weight: 600;
  42. font-size: x-large;
  43. }
  44. .price{
  45. border: #d81e07 solid 1rpx;
  46. background-color: #ffebec;
  47. border-radius: 18rpx;
  48. margin-top: 5%;
  49. }
  50. .inputBox{
  51. display: flex;
  52. flex-direction: column;
  53. background-color: #FFFFFF;
  54. border-radius: 10rpx;
  55. height: 30vh;
  56. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  57. margin-top: 5%;
  58. padding: 5%;
  59. }
  60. .input{
  61. display: flex;
  62. justify-content: space-between;
  63. margin-bottom: 3%;
  64. }
  65. .input input{
  66. text-align: end;
  67. }
  68. .line{
  69. width: 100%;
  70. background-color: #8a8989;
  71. height: 1rpx;
  72. margin-bottom: 5%;
  73. }
  74. .fastInput{
  75. display: flex;
  76. flex-wrap: wrap;
  77. height: 50%;
  78. }
  79. .fastItem{
  80. flex:1 1 25%;
  81. box-sizing: border-box;
  82. text-align: center;
  83. border: #f2f2f2 solid 2rpx;
  84. background-color: #f2f2f2;
  85. border-radius: 30rpx;
  86. margin: 1%;
  87. height: 100rpx;
  88. line-height: 100rpx;
  89. color: #acacac;
  90. }
  91. .typeSelect{
  92. display: flex;
  93. margin-top: 5%;
  94. }
  95. .typeSelect radio{
  96. margin: 3% 3% 0% 3%;
  97. }
  98. .anthorization{
  99. background-color: #d81e07;
  100. color: #FFFFFF;
  101. margin-top: 5%;
  102. width: 90%;
  103. height: 7vh;
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. border-radius: 20rpx;
  108. }