1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* 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;
- }
- .header-tab {
- height: 110rpx;
- }
- .header-tab .tab-item {
- width: 49%;
- height: 110rpx;
- background: #fff;
- border-radius: 20rpx;
- text-align: center;
- color: #333;
- font-weight: bold;
- line-height: 110rpx;
- }
- .header-tab .tab-item.isActive {
- color: #5e73e5;
- }
- .header-tab .tab-item:first-child {
- margin-right: 2%;
- }
-
- .header-tab .release-img,
- .header-tab .remove-img {
- position: relative;
- margin-right: 10rpx;
- top: 4px;
- }
- .header-tab .release-img {
- width: 46rpx;
- height: 40rpx;
- }
- .header-tab .remove-img {
- width: 40rpx;
- height: 36rpx;
- }
-
- .search-view {
- /* width: 100%; */
- margin-top: 20rpx;
- height: 90rpx;
- position: relative;
- padding-bottom: 20rpx;
- }
- .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: 30rpx;
- width: 29rpx;
- height: 29rpx;
- z-index: 666;
- }
- .search-view .search-img {
- width: 100%;
- height: 100%;
- }
-
- .foot-btn {
- border-top: 1px solid #eaedf4;
- height: 65rpx;
- line-height: 95rpx;
- text-align: right;
- }
- .foot-btn .foot-van-btn{
- margin-left: 10rpx;
- }
|