VehicleInquiry.scss 917 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .container {
  2. min-height: calc(100vh - 88px);
  3. background: url('/static/img/license-query-bg.png') no-repeat center center;
  4. background-size: cover;
  5. padding: 44px 40rpx 0;
  6. font-family: PingFang SC;
  7. &-vehicle {
  8. width: 326rpx;
  9. height: 197rpx;
  10. margin: 0 auto 44rpx;
  11. }
  12. &-content {
  13. background-color: #fff;
  14. border-radius: 20rpx;
  15. padding: 27rpx 40rpx 53rpx;
  16. &-search {
  17. &-title {
  18. font-size: 36rpx;
  19. color: #333333;
  20. font-weight: 600;
  21. margin-bottom: 20rpx;
  22. }
  23. }
  24. &-choose {
  25. margin-top: 30rpx;
  26. display: flex;
  27. justify-content: center;
  28. }
  29. &-list {
  30. border-top: solid 1px #CCCCCC;
  31. &-item {
  32. display: flex;
  33. justify-content: space-between;
  34. padding: 30rpx 0;
  35. color: #333333;
  36. font-size: 40rpx;
  37. }
  38. }
  39. &-confirm {
  40. margin-top: 200rpx;
  41. }
  42. }
  43. }