123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- .quantifyContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #f2f2f2;
- height: 100vh;
- }
- .tip{
- display: flex;
- align-self: flex-start;
- margin: 3%;
- width: 100%;
- }
- .tip text{
- color: #fbac15;
- margin-left: 3%;
- }
- .quantifyBox{
- display: flex;
- flex-direction: column;
- width: 90%;
- margin-top: 5%;
- }
- .oilInfoBox{
- display: flex;
- align-items: center;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- height: 18vh;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- }
- .oilInfoBox image {
- width: 200rpx;
- height: 200rpx;
- }
- .oilInfo{
- display: flex;
- flex-direction: column;
- margin-left: 10%;
- }
- .oil{
- font-weight: 600;
- font-size: x-large;
- }
- .price{
- border: #b7332e solid 5rpx;
- background-color: #ffebec;
- border-radius: 18rpx;
- margin-top: 5%;
- padding: 10%;
- font-size: larger;
- font-weight: 600;
- color: #b7332e;
- width: 100%;
- }
- .inputBox{
- display: flex;
- flex-direction: column;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- height: 30vh;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- margin-top: 5%;
- padding: 5%;
- }
- .input{
- display: flex;
- justify-content: space-between;
- margin-bottom: 3%;
- }
- .input input{
- text-align: end;
- }
- .line{
- width: 100%;
- background-color: #8a8989;
- height: 1rpx;
- margin-bottom: 5%;
- }
- .fastInput{
- display: flex;
- flex-wrap: wrap;
- height: 50%;
- }
- .fastItem{
- flex:1 1 25%;
- box-sizing: border-box;
- text-align: center;
- border: #f2f2f2 solid 2rpx;
- background-color: #f2f2f2;
- border-radius: 30rpx;
- margin: 1%;
- height: 100rpx;
- line-height: 100rpx;
- color: #acacac;
- }
- .typeSelect{
- display: flex;
- margin-top: 5%;
- }
- .typeSelect radio{
- margin: 3% 3% 0% 3%;
- }
- .anthorization{
- background-color: #d81e07;
- color: #FFFFFF;
- margin-top: 5%;
- width: 90%;
- height: 7vh;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 20rpx;
- }
|