123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- 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;
- z-index: 9999;
- }
- .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: 60rpx;
- padding-bottom: 100rpx;
- }
- .cardList{
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #ffffff;
- border-radius: 10rpx;
- margin-bottom: 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 .active {
- color: #2662FF;
- }
- .goWarrant{
- margin-top: 20rpx;
- text-align: center;
- }
- /* 授权弹框 */
- .showModal {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- }
- .showModal .showModalCon {
- width: 550rpx!important;
- min-height: 200rpx;
- background: #ffffff;
- border-radius: 8rpx;
- position: absolute;
- top: 50%;
- left: 0;
- right: 0;
- transform: translateY(-50%);
- margin: auto;
- padding: 10rpx 0 40rpx;
- box-sizing: border-box;
- }
- .showModal .showModalCon .title {
- font-size: 32rpx;
- text-align: center;
- padding: 20rpx;
- border-bottom: 2rpx solid #f4f4f4;
- }
- .showModal .showModalCon .con {
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- padding: 0 60rpx 20rpx;
- margin: 30rpx 0;
- min-height: 150rpx;
- }
- .showModal .showModalCon .button {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 28rpx;
- color: #2662FF;
- border-top: 2rpx solid #f4f4f4;
- background: transparent;
- padding: 0;
- }
|