index.wxss 426 B

123456789101112131415161718192021222324252627
  1. .main {
  2. float: left;
  3. width: 100%;
  4. margin: 10px 0 0 0;
  5. }
  6. .main .list {
  7. float: left;
  8. width: 100%;
  9. height: 30px;
  10. line-height: 30px;
  11. background-color: #ffffff;
  12. border-radius: 8px;
  13. font-size: 12px;
  14. margin: 0 0 10px 0;
  15. }
  16. .main .list text {
  17. float: left;
  18. width: 32.7%;
  19. text-align: center;
  20. border: 1px solid #f1f1f1;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. white-space: nowrap;
  24. color: #000;
  25. }