123456789101112131415161718192021222324252627282930
  1. .components.AreaPickerView {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. bottom: 0;
  7. z-index: 100;
  8. background: rgba(0, 0, 0, 0.6);
  9. > view {
  10. width: 100%;
  11. position: absolute;
  12. left: 0;
  13. bottom: 0;
  14. height: 600px;
  15. background: #fff;
  16. >.flex-h {
  17. align-items: center;
  18. padding: 0 30px;
  19. border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  20. >text {
  21. font-size: 28px;
  22. line-height: 80px;
  23. color: #193C83;
  24. &:first-child {
  25. color: #ccc;
  26. }
  27. }
  28. }
  29. }
  30. }