<script>
	export default {
	};
</script>

<style lang="scss">
	@import "uview-ui/index.scss";
	@import './iconFont/iconfont.css';
	$mainColor: #ff6e3e;

	/* 解决头条小程序组件内引入字体不生效的问题 */
	/* #ifdef MP-TOUTIAO */
	@font-face {
		font-family: uniicons;
		src: url('/iconFont/uni.ttf');
	}

	page {
		width: 100%;
		height: 100%;
	}
	/* #endif */
	::-webkit-scrollbar {
		display: none;
		width: 0 !important;
		height: 0 !important;
		-webkit-appearance: none;
		background: transparent;
	}
	
	u-divider {
		padding-bottom: 10px;
		display: flex;
	}
</style>