1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* pages/portal/search.wxss */
- @import "./index.wxss";
- .search-box {
- display: flex;
- align-items: center;
- width: 702rpx;
- height: 60rpx;
- background: rgba(0, 0, 0, 0.05);
- border-radius: 30rpx;
- margin: 20rpx auto 60rpx;
- overflow: hidden;
- padding: 0 20rpx;
- box-sizing: border-box;
- }
- .search-box image {
- width: 26rpx;
- height: 26rpx;
- flex-shrink: 0;
- margin-right: 10rpx;
- }
- .search-box input {
- flex: 1;
- height: 100%;
- font-size: 28rpx !important;
- }
- .placeholder {
- font-size: 28rpx !important;
- color: #000000 !important;
- opacity: .3 !important;
- }
- /* tabs */
- .tabs {
- width: 100vw;
- padding-left: 40rpx;
- box-sizing: border-box;
- }
|