123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- html,
- body,
- div,
- section,
- article,
- header,
- p,
- footer,
- span,
- ul,
- ol,
- li,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- padding: 0;
- margin: 0;
- font-size: 14px;
- box-sizing: border-box;
- }
- body::-webkit-scrollbar {
- /* width: 18px; */
- /* height: 9px; */
- }
- /*定义滚动条轨道 内阴影+圆角*/
- body::-webkit-scrollbar-track {
- /* background-color: inherit;
- border: none;
- border-radius: 10px; */
- }
- /*定义滑块 内阴影+圆角*/
- body::-webkit-scrollbar-thumb {
- /* border-radius: 10px;
- position: relative;
- right: 2px;
- background-color: #c6c6cd; */
- /* width: 16px; */
- }
- a {
- text-decoration: none;
- cursor: pointer;
- }
- select,
- input {
- background: none;
- border: 0;
- padding: 0;
- outline: none;
- }
- ul,
- ol {
- list-style: none;
- }
- body,
- html {
- background: #fff;
- }
- .container {
- width: 1272px;
- margin: 0 auto;
- }
- .clearfix:after {
- content: "";
- display: block;
- clear: both;
- }
|