abouthelp.wxss 545 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pages/abouthelp/abouthelp.wxss */
  2. text{
  3. font-size: 24px;
  4. }
  5. .bordered-text {
  6. border: 2px dotted rgb(214, 227, 236);
  7. padding: 5px 10px;
  8. }
  9. image{
  10. height: 40%;
  11. width: 15%;
  12. }
  13. .developer-info {
  14. padding: 30rpx;
  15. font-size: 28rpx;
  16. color: #666;
  17. background: #f7f7f7;
  18. border-radius: 12rpx;
  19. }
  20. .info-item {
  21. display: flex;
  22. align-items: center;
  23. margin-bottom: 20rpx;
  24. }
  25. .icon {
  26. width: 32rpx;
  27. height: 32rpx;
  28. margin-right: 16rpx;
  29. }
  30. .copyright {
  31. text-align: center;
  32. margin-top: 40rpx;
  33. color: #999;
  34. font-size: 24rpx;
  35. }