123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .overview {
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- .overview_bg {
- width: 960px;
- height: 120px;
- }
- .overview_title {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- font-weight: bold;
- font-size: 64px;
- color: #fff;
- }
- .overview_content {
- flex: 1;
- height: 100%;
- width: 100%;
- display: flex;
- .overview_content_item {
- position: relative;
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .item_img {
- width: 172px;
- height: 240px;
- }
- .item_value {
- position: absolute;
- top: 0;
- font-family: YouSheBiaoTiHei;
- font-weight: 400;
- font-size: 64px;
- color: #ffffff;
- }
- .item_label {
- position: absolute;
- top: 100px;
- font-family: Source Han Sans CN, Source Han Sans CN;
- font-weight: 400;
- font-size: 32px;
- color: #ffffff;
- }
- }
- }
- }
|