123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /* pages/daily-inspection/daily-inspection.wxss */
- .container {
- background-color: #F0F4F7;
- display: block;
- height: 100%;
- }
- .body {
- margin-top: 20rpx;
- margin-bottom: 70rpx;
- overflow-y: scroll;
- height: calc(100vh - 330rpx);
- }
- .history-record-buju {
- display: flex;
- justify-content: flex-end;
- }
- .history-record {
- margin-top: 20rpx;
- text-align: center;
- border-radius: 40rpx;
- font-size: 26rpx;
- width: 160rpx;
- height: 60rpx;
- line-height: 60rpx;
- margin-right: 40rpx;
- border: 1rpx solid #CECECE;
- }
- .inspection-project {
- margin-left: 40rpx;
- margin-right: 40rpx;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- height: 200rpx;
- margin-bottom: 10rpx;
- }
- .inspection-project .project-name {
- line-height: 80rpx;
- margin-left: 30rpx;
- }
- .inspection-project .status-title {
- margin-top: 10rpx;
- font-size: 22rpx;
- color: #999999;
- line-height: 80rpx;
- margin-left: 30rpx;
- }
- .inspection-project .divider {
- margin-top: 10rpx;
- border: 1rpx solid #EBE8E3;
- margin-left: 30rpx;
- margin-right: 30rpx;
- }
- .inspection-project .buju {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .inspection-project .buju1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .inspection-project .button {
- margin-top: 10rpx;
- text-align: center;
- border-radius: 40rpx;
- font-size: 26rpx;
- width: 160rpx;
- height: 50rpx;
- line-height: 50rpx;
- border: 1rpx solid #CECECE;
- margin: 26rpx 30rpx 0 0;
- }
- .results {
- line-height: 50rpx;
- margin-right: 40rpx;
- }
- .submit-button {
- border-radius: 45rpx;
- background-color: #3D5C92;
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- margin-top: 10rpx;
- position: absolute;
- bottom: 40rpx;
- left: 10%;
- }
|