|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <div class="mta-card-lv3">
|
|
|
|
|
|
+ <div class="mta-card-lv4">
|
|
|
|
|
|
<div class="mta-card-content-pc mta-hidden-xs" :class="[img.order > contentOrder ? 'img-left': 'img-right']">
|
|
<div class="mta-card-content-pc mta-hidden-xs" :class="[img.order > contentOrder ? 'img-left': 'img-right']">
|
|
<img :style="`order:${img.order}`" :src="img.url">
|
|
<img :style="`order:${img.order}`" :src="img.url">
|
|
@@ -17,6 +17,7 @@
|
|
<div class="card-info">
|
|
<div class="card-info">
|
|
<p class="p-top">{{ des1 }}</p>
|
|
<p class="p-top">{{ des1 }}</p>
|
|
<h5>解决方案</h5>
|
|
<h5>解决方案</h5>
|
|
|
|
+ <em></em>
|
|
<p class="p-bottom">{{des}}</p>
|
|
<p class="p-bottom">{{des}}</p>
|
|
<slot></slot>
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
@@ -27,7 +28,7 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
export default {
|
|
export default {
|
|
- name: "imgCardLv3",
|
|
|
|
|
|
+ name: "imgCardLv4",
|
|
props: {
|
|
props: {
|
|
option: {
|
|
option: {
|
|
type: Object,
|
|
type: Object,
|
|
@@ -64,7 +65,7 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
-.mta-card-lv3 {
|
|
|
|
|
|
+.mta-card-lv4 {
|
|
margin: 0 auto 120px;
|
|
margin: 0 auto 120px;
|
|
|
|
|
|
.mta-card-content-pc {
|
|
.mta-card-content-pc {
|
|
@@ -75,13 +76,13 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.card-info {
|
|
.card-info {
|
|
|
|
+ width: 503px;
|
|
h5 {
|
|
h5 {
|
|
font-size: 24px;
|
|
font-size: 24px;
|
|
font-weight: 800;
|
|
font-weight: 800;
|
|
text-align: left;
|
|
text-align: left;
|
|
color: #333;
|
|
color: #333;
|
|
- margin-top: 40px;
|
|
|
|
- margin-bottom: 23px;
|
|
|
|
|
|
+ margin: 0 0 20px;
|
|
position: relative;
|
|
position: relative;
|
|
|
|
|
|
&:before {
|
|
&:before {
|
|
@@ -125,7 +126,23 @@ export default {
|
|
margin-right: 100px;
|
|
margin-right: 100px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ @media (max-width: 768px) {
|
|
|
|
+ .mta-card-content-h5 {
|
|
|
|
+ img {
|
|
|
|
+ max-width: 100%;
|
|
|
|
+ }
|
|
|
|
+ // card--info
|
|
|
|
+ .card-info {
|
|
|
|
+ width: 100%;
|
|
|
|
+ h5 {font-size: 16px;margin: 20px 0 10px;}
|
|
|
|
+ em{width: 35px;height: 3px;background: #00b96b;display: block;margin-bottom: 20px;}
|
|
|
|
+ p{
|
|
|
|
+ font-size: 14px;margin: 20px 0 10px;text-align: justify;line-height: 22px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
|