VehicleInquiry.scss 996 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. margin-bottom: 30rpx;
  18. &-title {
  19. font-size: 36rpx;
  20. color: #333333;
  21. font-weight: 600;
  22. margin-bottom: 20rpx;
  23. }
  24. }
  25. &-choose {
  26. display: flex;
  27. justify-content: center;
  28. &-text {
  29. margin-bottom: 20rpx;
  30. }
  31. }
  32. &-list {
  33. border-top: solid 1px #cccccc;
  34. margin-bottom: 200rpx;
  35. &-item {
  36. display: flex;
  37. justify-content: space-between;
  38. padding: 30rpx 0;
  39. color: #333333;
  40. font-size: 34rpx;
  41. border-bottom: solid 1px #cccccc;
  42. }
  43. }
  44. }
  45. }