You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						                                                                             | 
						 | 
						<template>	<scroll-view class="find-scroll" :scroll-x="true">		<view class="find-content">			<view class="find-item" :class="{'max-item': index == 0}" v-for="(item, index) in 5" :key="index">				<image class="img" src="https://picsum.photos/200/300"></image>				<view class="lf-line-2 info">南边开,风儿吹,北边放,花儿开,西边来,春归去,东边来,北边跑</view>			</view>		</view>		<view style="height: 10rpx;"></view>	</scroll-view></template>
<script>	export default {		data(){			return {				current: 0			}		},		created(){					},		methods: {					}	}</script>
<style lang="scss" scoped="scoped">	.find-scroll{		padding: 30rpx 32rpx;		width: 750rpx;		height: max-content;		box-sizing: border-box;		.find-content{			display: flex;			width: max-content; 			align-items: center;			padding: 10rpx 0 0 10rpx;		}		.find-item{			width: 380rpx;			height: 480rpx;			background: #FFFFFF;			box-shadow: 0rpx 2rpx 8rpx 1rpx rgba(0, 0, 0, 0.1);			margin-right: 20rpx;			.img{				width: 380rpx;				height: 380rpx;				background-color: #D8D8D8;			}			.info{				padding: 10rpx;				width: 380rpx;				height: 100rpx;				box-sizing: border-box;				font-size: 24rpx;				line-height: 1.8;			}		}		.max-item{			height: 563rpx;			width: 425rpx;			.img{				width: 425rpx;				height: 425rpx;			}			.info{				width: 425rpx;				height: 138rpx;				padding: 20rpx;				font-size: 26rpx;				line-height: 2.1;			}		}	}</style>
  |