|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /* pages/Bookkeeping/Bookkeeping.wxss */
- text{display: block;}
- .work_plan{
- padding: 40rpx 32.5rpx 30rpx;
- display: flex;
- }
-
- .work_plan .menu_item{
- background-color: #fff;
- box-shadow: 2px 5px 5px #ddd;
- border-radius: 60rpx;
- text-align: center;
- position: relative;
- margin-right: 20px;
- padding: 8px 10px;
- }
- .work_plan .menu_item.active{
- background-color: #2C8E68;
- color: #fff;
- }
- .work_plan .menu_item .remind{
- height: 30rpx;
- background: #e90101;
- color: #fff;
- font-size: 26rpx;
- position: absolute;
- line-height: 30rpx;
- padding:0 10rpx;
- border-radius: 25px;
- top: -10rpx;
- right: -10rpx;
- }
-
- .work_plan .more{
- flex: 1;
- text-align: center;
- line-height: 60rpx;
- font-size: 36rpx;
- color: #31936c;
- }
- .deleteBox{
- width: 65px;
- text-align: center;
- height: 100%;
- background: #F6F6F6;
- align-items: center;
- display: flex;
- }
- .workflow .workflow_list{
- height: 150rpx;
- background-color: #fff;
- border-radius: 24rpx;
- box-shadow:0rpx 0rpx 10rpx rgba(0,0,0,.1);
- margin-bottom: 20rpx;
- padding:15rpx 25rpx 10rpx 35rpx;
- }
- .workflow .workflow_list .process_intro{
- display: flex;
- height: 62rpx;
- align-items: center;
- }
-
- .workflow .process_intro .name{
- width: 390rpx;
- font-size: 34rpx;
- margin-right: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .workflow .process_intro .name .name_tit{
- width: 290rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .van-swipe-cell {
- width: 94%;
- background: #fff;
- border-radius: 10px;
- box-shadow: 2px 5px 5px #ddd;
- margin: 0 auto;
- margin-bottom: 15px;
- }
- .li{
- display: flex;
- justify-content: space-between;
- width: 100%;
- padding: 14px;
- }
- .li view text{
- margin-top: 15px;
- }
- .li view text:nth-child(1){
- margin-top: 0px;
- }
- .li .fksr{
- display: flex;
- align-items: center;
- margin-top: 15px;
- color: #2C8E68;
- font-size: 16px;
- }
- .li .wtj{
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 3px 8px;
- border-radius: 5px;
- font-size: 14px;
- }
- .no{
- background-color:#fbe3e3;
- color: #e90000;
- }
- .white{
- background-color:#feeadc;
- color: #fc9a55;
- }
- .yes{
- background-color:#ddeee3;
- color: #5cae77;
- }
- .other{
- background-color:#f0f1f6;
- color: #878787;
- }
- .li .tit{
- font-size: 18px;
- color: #444444;
- line-height: 25px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- word-break: break-all;
- overflow: hidden;
- }
- .li .fj_name{
- font-size: 14px;
- color: #B3DB62;
- line-height: 25px;
- }
- .li .time{
- font-size: 14px;
- color: #9B9CAA;
- }
- .li .money{
- font-size: 18px;
- color: #5CAE77;
- }
- .van-checkbox__label {
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
-
- .van-checkbox__icon-wrap {
- border-radius: 5px;
- }
- .van-checkbox__icon {
- border-radius: 5px;
- border: 2px solid #2C8E68!important;
- background-color: rgba(44, 142, 104, 0.2);
- }
- .bottom{
- width: 100%;
- margin: 0 auto;
- text-align: center;
- padding: 15px 0;
- display: flex;
- position: fixed;
- bottom: 0%;
- background: #fff;
- box-shadow: 0 0 5px #ddd;
- }
-
- .bottom view {
- width: 47%;
- margin: 0 auto;
- border-radius: 30px;
- display: inline-block;
- }
-
- .bottom .btn2{
- border: 1px solid transparent;
- padding: 10px 0px;
- background-image: linear-gradient(to right, #2C8E68, #5CAE77);
- color: #fff;
- }
-
- .downView{
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 0 20px;
- border: 1px solid #5CAE77;
- border-radius: 50px;
- background: #fff;
- margin-left: auto;
- }
- .downView image{
- width: 10px;
- height: 8px;
- margin-left: 10px;
- }
|