index.wxss 685 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. align-items: center;
  5. }
  6. .container {
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. box-sizing: border-box;
  11. }
  12. .main {
  13. width: 90%;
  14. display: flex;
  15. flex-direction: column;
  16. font-family: PingFang SC;
  17. }
  18. .sub_title {
  19. font-size: 28rpx;
  20. color: rgba(0, 0, 0, 0.6);
  21. line-height: 52rpx;
  22. }
  23. .font_title_2 {
  24. color: #000;
  25. font-size: 32rpx;
  26. font-weight: 500;
  27. font-family: "PingFang SC";
  28. }
  29. .title {
  30. margin-bottom: 20rpx;
  31. margin-top: 40rpx;
  32. }
  33. .image_container {
  34. display: flex;
  35. justify-content: center;
  36. }
  37. .code_worn {
  38. font-weight: bold;
  39. color: #dd0000;
  40. }
  41. .margin_10 {
  42. margin-top: 20rpx;
  43. }