| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- .header {
- position: sticky;
- top: 0;
- display: flex;
- justify-content: space-between;
- width: 100%;
- height: 134rpx;
- background: #FFFFFF;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- padding-right: 0;
- z-index: 999;
- >view {
- flex: 1;
- flex-shrink: 0;
- .label {
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 28rpx;
- color: #666666;
- margin-bottom: 20rpx;
- }
- .value {
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- }
- }
- }
- .new-footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- z-index: 999;
- .new-submit {
- width: 156rpx;
- height: 90rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-right: 30rpx;
- }
- .blue {
- background: #3874F6;
- }
- .orange {
- background: #F29C37;
- }
- }
- .head {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 120rpx;
- padding: 0 20rpx 0 30rpx;
- box-sizing: border-box;
- .count {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .expand {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .but {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #CCCCCC;
- margin-left: 20rpx;
- color: #666666;
- }
- }
- }
- .custom-class {
- --search-background-color: #fff !important;
- padding-right: 10rpx !important;
- }
- .project-item {
- display: flex;
- align-items: center;
- background-color: #fff;
- width: 690rpx;
- border-radius: 8rpx;
- margin: 0 auto 20rpx;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .main {
- position: relative;
- overflow: hidden;
- width: 100%;
- .iconfont-box {
- position: absolute;
- top: -20rpx;
- right: -30rpx;
- padding: 30rpx;
- color: #B5B5B5;
- border-radius: 8rpx;
- }
- .label {
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .tag-box {
- display: flex;
- align-items: center;
- width: 100%;
- .datatag,
- .systemtag {
- flex-shrink: 0;
- margin-top: 6rpx;
- background: #3874f6;
- color: #ffffff;
- margin-right: 10rpx;
- display: flex;
- align-items: center;
- height: 40rpx;
- font-size: 20rpx;
- padding: 0 10rpx;
- border-radius: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- }
- .datatag {
- background: #FA8C16;
- }
- }
- .replenish {
- display: flex;
- min-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- margin-top: 8rpx;
- word-break: break-all;
- white-space: pre-wrap;
- }
- .bottom {
- display: flex;
- align-items: center;
- height: 58rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #333333;
- width: 100%;
- margin-top: 8rpx;
- padding-bottom: 2rpx;
- input {
- width: 400rpx;
- height: 58rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 1rpx solid #CCCCCC;
- padding-left: 20rpx;
- }
- }
- }
- }
|