1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .prize-page{
- width: 100%;
- /* height: 100%; */
- /* overflow: hidden; */
- background: #FC8A3C;
- min-height:1334rpx;
- max-height: 100%;
- overflow: hidden;
- }
- .prize-icon{
- width: 750rpx;
- height: 1334rpx;
- margin: 0 auto;
- }
- .price-roll-wrapper{
- width: 650rpx;
- height: 240rpx;
- position: relative;
- top: -335rpx;
- left: 48rpx;
- overflow: hidden;
- }
- .price-line{
- width: 100%;
- font-size: 27rpx;
- color: #eee;
- display: flex;
- justify-content: space-between;
- }
- .price-roll{
- width: 100%;
- position: relative;
- animation: roll 15s linear .3s infinite
- }
- @keyframes roll{
- from{
- transform: translateY(0);
- }
- to{
- transform: translateY(-100%);
- }
- }
|