12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/meeting-inspection-abnormal/meeting-inspection-abnormal.wxss */
- page {
- background-color: #F0F4F7;
- }
- .upload-pic {
- background-color: #FFFFFF;
- box-sizing: border-box;
- width: 100%;
- margin-top: 30rpx;
- padding: 30rpx;
- min-height: 206rpx;
- }
- .toolBar {
- width: 100%;
- display: inline-flex;
- justify-content: space-between;
- }
- .upload-icon {
- width: 40rpx;
- height: 38rpx;
- }
- .imageItem {
- margin-top: 30rpx;
- display: inline-flex;
- flex-direction: row;
- margin-right: 40rpx;
- }
- .imageItem .img {
- width: 90rpx;
- height: 90rpx;
- }
- .removeBtn {
- width: 30rpx;
- height: 30rpx;
- position: relative;
- top: -15rpx;
- right: 15rpx;
- z-index: 9;
- }
- .result-desc {
- margin-top: 30rpx;
- width: 100%;
- min-height: 320rpx;
- background-color: #FFFFFF;
- box-sizing: border-box;
- padding: 30rpx;
- }
- .desc {
- margin-top: 20rpx;
- width: 100%;
- }
- .bottom-save {
- position: absolute;
- bottom: 10rpx;
- width: 100%;
- background-color: #FFFFFF;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- }
- .save-btn {
- color: #FFFFFF;
- background-color: #3D5C92;
- border-radius: 45rpx;
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- letter-spacing: 10rpx;
- }
|