dk-guide.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* wxss */
  2. .v-model {
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100%;
  8. z-index: 1000;
  9. }
  10. .guide {
  11. z-index: 1001;
  12. }
  13. .guide-box {
  14. position: absolute;
  15. z-index: 10001;
  16. transition: all 0.2s;
  17. }
  18. .guide-box::before {
  19. content: '';
  20. height: 100%;
  21. width: 100%;
  22. border: 1px dashed #fff;
  23. border-radius: 8rpx;
  24. position: absolute;
  25. top: -8rpx;
  26. left: -8rpx;
  27. padding: 7rpx;
  28. }
  29. .arrow {
  30. height: 20rpx;
  31. width: 20rpx;
  32. /* background: #1cbbb4; */
  33. background: #4c86ef;
  34. position: absolute;
  35. /* top: 144rpx; */
  36. left: 45%;
  37. transform: rotate(45deg);
  38. }
  39. .tips {
  40. width: 400rpx;
  41. background: linear-gradient(180deg, #1cbbb4, #0081ff);
  42. box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.1);
  43. color: #fff;
  44. position: absolute;
  45. /* top: 152rpx; */
  46. left: -50%;
  47. padding: 15rpx 20rpx;
  48. font-size: 28rpx;
  49. border-radius: 12rpx;
  50. }
  51. .tool-btn {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. padding-right: 0rpx;
  56. margin-top: 20rpx;
  57. }
  58. .next {
  59. background: #fff;
  60. height: 48rpx;
  61. width: 100rpx;
  62. text-align: center;
  63. border-radius: 8rpx;
  64. color: #666;
  65. line-height: 48rpx;
  66. font-size: 24rpx
  67. }
  68. .text{
  69. white-space: pre-wrap
  70. }