<template>
	<view class="all">
		<view class="row">
			<view class="row1">
				<view class="shu">30</view>
				<view class="wenben">{{$t('huiyuan.a1')}}</view>
			</view>
			<view class="row2">
				<view class="shu">30</view>
				<view class="wenben">{{$t('huiyuan.a2')}}</view>
			</view>
		</view>
	
	    <view class="rowT">
	    	<view class="row1">
	    		<view class="shu">30</view>
	    		<view class="wenben">{{$t('huiyuan.a3')}}</view>
	    	</view>
	    	<view class="row2">
	    		<view class="shu">30</view>
	    		<view class="wenben">{{$t('huiyuan.a4')}}</view>
	    	</view>
	    </view>
		
		<view class="list" v-for="item in 12" :key="item">
			<view class="top">
				<view class="nc">123****032@qq.com</view>
				<view class="">
					<image class="img" src="/static/shouye/huiyuan.png" mode=""></image>
				</view>
			</view>
			<view class="center"  @click="navX">
				<view class="sj">2023.05.05 15:00</view>
				<view class="xq">{{$t('huiyuan.a5')}}</view>
				<view class="">
					<image class="ima" src="/static/icon/jt.png" mode=""></image>
				</view>
			</view>
			<view class="xian"></view>
			<view class="last">
				<view class="left">{{$t('huiyuan.a6')}}:</view>
				<view class="leftT">5000U</view>
				<view class="right">{{$t('huiyuan.a7')}}:</view>
				<view class="rightT">50</view>
			</view>
		</view>
		<view class="bto">
			
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				
			};
		},
		methods: {
			navX() {
				uni.navigateTo({
					url: '/pages/jump/details'
				})
			},
		}
	}
</script>

<style lang="scss">
.all {
	width: 750rpx;
	min-height: 100vh;
	background-color: $page-color-base;
}
.row {
	display: flex;
	justify-content: space-between;
}
.rowT {
	display: flex;
	justify-content: space-between;
	margin-top: 20rpx;
}
.row1 {
	width: 325rpx;
	height: 168rpx;
	background: #191A1F;
	border-radius: 10rpx;
	margin-left: 36rpx;
}
.wenben {
	height: 27rpx;
	font-size: 28rpx;
	font-weight: 500;
	color: #FFFFFF;
	margin-left: 107rpx;
	margin-top: 22rpx;
}
.shu {
	width: 52rpx;
	height: 35rpx;
	font-size: 46rpx;
	font-weight: bold;
	color: #FEB041;
	margin-left: 136rpx;
	margin-top: 43rpx;
}
.row2 {
	width: 325rpx;
	height: 168rpx;
	background: #191A1F;
	border-radius: 10rpx;
	margin-right: 36rpx;
}

.list {
	width: 684rpx;
	height: 262rpx;
	background: #191A1F;
	border-radius: 16rpx;
	margin-left: 36rpx;
	margin-top: 25rpx;
}
.top {
	display: flex;
	justify-content: start;
}
.nc {
	height: 31rpx;
	font-size: 32rpx;
	font-weight: bold;
	color: #FFFFFF;
	margin-left: 35rpx;
	padding-top: 40rpx;
}
.img {
	width: 100rpx;
	height: 32rpx;
	margin-left: 20rpx;
	margin-top: 46rpx;
	object-fit: cover;
}

.center {
	display: flex;
	justify-content: start;
}
.sj {
	margin-left: 34rpx;
	margin-top: 25rpx;
	height: 22rpx;
	float: length($list: 231rpx);
	font-size: 28rpx;
	font-weight: 500;
	color: #999999;
}
.xq {
	margin-top: 25rpx;
	margin-left: 290rpx;
	height: 26rpx;
	font-size: 28rpx;
	font-family: PingFang SC;
	font-weight: 500;
	color: #999999;
	float: length($list: 54rpx);
}
.ima {
	width: 13rpx;
	height: 19rpx;
	margin-top: 35rpx;
	margin-left: 20rpx;
}
.xian {
	width: 618rpx;
	height: 1rpx;
	background: #DDE1EB;
	opacity: 0.2;
	margin-left: 20rpx;
	margin-top: 30rpx;
}
.last {
	display: flex;
	justify-content: start;
}
.left {
	font-size: 28rpx;
	font-family: PingFang SC;
	font-weight: 500;
	color: #999999;
	margin-left: 36rpx;
	margin-top: 30rpx;
}
.leftT {
	font-size: 28rpx;
	font-weight: 500;
	color: #b98134;
	margin-top: 30rpx;
}
.right {
	font-size: 28rpx;
	font-weight: 500;
	color: #999999;
	margin-left: 200rpx;
	margin-top: 30rpx;
}
.rightT {
	font-size: 28rpx;
	font-weight: 500;
	color: #ffffff;
	margin-top: 30rpx;
	
}
</style>