Sprinkler-app/page_user/photoxq.vue

252 lines
5.1 KiB
Vue
Raw Normal View History

2024-10-09 16:52:44 +08:00
<template>
<view class="page">
<u-navbar :is-back="true" title='识图' title-color="#000" :border-bottom="false" :background="bgc"
id="navbar">
</u-navbar>
<view class="top_page">
<view class="title">凤尾竹</view>
<view class="other_name">
又名花海
</view>
<view class="cont">
<view class="cont_left">
<view class="cont_left_tit">
难易程度
</view>
<view class="cont_left_txt">
非常容易
</view>
<view class="cont_left_tit" style="margin-top: 40rpx;">
功能
</view>
<view class="cont_left_txt">
吸甲醛净化空气美观
</view>
<view class="cont_left_tit" style="margin-top: 40rpx;">
适合空间
</view>
<view class="cont_left_txt">
办公桌书房客厅户外
</view>
</view>
<view class="cont_right">
<image src="https://api.ccttiot.com/smartmeter/img/static/u5qEV0STfGCLxtW06R0g" mode=""></image>
</view>
</view>
</view>
<view class="bot_page">
<view class="tit" style="margin-top: 0rpx;">
养护重点
</view>
<view class="txt">
1喜欢散光环境耐寒力差幼苗忌霜冻喜肥沃酥
松土壤
2适宜生长环境温度在10C到25C之间
3不喜水 土壤干后加水一般十天左右
</view>
</view>
<view class="about">
<view class="tit">
关于
</view>
<view class="cont">
凤尾竹Bambusa multiplex (Lour.) Raeusch.
ex Schult. 'Fernleaf' R. A. Young是禾本科
竹属孝顺竹的变种植株较高大杆高可达6米竿
中空小枝稍下弯下部挺直绿色竿壁稍薄
节处稍隆起无毛叶鞘无毛纵肋稍隆起背部
具脊叶耳肾形边缘具波曲状细长繸毛叶舌圆拱
叶片线形上表面无毛下表面粉绿而密被短柔
小穗含小花中间小花为两性外稃两侧稍不对
长圆状披针形先端急尖内稃线形脊上被短
纤毛花药紫色子房卵球形羽毛状成熟颖果未
原产中国华东华南西南以至台湾香港均
有栽培该种观赏价值较高宜作庭院丛栽也可作
盆景植物概述图参考来源中国自然标本馆
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
}
},
onLoad(option) {
},
methods: {
}
}
</script>
<style lang="scss">
/deep/ .u-title{
margin-bottom: 22rpx;
}
/deep/ .uicon-nav-back{
margin-bottom: 22rpx;
}
.about{
margin-top: 56rpx;
padding: 0 32rpx;
box-sizing: border-box;
.tit{
font-size: 40rpx;
color: #3D3D3D;
font-weight: 600;
}
.cont{
margin-top: 24rpx;
font-size: 28rpx;
color: #3D3D3D;
}
}
.activesc{
background-color: #999 !important;
}
.shouc {
width: 100%;
padding: 0rpx 100rpx;
box-sizing: border-box;
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 80rpx;
text-align: center;
text {
display: inline-block;
width: 200rpx;
background-color: #3dada9;
color: #fff;
height: 60rpx;
line-height: 60rpx;
text-align: center;
border-radius:50rpx;
}
}
.container {
width: 100%;
height: 100vh;
background-color: #fff;
position: fixed;
top: 0;
left: 0;
padding-top: 50rpx;
box-sizing: border-box;
}
page {
padding-bottom: 200rpx;
box-sizing: border-box;
background: #fff;
}
.top_page {
background: #fff;
padding: 0 32rpx;
padding-bottom: 28rpx;
.title {
margin-top: 23rpx;
font-size: 80rpx;
// font-weight: 400;
letter-spacing: 0rpx;
line-height: 88rpx;
color: rgba(80, 86, 90, 1);
}
.other_name {
margin-top: 8rpx;
font-size: 40rpx;
letter-spacing: 0rpx;
line-height: 48rpx;
color: rgba(119, 128, 141, 1);
}
.cont {
margin-top: 82rpx;
margin-bottom: 28rpx;
display: flex;
flex-wrap: nowrap;
align-items: flex-start;
.cont_left {
display: flex;
flex-wrap: wrap;
// margin-right: 40rpx;
// align-items: baseline;
width: 50%;
.cont_left_tit {
font-size: 28rpx;
// font-weight: 400;
letter-spacing: 0.56rpx;
line-height: 36rpx;
color: #3D3D3D;
}
.cont_left_txt {
margin-top: 10rpx;
width: 294rpx;
font-size: 32rpx;
// font-weight: 600;
letter-spacing: 0.64rpx;
line-height: 40rpx;
color: #50565A;
}
}
.cont_right {
width: 320rpx;
height: 320rpx;
margin-right: 20rpx;
box-sizing: border-box;
image {
background-size: cover;
border-radius: 50%;
width: 100%;
height: 100%;
}
}
}
}
.bot_page {
padding: 23rpx 32rpx 0rpx 32rpx;
.tit {
font-size: 40rpx;
font-weight: 700;
letter-spacing: 0rpx;
line-height: 40rpx;
color:#48893B;
margin-bottom: 40rpx;
}
.txt {
// margin-top: 24rpx;
width: 100%;
margin-top: 12rpx;
font-size: 32rpx;
font-weight: 400;
letter-spacing: 0.64rpx;
line-height: 40rpx;
color:#48893B;
}
}
</style>