12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* pages/scenicDetail/scenicDetail.wxss */
- /* 景点照片 */
- .sceneryImgWrap{
- display: flex;
- flex-direction: column;
- margin-left: 20rpx;
- width: 100%;
- justify-content: center;
- }
- .sceneryImg{
- width: 96%;
- margin-bottom: 20rpx;
- 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%;
- }
- /* 去目的地按钮 */
- .goDestination{
- margin-bottom: 40rpx;
- }
- .button{
- /* background-color: skyblue; */
- color: white;
- }
|