12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- page{
- padding: 30rpx;
- box-sizing: border-box;
- }
- .topHeader{
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- padding: 20rpx 30rpx;
- background: #f3f3f3;
- }
- .topHeader .headHint{
- color: #333;
- font-size: 28rpx;
- line-height: 50rpx;
- }
- .topHeader .refresh,.goWarrant{
- color: #2662FF;
- font-size: 28rpx;
- line-height: 50rpx;
- text-decoration: underline;
- }
- .container{
- margin-top: 80rpx;
- padding-bottom: 100rpx;
- }
- .cardList{
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #ffffff;
- border-radius: 10rpx;
- margin-top: 26rpx;
- padding: 20rpx;
- }
- .cardList .infoBox{
- display: flex;
- align-items: center;
- }
- .cardList .infoBox image{
- width: 100rpx;
- height: 100rpx;
- background: #f4f4f4;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .cardList .infoBox .name{
- color: #333;
- font-size: 32rpx;
- line-height: 40rpx;
- width: 400rpx;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .cardList .infoBox .infoHint{
- color: #aaa;
- font-size: 24rpx;
- line-height: 30rpx;
- margin-top:10rpx;
- width: 400rpx;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .cardList .status{
- font-size: 26rpx;
- color: #aaa;
- line-height: 40rpx;
- }
- .cardList .right_jt{
- width: 40rpx;
- }
- .goWarrant{
- margin-top: 20rpx;
- text-align: center;
- }
|