shareQrCode.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #a3a3a3;
  13. height: 100%;
  14. }
  15. .container {
  16. width: 100%;
  17. }
  18. .container .posters-box {
  19. width: 100%;
  20. height: 1000rpx;
  21. margin-top: 40rpx;
  22. }
  23. .container .posters-box .slide-image {
  24. width: 100%;
  25. height: 100%;
  26. border-radius: 15rpx;
  27. }
  28. .container .posters-box .slide-image.active {
  29. -webkit-transform: none;
  30. transform: none;
  31. transition: all 0.2s ease-in 0s;
  32. }
  33. .container .posters-box .slide-image.quiet {
  34. -webkit-transform: scale(0.83333);
  35. transform: scale(0.83333);
  36. transition: all 0.2s ease-in 0s;
  37. }
  38. .container .keep {
  39. font-size: 30rpx;
  40. background: #24a17d;
  41. color: #fff;
  42. width: 600rpx;
  43. height: 80rpx;
  44. border-radius: 50rpx;
  45. text-align: center;
  46. line-height: 80rpx;
  47. margin: 38rpx auto;
  48. }
  49. .preserve {
  50. color: #fff;
  51. text-align: center;
  52. margin-top: 38rpx;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. }
  57. .preserve .line {
  58. width: 100rpx;
  59. height: 1px;
  60. background-color: #fff;
  61. }
  62. .preserve .tip {
  63. margin: 0 20rpx;
  64. font-size: 28rpx;
  65. }