1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* pages/release/release.wxss */
- .release-page {
- min-height: calc(100vh - 150rpx);
- }
- .section,.tags-view{
- background: #fff;
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 34rpx 42rpx;
- }
- .section{
- height: 326rpx;
- position: relative;
- line-height: 24rpx;
- }
- .section-textarea {
- width: 100%;
- height: 235rpx;
- }
- .section .limit{
- color: #999;
- position: absolute;
- right: 20rpx;
- bottom: 10rpx;
- }
-
-
- .tags-view {
- margin-top: 20rpx;
- padding-bottom: 22rpx;
- }
- .tags-view .title{
- font-size: 26rpx;
- color: #999999;
- margin-bottom: 20rpx;
- }
- .tags-item-box .tag-item{
- float: left;
- width: 25%;
- margin-bottom: 20rpx;
- box-sizing: border-box;
- padding: 0 10rpx;
- }
- .tags-item-box .active0 .tag{
- background-color: #e4f7ea;
- color: #52cc7a;
- }
- .tags-item-box .active1 .tag{
- background-color: #e4f1f7;
- color: #3d97e6;
- }
- .tags-item-box .active2 .tag{
- background-color: #f7eee4;
- color: #ffa769;
- }
- .tags-item-box .tag{
- height: 50rpx;
- line-height: 50rpx;
- background-color: #f1f1f1;
- border-radius: 25rpx;
- text-align: center;
- color: #999999;
- font-size: 26rpx;
- }
-
- /* 发布按钮 */
- .submit-btn {
- margin-top: 40rpx;
- box-sizing: border-box;
- padding: 0 40rpx;
- }
-
- .submit-btn .btn-span{
- background: #999;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- border-radius: 40rpx;
- color: #fff;
- }
|