1234567891011121314151617181920212223242526272829303132333435363738 |
- .container {
- position: absolute;
- width: 100%;
- height: 100%;
- .mapContent {
- width: 770px;
- height: 530px;
- }
- .content_num {
- position: absolute;
- top: 360px;
- left: 0;
- width: 280px;
- height: 195px;
- background-image: url('../../../public/assets/border2.png');
- .content {
- position: absolute;
- top: 60px;
- left: 75px;
- width: 100%;
- text-align: center;
- .content_title {
- color: #fff;
- font-size: 15px;
- line-height: 40px;
- }
- .content_value {
- margin-left: 35px;
- color: #fff;
- font-weight: bold;
- font-size: 25px;
- background-image: -webkit-linear-gradient(bottom, #5197ff, #80f2ff);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- }
- }
|