<template> <view style="flex-grow: 1;"> <view> <text>max-width: 500rpx</text> <view class="common" style="max-width: 500rpx;"> <text>width: 1000rpx</text> </view> </view> </view> </template> <script> </script> <style> .common { width: 1000rpx; height: 500rpx; background-color: red; justify-content: center; align-items: center; } </style>