diff --git a/src/views/home/components/StepCard.vue b/src/views/home/components/StepCard.vue index a5008a49..741191f6 100644 --- a/src/views/home/components/StepCard.vue +++ b/src/views/home/components/StepCard.vue @@ -14,8 +14,8 @@
- {{ item.title }} + {{ item.title }}
{{ item.details }}
@@ -108,6 +108,10 @@ const jumpPage = (row: recommendList) => { z-index: 1; height: 100%; } + span { + position: relative; + z-index: 2; + } } .box-details { padding: 24px; @@ -129,4 +133,20 @@ const jumpPage = (row: recommendList) => { } } } + +@media (min-width: @screen-md-min) { + .step-container { + .box-list { + .list-item { + .box-top { + font-size: 12px; + padding: 12px 18px; + } + .box-details { + padding: 12px; + } + } + } + } +}