mobileCommon.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .mobile-modal {
  2. width: 100%;
  3. height: 100%;
  4. z-index: 999;
  5. background: rgba(0,0,0,.3);
  6. position: fixed;
  7. .mobile-modal-box {
  8. position: fixed;
  9. width: 5.92rem;
  10. font-size: .28rem;
  11. top: 27%;
  12. left: 11%;
  13. z-index: 1000;
  14. .mobile-modal-header {
  15. line-height: .96rem;
  16. background: rgb(65,141,246);
  17. color: #fff;
  18. text-align: center;
  19. font-size: .32rem;
  20. position: relative;
  21. i {
  22. position: absolute;
  23. right: -.13rem;
  24. font-size: .4rem;
  25. bottom: .46rem;
  26. }
  27. }
  28. .mobile-modal-content {
  29. background: #fff;
  30. color: #333;
  31. padding: 0 .54rem;
  32. div {
  33. padding: .2rem 0;
  34. line-height: .4rem;
  35. border-bottom: .01rem solid rgb(183,213,254);
  36. text-align: center;
  37. &:last-child {
  38. border-bottom: none;
  39. }
  40. &:first-child {
  41. text-align: left;
  42. }
  43. }
  44. }
  45. }
  46. .mobile-share-box {
  47. position: fixed;
  48. width: 100%;
  49. font-size: .28rem;
  50. bottom: 0;
  51. left: 0;
  52. z-index: 1000;
  53. background: #fff;
  54. color: #333;
  55. .cancel-share {
  56. height: .98rem;
  57. line-height: .98rem;
  58. font-size: .3rem;
  59. text-align: center;
  60. }
  61. .share-area {
  62. .share-item {
  63. display: inline-block;
  64. width: 1.5rem;
  65. height: 1.52rem;
  66. padding-top: .3rem;
  67. i {
  68. margin: 0 auto;
  69. display: block;
  70. font-size: .55rem;
  71. width: .54rem;
  72. }
  73. span {
  74. display: block;
  75. text-align: center;
  76. margin-top: .1rem;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. .link-url {
  83. color: #01a44e;
  84. }