12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .figure-box {
- width: 100vw;
- padding: 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- .item {
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- border-radius: 6rpx;
- width: 48%;
- .title {
- font-size: 24rpx;
- display: flex;
- justify-content: space-between;
- text {
- color: #06CD9B;
- .iconfont{
- font-size: 22rpx;
- }
- }
- }
- .value {
- font-size: 36rpx;
- font-weight: bold;
- margin-top: 14rpx;
- text {
- font-size: 24rpx;
- font-weight: normal;
- margin-left: 2px;
- }
- }
- }
- }
|