common.css 215 B

1234567891011121314151617181920212223
  1. /* 通用样式 */
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. font-weight: 400;
  6. }
  7. a{
  8. text-decoration: none;
  9. }
  10. ul{
  11. list-style: none;
  12. }
  13. .container{
  14. width: 100%;
  15. height: 100%;
  16. position: relative;
  17. }