123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- @charset "UTF-8";
- /**
- * 修改时间:2014-05-30
- * 参考: html5doctor.com Reset Stylesheet v1.6.1和YUI 3.5.0和Eric Meyer's Reset CSS v2.0和normalize.css v1.0.0,以及参考tmall等网站
- **/
- html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- outline: 0;
- font-size: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- /* vertical-align:baseline; */
- background: transparent;
- }
- body {
- line-height: 1;
- font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", STHeiti, "Microsoft YaHei";
- font-size: 12px/1.5;
- word-break: break-all;
- word-wrap: break-word;
- }
- ol, ul {
- list-style: none;
- }
- nav ul {
- list-style: none;
- }
- h1, h2, h3 {
- font-weight: normal;
- }
- blockquote, q {
- quotes: none;
- }
- blockquote:before, blockquote:after, q:before, q:after {
- content: '';
- content: none;
- }
- a {
- text-decoration: none;
- margin: 0;
- padding: 0;
- font-size: 100%;
- vertical-align: baseline;
- background: transparent;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- /* 按要求改变边框的颜色 */
- hr {
- display: block;
- height: 1px;
- border: 0;
- border-top: 1px solid #cccccc;
- margin: 1em 0;
- padding: 0;
- }
- button, input, textarea, select {
- font-family: inherit;
- font-size: inherit;
- font-weight: inherit;
- vertical-align: baseline;
- *vertical-align: middle;
- outline: none;
- }
- pre {
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
- }
- article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
- display: block;
- }
- audio, canvas, video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- }
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- [type="button"], input[type="reset"], input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- *overflow: visible;
- }
- button[disabled], input[disabled] {
- cursor: default;
- }
- input[type="checkbox"], input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- *height: 13px;
- *width: 13px;
- }
- input[type="search"] {
- -webkit-appearance: textfield;
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- }
- abbr[title], dfn[title] {
- border-bottom: 1px dotted;
- cursor: help;
- }
- .error {
- width: 100%;
- height: 100vh;
- overflow: hidden;
- }
- .error .error404 {
- margin: 0 auto;
- display: inline-block;
- vertical-align: middle;
- width: 98%;
- text-align: center;
- }
- .error .error404 img {
- margin-bottom: 50px;
- }
- .error .error404 p {
- font-size: 30px;
- color: #fff;
- margin-bottom: 15px;
- }
- .error .error404 span {
- font-size: 24px;
- color: #fff;
- }
- .error .error500 {
- margin: 0 auto;
- display: inline-block;
- vertical-align: middle;
- width: 98%;
- text-align: center;
- }
- .error .error500 img {
- vertical-align: middle;
- }
- .error .error500 .error500R {
- display: inline-block;
- vertical-align: middle;
- margin-left: 90px;
- text-align: left;
- }
- .error .error500 .error500R img {
- margin-bottom: 40px;
- }
- .error .error500 .error500R p {
- font-size: 24px;
- color: #0d0e10;
- margin-bottom: 20px;
- }
- .error .error500 .error500R span {
- display: block;
- font-size: 16px;
- color: #a8afbe;
- margin-bottom: 50px;
- }
- .error .error502 {
- margin: 0 auto;
- display: inline-block;
- vertical-align: middle;
- width: 98%;
- text-align: center;
- }
- .error .error502 p {
- margin: 40px 0 20px;
- font-size: 24px;
- color: #0d0e10;
- }
- .error .error502 span {
- font-size: 16px;
- color: #a8afbe;
- display: block;
- margin-bottom: 60px;
- }
- .error .errorBtn {
- padding: 10px 25px;
- color: #fff;
- font-size: 16px;
- display: inline-block;
- background-color: #267bf7;
- border-radius: 20px;
- }
- .error .errorSpace {
- height: 100%;
- width: 0px;
- display: inline-block;
- vertical-align: middle;
- }
|