scancode.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. width: 324px;
  6. margin: 0;
  7. font-family: SimSun;
  8. padding: 12px;
  9. }
  10. .item {
  11. padding: 12px;
  12. margin-bottom: 12px;
  13. font-size: 14px;
  14. border: 1px solid #ccc;
  15. border-radius: 6px;
  16. }
  17. .desc {
  18. margin-top: 4px;
  19. font-size: 12px;
  20. color: #7F7F7F;
  21. white-space: nowrap;
  22. overflow: hidden;
  23. }
  24. .name {
  25. height: 22px;
  26. }
  27. .img {
  28. width: 40px;
  29. height: 40px;
  30. margin-right: 12px;
  31. }
  32. .cashier {
  33. display: inline-block;
  34. /* width: 260px; */
  35. width: 238px;
  36. white-space: nowrap;
  37. overflow: hidden;
  38. }
  39. .text-center {
  40. text-align: center;
  41. }
  42. .qrcode {
  43. margin-top: 12px;
  44. text-align: center;
  45. border-top: 1px solid #ccc;
  46. }
  47. .qrcode img {
  48. width: 180px;
  49. height: 180px;
  50. margin-top: 12px;
  51. border-radius: 4px;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <div class="item">
  57. <div>奥扬桃林站</div>
  58. <div class="desc">XX省XX市XX区XXXXX路XX号XXXXXX</div>
  59. </div>
  60. <div class="item">
  61. <img src="" class="img" />
  62. <div class="cashier">
  63. <div class="name">郭麒麟 [ 工号:AYTL009 ]</div>
  64. <div class="desc">199****0123</div>
  65. </div>
  66. <div class="qrcode">
  67. <img src="" />
  68. </div>
  69. </div>
  70. </body>
  71. </html>