123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- .filter {
- width: 40px;
- text-align: center;
- }
- .curr-content {
- position: relative;
- width: 100%;
- height: calc(100% - 50px);
- }
- .curr-item {
- display: flex;
- justify-content: center;
- position: absolute;
- top: 0;
- width: 100%;
- border-bottom: 1px solid #f5f5f7;
- border-top: 1px solid #f5f5f7;
- /* padding-bottom: 10px; */
- }
- .curr-item view {
- width: 50%;
- text-align: center;
- padding-bottom: 10px;
- padding-top: 10px;
- }
- .curr-item view:nth-child(1) {
- border-right: 1px solid #f5f5f7;
- }
- .curr-content scroll-view {
- position: absolute;
- top: 43px;
- height: calc(100% - 100px);
- }
- .curr-btn {
- position: absolute;
- bottom: 0px;
- display: flex;
- justify-content: center;
- width: 100%;
- /* margin-top: 10px; */
- padding-top: 10px;
- }
- .work-cell {
- display: flex;
- border-bottom: 1px solid #f5f5f7;
- }
- .work-cell .work-name,
- .work-cell .work-class {
- height: 40px;
- width: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .work-cell .work-name text,
- .work-cell .work-class text {
- display: inline-block;
- width: 80%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .work-cell .work-class {
- width: 50%;
- border-left: 1px solid #f5f5f7;
- }
- .filter-sheet {
- width: 100%;
- height: 320px;
- }
- .time-content {
- display: flex;
- }
- .time-content .title {
- /* margin: 0 10px; */
- width: 5em;
- }
- .time-content text:nth-child(3) {
- margin: 0 10px;
- }
- .issus-content {
- display: flex;
- justify-content: flex-start;
- }
- .issus-content text {
- /* width: 5em; */
- }
- .btn-attr {
- display: flex;
- width: 100%;
- justify-content: space-around;
- margin-top: 20px;
- }
- .btn-attr van-button {
- width: 40%;
- border-radius: 20px !important;
- }
- .btn-style {
- border-radius: 10px;
- }
- .class-item-cell {
- width: 700rpx;
- /* display: flex; */
- }
- .class-item-cell .content {
- display: flex;
- }
- .class-item-cell .cell {
- width: 50px;
- height: 20px;
- line-height: 22px;
- text-align: center;
- border-radius: 10px;
- border: 1px solid #f5f5f7;
- padding: 0 3px;
- margin-right: 10px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .class-item-cell .active {
- border-color: #248af7;
- color: #248af7;
- }
- .form-create {
- max-width: 700rpx;
- padding-bottom: 20px;
- }
- .choose-upload {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #999;
- border: 1px dashed #999;
- width: 130px;
- height: 30px;
- margin-left: 25px;
- }
- .choose-upload text {
- font-size: 12px;
- }
- .upload {
- display: flex;
- align-items: center;
- }
- .upload > text {
- width: 5em;
- display: block;
- }
- .choose-upload text {
- max-width: 100px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .choose-upload van-icon {
- margin-right: 5px;
- }
|