<template>
	<view >
		<image  class="background_dictionary"  src="/static/homepages/homes/dictionary/pictures/radish.png" ></image>
		<image class="button_dictionary"   src="/static/homepages/homes/dictionary/pictures/button.png" ></image>
	</view>
</template>

<script>
	export default {
		data() {
			return {
			};
		}
	}
</script>
<style lang="scss">
.background_dictionary{
	position: absolute; /* 绝对定位 */
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%; /* 水平居中 */
}
.button_dictionary{
	position: absolute; /* 绝对定位 */
	width: 3%;
	height: 3%;
	top: 7%;
	left: 7%; /* 水平居中 */
}
</style>