123456789101112131415161718192021222324252627282930313233343536 |
- .container {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 420rpx;
- }
- .logo-img {
- width: 130rpx;
- height: 130rpx;
- }
- .logo {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 179rpx;
- height: 179rpx;
- background: #FFFFFF;
- box-shadow: 0 0 24rpx 0 rgba(255, 67, 48, 0.2);
- border-radius: 30rpx;
- }
- .label-class {
- font-size: 30rpx;
- color: #333333;
- }
- .value-class {
- width: 100%;
- font-size: 30rpx;
- color: #999999;
- text-align: right;
- }
|