1234567891011121314151617181920212223242526272829303132333435363738 |
- /* pages/searchUser/searchUser.wxss */
- .search-form {
- background-color: #fff;
- padding: 10rpx 20rpx;
- border-bottom: solid 1px #19be6b;
- }
- .input {
- width: 100%;
- }
- .button {
- white-space: nowrap;
- font-size: 24rpx;
- }
- .result-form {
- background-color: #fff;
- padding: 20rpx;
- margin-top: 20rpx;
- }
- .form-item {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- line-height: 3;
- border-bottom: #f8f8f8 solid 1px;
- }
- .form-value {
- color: #999;
- }
- .check-btn {
- margin-top: 60rpx;
- padding: 0 60rpx;
- }
- .check-btn button {
- font-size: 24rpx;
- }
|