12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* 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 .tag{
- height: 50rpx;
- line-height: 50rpx;
- background-color: #f1f1f1;
- border-radius: 25rpx;
- text-align: center;
- color: #999999;
- font-size: 26rpx;
- }
|