123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- span{
- em{
- color: red;
- }
- }
- .map{
- height: 500px;
- background: #eee;
- position: relative;
- overflow: hidden;
- box-sizing: border-box;
- border: 1px solid #dcdfe6;
-
- &>div.search{
- display: inline-block;
- position: absolute;
- padding: 10px;
- }
-
- &>div.flex-item{
- width: 100%;
- &>div{
- width: 100%;
- height: 100%;
- position: relative;
- overflow: hidden;
- }
- }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|