34 lines
605 B
Vue
34 lines
605 B
Vue
<template lang="pug">
|
|
.Allcomment
|
|
span 打开APP查看全部评论
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "AllComment",
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.Allcomment{
|
|
width: 351px;
|
|
height: 44px;
|
|
border-radius: 4px;
|
|
border: solid 1px #d0302c;
|
|
text-align: center;
|
|
margin-left: 0.307rem;
|
|
line-height: 1.5;
|
|
span{
|
|
width: 139px;
|
|
height: 13px;
|
|
font-family: PingFangSC-Medium;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
font-stretch: normal;
|
|
line-height: 24px;
|
|
letter-spacing: 0px;
|
|
color: #d0302c;
|
|
}
|
|
}
|
|
</style>
|