123456789101112131415161718192021222324252627 |
- /* pages/aboutInfo/aboutInfo.wxss */
- .aboutInfo{
- background-color: #fffaf3;
- }
- .content{
- display: flex;
- flex-direction: column;
- padding: 30rpx;
- overflow: auto;
- }
- .aboutInfo .content .time{
- text-align: center;
- }
- .aboutInfo .content text{
- text-align: justify;
- }
- .aboutInfo .content .time, .aboutInfo .content text{
- line-height: 44rpx;
- font-size: 30rpx;
- margin: 0 0 30rpx;
- font-weight: 400;
- color: #000;
- }
- .aboutInfo .content .fontWeight{
- font-weight: 700;
- font-size: 36rpx;
- }
|