12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .task-map-container {
- height: 100%;
- .minemap-map {
- .minemap-popup-tip {
- display: none;
- }
- .minemap-popup-content {
- max-width: max-content;
- padding: unset;
- width: 350px;
- .title {
- width: 350px;
- height: 44px;
- line-height: 44px;
- padding: 0 20px;
- box-sizing: border-box;
- background: #003a8c;
- border-radius: 1px;
- font-size: 16px;
- color: #fff;
- }
- .action {
- padding: 0 24px 24px;
- }
- .content {
- height: max-content;
- padding: 24px;
- background: #fff;
- > div {
- display: flex;
- font-size: 14px;
- line-height: 20px;
- margin-bottom: 10px;
- > span:first-child {
- color: #666666;
- min-width: max-content;
- }
- > span:last-child {
- color: #333;
- word-break: break-all;
- }
- }
- }
- }
- }
- .address-type-card {
- position: absolute;
- top: 30px;
- right: 30px;
- width: max-content;
- min-width: 136px;
- background: rgba(255, 255, 255, 0.95);
- border-radius: 1px;
- padding: 20px;
- box-sizing: border-box;
- .card-item {
- display: flex;
- align-items: center;
- margin-right: 0;
- & > span {
- font-size: 14px;
- font-weight: 400;
- }
- }
- }
- }
|