style.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. body,
  6. html {
  7. background: #fff;
  8. }
  9. #qrcode {
  10. background: rgba(0, 0, 0, 0.5);
  11. }
  12. .title {
  13. margin-top: 1.35rem;
  14. text-align: center;
  15. font-size: 0.48rem;
  16. margin-bottom: 1.5rem;
  17. }
  18. .title .logo {
  19. width: 1.6rem;
  20. }
  21. .title * {
  22. display: inline-block;
  23. vertical-align: top
  24. }
  25. .box {
  26. width: 4.88rem;
  27. height: 4.88rem;
  28. margin: 0 auto;
  29. position: relative;
  30. background: linear-gradient(to left, #25CDDA, #25CDDA) left top no-repeat,
  31. linear-gradient(to bottom, #25CDDA, #25CDDA) left top no-repeat,
  32. linear-gradient(to left, #25CDDA, #25CDDA) right top no-repeat,
  33. linear-gradient(to bottom, #25CDDA, #25CDDA) right top no-repeat,
  34. linear-gradient(to left, #25CDDA, #25CDDA) left bottom no-repeat,
  35. linear-gradient(to bottom, #25CDDA, #25CDDA) left bottom no-repeat,
  36. linear-gradient(to left, #25CDDA, #25CDDA) right bottom no-repeat,
  37. linear-gradient(to left, #25CDDA, #25CDDA) right bottom no-repeat;
  38. background-size: 2px 20px, 20px 2px, 2px 20px, 20px 2px;
  39. }
  40. #qrcode {
  41. position: absolute;
  42. width: 4.5rem;
  43. height: 4.5rem;
  44. top: 50%;
  45. left: 50%;
  46. transform: translate(-50%, -50%);
  47. }
  48. #qrcode img{
  49. width: 100%;height: 100%;
  50. }
  51. .info{
  52. color: #525252; width: 4.4rem; margin: 0 auto; font-size: 0.2rem; margin-top: 0.65rem; line-height: 1.6;
  53. ;position: relative; padding-bottom: 50px;
  54. }
  55. .info .ico{
  56. width: 0.4rem;height: 0.4rem; position: absolute; top: -0.04rem; left: -0.45rem;
  57. }
  58. .info .ico img{
  59. width: 100%;height: 100%;
  60. }
  61. ul,li{
  62. list-style: none;
  63. }