金诚优选前端代码
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.
 
 
 
 
 

72 lines
1.1 KiB

<template>
<view class="content">
<view class="left">
<image class="left-img"></image>
</view>
<view class="right">
<view class="right-img">
<image></image>
</view>
<view class="right-img">
<image></image>
</view>
</view>
</view>
</template>
<script>
export default {
data(){
return {
}
},
created(){
},
methods: {
}
}
</script>
<style lang="scss" scoped="scoped">
.content{
width: 750rpx;
height: max-content;
box-sizing: border-box;
padding: 60rpx 32rpx 0rpx;
display: flex;
justify-content: space-between;
.left{
width: 436rpx;
height: 436rpx;
.left-img{
width: 100%;
height: 100%;
background: #D8D8D8;
border-radius: 20rpx 0rpx 0rpx 20rpx;
}
}
.right{
width: 228rpx;
height: 436rpx;
.right-img{
width: 228rpx;
height: 208rpx;
background: #D8D8D8;
&:nth-child(1n){
border-radius: 0rpx 20rpx 0rpx 0rpx;
}
&:nth-child(2n){
margin-top: 20rpx;
border-radius: 0rpx 0rpx 20rpx 0rpx;
}
&>image{
width: 100%;
height: 100%;
}
}
}
}
</style>