|
@@ -1,6 +1,31 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- 店铺资质荣誉
|
|
|
+ <div class="bg-F5">
|
|
|
+ <div class="container">
|
|
|
+ <div class="x-title">
|
|
|
+ 资质荣誉
|
|
|
+ </div>
|
|
|
+ <div class="content">
|
|
|
+ <img src="@assets/zlzs.png" alt="" />
|
|
|
+ <div class="desc">
|
|
|
+ <span>外观设计专利书(BBF)</span>
|
|
|
+ <p>
|
|
|
+ 外观设计专利书外观设计专利书外观设计专利书外观设计专利书外观设计专利书外观设计专利书外观设计专利书外观设计专利书
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="control">
|
|
|
+ <img class="left" src="@assets/left.png" alt="" />
|
|
|
+ <div class="imgs">
|
|
|
+ <img class="curr" src="@assets/zlzs.png" alt="" />
|
|
|
+ <img src="@assets/zlzs.png" alt="" />
|
|
|
+ <img src="@assets/zlzs.png" alt="" />
|
|
|
+ <img src="@assets/zlzs.png" alt="" />
|
|
|
+ <img src="@assets/zlzs.png" alt="" />
|
|
|
+ </div>
|
|
|
+ <img class="right" src="@assets/right.png" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
@@ -8,3 +33,69 @@ import { Component, Vue, Watch } from "vue-property-decorator";
|
|
|
@Component
|
|
|
export default class extends Vue {}
|
|
|
</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.container {
|
|
|
+ padding: 30px 0 80px 0;
|
|
|
+ .x-title {
|
|
|
+ margin-bottom: 40px;
|
|
|
+ }
|
|
|
+ .content {
|
|
|
+ margin-left: 156px;
|
|
|
+ margin-bottom: 60px;
|
|
|
+ img {
|
|
|
+ width: 324px;
|
|
|
+ height: 484px;
|
|
|
+ margin-right: 60px;
|
|
|
+ }
|
|
|
+ .desc {
|
|
|
+ display: inline-block;
|
|
|
+ margin-top: 80px;
|
|
|
+ width: 473px;
|
|
|
+ vertical-align: top;
|
|
|
+ span {
|
|
|
+ font-size: 18px;
|
|
|
+ color: rgb(51, 51, 51);
|
|
|
+ margin-bottom: 30px;
|
|
|
+ display: inline-block;
|
|
|
+ }
|
|
|
+ p {
|
|
|
+ font-size: 14px;
|
|
|
+ color: rgb(102, 102, 102);
|
|
|
+ line-height: 2;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .control {
|
|
|
+ height: 258px;
|
|
|
+ position: relative;
|
|
|
+ > img {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ &.left {
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+ &.right {
|
|
|
+ right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .imgs {
|
|
|
+ margin-left: 56px;
|
|
|
+ display: inline-block;
|
|
|
+ box-sizing: border-box;
|
|
|
+ height: 100%;
|
|
|
+ img {
|
|
|
+ width: 188px;
|
|
|
+ height: 100%;
|
|
|
+ margin: 0 10px;
|
|
|
+ border: 1px solid #e5e5e5;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ &.curr {
|
|
|
+ border: 1px solid #fd5522;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|