123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /* pagesPublic/pages/work-order/work-order.wxss */
- Page {
- /* 全局样式 */
- background: #FFFFFF;
- height: 100%;
- position: fixed;
- }
- .fontColorBox,
- .fontColorBox1 {
- color: #508FF4;
- font-size: 34rpx;
- }
- .navBox {
- /* 顶部tab盒子样式 */
- width: 100%;
- height: 94rpx;
- background: white;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- border-bottom: solid #C8C8C8 1rpx;
- }
- .navBox view:last-child {
- /* 最后一个tab标题的样式 */
- padding-left: 20%;
- }
- .titleBox {
- /* 未选中文字的样式 */
- color: #333333;
- font-size: 32rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .lineBox,
- .notLineBox {
- /* 选中及未选中底线共同样式 */
- width: 215rpx;
- height: 6rpx;
- margin-top: 21rpx;
- }
- .lineBox {
- /* 选中底线样式 */
- background: #508FF4;
- border-radius: 3rpx;
- }
- .notLineBox {
- /* 未选中底线样式 */
- background: transparent;
- }
- .swiperBox {
- height: 100vh;
- }
- .swiperTtemBox {
- /* 底部内容样式 */
- height: 100%;
- overflow: scroll;
- background: #FFFFFF;
- color: #333333;
- }
- .formBox {
- margin: 10rpx 30rpx;
- font-size: 28rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .form-item {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 28rpx;
- width: 100%;
- }
- .form-item-picker {
- width: 67%;
- }
- .form-item-label {
- width: 210rpx;
- text-align: right;
- }
- .form-input {
- border-bottom: solid 1rpx #999999;
- width: 68%;
- }
- .form-icon {
- width: 13rpx;
- height: 24rpx;
- background-size: 100% 100%;
- }
- .form-photo {
- width: 44rpx;
- height: 40rpx;
- padding: 35rpx;
- background: #E9E9E9;
- }
- .form-button {
- width: 100%;
- height: 97rpx;
- position: absolute;
- bottom: 97rpx;
- background: #508FF4;
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- padding: 0 !important;
- margin: 0 !important;
- line-height: 97rpx;
- border-radius: 0;
- }
- .item {
- margin: 0 30rpx;
- border-bottom: solid 1rpx #C8C8C8;
- padding-bottom: 16rpx;
- }
- .item-status {
- width: 146rpx;
- height: 146rpx;
- position: absolute;
- right: -20rpx;
- top: -20rpx;
- }
- .item-row {
- margin-top: 30rpx;
- }
- .item-label {
- font-size: 28rpx;
- color: #999999;
- }
- .item-value {
- font-size: 28rpx;
- color: #333333;
- }
|