more-movie.wxss 503 B

1234567891011121314151617181920212223
  1. @import "../movie-grid/movie-grid-template.wxss";
  2. .fix_tip{
  3. position: fixed;
  4. bottom: 50rpx;
  5. left: 0;
  6. width: 100%;
  7. text-align: center;
  8. opacity: 0;
  9. transform: translate3d(0, 80rpx, 0);
  10. transition: all .5s cubic-bezier(0.19, 1, 0.22, 1)
  11. }
  12. .fix_tip.active{
  13. opacity: 1;
  14. transform: translate3d(0, 0, 0);
  15. }
  16. .fix_tip text{
  17. font-size: 9pt;
  18. line-height: 100%;
  19. padding: 10rpx 20rpx;
  20. border-radius: 10rpx;
  21. background: rgba(66,66,66,.6);
  22. color: #fff;
  23. }