123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* pages/scenicDetail/scenicDetail.wxss */
- /* 景点照片 */
- .sceneryImgWrap{
- display: flex;
- width: 100%;
- justify-content: center;
- }
- .sceneryImg{
- width: 96%;
- border-radius: 20rpx;
- }
- /* 景点详情外部容器 */
- .sceneryDetailWrap{
- margin: 0 20rpx;
- }
- /* 景点标题 */
- .sceneryTitleWrap{
- margin: 30rpx 0;
- }
- .sceneryTitle{
- font-size: 46rpx;
- font-weight: bold;
- }
- /* 景点介绍内容 */
- .sceneryIntroContent{
- font-size: 32rpx;
- }
- /* 旅游注意事项和建议游玩时间 */
- .tourNotice{
- display: flex;
- margin-bottom: 20rpx;
- }
- .tourNoticeTitle{
- width: 34%;
- font-size: 34rpx;
- font-weight: bold;
- }
- .tourNoticeContent{
- width: 66%;
- }
|