set_grade.wxss 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* compontents/share/share.wxss */
  2. .container {
  3. position:fixed;
  4. left: 0;
  5. bottom: 0;
  6. width: 100%;
  7. height: 100%;
  8. z-index: 98;
  9. }
  10. .container:after {
  11. content:'';
  12. position:absolute;
  13. left: 0;
  14. bottom: 0;
  15. width: 100%;
  16. height: 100%;
  17. background: rgba(0,0,0,.5);
  18. filter: blur(15px);
  19. z-index: 99;
  20. }
  21. .share {
  22. position:fixed;
  23. left: 15rpx;
  24. bottom: 0;
  25. width: calc(100% - 30rpx);
  26. box-sizing:border-box;
  27. background: #C8C8C8;
  28. z-index: 100;
  29. }
  30. .share-img {
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. }
  35. .download {
  36. width: 100%;
  37. text-align: center;
  38. background: #fff;
  39. border-bottom: 2rpx solid #C8C8C8;
  40. padding: 20rpx 0;
  41. box-sizing: border-box;
  42. }
  43. .share-img text {
  44. font-size: 32rpx;
  45. color: #3F3F3F;
  46. margin-top: 43rpx;
  47. }
  48. .share-img .color {
  49. color: red;
  50. }
  51. .deselect {
  52. background: #fff;
  53. margin-top: 30rpx;
  54. text-align: center;
  55. padding: 20rpx 0;
  56. }