share.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. page {
  2. background: #a3a3a3;
  3. height: 100%;
  4. }
  5. .container {
  6. width: 100%;
  7. }
  8. .container .posters-box {
  9. width: 100%;
  10. height: 1000rpx;
  11. margin-top: 40rpx;
  12. }
  13. .container .posters-box .slide-image {
  14. width: 100%;
  15. height: 100%;
  16. border-radius: 15rpx;
  17. }
  18. .container .posters-box .slide-image.active {
  19. transform: none;
  20. transition: all .2s ease-in 0s;
  21. }
  22. .container .posters-box .slide-image.quiet {
  23. transform: scale(.83333);
  24. transition: all .2s ease-in 0s;
  25. }
  26. .container .keep {
  27. font-size: 30rpx;
  28. background: #5dbc7c;
  29. width: 600rpx;
  30. height: 80rpx;
  31. border-radius: 50rpx;
  32. line-height: 80rpx;
  33. margin: 38rpx auto;
  34. }
  35. .container .keep,.preserve {
  36. color: #fff;
  37. text-align: center;
  38. }
  39. .preserve {
  40. margin-top: 38rpx;
  41. display: flex;
  42. -webkit-box-align: center;
  43. align-items: center;
  44. -webkit-box-pack: center;
  45. justify-content: center;
  46. }
  47. .preserve .line {
  48. width: 100rpx;
  49. height: 1px;
  50. background-color: #fff;
  51. }
  52. .preserve .tip {
  53. margin: 0 20rpx;
  54. font-size: 28rpx;
  55. }