123456789101112131415161718192021222324252627 |
- /* pages/aboutUs/aboutUs.wxss */
- page{
- background-color: #F7F7F7;
- }
- .item-view{
- width: 750rpx;
- height: 112rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- background-color: #fff;
- }
- .item-view>text:nth-child(1){
- width: auto;
- height: 44rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 44rpx;
- margin: auto auto auto 32rpx;
- }
- .item-view>image:nth-child(2){
- width: 48rpx;
- height: 48rpx;
- margin: auto 16rpx auto auto;
- }
|