service.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* pages/service/service.wxss */
  2. .container {
  3. position: relative;
  4. background: url('https://oss.dayaedu.com/ktyq/1732533582478.png') no-repeat center;
  5. background-size: cover;
  6. min-height: 100vh;
  7. .weui-navigation-bar__btn_goback {
  8. background-color: #fff;
  9. }
  10. }
  11. .content {
  12. margin: 120rpx 40rpx 0;
  13. background: rgba(255,255,255,0.5);
  14. border-radius: 40rpx;
  15. padding: 20rpx;
  16. // overflow: hidden;
  17. .content-section {
  18. min-height: 70vh;
  19. background: #FFFFFF;
  20. box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(208,75,10,0.13);
  21. border-radius: 32rpx;
  22. .serivce_logo {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. position: relative;
  27. top: -70rpx;
  28. left: 50%;
  29. transform: translateX(-50%);
  30. .logo_img {
  31. width: 140rpx;
  32. height: 140rpx;
  33. }
  34. text {
  35. padding-top: 16rpx;
  36. font-weight: 600;
  37. font-size: 34rpx;
  38. color: #131415;
  39. line-height: 48rpx;
  40. }
  41. }
  42. }
  43. .qrcode-section {
  44. text-align: center;
  45. .qrcode_img {
  46. width: 400rpx;
  47. height: 400rpx;
  48. }
  49. .tips {
  50. padding-top: 40rpx;
  51. font-weight: 600;
  52. font-size: 30rpx;
  53. color: #777777;
  54. line-height: 42rpx;
  55. text-align: center;
  56. font-style: normal;
  57. background: linear-gradient(to right, #FE8B00, #FF4B00);
  58. -webkit-background-clip: text;
  59. background-clip: text;
  60. color: transparent;
  61. }
  62. }
  63. }
  64. .bottom_img {
  65. position: absolute;
  66. bottom: 0;
  67. left: 0;
  68. right: 0;
  69. width: 100%;
  70. }