<template> <view class="box"> 紧急救援 </view> </template> <script> export default { data() { return { } }, methods: { } } </script> <style> .box{ min-height: 100vh; background-color: #f4f5f7; } .top{ background-color: #FFFFFF; padding: 30rpx 20rpx; display: flex; justify-content: space-between; align-items: center; } .left{ display: flex; align-items: center; } .car{ font-size: 28rpx; color: #333333; line-height: 40rpx; /* 隐藏文字显示 ...不换行 */ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .brandLogo { width: 42rpx; height: 42rpx; } </style>