123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /* pages/components/bonusTips/bonusTips.wxss */
- .bg_container {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- max-width: 750rpx;
- margin: auto;
- z-index: 1000;
- }
- .bg {
- position: relative;
- z-index: 1;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .6);
- }
- .content {
- position: absolute;
- z-index: 2;
- left: 50%;
- top: 50%;
- margin-left: -245rpx;
- margin-top: -315rpx;
- width: 490rpx;
- height: 630rpx;
- padding-top:228rpx;
- box-sizing: border-box;
- opacity: 0;
- transform: translate3d(0, -1000rpx, 0);
- }
- .content.animation {
- animation: bonus_move .7s ease-in-out .5s forwards;
-
- }
- .common_bg {
- position: absolute;
- z-index: 2;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .common_position {
- position: relative;
- z-index: 3;
- }
- .bonus_dialog_title {
- font-weight: bold;
- font-size: 36rpx;
- color: #FFDB6B;
- text-align: center;
- line-height: 50rpx;
- }
- .bonus_dialog_subtitle {
- margin-top: 5rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- color: #FFDB6B;
- text-align: center;
- }
- .bonus_bg {
- width: 352rpx;
- height: 132rpx;
- margin: 35rpx auto 20rpx;
- }
- .see_bonus, .bonus_total {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- color: #E73636;
- font-weight: bold;
- }
- .bonus_total {
- font-size: 60rpx;
- }
- .see_bonus {
- font-size: 30rpx;
- }
- .enter_bg {
- width: 340rpx;
- height: 76rpx;
- margin: auto;
- }
- .f30 {
- font-size: 30rpx;
- }
- .ml5 {
- margin-left: 5rpx;
- }
- .close_tips {
- position: absolute;
- right: -26rpx;
- top: -32rpx;
- z-index: 5;
- width: 64rpx;
- height: 64rpx;
- }
- @keyframes bonus_move {
- 0% {
- opacity: 0;
- transform: translate3d(0, -1000rpx, 0);
- }
- 100% {
- opacity: 1;
- transform: translate3d(0, 0, 0);
- }
- }
- .one_line_hidden {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
|