12345678910111213141516171819202122232425262728293031323334353637 |
- .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;
- font-weight: 500;
- color: #333333;
- }
- .value-class {
- width: 100%;
- font-size: 30rpx;
- font-weight: 400;
- color: #999999;
- text-align: right;
- }
|