213 lines
5.3 KiB
Vue
213 lines
5.3 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<el-carousel :interval="4000" type="card" height="300px">
|
||
<el-carousel-item v-for="item in imagesArray" :key="item">
|
||
<el-image :src="item"></el-image>
|
||
</el-carousel-item>
|
||
</el-carousel>
|
||
<div class="idea_main">
|
||
<div class="idea_left">
|
||
<p class="title">北泽阀门(昆山)有限公司</p>
|
||
<p class="sub_title">公司介绍</p>
|
||
<p class="desc">
|
||
北泽阀门(昆山)有限公司成立于2003年09月10日,注册地位于江苏省昆山综合保税区B区中央大道188号,法定代表人为高岛江(TAKASHIMA
|
||
KOH)。经营范围包括各类阀门及零配件的生产及销售,从事与本企业同类商品的批发及进出口业务。
|
||
</p>
|
||
</div>
|
||
<div class="idea_right">
|
||
<el-image :src="imagesArray[2]"></el-image>
|
||
</div>
|
||
</div>
|
||
<div class="intro_main">
|
||
<div class="title">我们的产品</div>
|
||
<div class="intro_context">
|
||
<div class="card">
|
||
<div class="card-wrap">
|
||
<el-image :src="imagesArray[0]" class="image"></el-image>
|
||
<div>
|
||
<p class="title">我们的产品</p>
|
||
<p class="card-context">
|
||
各类阀门及零配件的生产及销售,从事与本企业同类商品的批发及进出口业务。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="card">
|
||
<div class="card-wrap">
|
||
<el-image :src="imagesArray[1]" class="image"></el-image>
|
||
<div>
|
||
<p class="title">我们的产品</p>
|
||
<p class="card-context">
|
||
各类阀门及零配件的生产及销售,从事与本企业同类商品的批发及进出口业务。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="card">
|
||
<div class="card-wrap">
|
||
<el-image :src="imagesArray[2]" class="image"></el-image>
|
||
<div>
|
||
<p class="title">我们的产品</p>
|
||
<p class="card-context">
|
||
各类阀门及零配件的生产及销售,从事与本企业同类商品的批发及进出口业务。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="card">
|
||
<div class="card-wrap">
|
||
<el-image :src="imagesArray[3]" class="image"></el-image>
|
||
<div>
|
||
<p class="title">我们的产品</p>
|
||
<p class="card-context">
|
||
各类阀门及零配件的生产及销售,从事与本企业同类商品的批发及进出口业务。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
|
||
import logoImg1 from '@/assets/images/door/1.jpg'
|
||
import logoImg2 from '@/assets/images/door/2.jpg'
|
||
import logoImg3 from '@/assets/images/door/3.jpg'
|
||
import logoImg4 from '@/assets/images/door/4.jpg'
|
||
import logoImg5 from '@/assets/images/door/5.jpg'
|
||
|
||
import logoImg0 from '@/assets/images/door/1.png'
|
||
import logoImg6 from '@/assets/images/door/6.jpg'
|
||
import logoImg7 from '@/assets/images/door/2.png'
|
||
export default {
|
||
name: 'index',
|
||
data() {
|
||
return {
|
||
imagesArray: [logoImg0, logoImg6, logoImg7, logoImg5, logoImg2],
|
||
}
|
||
},
|
||
}
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
.el-carousel__item h3 {
|
||
color: #475669;
|
||
font-size: 14px;
|
||
opacity: 0.75;
|
||
line-height: 200px;
|
||
margin: 0;
|
||
}
|
||
|
||
.el-carousel__item:nth-child(2n) {
|
||
background-color: #99a9bf;
|
||
}
|
||
|
||
.el-carousel__item:nth-child(2n + 1) {
|
||
background-color: #d3dce6;
|
||
}
|
||
|
||
.idea_main {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
|
||
.idea_left {
|
||
flex: 1;
|
||
padding: 5px;
|
||
|
||
.title {
|
||
font-weight: 700;
|
||
font-size: 32px;
|
||
position: relative;
|
||
bottom: 2px;
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.sub_title {
|
||
font-size: 16px;
|
||
line-height: 1.5;
|
||
color: #646a73;
|
||
margin-top: 10px;
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.desc {
|
||
overflow: hidden;
|
||
height: 120px;
|
||
width: calc(38.2vw - 50px);
|
||
font-size: 14px;
|
||
line-height: 30px;
|
||
color: #646a73;
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.idea {
|
||
width: 38.2vw;
|
||
max-height: 500px;
|
||
padding-left: 50px;
|
||
margin-left: 10px;
|
||
}
|
||
}
|
||
|
||
.idea_right {
|
||
flex: 1;
|
||
padding: 5px;
|
||
}
|
||
}
|
||
|
||
.intro_main {
|
||
overflow: hidden;
|
||
margin: 30px auto;
|
||
width: 80%;
|
||
|
||
.title {
|
||
color: #31285d;
|
||
font-weight: 600;
|
||
font-size: 20px;
|
||
line-height: 28px;
|
||
margin: 50px 450px;
|
||
}
|
||
|
||
.intro_context {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
|
||
.card {
|
||
display: flex;
|
||
flex: 1;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 32px;
|
||
background: #fff;
|
||
border-radius: 4px;
|
||
box-shadow: 0 1px 60px 0 rgba(0, 0, 0, 0.05);
|
||
|
||
.image {
|
||
width: 150px;
|
||
height: 150px;
|
||
border-radius: 10px;
|
||
flex: 1;
|
||
}
|
||
|
||
.title {
|
||
margin: 14px 0;
|
||
color: #31285d;
|
||
font-weight: 600;
|
||
font-size: 18px;
|
||
flex: 1;
|
||
}
|
||
|
||
.card-context {
|
||
color: #646a73;
|
||
font-size: 16px;
|
||
font-family: PingFangSC-Regular, PingFang SC;
|
||
line-height: 30px;
|
||
letter-spacing: 0.34px;
|
||
flex: 1;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|