12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* pages/writeSuggestion/writeSuggestion.wxss */
- /* 设置页面背景 */
- page{
- background-color: #E2F0D9;
- height: 100%;
- }
- .suggestWrapper{
- display: flex;
- flex-direction: column;
- width: 100%;
- padding: 20rpx;
- }
- /* 标题 */
- .suggestTitle{
- text-align: center;
- padding-bottom: 20rpx;
- font-weight: bold;
- }
- /* 输入的建议标题和内容公共样式 */
- .titleInput,
- .contentInput{
- width: 93%;
- padding: 10rpx;
- /* border: 1rpx solid gray; */
- border-radius: 20rpx;
- background-color: #fff;
- }
- /* 建议标题输入框的高度 */
- .titleInput{
- height: 150rpx;
- }
- /* 建议内容输入框的高度 */
- .contentInput{
- height: 800rpx;
- }
- /* 下方按钮 */
- .suggestBtn{
- display: flex;
- margin-top: 40rpx;
- justify-content: space-around;
- }
- .confirmBtn{
- font-size: 42rpx;
- width: 120rpx;
- padding: 10rpx 20rpx;
- border-radius: 40rpx;
- text-align: center;
- background-color: #8FAADC;
- color: white;
- }
|