| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- @charset "utf-8";
- * {
-
- padding: 0;
- }
- html {
- _background-attachment: fixed;
- }
- body {
- background: #F1F1F1;
- }
- body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, textarea, th, td, a {
- font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
- font-size: 14px;
- color: #4c4c4c
- }
- :focus {
- outline: 0;
- }
- img {
- max-width: 100%;
- border: 0;
- outline: none;
- vertical-align: middle;
- }
- ul, li, ol {
- list-style: none outside none;
- }
- input, button {
- border: 0;
- outline: none;
- background: none;
- filter: chroma(color=#000000);
- }
- input[type=text]::-ms-clear,input[type=text]::-ms-reveal{display:none;}
- input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
- color: #bdbcbc;
- }
- input:-moz-placeholder, textarea:-moz-placeholder {
- color: #bdbcbc;
- }
- input::-moz-placeholder, textarea::-moz-placeholder {
- color: #bdbcbc;
- }
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
- color: #bdbcbc;
- }
- h1, h2, h3, h4, h5, h6 {
- font-weight: normal;
- }
- i, em, b {
- font-style: normal;
- }
- ::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
- color: #999;
- font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
- font-size: 12px;
- }
- a, a * {
- text-decoration: none;
- outline: none;
- star: expression(this.onFocus=this.blur());
- }
- ::selection {
- background: #f20e0e;
- color: #fff;
- }
- ::-moz-selection {
- background: #f20e0e;
- color: #fff;
- }
- table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- }
- table td {
- word-break: break-all;
- word-wrap: break-word;
- }
- input {
- font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
- font-size: 12px;
- }
- .clearfix {
- clear: both;
- zoom: 1;
- }
- .clearfix:after {
- content: '';
- display: block;
- clear: both;
- }
- .fl {
- display: inline;
- float: left
- }
- .fr {
- display: inline;
- float: right
- }
- /*单行溢出*/
- .one-txt-cut {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /*多行溢出 */
- .txt-cut {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- /* -webkit-line-clamp: 2; */
- -webkit-box-orient: vertical;
- }
- /*绝对剧中 - z 轴*/
- .position_zz {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- }
- /*绝对剧中 - x 轴*/
- .position_xz {
- position: absolute;
- left: 0;
- right: 0;
- margin: auto;
- }
- /*绝对居中 - y 轴*/
- .position_yz {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- /*绝对居左 - left*/
- .position_lt {
- position: absolute;
- left: 0;
- }
- /*绝对居右 - right*/
- .position_rt {
- position: absolute;
- right: 0;
- }
- /*绝对居上 - top*/
- .position_tp {
- position: absolute;
- top: 0;
- }
- /*绝对居下 - bottom*/
- .position_bt {
- position: absolute;
- bottom: 0;
- }
- /*符号:加号(请自定义 .symbol_addition 的宽高)*/
- .symbol_addition {
- /*width: 15px;*/
- /*height: 15px;*/
- }
- .symbol_addition:after {
- content: '';
- width: 20%;
- height: 100%;
- background-color: #b8b8b8;
- }
- .symbol_addition:before {
- content: '';
- width: 100%;
- height: 20%;
- background-color: #b8b8b8;
- }
- .symbol_addition:after, .symbol_addition:before {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- z-index: 1;
- }
- /*固定宽*/
- .fixed_width {
- width: 1200px;
- min-height: 1px;
- margin: auto;
- cursor: default;
- }
- /* 100% 宽高*/
- .screen_full {
- width: 100%;
- height: 100%;
- }
|