12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .inputContent {
- width: 95%;
- margin: 0 auto;
- height: 80rpx;
- background-color: #F4F4F4;
- border-radius: 5%;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-radius: 60rpx;
- }
- .inputContent input {
- font-size: 28rpx;
- }
- .inputContent button {
- width: 120rpx;
- height: 60rpx;
- border-radius: 60rpx;
- font-size: 30rpx;
- color: white;
- line-height: 60rpx;
- background-color: orange;
- margin-left: 0 !important;
- margin-right: -30rpx !important;
- }
- .show_clear {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px;
- }
- /* search true */
- .search_content_true {
- height: 95vh;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- /* background-color: rgb(112, 218, 144); */
- }
- .search_content_true image {
- width: 60%;
- }
- /* search false */
- .search_content_false {
- margin-top: 15rpx;
- height: 340rpx;
- width: 100%;
- background-color: rgb(233, 233, 233);
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .search_content_false image {
- width: 100%;
- height: 100%;
- }
- .search_content_false .pic{
- width: 200rpx;
- height: 200rpx;
- }
- .search_content_false .desc{
- display: flex;
- flex-direction: column;
- }
|