123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <div class="gangwei-icon">
- <i :style="iconStyle"></i>
- <p>{{ des.text }}</p>
- </div>
- </template>
- <script>
- export default {
- name: "iconGangwei",
- props: {
- des: {
- type: Object,
- required: true
- }
- },
- computed: {
- iconStyle() {
- return `background-image: url(${this.des.icon})`;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .gangwei-icon {
- text-align: center;
- i {
- display: block;
- width: 200px;
- height: 160px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
- p {
- margin-top: 25px;
- font-size: 18px;
- font-weight: 800;
- }
- @media (max-width: 768px){
- i {
- width: 150px;
- height: 120px;
- }
- }
- }
- </style>
|