1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* pages/myModule/components/myRelease/myRelease.wxss */
-
- .my-release-page {
- min-height: calc(100vh - 20rpx);
- padding-bottom: 20rpx;
- }
- .header {
- box-sizing: border-box;
- padding: 0 20rpx;
- width: 100%;
- position: sticky;
- top: 0;
- z-index: 999;
- background: #f5f9ff;
- }
-
- .search-view {
- height: 90rpx;
- position: relative;
- padding: 20rpx 0;
- }
- .search-view .input-box{
- width: 100%;
- }
- .search-view .weui-serach-input{
- background: #fff;
- height: 90rpx;
- line-height: 90rpx;
- box-sizing: border-box;
- padding-left: 40rpx;
- padding-right: 80rpx;
- border-radius: 44rpx;
- box-shadow: -2px 7px 13px 3px
- rgba(130, 130, 130, 0.03);
- }
-
-
- .search-view .search-img-view {
- position: absolute;
- right: 52rpx;
- top: 20rpx;
- z-index: 666;
- width: 40rpx;
- height: 90rpx;
- line-height: 90rpx;
- }
- .search-view .search-img {
- width: 29rpx;
- height: 29rpx;
- position: relative;
- top: 5rpx;
- }
-
- /* .disabled-model {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.3);
- border-radius: 20rpx;
- } */
-
- .disabled-model-img{
- position: absolute;
- width: 125rpx;
- height: 78rpx;
- top: 78rpx;
- right: 40rpx;
- z-index: 6;
- }
-
- .del-collect-view {
- position: absolute;
- right:10rpx;
- top: 20rpx;
- width: 40rpx;
- height: 40rpx;
- }
- .del-collect-view .del-collect-img{
- width: 29rpx;
- height: 31rpx;
- }
|