1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* pages/handleSuggest/handleSuggest.wxss */
- /* 设置页面背景 */
- page{
- padding: 20rpx;
- height: 100%;
- background-color: #FFF2CC;
- }
- /* 顶部的建议信息 */
- .suggestHead{
- margin-top: 10rpx;
- }
- /* 顶部建议信息详情、结案日期详情、状态处理详情 */
- .suggestHeadDetail,
- .suggestHeadId,
- .handleDateDetail,
- .handleStatusDetail{
- margin-left: 20rpx;
- font-weight: bold;
- }
- .suggestHeadId{
- color: #00B0F0;
- text-decoration: underline;
- }
- /* 建议详情 */
- .suggestTitle{
- margin-top: 30rpx;
- display: flex;
- flex-direction: column;
- }
- /* 标题 */
- .suggestTitleText{
- text-align: center;
- font-weight: bold;
- margin-bottom: 10rpx;
- }
- /* 内容 */
- .suggestTitleDetail{
- width: 94%;
- }
- /* 结案日期 */
- .handleDate{
- margin-top: 40rpx;
- }
- /* 处理状态 */
- .handleStatus{
- margin-top: 40rpx;
- }
- .handleStatusDetail{
- color: red;
- }
- /* 处理结果 */
- .handleResult{
- display: flex;
- flex-direction: column;
- }
- .handleResultTitle{
- text-align: center;
- margin: 20rpx 0;
- font-weight: bold;
- }
- /* 处理结果详情 */
- .handleDetail{
- padding: 10rpx;
- background-color: #fff;
- border: 1rpx solid gray;
- border-radius: 20rpx;
- width: 93%;
- margin-bottom: 40rpx;
- }
- .handleResultDetail{
- min-height: 200rpx;
- padding: 10rpx;
- background-color: #fff;
- border-radius: 20rpx;
- width: 93%;
- margin-bottom: 40rpx;
- }
- /* 结案 */
- .handleEnd{
- display: flex;
- justify-content: center;
- margin-bottom: 40rpx;
- }
- .handleClosed{
- background-color: #8FAADC;
- font-size: 40rpx;
- padding: 10rpx 30rpx;
- border-radius: 40rpx;
- color: white;
- }
|