| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /* 业务通用样式 - 列表卡片 (项目列表、待办列表等) */
- .common-list-card {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.03);
- position: relative;
- overflow: hidden;
-
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 6rpx;
- height: 100%;
- background-color: #1c9bfd;
- }
-
- .card-header {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- margin-bottom: 24rpx;
- padding-bottom: 20rpx;
- border-bottom: 2rpx dashed #eee;
-
- .title {
- font-size: 32rpx;
- font-weight: bold;
- color: #343A3F;
- flex: 1;
- margin-right: 20rpx;
- line-height: 1.4;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- line-clamp: 2;
- white-space: normal;
- }
-
- .status-tag {
- font-size: 24rpx;
- padding: 6rpx 16rpx;
- border-radius: 8rpx;
- white-space: nowrap;
- }
- }
-
- .card-body {
- .info-item {
- display: flex;
- padding: 16rpx 0;
- border-bottom: 2rpx dashed #f5f5f5;
- font-size: 28rpx;
- line-height: 1.5;
- &:last-child { border-bottom: none; }
-
- .label { color: #343A3F; width: 180rpx; flex-shrink: 0; }
- .value { color: #585858; flex: 1; text-align: right; word-break: break-all; }
- .amount { color: #ff4d4f; font-weight: bold; font-family: din; font-size: 32rpx; }
- }
- }
- .card-footer {
- margin-top: 20rpx;
- padding-top: 20rpx;
- border-top: 2rpx solid #f5f5f5;
- display: flex;
- justify-content: flex-end;
- }
- }
- /* 业务通用样式 - 详情页分块卡片 */
- .common-section-card {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.03);
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #1a1a1a;
- margin-bottom: 24rpx;
- padding-left: 20rpx;
- position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 8rpx;
- height: 32rpx;
- background-color: #1c9bfd;
- border-radius: 4rpx;
- }
- }
- .info-row {
- display: flex;
- justify-content: space-between;
- padding: 16rpx 0;
- border-bottom: 1rpx solid #f8f8f8;
- font-size: 28rpx;
- &:last-child { border-bottom: none; }
- .label { color: #8c8c8c; width: 180rpx; flex-shrink: 0; }
- .value { color: #262626; flex: 1; text-align: right; word-break: break-all; }
-
- &.column {
- flex-direction: column;
- align-items: flex-start;
- .label { margin-bottom: 12rpx; color: #909399; }
- .value { text-align: left !important; width: 100%; }
- }
-
- .remark {
- background-color: #f8fafc;
- padding: 20rpx;
- border-radius: 12rpx;
- font-size: 26rpx;
- line-height: 1.6;
- color: #606266;
- min-height: 80rpx;
- width: 100%;
- box-sizing: border-box;
- }
- }
- }
- /* 业务通用样式 - 统一附件列表样式 (项目文档) */
- .common-file-list {
- .file-item {
- display: flex;
- align-items: center;
- padding: 24rpx 0;
- border-bottom: 2rpx dashed #f5f5f5;
-
- &:last-child {
- border-bottom: none;
- }
-
- .file-info {
- flex: 1;
- display: flex;
- flex-direction: column;
-
- .f-name {
- font-size: 28rpx;
- color: #343A3F;
- font-weight: 500;
- margin-bottom: 12rpx;
- word-break: break-all;
- }
-
- .f-meta {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
-
- .f-type {
- color: #1677ff;
- background-color: #e6f4ff;
- padding: 4rpx 12rpx;
- border-radius: 6rpx;
- }
-
- .f-date {
- color: #585858;
- }
- }
- }
- }
- }
|