| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | <template>	<view class="desc">		<view class="title">{{title}}</view>		<view class="memo">{{description}}</view>	</view></template><script>	export default {		props:{			title:{				typeof:String,				default:''			},			description:{				typeof:String,				default:''			}		},		data(){			return {							}		},		methods:{					}	}</script><style scoped lang="less">	.desc{		width: 100%;		height: 400rpx;		background: url(../../static/imgs/fmcs_xtbg.png) no-repeat;		background-size: 100% 100%;		padding: 42rpx 24rpx 0;		box-sizing: border-box;		.title{			font-family: PingFang-SC, PingFang-SC;			font-weight: bold;			font-size: 40rpx;			color: #FFFFFF;			line-height: 56rpx;		}		.memo{			font-family: PingFangSC, PingFang SC;			font-weight: 400;			font-size: 26rpx;			color: #FFFFFF;			line-height: 42rpx;			margin-top: 13rpx;		}	}</style>
 |