download.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .download .li {
  2. padding: 50rpx 66rpx 0;
  3. }
  4. .download .li .h3 {
  5. width: 160rpx;
  6. height: 40rpx;
  7. line-height: 40rpx;
  8. text-align: center;
  9. font-size: 28rpx;
  10. color: #353535;
  11. font-weight: bold;
  12. margin-bottom: 20rpx;
  13. position: relative;
  14. }
  15. .download .li .h3::after {
  16. content: " ";
  17. width: 160rpx;
  18. height: 20rpx;
  19. border-radius: 30rpx;
  20. background-color: rgba(111, 56, 180, 0.1);
  21. display: block;
  22. position: absolute;
  23. bottom: 0;
  24. }
  25. .download .li .textList {
  26. font-size: 28rpx;
  27. color: #353535;
  28. line-height: 40rpx;
  29. }
  30. .download .li .textList text {
  31. color: #6f38b4;
  32. font-weight: bold;
  33. }
  34. .download .code {
  35. margin-top: 30rpx;
  36. width: 100vw;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. }
  41. .download .code image {
  42. width: 280rpx;
  43. }
  44. .download .button {
  45. margin-top: 84rpx;
  46. width: 100vw;
  47. display: flex;
  48. justify-content: center;
  49. }
  50. .download .button text {
  51. width: 520rpx;
  52. height: 80rpx;
  53. background: #6547A3;
  54. border-radius: 45rpx;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. font-size: 36rpx;
  59. color: #fff;
  60. }
  61. .ex-nav-bgc-class {
  62. background: rgba(237, 237, 237, 0.9);
  63. backdrop-filter: blur(10px);
  64. }