1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .grld {
- width: 100vw;
- background-color: #fff;
- box-sizing: border-box;
- padding-top: 30rpx;
- .group {
- margin-bottom: 30rpx;
- .label {
- height: 36rpx;
- font-size: 30rpx;
- font-family: AppleSystemUIFont-Bold, AppleSystemUIFont;
- font-weight: bold;
- color: #333333;
- margin-bottom: 10rpx;
- text {
- margin: 0 20rpx 0 30rpx;
- }
- }
- .main {
- display: flex;
- flex-wrap: wrap;
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx 0;
- width: 20%;
- border-radius: 16rpx;
- .icon-box {
- width: 80rpx;
- border-radius: 16rpx;
- line-height: 80rpx;
- text-align: center;
- text {
- font-size: 40rpx;
- }
- }
- .name {
- width: 80%;
- line-height: 30rpx;
- font-size: 24rpx;
- font-family: AppleSystemUIFont-Regular, AppleSystemUIFont;
- color: #333333;
- margin-top: 16rpx;
- text-align: center;
- }
- }
- }
- }
- }
|