| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- body {
- line-height: 1.6;
- font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
- "\9ED1\4F53", Arial, sans-serif;
- color: #222;
- font-size: 15px;
- }
- a, li, button {
- -webkit-tap-highlight-color: rgba(176, 196, 222, 0.5);
- }
- h1,h2,h3 {
- font-size: 20px;
- 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;
- }
- .f18 {
- font-size: 18px !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;
- }
- .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-default {
- color: #56a022;
- }
- .text-num {
- font-style: normal;
- font-family: verdana;
- }
- .text-muted {
- color: #888 !important;
- }
- .text-inverse {
- color: #f40 !important;
- }
- .text-black {
- color: #333;
- }
- .text-bold {
- font-weight: 700;
- }
- .text-light {
- color: #666;
- }
- .text-simple {
- color: #aaa;
- }
- .expand {
- border-top: solid 2px #339999;
- border-left: solid 2px #339999;
- border-right: solid 2px #339999;
- }
- .reply {
- background-color: #339999;
- }
- /*header*/
- #top {
- border-top: 4px solid #44b549;
- border-bottom: 1px solid #afb1b8;
- }
- #top.navbar {
- border-left: none;
- border-right: none;
- margin-bottom: 0;
- }
- #top .navbar-header .navbar-brand {
- height: 50px;
- line-height: 50px;
- }
- #top .navbar-header .title {
- background: url("../img/logo/uas_gray.png") no-repeat center center;
- width: 87px;
- height: 50px;
- }
- #top .navbar-header b {
- display: block;
- width: 1px;
- height: 18px;
- margin: 18px 10px 0 11px;
- z-index: 100;
- float: left;
- background: #ccc;
- }
- .navbar-header span {
- float: left;
- height: 50px;
- line-height: 50px;
- font-size: 20px;
- color: #666;
- }
- /* 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: fixed;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- z-index: 1000;
- }
- .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;
- }
- .text-trans {
- position: absolute;
- top: 0;
- right: 5px;
- background-color: #fff;
- border: 1px solid;
- padding: 3px 14px;
- font-size: 16px;
- font-family: "LiShu";
- border-radius: 10px;
- -moz-transform: rotate(-10deg);
- -webkit-transform: rotate(-10deg);
- -o-transform: rotate(-10deg);
- transform: rotate(-10deg);
- border-radius: 10px;
- opacity: 0.7;
- white-space: nowrap;
- }
- .text-trans.success {
- color: #ffb433;
- border-color: #ffb433;
- }
|