12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .overview {
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- .overview_bg {
- width: 720px;
- height: 92px;
- }
- .overview_title {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- font-weight: bold;
- font-size: 48px;
- color: #fff;
- }
- .overview_content {
- // flex: 1;
- height: 252px;
- 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: 129px;
- height: 180px;
- }
- .item_value {
- position: absolute;
- top: 40px;
- font-weight: 400;
- font-size: 48px;
- font-family: "Rajdhani", "Orbitron", "DIN Condensed", sans-serif;
- 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;
- }
- }
- }
- .overview_member {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 92px;
- // margin-top: 20px;
- z-index: 2000;
- }
- .overview_member_img {
- width: 720px;
- height: 92px;
- }
- .overview_member_title {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- width: 100%;
- height: 56px;
- font-weight: bold;
- font-size: 48px;
- color: #ffffff;
- }
- }
|