| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- body {
- line-height: 1.6;
- font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
- "\9ED1\4F53", Arial, sans-serif;
- color: #222;
- font-size: 14px;
- }
- 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;
- }
- [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;
- }
- @keyframes spin {
- 0% { transform: rotate(360deg); }
- 100% { transform: rotate(0deg); }
- }
- .loading>.wrap { width: 64px; height: 64px; position: absolute;left: 50%;top:50%;margin-left:-32px;margin-top: -32px; }
- .outer {
- background-repeat: no-repeat;
- background-size:100%; position: absolute; width: 100%; height: 100%; background-image: url("../img/all/loading.png"); animation: spin 800ms infinite linear; }
|