| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- body {
- line-height: 1.6;
- font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
- "\9ED1\4F53", Arial, sans-serif;
- color: #222;
- font-size: 14px !important;
- -webkit-text-size-adjust:none;
- }
- h1,h2,h3 {
- font-size: 18px;
- font-weight: 400;
- font-style: normal;
- }
- a {
- color: #333;
- text-decoration: none;
- }
- .block {
- background-color: #fff;
- width: 100%;
- position: relative;
- }
- .bold {
- font-weight: bold;
- }
- .left {
- float: left;
- }
- .right {
- float: right;
- }
- .f12 {
- font-size: 12px !important;
- }
- .f14 {
- font-size: 14px !important;
- }
- .f16 {
- font-size: 16px !important;
- }
- [ng-click] {
- cursor: pointer;
- }
- .br-r {
- border-right: 1px solid #e6e6e6;
- }
- .br-l {
- border-left: 1px solid #e6e6e6;
- }
- .br-b {
- border-bottom: 1px solid #e6e6e6;
- }
- .padding5 {
- padding: 0px 5px;
- }
- .container {
- padding-left: 0px;
- padding-right: 0px;
- }
- .ellipsis{
- width: 80px;
- overflow:hidden;
- white-space:nowrap;
- text-overflow:ellipsis;
- -o-text-overflow:ellipsis;
- }
- @media(min-width: 320px) {
- .ellipsis{
- width: 100px;
- }
- }
- @media(min-width: 400px) {
- .ellipsis{
- width: 150px;
- }
- }
- @media(min-width: 560px) {
- .ellipsis{
- width: 160px;
- }
- }
- .input-sm, .form-group-sm .form-control {
- padding: 2px 5px;
- border-radius: 1px;
- }
- .btn-sm, .btn-group-sm>.btn {
- padding: 4px 5px;
- }
- .text-num {
- font-style: normal;
- font-family: verdana;
- }
- .text-muted {
- color: #888 !important;
- }
- .text-inverse {
- color: #f40 !important;
- }
- .text-black {
- color: #333;
- }
- .expand {
- border-top: solid 2px #339999;
- border-left: solid 2px #339999;
- border-right: solid 2px #339999;
- }
- .reply {
- background-color: #339999;
- }
- /* top */
- .top {
- height: 30px;
- font-family: Microsoft Yahei;
- border-bottom: solid 1px #999999;
- line-height: 30px;
- }
- .orderInfo {
- background-color: #339999;
- color: #FFFFFF;
- border-bottom: solid 1px #999999;
- padding-top: 5px;
- padding-bottom: 5px;
- }
- /* footer */
- .footer {
- padding-top: 5px;
- background-color: #EEEEEE;
- border-top: solid 1px #C6C6C6;
- }
- /*loading*/
- .loading {
- display: none;
- position: absolute;
- width: 100%;
- height: 300px;
- top: 0;
- left: 0;
- }
- .loading.in {
- display: block;
- }
- .loading.in>i {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -33px 0 0 -33px;
- background: url("../img/all/loading.gif") no-repeat center center;
- width: 66px;
- height: 66px;
- }
- th,td{
- padding:3px !important;
- }
- .form-control, .form-group{
- font-size:12px;
- height :32px;
- }
- .ng-table-counts{
- display: none;
- }
-
- .red{
- color:#F00;
- }
-
-
- /*全屏状态的CSS*/
- :-webkit-full-screen {
- /* properties */
- }
- :-moz-full-screen {
- /* properties */
- }
- :-ms-fullscreen {
- /* properties */
- }
- :full-screen { /*pre-spec */
- /* properties */
- }
- :fullscreen { /* spec */
- /* properties */
- }
- /* deeper elements */
- :-webkit-full-screen video {
- width: 100%;
- height: 100%;
- }
- /* input:required, textarea:required ,radio:required{
- background: #fff ;
- color:red;
- } */
- .autocomplete-suggestions-menu {
- position: absolute;
- z-index: 1;
- background-color: white;
- border: 1px solid black;
- width: 60%;
- }
- .autocomplete-suggestions-menu p:hover {
- cursor: default;
- }
- .autocomplete-suggestions-menu .selected {
- color: #CCCCCC;
- background: yellow;
- }
|