123456789101112131415161718192021222324252627282930 |
- .components.AreaPickerView {
- width: 100%;
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- z-index: 100;
- background: rgba(0, 0, 0, 0.6);
- > view {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- height: 600px;
- background: #fff;
- >.flex-h {
- align-items: center;
- padding: 0 30px;
- border-bottom: 2px solid rgba(0, 0, 0, 0.08);
- >text {
- font-size: 28px;
- line-height: 80px;
- color: #193C83;
- &:first-child {
- color: #ccc;
- }
- }
- }
- }
- }
|