scenicDetail.wxss 918 B

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