123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <div class="mta-card-lv3">
- <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">
- <div class="card-info" :style="`order: ${contentOrder}`">
- <h5>{{ title }}</h5>
- <p>{{des}}</p>
- <slot></slot>
- </div>
- </div>
- <div class="mta-card-content-h5 mta-hidden-sm">
- <img :src="img.url">
- <div class="card-info">
- <h5>{{ title }}</h5>
- <em></em>
- <p>{{des}}</p>
- <slot></slot>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "imgCardLv3",
- props: {
- option: {
- type: Object,
- required: true,
- },
- },
- data() {
- return {}
- },
- computed: {
- img() {
- return {url: this.option.img.url, order: this.option.img.order}
- },
- title() {
- return this.option.content.title;
- },
- des() {
- return this.option.content.des;
- },
- contentOrder() {
- return this.option.content.order;
- },
- tagesPc() {
- return this.option.content.list;
- },
- tagesH5() {
- return this.option.content.list;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mta-card-lv3 {
- margin: 0 auto 120px;
- .mta-card-content-pc {
- display: flex;
- align-items: center;
- img {
- width: 480px;
- height: 370px;
- }
- }
- .img-left {
- img {
- margin-left: 100px;
- }
- }
- .img-right {
- img {
- margin-right: 100px;
- }
- }
- .card-info {
- width: 490px;
- h5 {
- font-size: 24px;
- font-weight: 800;
- text-align: left;
- color: #333;
- margin: 0 0 36px;
- }
- p {
- font-size: 14px;
- color: #333;
- line-height: 24px;
- text-align: justify;
- }
- }
- @media (max-width: 768px) {
- margin: 0 auto 60px;
- .mta-card-content-h5 {
- img {
- width: 100%;
- text-align: center;
- }
- // 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;}
- .card-des{
- font-size: 14px;margin: 20px 0 10px;text-align: justify;line-height: 22px;
- }
- }
- }
- }
- }
- </style>
|