12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* pages/about/about.wxss */
- .aboutPage {
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #FFFDFD;
- justify-content: space-between;
- }
- .aboutTitle {
- font-size: 32rpx;
- color: #1F2430;
- }
- image {
- width: 150rpx;
- height: 150rpx;
- margin-top: 160rpx;
- margin-bottom: 24rpx;
- }
- .softName {
- font-size: 24rpx;
- color: #333A5B;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- margin-bottom: 8rpx;
- }
- .softVersion {
- font-size: 20rpx;
- color: #8492A6;
- }
- .copyRight {
- color: #8492A6;
- font-size: 20rpx;
- font-weight: 400;
- }
- .flex{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .m30{
- margin-bottom: 30rpx;
- }
|