1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- page {
- background-color: #0F0F1D;
- width: 100vw;
- height: 100vh;
- }
- .page {
- background: linear-gradient( 180deg, #24234B 0%, #0F0F1D 100%);
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- }
- .topBody {
- width: 100vw;
- height: calc(100vh - 88rpx);
- position: relative;
- .img {
- width: 100%;
- height: 100%;
- }
- .numlist {
- width: 100%;
- height: 170rpx;
- position: absolute;
- bottom: 64rpx;
- display: flex;
- justify-content: space-evenly;
- .icon{
- height: 176rpx;
- }
- .num {
- height: 100%;
- font-weight: bold;
- font-size: 40rpx;
- color: #FFFFFF;
- text-align: center;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- image {
- width:120rpx;
- }
- .name {
- font-size: 28rpx;color: #FFFFFF;font-weight: normal;
- }
- }
- }
-
-
- }
|