123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- body {
- margin: 0;
- padding: 0;
- vertical-align: baseline;
- font: inherit;
- font-style: inherit;
- font-size: 100%;
- font-family: "Microsoft Yahei", Verdana, Arial, Helvetica, sans-serif;
- }
- html {
- font-size: 62.5%;
- height: 100%;
- -webkit-font-smoothing: antialiased
- }
- body {
- color: #333;
- line-height: 1;
- background: #f0f0f0;
-
- }
- body.blue { background: #efeff4; }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- nav,
- section { display: block; }
- dl,
- dt,
- dd,
- ul,
- ol,
- li,
- em,
- i,
- p {
- margin:0;
- padding:0;
- list-style: none;
- font-style: normal;
- }
- li {
- font-size: 14px;
- font-size: 1.4rem;
- }
- table {
- border-collapse: separate;
- border-spacing: 0;
- }
- caption,
- th,
- td {
- text-align: left;
- font-weight: normal;
- }
- h1,
- h2,
- h3,
- h4 {
- font-family: inherit;
- font-weight: 500;
- line-height: 1.1;
- color: inherit
- }
- :focus { outline: 0; }
- a {
- color: #333;
- tap-highlight-color: rgba(0,0,0,0);
- focus-ring-color: rgba(0, 0, 0, 0);
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- -webkit-focus-ring-color: rgba(0, 0, 0, 0);
- -moz-tap-highlight-color: rgba(0,0,0,0);
- -moz-focus-ring-color: rgba(0, 0, 0, 0);
- }
- a:hover { color: #000; }
- a:focus { outline: none; }
- a,
- a:hover,
- a:active {
- outline: 0;
- text-decoration: none;
- }
- /* ===== retrie分类下来 ===== */
- .retrie {
- position: relative;
- z-index: 102;
- height: 40px;
- background-color: #fff;
- border-bottom: 1px solid #e8e8e8;
- }
- .retrie dt { overflow: hidden }
- .retrie dt a {
- position: relative;
- float: left;
- width: 33.3%;
- height: 49px;
- line-height: 49px;
- color: #333;
- font-size: 14px;
- padding-left : 5%;
- }
- .retrie dt a:after {
- position: absolute;
- top: 50%;
- left: 50%;
- background-color: #ddd;
- margin-top: -10px;
- margin-left: 30%;
- width: 1px;
- height: 20px;
- //border: #666 solid;
- //border-width: 1px 1px 0 0;
- content: ' ';
- //-webkit-transform: rotate(135deg);
- }
- .retrie dt .up {
- color: #32b6bd !important;
- border-bottom: 2px solid #32b6bd;
- }
- .retrie dt .up:after {
- //margin-top: 0;
- //border: #32b6bd solid;
- //border-width: 1px 1px 0 0;
- //-webkit-transform: rotate(-45deg);
- }
- .retrie dt a:last-child:before {
- position: absolute;
- top: 10px;
- left: 0;
- display: block;
- width: 1px;
- height: 30px;
- background-color: #fff;
- content: ' ';
- }
- .retrie dd { position: relative; }
- /* ===== slide-area ===== */
- .slide {
- position: absolute;
- top: 0px;
- left: 0;
- z-index: 104;
- display: none;
- width: 100%;
- overflow-y: auto;
- background-color: #fff;
- }
- .slide li {
- display: block;
- height: 40px;
- border-bottom: 1px solid #eee;
- }
- .slide li a {
- display: block;
- padding: 0 30px;
- height: 40px;
- background-color: transparent;
- line-height: 40px;
- }
- .slide li a:hover,
- //.slide li a.selected { background-color: #f6f6f6; }
- //.slide li a.select { background-color: #fff; }
|