1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*格式化样式*/
- *{
- margin: 0;
- padding: 0;
- }
-
- body{
- width: 100%;
- font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
- background: #f3f3f3;
- color: #232323;
- }
- table {
- border-collapse:collapse;
- border-spacing:0;
- }
- fieldset,img {
- border:none;
- border: 0;
- }
- address,caption,cite,code,dfn,em,strong,th,var {
- font-style:normal;
- /* font-weight:normal */
- }
- ol,ul {
- list-style:none;
- }
- caption,th {
- text-align:left;
- }
- h1,h2,h3,h4,h5,h6 {
- font-weight:normal;
- /*line-height: 0;*/
- }
- abbr,acronym {
- border:0;
- }
- a{
- display: block;
- text-decoration: none;
- }
- body a:hover{
- display: block;
- text-decoration: none;
- }
- input,textarea{
- background: transparent;
- border: none;
- outline:none;
- }
- /*通用样式*/
- .safe{
- width: 94%;
- margin: 0 auto;
- }
- .left{
- float: left;
- }
- .right{
- float:right;
- }
- .clear {
- clear: both;
- }
- .graytxt{
- color: #898989;
- }
-
|