40 lines
762 B
Vue
40 lines
762 B
Vue
<template>
|
|
<view class="flex-row items-center">
|
|
<image
|
|
class="shrink-0 image_2"
|
|
:src="bookUrl + '/component/lxkf.png'"
|
|
/>
|
|
<text class="font_2 text_3">在线咨询</text>
|
|
<image
|
|
class="shrink-0 image_3"
|
|
:src="bookUrl + '/component/yjt.png'"
|
|
/>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { bookUrl } from '../../../common/globalImagesUrl';
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.image_2 {
|
|
width: 45rpx;
|
|
height: 45rpx;
|
|
}
|
|
.font_2 {
|
|
font-size: 30rpx;
|
|
font-family: FZSongKeBenXiuKaiS-R-GB;
|
|
line-height: 28.84rpx;
|
|
}
|
|
.text_3 {
|
|
color: #323232;
|
|
line-height: 28.13rpx;
|
|
}
|
|
.image_3 {
|
|
margin-left: 3.75rpx;
|
|
width: 31.88rpx;
|
|
height: 31.88rpx;
|
|
}
|
|
@import url(../../../common/css/global.css);
|
|
</style> |