123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- /* 积分明细 */
- /* page {
- height: 100%;
- overflow: hidden;
- } */
- .integral-detail {
- position: relative;
- }
- .integral-detail .number-box {
- width: 750rpx;
- height: 446rpx;
- position: relative;
- color: #fff;
- }
- .integral-detail .number-box .bg1 {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .integral-detail .number-box .bg2 {
- position: absolute;
- top: 50rpx;
- left: 225rpx;
- width: 300rpx;
- height: 300rpx;
- }
- .integral-detail .number-box .my-integral {
- position: relative;
- text-align: center;
- width: 300rpx;
- margin: auto;
- padding-top: 146rpx;
- }
- .integral-detail .number-box .my-integral .number {
- font-size: 60rpx;
- }
- .integral-detail .number-box .text {
- font-size: 30rpx;
- }
- .integral-detail .number-box .explain {
- position: absolute;
- right: 0;
- top: 30rpx;
- padding: 8rpx 16rpx 8rpx 20rpx;
- border-radius: 30rpx 0 0 30rpx;
- background: rgba(0,0,0,.2);
- color: #fff;
- font-size: 24rpx;
- }
- .integral-detail .detail-list {
- padding: 0 30rpx;
- margin-top: 30rpx;
- }
- .empty {
- display: block;
- width: 100%;
- height: 200rpx;
- line-height: 200rpx;
- font-size: 28rpx;
- color: #888;
- text-align: center;
- }
- .all {
- height: 80rpx;
- line-height: 80rpx;
- }
- .integral-detail .detail-list .item {
- display: flex;
- padding: 30rpx 0;
- border-bottom: 1px solid #eee;
- }
- .integral-detail .detail-list .item:last-child {
- border: 0;
- }
- .integral-detail .detail-list .item .text-box {
- flex: 1;
- margin-right: 30rpx;
- }
- .integral-detail .detail-list .item .text-box .tit {
- font-size: 28rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .integral-detail .detail-list .item .text-box .time {
- font-size: 24rpx;
- color: #999;
- margin-top: 10rpx;
- }
- .integral-detail .detail-list .item .score {
- font-size: 36rpx;
- margin-top: 4rpx;
- font-family: arial;
- }
- .integral-detail .detail-list .item .score.add {
- color: #e43130;
- }
- /* 积分明细 end */
- /* 积分攻略弹框 */
- .score-strategy {
- display: block;
- z-index: 999;
- }
- .mask {
- position: fixed;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- background: #000;
- opacity: .4;
- z-index: 1;
- }
- .explain-card {
- position: fixed;
- width: 70%;
- height: 60%;
- top: 50%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%);
- background: #fff;
- border-radius: 6rpx;
- padding: 20rpx;
- z-index: 2;
- }
- .pop-tit{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .cont-title {
- font-size: 30rpx;
- font-weight: 600;
- text-align: center;
- position: relative;
- width: 100%;
- margin-bottom: 4rpx;
- }
- .close-box {
- position: absolute;
- right: 20rpx;
- top: 22rpx;
- }
- .close-icon {
- display: inline-block;
- width: 36rpx;
- height: 36rpx;
- }
- .content-wrap{
- height: 90%;
- }
- .cont-det {
- font-size: 28rpx;
- color: #555;
- display: block;
- margin-bottom: 30rpx;
- height: 100%;
- overflow-y: auto;
- text-align: justify;
- padding: 0 20rpx;
- }
- /* /积分攻略弹框 */
|