1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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>
|