19 lines
735 B
Vue
19 lines
735 B
Vue
<template>
|
||
<view class="flex flex-col bg-white rounded-[24rpx] p-[30rpx] gap-[40rpx]">
|
||
<view class="flex flex-col gap-[12rpx]">
|
||
<view class="flex items-center gap-[10rpx]">
|
||
<image
|
||
src="https://api.static.ycymedu.com/src/images/home/life-icon.png"
|
||
mode="scaleToFill"
|
||
class="w-[38rpx] h-[38rpx]"
|
||
/>
|
||
<text class="text-[32rpx] text-[#000] font-700">生活建议</text>
|
||
</view>
|
||
<view class="text-[26rpx] text-[#666] font-400">
|
||
保持规律作息,早睡早起,避免熬夜。 每天适当运动(如散步、跑步),保持精力充沛。
|
||
避免过度放松,保持适度的学习节奏。
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|