| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* pages/msg/submitMsg.wxss */
- .publishContainer {
- width: 100%;
- height: 100%;
- position: fixed;
- overflow: hidden;
- }
- .inputBox {
- width: 100%;
- height: 80rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- white-space: nowrap;
- }
- .input {
- width: 400rpx;
- height: 80rpx;
- background-color: transparent;
- font-size: 30rpx;
- border-bottom: 1px gray solid;
- }
- .photoBox {
- width: 100%;
- height: 600rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- white-space: nowrap;
- margin-top: 20rpx;
- }
- .photo {
- width: 600rpx;
- height: 600rpx;
- background-color: yellowgreen;
- }
- .menuBox {
- width: 100%;
- height: 80rpx;
- margin-top: 20rpx;
- display: inline-flex;
- flex-direction: column;
- justify-content: center;
- }
- .buttonBox {
- width: 100%;
- height: 80rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- justify-content: center;
- }
- .titleIcon {
- height: 80rpx;
- width: 80rpx;
- margin-right: 40rpx;
- }
|