12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .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-weight: 400;
- font-size: 64px;
- font-family: "Rajdhani", "Orbitron", "DIN Condensed", sans-serif;
- color: #ffffff;
- }
- .item_label {
- position: absolute;
- top: 80px;
- 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: 120px;
- margin-top: 20px;
- z-index: 2000;
- }
- .overview_member_img {
- width: 960px;
- height: 120px;
- }
- .overview_member_title {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- width: 100%;
- height: 120px;
- font-weight: bold;
- font-size: 64px;
- color: #ffffff;
- }
- }
|