guide.wxss 971 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* pages/guide/guide.wxss */
  2. .container {
  3. padding: 20rpx;
  4. background-color: #f7f7f7;
  5. }
  6. .header {
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. margin-bottom: 40rpx;
  11. }
  12. .header-image {
  13. width: 100%;
  14. border-radius: 16rpx;
  15. margin-bottom: 20rpx;
  16. }
  17. .title {
  18. font-size: 36rpx;
  19. font-weight: bold;
  20. color: #333;
  21. }
  22. .section {
  23. background-color: #fff;
  24. border-radius: 16rpx;
  25. padding: 30rpx;
  26. margin-bottom: 30rpx;
  27. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
  28. }
  29. .section-title {
  30. display: flex;
  31. align-items: center;
  32. margin-bottom: 20rpx;
  33. font-size: 32rpx;
  34. font-weight: bold;
  35. color: #1a73e8;
  36. }
  37. .icon {
  38. width: 40rpx;
  39. height: 40rpx;
  40. margin-right: 15rpx;
  41. }
  42. .content {
  43. display: flex;
  44. flex-direction: column;
  45. font-size: 28rpx;
  46. color: #555;
  47. line-height: 1.6;
  48. }
  49. .content text {
  50. margin-bottom: 15rpx;
  51. }
  52. .footer {
  53. text-align: center;
  54. font-size: 26rpx;
  55. color: #888;
  56. margin-top: 40rpx;
  57. padding: 20rpx;
  58. }