scenicDetail.wxss 701 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* pages/scenicDetail/scenicDetail.wxss */
  2. /* 景点照片 */
  3. .sceneryImgWrap{
  4. display: flex;
  5. width: 100%;
  6. justify-content: center;
  7. }
  8. .sceneryImg{
  9. width: 96%;
  10. border-radius: 20rpx;
  11. }
  12. /* 景点详情外部容器 */
  13. .sceneryDetailWrap{
  14. margin: 0 20rpx;
  15. }
  16. /* 景点标题 */
  17. .sceneryTitleWrap{
  18. margin: 30rpx 0;
  19. }
  20. .sceneryTitle{
  21. font-size: 46rpx;
  22. font-weight: bold;
  23. }
  24. /* 景点介绍内容 */
  25. .sceneryIntroContent{
  26. font-size: 32rpx;
  27. }
  28. /* 旅游注意事项和建议游玩时间 */
  29. .tourNotice{
  30. display: flex;
  31. margin-bottom: 20rpx;
  32. }
  33. .tourNoticeTitle{
  34. width: 34%;
  35. font-size: 34rpx;
  36. font-weight: bold;
  37. }
  38. .tourNoticeContent{
  39. width: 66%;
  40. }