| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <view class="content">
- <view class="box">
- <view class="img">
- <image src="../../static/error/missing-face.png" mode=""></image>
- </view>
- <view class="title-box">
- <view class="title-top">
- <view class="title-left">
- <text>古太医</text>
- <text>精通药理学病理中医神经学</text>
- </view>
- <view class="zj">
- 专家
- </view>
- </view>
- <view class="title-bottom">
- <view class="img1">
- <image src="../../static/error/emptyCart.png" mode=""></image>
- </view>
- <text>台州市椒江区市府大道120号</text>
- </view>
- </view>
- </view>
- <view class="contact">
- <view class="contact-title">
- <text></text>
- <text>众赢集团</text>
- <text></text>
- </view>
- <view class="contact-content">
- <view class="img">
- <image src="../../static/icon/appleIcon.png" mode=""></image>
- </view>
- <view class="phone">
- 专线电话:18252757278
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- page {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- .box {
- margin: 0 20rpx ;
- display: flex;
- width: 710rpx;
- height: 210rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(0, 0, 0, 0.1);
- border-radius: 10rpx;
- .img {
- width: 180rpx;
- height: 180rpx;
- border-radius: 10rpx;
- margin-left: 10rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .title-box {
-
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-left: 20rpx;
- .title-top {
- display: flex;
-
- .title-left {
- width: 400rpx;
- display: flex;
- flex-direction: column;
- text:nth-child(1){
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-top: -20rpx;
- line-height: 54rpx;
- }
- text:nth-child(2){
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- }
- .zj {
- text-align: center;
- width: 66rpx;
- height: 40rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- background: linear-gradient(120deg, #FFC063, #FFA163);
- border-radius: 8rpx;
- line-height: 40rpx;
- }
- }
- .title-bottom {
- display: flex;
- .img1 {
- width: 17rpx;
- height: 24rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- .contact {
- .contact-title {
- text:nth-child(1) {
- width: 270px;
- height: 2px;
- background: #E5E5E5;
- }
- text:nth-child(2) {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 42rpx;
- }
- text:nth-child(3) {
- width: 270px;
- height: 2px;
- background: #E5E5E5;
- }
- }
- .contact-content {
- .img {
- width: 28rpx;
- height: 25rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .phone {}
- }
- }
- }
- </style>
|