You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
3.0 KiB
170 lines
3.0 KiB
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.project-progress {
|
|
width: 100%;
|
|
margin-top: 12rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.first {
|
|
width: 100%;
|
|
height: 85rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.first .title {
|
|
font-size: 34rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
.first .more {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.first .more .tip {
|
|
font-size: 28rpx;
|
|
color: #c5c5c5;
|
|
}
|
|
|
|
.first .more .right-sword {
|
|
width: 14rpx;
|
|
height: 22rpx;
|
|
margin-left: 4rpx;
|
|
}
|
|
|
|
scroll-view {
|
|
width: 100%;
|
|
height: 364rpx;
|
|
}
|
|
|
|
scroll-view .project-list {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-bottom: 30rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item {
|
|
flex-shrink: 0;
|
|
width: 472rpx;
|
|
margin-left: 30rpx;
|
|
}
|
|
|
|
scroll-view .project-list .item-container {
|
|
flex-shrink: 0;
|
|
width: 532rpx;
|
|
box-sizing: border-box;
|
|
padding-right: 30rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .project-img {
|
|
width: 100%;
|
|
height: 226rpx;
|
|
border-radius: 10rpx 10rpx 0 0;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .project-img .project-state {
|
|
width: 86rpx;
|
|
height: 38rpx;
|
|
background-image: linear-gradient(90deg,
|
|
#ffac00 0%,
|
|
#ffbf00 100%),
|
|
linear-gradient(
|
|
#f7f7f7,
|
|
#f7f7f7);
|
|
background-blend-mode: normal,
|
|
normal;
|
|
border-radius: 10rpx 0 10rpx 0;
|
|
font-size: 22rpx;
|
|
line-height: 38rpx;
|
|
text-align: center;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
letter-spacing: 0px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .content {
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
height: 76rpx;
|
|
line-height: 76rpx;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail {
|
|
width: 100%;
|
|
height: 32rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .left .avatar {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
margin-right: 6rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .left .name {
|
|
font-size: 20rpx;
|
|
color: #444;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-size: 20rpx;
|
|
color: #999999;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right .item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right .item + .item {
|
|
margin-left: 22rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right .item .icon {
|
|
width: 23rpx;
|
|
height: 22rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right .item .icon.eye {
|
|
width: 27rpx;
|
|
height: 21rpx;
|
|
}
|
|
|
|
scroll-view .project-list .project-item .detail .right .item .tip {
|
|
font-size: 20rpx;
|
|
color: #999999;
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
|