123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /* miniprogram/pages/tab/tab.wxss */
- /* pages/searchRoom/searchRoom.wxss */
- .storeContent {
- width: 100%;
- /* padding: 0 10rpx; */
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- flex-direction: column;
- top: 0;
- left: 0;
- background: #fff;
- z-index: 100;
- padding-bottom: 10rpx;
- }
- .tab-header {
- width: 100%;
- height: 80rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .un-start,
- .has-start {
- width: 50%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .storeSearch {
- width: 614rpx;
- height: 64rpx;
- background: #F6F6F6;
- border-radius: 32rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0 32rpx;
- box-sizing: border-box;
- margin: 10rpx auto 0;
- position: relative;
- }
- .storeSearch image {
- width: 24rpx;
- height: 24rpx;
- }
- .storeSearch input {
- font-size: 24rpx;
- color: #333;
- margin-left: 4rpx;
- width: 80%;
- }
- .storeSearch .placeholderStyle {
- font-size: 24rpx;
- color: #B2B2B2;
- }
- .search-container{
- display: flex;
- width: 100%;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 0 32rpx;
- }
- .searchBtn {
- color: #0075DC;
- font-size: 28rpx;
- width: 60rpx;
- }
- .result {
- margin-top: 80rpx;
- padding: 0rpx 32rpx 10rpx 32rpx;
- box-sizing: border-box;
- }
- .storeList {
- width: 100%;
- /* padding: 0 32rpx; */
- box-sizing: border-box;
- /* display: flex;
- align-items: center;
- justify-content: center; */
- margin-top: 20rpx;
- }
- .storeList>view {
- overflow: hidden;
- width: 334rpx;
- float: left;
- }
- .storeList>view:nth-of-type(odd) {
- margin-right: 18rpx;
- }
- .unbrand {
- margin-top: 180rpx;
- text-align: center;
- }
- .unbrand image {
- display: inline-block;
- width: 250rpx;
- height: 274rpx;
- }
- .unbrand .text {
- color: #666C7D;
- font-size: 30rpx;
- margin-top: 40rpx;
- }
|