| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* pages/deviceCheck/report/edit/checkReportEdit.wxss */
- page {
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .viewBody{
- height: 100%;
- display: flex;
- flex-direction: column;
- padding-left: 10rpx;
- padding-right: 10rpx;
- }
- .processSuggest {
- font-size: 14px;
- padding-left: 20rpx;
- padding-right: 20rpx;
- padding-top: 20rpx;
- width: 100%;
- height: 200rpx;
- }
- .placeholder{
- font-size: 14px;
- color: lightgray;
- }
- .photoBox {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- padding-top: 40rpx;
- }
- .scroll-list {
- width: 96%;
- margin-left: auto;
- margin-right: auto;
- }
- .photo {
- width: 600rpx;
- height: 600rpx;
- }
- .item-img {
- width: 120rpx;
- height: 120rpx;
- margin: 5rpx 5rpx 5rpx 5rpx;
- border-radius: 12rpx;
- }
- .buttonBox {
- height: 100rpx;
- width: 100%;
- margin-top: 10rpx;
- margin-bottom: 10rpx;
- position: absolute;
- bottom: 0rpx;
- left: 0rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .buttonBox button {
- width: 90%;
- }
- .report-btn {
- height: 80rpx;
- background-color: #FD7400;
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-left: 20rpx;
- margin-right: 20rpx;
- margin-top: 20rpx;
- }
- .new-report-btn-text {
- text-align: center;
- color: whitesmoke;
- font-size: 1rem;
- }
|