12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .scenicNo{
- font-size: 32rpx;
- color: gray;
- padding: 20rpx;
- }
- .scenery{
- display: flex;
- padding: 0 20rpx;
- margin-top: 20rpx;
- height: 240rpx;
- }
- .sceneryContent{
- display: flex;
- flex-direction: column;
- width: 75%;
- margin-left: 20rpx;
- position: relative;
- }
- .imgWrapper{
- width: 28%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .sceneryImg{
- width: 100%;
- border-radius: 20rpx;
- }
- .titleAndRate{
- display: flex;
- }
- .sceneryTitle{
- font-size: 36rpx;
- font-weight: bold;
- color: goldenrod;
- width: 54%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- }
- .clickRate{
- position: absolute;
- right: 20rpx;
- font-size: 30rpx;
- }
- .sceneryIntro{
- position: absolute;
- bottom: 0rpx;
- overflow: hidden;
- margin-top: 30rpx;
- display: -webkit-box;
-
- -webkit-box-orient: vertical;
-
- -webkit-line-clamp: 4;
- }
- .interval{
- width: 100%;
- height: 20rpx;
- margin: 20rpx 0;
- background-color: rgb(236, 234, 234);
- }
|