1234567891011121314151617181920212223242526272829303132333435363738 |
- /* pages/abouthelp/abouthelp.wxss */
- text{
- font-size: 24px;
- }
- .bordered-text {
- border: 2px dotted rgb(214, 227, 236);
- padding: 5px 10px;
- }
- image{
- height: 40%;
- width: 15%;
- }
- .developer-info {
- padding: 30rpx;
- font-size: 28rpx;
- color: #666;
- background: #f7f7f7;
- border-radius: 12rpx;
- }
- .info-item {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 16rpx;
- }
- .copyright {
- text-align: center;
- margin-top: 40rpx;
- color: #999;
- font-size: 24rpx;
- }
|