123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /* pages/pushArticle/pushArticle.wxss */
- .input-view{
- width: 670rpx;
- height: auto;
- padding: 40rpx 40rpx 96rpx;
- }
- .input-view>textarea:nth-child(1){
- width: 670rpx;
- height: 144rpx;
- font-size: 16px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- }
- .img-box{
- width: 710rpx;
- height: auto;
- display: flex;
- flex-flow: row wrap;
- padding: 0 0 96rpx 40rpx;
- }
- .img-view{
- width: 216rpx;
- height: 216rpx;
- margin-right: 12rpx;
- margin-bottom: 12rpx;
- position: relative;
- }
- .img-view>image:nth-child(1){
- width: 216rpx;
- height: 216rpx;
- border-radius: 4px;
- }
- .img-view>image:nth-child(2){
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- top: -8rpx;
- right: -8rpx;
- }
- .img-upload{
- width: 216rpx;
- height: 216rpx;
- margin-right: 12rpx;
- margin-bottom: 12rpx;
- display: flex;
- background-color: #F5F6F9;
- }
- .img-upload>image{
- width: 80rpx;
- height: 80rpx;
- margin: auto;
- }
- .tag-box{
- display: flex;
- flex-direction: row;
- width: 750rpx;
- height: 112rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .tag-box>image:nth-child(1){
- width: 48rpx;
- height: 48rpx;
- margin: auto 24rpx auto 40rpx;
- }
- .tag-box>text:nth-child(2){
- width: auto;
- height: 48rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- margin-right: auto;
- }
- .tag-box>text:nth-child(3){
- width: auto;
- height: 44rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.28);
- line-height: 44rpx;
- margin-left: auto;
- }
- .tag-box>image:nth-child(4){
- width: 48rpx;
- height: 48rpx;
- margin: auto 40rpx auto 8rpx;
- }
- .tag-box>switch{
- width: 102rpx;
- height: 62rpx;
- color: #FF5700;
- margin: auto 40rpx auto auto;
- }
- .tags-list{
- width: 686rpx;
- height: auto;
- display: flex;
- flex-flow: row wrap;
- padding: 0 24rpx 24rpx 40rpx;
- display: flex;
- }
- .tags-list>text{
- width: auto;
- height: 64rpx;
- border-radius: 16px;
- border: 1px solid rgba(0,0,0,0.08);
- font-size: 26rpx;
- font-family: SFProText-Regular, SFProText;
- font-weight: 400;
- color: rgba(0,0,0,0.6);
- line-height: 64rpx;
- padding: 0 24rpx;
- margin-right: 16rpx;
- margin-bottom: 16rpx;
- }
- .submit-view{
- width: 750rpx;
- height: auto;
- display: flex;
- /* margin-top: 120rpx; */
- padding-bottom: env(safe-area-inset-bottom);
- }
- .submit-view>text{
- width: 686rpx;
- height: 90rpx;
- background: rgba(0,0,0,0.87);
- border-radius: 23px;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 90rpx;
- letter-spacing: 1px;
- text-align: center;
- margin: 32rpx;
- }
|