home.vue 630 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="home-wrap basic-container">
  3. <view class="home-search">
  4. <view class="search-wrap">
  5. <input />
  6. </view>
  7. <view class="search-btn">
  8. 搜索
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script setup>
  14. </script>
  15. <style lang="scss" scoped>
  16. .home-wrap {
  17. background-color: #F2F3F5;
  18. .home-search {
  19. display: flex;
  20. align-items: center;
  21. width: 100%;
  22. border: 2rpx solid #FFD95E;
  23. .search-wrap {
  24. flex: 1;
  25. }
  26. .search-btn {
  27. text-align: center;
  28. line-height: 52rpx;
  29. border-radius: 40rpx;
  30. font-size: 28rpx;
  31. width: 112rpx;
  32. height: 52rpx;
  33. }
  34. }
  35. }
  36. </style>