1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="home-wrap basic-container">
- <view class="home-search">
- <view class="search-wrap">
- <input />
- </view>
- <view class="search-btn">
- 搜索
- </view>
- </view>
- </view>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .home-wrap {
- background-color: #F2F3F5;
- .home-search {
- display: flex;
- align-items: center;
- width: 100%;
- border: 2rpx solid #FFD95E;
- .search-wrap {
- flex: 1;
- }
- .search-btn {
- text-align: center;
- line-height: 52rpx;
- border-radius: 40rpx;
- font-size: 28rpx;
- width: 112rpx;
- height: 52rpx;
- }
- }
- }
- </style>
|