12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* pagesPublic/pages/tdcr/tdcr-list/index.wxss */
- .main {
- width: 100%;
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- background-size: 100% 100%;
- }
- .map-block {
- width: 80%;
- height: 47vh;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .map-block-item {
- position: absolute;
- }
- .map-block-item .item-name {
- width: 258rpx;
- height: 85rpx;
- line-height: 85rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: #00FFFF;
- background-size: 100% 100%;
- position: relative;
- text-align: center;
- padding: 5rpx 20rpx;
- }
- .map-block-item .item-line {
- border-left: dashed 1px #00FFFF;
- width: 1rpx;
- position: relative;
- }
- .map-block-item .item-postion {
- width: 40rpx;
- height: 40rpx;
- background-size: 100%;
- position: relative;
- }
|