东风启辰小程序端
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
5 лет назад
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* pages/guess/guess.wxss */
  2. image{
  3. display: block;
  4. }
  5. view{
  6. -webkit-overflow-scrolling: touch;
  7. }
  8. .main{
  9. height: calc(100vh - 120rpx);
  10. overflow: auto;
  11. position: relative;
  12. }
  13. .pageBg{
  14. width: 750rpx;
  15. height: 1390rpx;
  16. }
  17. .gameRule{
  18. width: 750rpx;
  19. height: 2513rpx;
  20. margin-top: -1rpx;
  21. }
  22. .startBtn{
  23. position: fixed;
  24. left: 50%;
  25. transform: translateX(-50%);
  26. bottom: 170rpx;
  27. width: 710rpx;
  28. height: 71rpx;
  29. }
  30. .drawBtn{
  31. width: 81rpx;
  32. height: 81rpx;
  33. position: fixed;
  34. right: 35rpx;
  35. top: 220rpx;
  36. }
  37. .yuyue{
  38. width: 81rpx;
  39. height: 81rpx;
  40. position: fixed;
  41. right: 35rpx;
  42. top: 334rpx;
  43. }
  44. .ruleFrame{
  45. position: fixed;
  46. top:0;
  47. left: 0;
  48. height: calc(100vh - 120rpx);
  49. overflow: auto;
  50. }
  51. .ruleFrame2{
  52. width: 100%;
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. background-color: rgba(0,0,0,0.5);
  57. z-index: 9;
  58. }
  59. .tipWindow{
  60. position: relative;
  61. width: 501rpx;
  62. height: 395rpx;
  63. }
  64. .tipWindowBg{
  65. width: 100%;
  66. height: 100%;
  67. }
  68. .tipWindowClose{
  69. position: absolute;
  70. top: -32rpx;
  71. right: -32rpx;
  72. width: 42rpx;
  73. height: 42rpx;
  74. }