Aucune description

onlineServiceList.css 417B

12345678910111213141516171819202122232425262728293031
  1. .tab-menu ul {
  2. width: 600px;
  3. list-style: none;
  4. }
  5. .tab-menu li {
  6. display: block;
  7. width: 80px;
  8. float: left;
  9. border: 1px solid #e7e5e8;
  10. margin-right: 10px;
  11. text-align: center;
  12. line-height: 20px;
  13. margin-bottom: 10px;
  14. cursor: pointer;
  15. }
  16. .tab-box .tb {
  17. display: none;
  18. }
  19. /* 让第一个框显示出来 */
  20. .tab-box .tb:nth-of-type(1) {
  21. display: block;
  22. }
  23. .change {
  24. background: #249fea;
  25. color: #fff;
  26. }