123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- @CHARSET "UTF-8";
- /* --- reset style start --- */
- html, body, pre, p, ul, ol, li, dl, dt, dd, form, input, hr, h1, h2, h3,
- h4, h5, h6, table, caption, tbody, tfoot, thead, tr, th, td {
- margin: 0;
- padding: 0;
- }
- body {
- display: table;
- width: 100%;
- font-size: 14px;
- font-family: 'Microsoft YaHei', Arial, sans-serif, \5b8b\4f53;
- color: #606060;
- }
- pre {
- border: none;
- font-size: 100%;
- font-family: inherit;
- background-color: #fff;
- }
- ul li {
- list-style: none;
- }
- h1 {
- font-size: 20px;
- }
- h2 {
- font-size: 18px;
- }
- h3 {
- font-size: 14px;
- }
- h4, h5, h6 {
- font-size: 12px;
- }
- img {
- cursor: pointer;
- border: 0;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- a {
- color: #606060;
- text-decoration: none;
- outline: 0 none;
- }
- button {
- border: none;
- cursor: pointer;
- }
- em {
- font-style: normal;
- }
- iframe {
- width: 100%;
- border: none;
- }
- textarea {
- resize: none;
- }
- /* --- reset style end --- */
- /* --- common style start --- */
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- .fn {
- float: none;
- }
- .al {
- text-align: left;
- }
- .ac {
- text-align: center;
- }
- .ar {
- text-align: right;
- }
- .at {
- vertical-align: top;
- }
- .am {
- vertical-align: middle;
- }
- .ab {
- vertical-align: bottom;
- }
- .hidden {
- display: none !important;
- }
- .ml10 {
- margin-left: 10px;
- }
- .ml20 {
- margin-left: 20px;
- }
- .mr10 {
- margin-right: 10px;
- }
- /* clear float */
- .clearfix:after {
- content: "";
- display: block;
- height: 0;
- clear: both;
- }
- .clearfix { +
- zoom: 1;
- }
- .btn-bg {
- margin: 0;
- padding: 0;
- text-align: center;
- border: none;
- cursor: pointer;
- }
- .link-bg a {
- display: block;
- overflow: hidden;
- text-align: center;
- text-decoration: none;
- }
- /* ========== 进度加载条 ========== */
- #ajaxLoadingMask {
- display: none;
- position: absolute;
- left: 0px;
- top: 0px;
- width: 100%;
- height: 100%;
- z-index: 100000;
- /* filter: alpha(opacity=30);*/
- /* -moz-opacity: 0.3;*/
- filter: alpha(opacity = 0);
- -moz-opacity: 0;
- opacity: 0;
- /* background-color: #000;*/
- }
- #ajaxLoadingIcon {
- display: none;
- position: fixed;
- top: 100px;
- left: 100px;
- /* color:#000;*/
- z-index: 100001;
- }
- .icon-showloading {
- /* width: 100px;*/
- /* height: 100px;*/
- width: 48px;
- height: 48px;
- /* background: url(images/loading.gif) no-repeat scroll center center rgba(0, 0, 0, 0);*/
- background: url(images/loading.gif) no-repeat;
- }
- /* ========== 进度加载条 END ========== */
- .pointer {
- cursor: pointer;
- }
- .ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .block {
- display: block;
- }
- .cursorPointer {
- cursor: pointer;
- }
|