123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .cl-search {
- display: flex;
- align-items: center;
- background-color: #fff;
- padding: 15rpx 20rpx;
- box-sizing: border-box;
- padding-top: calc(env(safe-area-inset-top) + 15rpx);
- &__input {
- flex: 1;
- position: relative;
- .cl-input {
- border-radius: 70rpx !important;
- overflow: hidden;
- }
- .cl-button {
- height: 70rpx;
- line-height: 70rpx;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 9;
- }
- }
- &__prepend,
- &__append {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- &__prepend {
- margin-right: 20rpx;
- }
- &__append {
- margin-left: 20rpx;
- }
- }
|