yglt-uniapp/pages/BrandDisplay/BrandDisplay.vue

146 lines
3.4 KiB
Vue
Raw Normal View History

2025-01-13 11:42:02 +00:00
<!-- 1.品牌展示 -->
<template>
<view class="content">
<div class="top">
<swiper class="swiper" circular :interval="2000" :duration="500" :indicatorDots="true">
<swiper-item>
<div class="top-content">
<div class="top-left">
<div class="top-left-title">
朗诗地产 科技人居引领者
</div>
<div class="top-left-content">
<div class="top-left-content-top">
朗诗创立于2001年是国内领先的绿色开发服务商和生活运营商以绿色思维践行人本阳光绿色的价值观引领绿色生活业务范围覆盖北京上海苏州广州深圳天津重庆南京杭州武汉成都西安等中国主要经济区域
</div>
<ul class="top-left-content-list">
<li>深耕20余载</li>
<li>连续10年入选中国地产百强</li>
<li>132个绿色科技地产项目</li>
<li>开发总面积逾2300万平方米</li>
<li>50万业主</li>
</ul>
</div>
</div>
<div class="top-right" />
</div>
</swiper-item>
<swiper-item>
<div class="top-content">
<div class="top-left">
<div class="top-left-title">
金厦房产 四十余载与港城共美好
</div>
<div class="top-left-content">
<div class="top-left-content-top">
金厦房产隶属张家港市城市投资发展集团有限公司是张家港市国有全资房地产开发企业具有国家一级房地产开发资质开发面积超500万平方米
</div>
<ul class="top-left-content-list">
<li>阳光怡庭-城市半岛墅居詹天佑奖优秀住宅小区金奖</li>
<li>阳光锦程-筑园为家超大中央水景园境</li>
<li>阳光春晓-双滨河水系领秀时代的倾心筑作</li>
<li>阳光半岛酒店-藏在1200亩森林氧吧里的园林度假酒店</li>
</ul>
</div>
</div>
<div class="top-right" />
</div>
</swiper-item>
</swiper>
</div>
<div class="bottom">
<Menu :type="1" />
</div>
</view>
</template>
<script setup>
import Menu from '../../components/Menu.vue'
const opt = {
background: ['color1', 'color2', 'color3'],
indicatorDots: false,
autoplay: true,
interval: 2000,
duration: 500
}
</script>
<style scoped>
.swiper {
height: 100%;
}
.content {
display: flex;
flex-direction: column;
height: 100%;
}
.top {
flex: 12;
}
.bottom {
flex: 1;
background-color: rgba(44 61, 43, 1);
}
.top-content {
display: flex;
width: 100%;
height: 100%;
}
.top-left {
flex: 1;
2025-01-15 07:08:04 +00:00
padding: 30rpx 10rpx 10rpx 10rpx;
2025-01-13 11:42:02 +00:00
display: flex;
flex-direction: column;
}
.top-right {
flex: 1;
background: url('~@/static/tworight.jpg') no-repeat;
background-size: 100% 100%;
}
.top-left-title {
position: relative;
font-weight: bold;
2025-01-15 07:08:04 +00:00
padding-left: 10rpx;
font-size: 18rpx;
2025-01-13 11:42:02 +00:00
color: #219862;
}
.top-left-title:before {
content: "";
background-color: #219862;
2025-01-15 07:08:04 +00:00
width: 4rpx;
height: 20rpx;
2025-01-13 11:42:02 +00:00
position: absolute;
left: 0;
top: 50%;
2025-01-15 07:08:04 +00:00
margin-top: -9rpx;
-webkit-border-radius: 3rpx;
-moz-border-radius: 3rpx;
border-radius: 3rpx;
2025-01-13 11:42:02 +00:00
}
.top-left-content {
2025-01-15 07:08:04 +00:00
padding: 10rpx;
2025-01-15 08:37:42 +00:00
font-size: 15rpx;
2025-01-13 11:42:02 +00:00
flex: 1;
display: flex;
justify-content: center;
flex-direction: column;
line-height: 2;
}
.top-left-content-top {
text-indent: 2em;
}
</style>