You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
<template>
|
|
<view class="help">
|
|
<view class="content">
|
|
<view class="title">如何联系人工客服?</view>
|
|
<view class="jie">解答:</view>
|
|
<view class="desc">这里展示说明说明,这里展示说明说明这里展示说明说明这里展示说明说明这里展示说明说明这里展示说明说明这里展示说明说明这里展示说明?</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.help{
|
|
padding: 0 25rpx 0;
|
|
overflow: hidden;
|
|
.content{
|
|
width: 100%;
|
|
background: #FFFFFF;
|
|
border-radius: 20rpx;
|
|
padding: 0 20rpx 20rpx;
|
|
box-sizing: border-box;
|
|
margin-top: 20rpx;
|
|
.title{
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
padding: 40rpx 0;
|
|
text-align: center;
|
|
}
|
|
.jie{
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
}
|
|
.desc{
|
|
margin-top: 20rpx;
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
line-height: 40rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|