1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pagesPublic/pages/tdcr/tdcr-list/index.wxss */
- .main {
- width: 100%;
- height: 100vh;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- 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: 70rpx;
- background-size: 100%;
- position: relative;
- }
- .header {
- color: white;
- text-align: center;
- font-family: PingFang SC;
- font-weight: 800;
- font-size: 42rpx;
- width: 96vw;
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- }
|