merchant-web/src/views/common/home.vue

40 lines
696 B
Vue
Raw Normal View History

2024-08-05 08:26:35 +00:00
<!--
* @Author: ym
* @Date: 2021-09-28 10:53:53
* @LastEditTime: 2022-01-09 18:57:16
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \background-front-end\src\views\common\home.vue
-->
<template>
<div class="mod-home">
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.mod-home {
line-height: 1.5;
}
.el-carousel__item h3 {
color: #475669;
font-size: 18px;
opacity: 0.75;
line-height: 300px;
margin: 0;
color: #fff;
}
.el-carousel__item:nth-child(2n) {
background-color: #99a9bf;
}
.el-carousel__item:nth-child(2n+1) {
background-color: #d3dce6;
}
</style>