| 1234567891011121314151617181920212223242526272829303132333435363738 |
- @import '@/utils/common.scss';
- .input_bg{
- width: 658px;
- height: 96px;
- display: flex;
- flex-direction: row;
- align-items: center;
- background-color: #fff;
- border-radius: 36px;
- padding-left: 40px;
- margin-left: 46px;
- box-sizing: border-box;
- }
- .input{
- height: 96px;
- color: #000;
- caret-color: $fastColor;
- flex: 1;
- // border: solid 4px #000;
- }
- .clear_bg{
- width: 116px;
- height: 96px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .input:focus{
- // border: solid 4px $themeColor;
- }
- .input_focus{
- // border: solid 4px $themeColor;
- }
|