1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* pages/Input_content/input_content.wxss */
- .input-content {
- height: 100%;
- background: #F4F4F4;
- }
- .head {
- height: 82rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #fff;
- padding: 42rpx;
- box-sizing: border-box;
- border-top: 2rpx #F4F4F4 solid;
- }
- .head text {
- font-size: 24rpx;
- }
- .head text:nth-child(2) {
- color: #1B87EA;
- }
- .write {
- padding: 42rpx;
- box-sizing: border-box;
- }
- .write input {
- font-size: 32rpx;
- }
- .write .add {
- width: 180rpx;
- height: 180rpx;
- }
- .minImg{
- width: 180rpx;
- height: 180rpx;
- margin: 10rpx;
- }
- .shareArea{
- height:200rpx;
- }
|