2022-10-13 11:30:22 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="concent">
|
2022-10-14 19:48:48 +08:00
|
|
|
|
<view class="page-body" style="margin-top: -80rpx;">
|
2022-10-14 11:58:52 +08:00
|
|
|
|
<view class="nursetation" @tap='detailed()'>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
<text class="what">什么是护理站?</text>
|
2022-10-14 11:58:52 +08:00
|
|
|
|
<u-icon class="icon" name="arrow-right"></u-icon>
|
|
|
|
|
|
<!-- <image src="../../static/jiantou.png" mode=""></image> -->
|
|
|
|
|
|
</view>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
<view class="map">
|
|
|
|
|
|
<!-- <map style="width:100%; height:40vh;" scale="17" :latitude="latitude" :longitude="longitude"
|
|
|
|
|
|
:markers="markers"></map> -->
|
2022-10-13 11:30:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
<view class="conNew">
|
|
|
|
|
|
<view class="addressContent">
|
|
|
|
|
|
<view class="lists" v-for="(item,index) in nearbylist" :key="index">
|
|
|
|
|
|
<text class="nurse">{{item.nurseStationName}}</text>
|
|
|
|
|
|
<text class="distance">距离您800米</text>
|
|
|
|
|
|
<view class="background">
|
|
|
|
|
|
|
|
|
|
|
|
<view class="picture">
|
2022-10-13 16:31:59 +08:00
|
|
|
|
<image src="/static/logo.png" mode=""></image>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
</view>
|
2022-10-14 11:58:52 +08:00
|
|
|
|
|
2022-10-14 19:48:48 +08:00
|
|
|
|
<text class="qyttext">泉医通</text>
|
|
|
|
|
|
<text class="lianmeng">济卫护理联盟NO.1</text>
|
2022-10-14 11:58:52 +08:00
|
|
|
|
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-14 19:48:48 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="click" @tap='godetails()'>
|
|
|
|
|
|
点击了解
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2022-10-13 11:30:22 +08:00
|
|
|
|
</view>
|
2022-10-13 16:31:59 +08:00
|
|
|
|
</view>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
|
|
|
|
|
|
<view class="masks" style="" v-if="mask">
|
2022-10-13 16:31:59 +08:00
|
|
|
|
<view class="mask">
|
|
|
|
|
|
<view class="picture2">
|
|
|
|
|
|
<image src="../../static/locatinsmall.png"></image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="title">
|
|
|
|
|
|
请打开系统定位
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="btns">
|
|
|
|
|
|
<view class="btn1" @tap='cancel()'>取消</view>
|
|
|
|
|
|
<view class="btn2" @tap='getsite()'>去打开</view>
|
2022-10-13 11:30:22 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2022-10-13 16:31:59 +08:00
|
|
|
|
</view>
|
2022-10-13 11:30:22 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
2022-10-14 19:48:48 +08:00
|
|
|
|
import {
|
|
|
|
|
|
nearbyList
|
|
|
|
|
|
} from '@/api/site/index.js';
|
|
|
|
|
|
import baseurl from '@/api/baseurl.js'
|
2022-10-13 11:30:22 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2022-10-14 19:48:48 +08:00
|
|
|
|
nearbylist: [],
|
|
|
|
|
|
mask: true,
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
latitude: 36.661634,
|
|
|
|
|
|
longitude: 117.025323,
|
|
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-10-14 11:58:52 +08:00
|
|
|
|
// onReachBottom() {
|
|
|
|
|
|
// this.pageNum++;
|
|
|
|
|
|
// if (this.nurseTypeCode != undefined) {
|
|
|
|
|
|
// nearbyList(this.pageSize, this.pageNum, this.longitude, this.latitude, this.nurseTypeCode, this.iptVal)
|
|
|
|
|
|
// .then(res => {
|
|
|
|
|
|
// if (res.total == this.nearbylist.length) {
|
|
|
|
|
|
|
|
|
|
|
|
// } else {
|
|
|
|
|
|
// res.rows.forEach(e => {
|
|
|
|
|
|
// this.nearbylist.push(e)
|
|
|
|
|
|
// })
|
|
|
|
|
|
// }
|
|
|
|
|
|
// })
|
|
|
|
|
|
// } else {
|
|
|
|
|
|
// uni.request({
|
|
|
|
|
|
// url: baseurl +
|
|
|
|
|
|
// `/nurseApplet/nearbyNursingStation/nearbyList?pageSize=${this.pageSize}&pageNum=${this.pageNum}&homeLongitude=${this.longitude}&homeLatitude=${this.latitude}&nurseStationName=${this.iptVal}`, //仅为示例,并非真实接口地址。
|
|
|
|
|
|
// success: (res) => {
|
|
|
|
|
|
// if (res.data.total == this.nearbylist.length) {} else {
|
|
|
|
|
|
// res.data.rows.forEach(e => {
|
|
|
|
|
|
// this.nearbylist.push(e)
|
|
|
|
|
|
// })
|
|
|
|
|
|
// }
|
|
|
|
|
|
// console.log(this.nearbylist)
|
|
|
|
|
|
// }
|
|
|
|
|
|
// });
|
|
|
|
|
|
// }
|
|
|
|
|
|
// },
|
2022-10-14 19:48:48 +08:00
|
|
|
|
watch: {
|
|
|
|
|
|
iptVal() {
|
|
|
|
|
|
// this.requestinfo()
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2022-10-13 11:30:22 +08:00
|
|
|
|
onShow() {},
|
2022-10-14 19:48:48 +08:00
|
|
|
|
onLoad() {
|
|
|
|
|
|
var that = this
|
|
|
|
|
|
this.requestinfo()
|
|
|
|
|
|
},
|
2022-10-13 11:30:22 +08:00
|
|
|
|
methods: {
|
2022-10-14 11:58:52 +08:00
|
|
|
|
|
2022-10-14 19:48:48 +08:00
|
|
|
|
requestinfo() {
|
|
|
|
|
|
if (this.nurseTypeCode != undefined) {
|
|
|
|
|
|
nearbyList()
|
|
|
|
|
|
.then(res => {
|
|
|
|
|
|
this.nearbylist = res.rows
|
|
|
|
|
|
console.log(this.nearbylist)
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
|
|
|
|
|
uni.request({
|
|
|
|
|
|
url: baseurl +
|
|
|
|
|
|
`/nurseApplet/nearbyNursingStation/nearbyList`, //仅为示例,并非真实接口地址。
|
|
|
|
|
|
success: (res) => {
|
|
|
|
|
|
console.log(res)
|
|
|
|
|
|
this.nearbylist = res.data.rows
|
|
|
|
|
|
console.log(this.nearbylist)
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
godetails() {
|
|
|
|
|
|
// console.log("111");
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: `/pages/nursestation/nursestation`
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
detailed() {
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: `/pages/detail/detail`
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
// nurse() {
|
2022-10-14 11:58:52 +08:00
|
|
|
|
// uni.navigateTo({
|
2022-10-14 19:48:48 +08:00
|
|
|
|
// url: `/pages/nursestation/nursestation`
|
2022-10-14 11:58:52 +08:00
|
|
|
|
// })
|
|
|
|
|
|
// },
|
2022-10-14 19:48:48 +08:00
|
|
|
|
cancel() {
|
|
|
|
|
|
this.mask = false
|
|
|
|
|
|
// uni.reLaunch({
|
|
|
|
|
|
// url: `/pages/site/site`
|
|
|
|
|
|
// })
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
2022-10-13 11:30:22 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2022-10-14 19:48:48 +08:00
|
|
|
|
.concent {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 1000px;
|
|
|
|
|
|
background-color: #F4F5F7;
|
|
|
|
|
|
// box-sizing: border-box;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.conNew{
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 1000000px;
|
|
|
|
|
|
background-color: #F4F5F7;
|
|
|
|
|
|
// box-sizing: border-box;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
// box-sizing: border-box;
|
|
|
|
|
|
// padding: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.addressContent {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: -91px;
|
|
|
|
|
|
// margin: 0 auto;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
// height: 100%;
|
|
|
|
|
|
// background: #F4F5F7;
|
|
|
|
|
|
// box-sizing: border-box;
|
|
|
|
|
|
padding: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.map {
|
2022-10-14 11:58:52 +08:00
|
|
|
|
width: 750rpx;
|
|
|
|
|
|
height: 544rpx;
|
|
|
|
|
|
background-color: red;
|
|
|
|
|
|
}
|
2022-10-14 19:48:48 +08:00
|
|
|
|
|
2022-10-13 16:31:59 +08:00
|
|
|
|
.picture2 image {
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// position: absolute;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
margin: 0 auto;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
width: 86rpx;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
height: 102rpx;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
// margin-top: 20%;
|
|
|
|
|
|
// text-align: center;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.masks {
|
|
|
|
|
|
|
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
z-index: 999;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.mask {
|
|
|
|
|
|
// margin-top: 50%;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
position: relative;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
width: 520rpx;
|
|
|
|
|
|
height: 348rpx;
|
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
|
margin: 47% auto;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.title {
|
|
|
|
|
|
width: 254rpx;
|
|
|
|
|
|
height: 35rpx;
|
|
|
|
|
|
font-size: 37rpx;
|
|
|
|
|
|
// margin: 0 auto;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin-top: 10%;
|
|
|
|
|
|
margin-left: 30%;
|
|
|
|
|
|
font-family: Adobe Heiti Std;
|
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
color: #000000;
|
|
|
|
|
|
// line-height: rpx;
|
|
|
|
|
|
// height: 100rpx;
|
|
|
|
|
|
// line-height: 100rpx;
|
|
|
|
|
|
// border-bottom: 1px solid #eeeeee;
|
|
|
|
|
|
// /* background-color: red; */
|
|
|
|
|
|
// font-size: 36rpx;
|
|
|
|
|
|
// margin: 0px auto;
|
|
|
|
|
|
// width: 100%;
|
|
|
|
|
|
// text-align: center;
|
|
|
|
|
|
// /* line-height: 80rpx; */
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.text {
|
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
/* padding-top: 40rpx; */
|
|
|
|
|
|
text-align: center;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.btn1 {
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
height: 62rpx;
|
|
|
|
|
|
line-height: 62rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
// border-top: 1px solid #eeeeee;
|
|
|
|
|
|
// border-right: 1px solid #eeeeee;
|
|
|
|
|
|
// position: inherit;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
margin-top: 10%;
|
|
|
|
|
|
margin-left: 10%;
|
|
|
|
|
|
background: #C5BFBF;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
color: #ffffff;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
width: 198rpx;
|
|
|
|
|
|
border-radius: 23rpx;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.btn2 {
|
|
|
|
|
|
height: 62rpx;
|
|
|
|
|
|
line-height: 62rpx;
|
|
|
|
|
|
text-align: center;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
color: #ffffff;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// display: inline-block;
|
|
|
|
|
|
// position: absolute;
|
|
|
|
|
|
// bottom: 0;
|
|
|
|
|
|
position: absolute;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
margin-top: -12%;
|
|
|
|
|
|
margin-left: 58%;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
width: 198rpx;
|
|
|
|
|
|
background-color: #4486e8;
|
|
|
|
|
|
border-radius: 23rpx;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.lists {
|
2022-10-14 19:48:48 +08:00
|
|
|
|
// bottom: 5%;
|
|
|
|
|
|
// display: block;
|
|
|
|
|
|
// position: absolute;
|
|
|
|
|
|
// top: -191px;
|
|
|
|
|
|
// margin: 0 auto;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
background-color: #ffffff;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
// width: 698.8rpx;
|
|
|
|
|
|
width: 100%;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
height: 227.8rpx;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
margin-bottom: 3%;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
z-index: 99999;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.background {
|
2022-10-13 11:30:22 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
|
height: 180rpx;
|
|
|
|
|
|
background-color: #4C7BC9;
|
|
|
|
|
|
margin-top: 4%;
|
|
|
|
|
|
margin-left: 10%;
|
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.background image {
|
|
|
|
|
|
|
|
|
|
|
|
width: 99rpx;
|
|
|
|
|
|
height: 99rpx;
|
|
|
|
|
|
// margin: 0 auto;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin-top: 5%;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
margin-left: 20%;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.qyttext {
|
|
|
|
|
|
// text-align: center;
|
|
|
|
|
|
// margin-top: 10%;
|
|
|
|
|
|
margin-left: 28%;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// width: 30px;
|
|
|
|
|
|
// height: 10px;
|
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
|
// font-family: Adobe Heiti Std;
|
|
|
|
|
|
// font-weight: normal;
|
|
|
|
|
|
color: #FFFFFF;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.lianmeng {
|
2022-10-13 11:30:22 +08:00
|
|
|
|
display: block;
|
|
|
|
|
|
margin-left: 5%;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
font-size: 14rpx;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// font-family: Adobe Heiti Std;
|
|
|
|
|
|
// font-weight: normal;
|
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
|
|
|
|
|
.click {
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// position: absolute;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
float: right;
|
|
|
|
|
|
width: 167.3rpx;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
height: 34px;
|
|
|
|
|
|
line-height: 34px;
|
|
|
|
|
|
// height: 58.5rpx;
|
|
|
|
|
|
// line-height: 58.5rpx;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// margin: 0 auto;
|
|
|
|
|
|
text-align: center;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
background-color: #4C7BC9;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
margin-top: 20%;
|
|
|
|
|
|
margin-right: 5%;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
border-radius: 17px;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// margin-top: 6%;
|
|
|
|
|
|
// margin-left: 40%;
|
|
|
|
|
|
// border-radius: 10rpx;
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-14 19:48:48 +08:00
|
|
|
|
.wenzi {
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-13 16:31:59 +08:00
|
|
|
|
.nurse {
|
2022-10-13 11:30:22 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
float: right;
|
|
|
|
|
|
margin-top: 5%;
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
margin-left: 40%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-13 16:31:59 +08:00
|
|
|
|
.icon {
|
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
line-height: 60rpx;
|
|
|
|
|
|
position: absolute;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
// float: right;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
margin-left: 85%;
|
|
|
|
|
|
margin-top: -9%;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.distance {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
float: right;
|
|
|
|
|
|
margin-top: 12%;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
font-size: 14rpx;
|
2022-10-13 16:31:59 +08:00
|
|
|
|
margin-left: 40%;
|
|
|
|
|
|
font-family: Adobe Heiti Std;
|
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
color: #666666;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2022-10-14 19:48:48 +08:00
|
|
|
|
|
|
|
|
|
|
.nursestation image {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 16rpx;
|
|
|
|
|
|
height: 24rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-14 11:58:52 +08:00
|
|
|
|
.nursetation {
|
2022-10-14 19:48:48 +08:00
|
|
|
|
position: relative;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
// display: block;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// margin:0 auto;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
top: 50px;
|
|
|
|
|
|
left: 0px;
|
|
|
|
|
|
float: left;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
// background-color: white;
|
|
|
|
|
|
border: 1px solid #f0f0f0;
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
margin: 10rpx 0 10rpx 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
border-radius: 20rpx;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
background-color: red;
|
|
|
|
|
|
z-index: 100;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
.what {
|
2022-10-14 11:58:52 +08:00
|
|
|
|
display: block;
|
2022-10-14 19:48:48 +08:00
|
|
|
|
// margin: 0 auto;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
|
top: 5%;
|
|
|
|
|
|
left: 12%;
|
|
|
|
|
|
// background-color: #4486e8;
|
|
|
|
|
|
position: relative;
|
2022-10-13 11:30:22 +08:00
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
line-height: 60rpx;
|
|
|
|
|
|
margin-left: 5%;
|
2022-10-14 11:58:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
2022-10-13 16:31:59 +08:00
|
|
|
|
|
2022-10-13 11:30:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|