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

63 lines
912 B

  1. <template>
  2. <view class="content">
  3. <view class="left">
  4. <image class="left-img"></image>
  5. </view>
  6. <view class="right">
  7. <view class="right-img">
  8. <image></image>
  9. </view>
  10. <view class="right-img">
  11. <image></image>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data(){
  19. return {
  20. }
  21. },
  22. created(){
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped="scoped">
  29. .content{
  30. width: 750rpx;
  31. height: max-content;
  32. box-sizing: border-box;
  33. padding: 30rpx 32rpx;
  34. display: flex;
  35. justify-content: space-between;
  36. .left{
  37. width: 436rpx;
  38. height: 436rpx;
  39. .left-img{
  40. width: 100%;
  41. height: 100%;
  42. background: #D8D8D8;
  43. }
  44. }
  45. .right{
  46. width: 228rpx;
  47. height: 436rpx;
  48. .right-img{
  49. width: 228rpx;
  50. height: 208rpx;
  51. background: #D8D8D8;
  52. &:nth-child(2n){
  53. margin-top: 20rpx;
  54. }
  55. }
  56. }
  57. }
  58. </style>