storage.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. body {
  2. line-height: 1.6;
  3. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
  4. "\9ED1\4F53", Arial, sans-serif;
  5. color: #222;
  6. font-size: 14px;
  7. }
  8. h1,h2,h3 {
  9. font-size: 20px;
  10. font-weight: 400;
  11. font-style: normal;
  12. }
  13. a {
  14. color: #333;
  15. text-decoration: none;
  16. }
  17. .block {
  18. background-color: #fff;
  19. width: 100%;
  20. position: relative;
  21. }
  22. .bold {
  23. font-weight: bold;
  24. }
  25. .left {
  26. float: left;
  27. }
  28. .right {
  29. float: right;
  30. }
  31. .f12 {
  32. font-size: 12px !important;
  33. }
  34. .f14 {
  35. font-size: 14px !important;
  36. }
  37. .f16 {
  38. font-size: 16px !important;
  39. }
  40. [ng-click] {
  41. cursor: pointer;
  42. }
  43. .br-r {
  44. border-right: 1px solid #e6e6e6;
  45. }
  46. .br-l {
  47. border-left: 1px solid #e6e6e6;
  48. }
  49. .br-b {
  50. border-bottom: 1px solid #e6e6e6;
  51. }
  52. .padding5 {
  53. padding: 0px 5px;
  54. }
  55. .container {
  56. padding-left: 0px;
  57. padding-right: 0px;
  58. }
  59. .ellipsis{
  60. width: 80px;
  61. overflow:hidden;
  62. white-space:nowrap;
  63. text-overflow:ellipsis;
  64. -o-text-overflow:ellipsis;
  65. }
  66. @media(min-width: 320px) {
  67. .ellipsis{
  68. width: 100px;
  69. }
  70. }
  71. @media(min-width: 400px) {
  72. .ellipsis{
  73. width: 150px;
  74. }
  75. }
  76. @media(min-width: 560px) {
  77. .ellipsis{
  78. width: 160px;
  79. }
  80. }
  81. .input-sm, .form-group-sm .form-control {
  82. padding: 2px 5px;
  83. border-radius: 1px;
  84. }
  85. .btn-sm, .btn-group-sm>.btn {
  86. padding: 4px 5px;
  87. }
  88. .text-num {
  89. font-style: normal;
  90. font-family: verdana;
  91. }
  92. .text-muted {
  93. color: #888 !important;
  94. }
  95. .text-inverse {
  96. color: #f40 !important;
  97. }
  98. .text-black {
  99. color: #333;
  100. }
  101. .expand {
  102. border-top: solid 2px #339999;
  103. border-left: solid 2px #339999;
  104. border-right: solid 2px #339999;
  105. }
  106. .reply {
  107. background-color: #339999;
  108. }
  109. /* top */
  110. .top {
  111. height: 30px;
  112. font-family: Microsoft Yahei;
  113. border-bottom: solid 1px #999999;
  114. line-height: 30px;
  115. }
  116. .orderInfo {
  117. background-color: #339999;
  118. color: #FFFFFF;
  119. border-bottom: solid 1px #999999;
  120. padding-top: 5px;
  121. padding-bottom: 5px;
  122. }
  123. /* footer */
  124. .footer {
  125. padding-top: 5px;
  126. background-color: #EEEEEE;
  127. border-top: solid 1px #C6C6C6;
  128. }
  129. /*loading*/
  130. .loading {
  131. display: none;
  132. position: absolute;
  133. width: 100%;
  134. height: 300px;
  135. top: 0;
  136. left: 0;
  137. }
  138. .loading.in {
  139. display: block;
  140. }
  141. .loading.in>i {
  142. position: absolute;
  143. top: 50%;
  144. left: 50%;
  145. margin: -33px 0 0 -33px;
  146. background: url("../img/all/loading.gif") no-repeat center center;
  147. width: 66px;
  148. height: 66px;
  149. }
  150. @keyframes spin {
  151. 0% { transform: rotate(360deg); }
  152. 100% { transform: rotate(0deg); }
  153. }
  154. .loading>.wrap { width: 64px; height: 64px; position: absolute;left: 50%;top:50%;margin-left:-32px;margin-top: -32px; }
  155. .outer {
  156. background-repeat: no-repeat;
  157. background-size:100%; position: absolute; width: 100%; height: 100%; background-image: url("../img/all/loading.png"); animation: spin 800ms infinite linear; }