index.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .about-container {
  2. min-height: 100vh;
  3. background-color: #f5f5f5;
  4. padding: 40rpx 30rpx;
  5. box-sizing: border-box;
  6. }
  7. .header {
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. padding: 60rpx 0;
  12. background-color: #ffffff;
  13. border-radius: 16rpx;
  14. margin-bottom: 20rpx;
  15. }
  16. .header .logo {
  17. width: 160rpx;
  18. height: 160rpx;
  19. margin-bottom: 20rpx;
  20. }
  21. .header .app-name {
  22. font-size: 36rpx;
  23. font-weight: bold;
  24. color: #333;
  25. margin-bottom: 10rpx;
  26. }
  27. .header .version {
  28. font-size: 24rpx;
  29. color: #999;
  30. }
  31. .section {
  32. background-color: #ffffff;
  33. border-radius: 16rpx;
  34. padding: 30rpx;
  35. margin-bottom: 20rpx;
  36. }
  37. .section .section-title {
  38. font-size: 32rpx;
  39. font-weight: bold;
  40. color: #333;
  41. margin-bottom: 20rpx;
  42. }
  43. .section .content {
  44. font-size: 28rpx;
  45. color: #666;
  46. line-height: 1.6;
  47. }
  48. .section .contact-list .contact-item {
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. padding: 20rpx 0;
  53. border-bottom: 1rpx solid #f0f0f0;
  54. }
  55. .section .contact-list .contact-item:last-child {
  56. border-bottom: none;
  57. }
  58. .section .contact-list .contact-item .label {
  59. font-size: 28rpx;
  60. color: #333;
  61. }
  62. .section .contact-list .contact-item .value {
  63. font-size: 28rpx;
  64. color: #666;
  65. }
  66. .footer {
  67. text-align: center;
  68. padding: 40rpx 0;
  69. }
  70. .footer text {
  71. display: block;
  72. font-size: 24rpx;
  73. color: #999;
  74. line-height: 1.5;
  75. }