| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- body {
- padding: 0px;
- margin: 0px;
- width: 100vw;
- overflow-y: auto;
- overflow-x: auto;
- }
- .echart {
- width: 1334px;
- height: 1080px;
- }
- .data {
- width: 586px;
- height: 1080px;
- background: url("right.png") no-repeat;
- }
- .data > div:nth-child(1) {
- margin-top: 240px;
- width: 100%;
- font-size: 40px;
- color: #ffffff;
- text-align: center;
- }
- .data > div:nth-child(2) {
- margin-top: 30px;
- width: 100%;
- font-size: 16px;
- color: #ffffff;
- text-align: center;
- }
- /*.data>div:nth-child(2)>span:nth-child(1){padding-left:22px;background:url("red.png") no-repeat 5px 5px;}
- .data>div:nth-child(2)>span:nth-child(2){padding-left:22px;background:url("green.png") no-repeat 5px 5px;}*/
- .data > div:nth-child(3) {
- margin-top: 70px;
- color: #ffffff;
- }
- .data .item {
- display: flex;
- align-items: center;
- padding-left: 60px;
- margin-bottom: 10px;
- }
- .data .item > span {
- line-height: 30px;
- text-align: center;
- }
- .data .item > span:nth-child(1) {
- width: 100px;
- }
- .data .item > span:nth-child(2) {
- width: 200px;
- /* 溢出隐藏 */
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding: 0 10px;
- }
- .data .item > span:nth-child(3) {
- width: 150px;
- }
- .data .title {
- color: #2495bf;
- }
- .title-icon {
- position: absolute;
- top: 135px;
- left: 24%;
- color: black;
- z-index: 10000;
- }
- .title-icon span:nth-child(1) {
- padding-left: 22px;
- background: url("blue.png") no-repeat 5px 5px;
- }
- .title-icon span:nth-child(2) {
- padding-left: 22px;
- background: url("yellow.png") no-repeat 5px 5px;
- }
- .title-icon span:nth-child(3) {
- padding-left: 22px;
- background: url("red.png") no-repeat 5px 5px;
- }
|