<template> <view style="flex-grow: 1;"> <view> <text>height: 500rpx</text> <view class="common" style="height: 500rpx;"></view> </view> <view style="height: 500rpx;"> <text>height: 50%</text> <view class="common" style="height: 50%;"></view> </view> </view> </template> <script> </script> <style> .common { width: 500rpx; background-color: red; } </style>