12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .project-item {
- display: flex;
- align-items: center;
- width: 100vw;
- background-color: #ffffff;
- border-bottom: 1px solid#F4F4F4;
- box-sizing: border-box;
- .chart {
- margin: 0 30rpx;
- width: 100rpx;
- flex-shrink: 0;
- .odds,
- .percentage {
- width: 100%;
- text-align: center;
- font-size: 16rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 4rpx;
- }
- .odds {
- margin-top: -6rpx;
- }
- }
- .main {
- flex: 1;
- box-sizing: border-box;
- padding: 20rpx 0;
- .label {
- display: flex;
- height: 42rpx;
- .title {
- flex: 1;
- width: 0;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- margin-right: 20rpx;
- }
- .state {
- flex-shrink: 0;
- width: 132rpx;
- height: 40rpx;
- line-height: 40rpx;
- background: #52C41A;
- border-radius: 20rpx 0px 0px 20rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- text-align: center;
- }
- }
- .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;
- }
- }
- }
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|