xinelu-applet-ui/pagesB/myfamilydoctorteam/myfamilydoctorteam.vue

153 lines
2.6 KiB
Vue
Raw Normal View History

2023-10-09 10:58:52 +08:00
<template>
<view class="app">
<view class="teamname">
<image src="../../static/pagesB/myfamilydoctorteam.png" mode=""></image>
<view class="name">
中心团队
</view>
</view>
<view class="list">
<view class="item">
<image src="../../static/pagesB/Behave.png" mode=""></image>
<view class="name">
齐鲁医院张医生
</view>
<view class="phone">
17869882345
</view>
<view class="title">
全科医生
</view>
<view class="zixunbtn">
咨询
</view>
</view>
<view class="item">
<image src="../../static/pagesB/Behave.png" mode=""></image>
<view class="name">
齐鲁医院张医生
</view>
<view class="phone">
17869882345
</view>
<view class="title">
全科医生
</view>
<view class="zixunbtn">
咨询
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
page {
background-color: #F4F5F7;
}
.app {
width: 96%;
margin: 20rpx auto;
background-color: #fff;
.list {
width: 100%;
.item {
width: 96%;
margin: 0 auto ;
padding-bottom: 60rpx;
border-bottom: 2rpx solid #E6E6E6;
position: relative;
height: 300rpx;
.zixunbtn {
width: 169rpx;
height: 61rpx;
background: #26A888;
border-radius: 5rpx;
font-size: 28rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 61rpx;
text-align: center;
position: absolute;
top: 65%;
right: 10rpx;
}
.title {
position: absolute;
top: 70%;
left: 210rpx;
font-size: 18rpx;
font-weight: 500;
color: #FFA733;
line-height: 30rpx;
height: 30rpx;
background: #FFFFFF;
border: 1px solid #FFA115;
border-radius: 5rpx;
text-align: center;
padding: 0 15rpx;
}
.phone {
position: absolute;
top: 38%;
left: 210rpx;
font-size: 28rpx;
font-weight: 400;
color: #959595;
}
.name {
position: absolute;
font-size: 28rpx;
font-weight: 500;
color: #333333;
top: 20%;
left: 210rpx;
}
image {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 5rpx;
width: 180rpx;
height: 180rpx;
}
}
}
.teamname {
padding: 20rpx 0 0 30rpx;
display: flex;
align-items: flex-end;
image {
width: 40rpx;
height: 36rpx;
}
.name {
padding-left: 15rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
}
}
</style>