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

  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: 60rpx 32rpx 0rpx;
  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. border-radius: 20rpx 0rpx 0rpx 20rpx;
  44. }
  45. }
  46. .right{
  47. width: 228rpx;
  48. height: 436rpx;
  49. .right-img{
  50. width: 228rpx;
  51. height: 208rpx;
  52. background: #D8D8D8;
  53. &:nth-child(1n){
  54. border-radius: 0rpx 20rpx 0rpx 0rpx;
  55. }
  56. &:nth-child(2n){
  57. margin-top: 20rpx;
  58. border-radius: 0rpx 0rpx 20rpx 0rpx;
  59. }
  60. &>image{
  61. width: 100%;
  62. height: 100%;
  63. }
  64. }
  65. }
  66. }
  67. </style>