mobile.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. html {
  2. line-height: 1.15; /* 1 */
  3. -webkit-text-size-adjust: 100%; /* 2 */
  4. }
  5. body {
  6. margin: 0;
  7. font-family: -apple-system, BlinkMacSystemFont, "PingFang SC","Helvetica Neue",STHeiti,"Microsoft Yahei",Tahoma,Simsun,sans-serif;
  8. }
  9. main {
  10. display: block;
  11. }
  12. h1 {
  13. font-size: 2em;
  14. margin: 0.67em 0;
  15. }
  16. ul, ol, li, h1 {
  17. line-height:normal;
  18. list-style-image:none;
  19. list-style-position:outside;
  20. list-style-type:none;
  21. }
  22. dl,ul {
  23. margin:0;
  24. padding:0;
  25. }
  26. hr {
  27. box-sizing: content-box; /* 1 */
  28. height: 0; /* 1 */
  29. overflow: visible; /* 2 */
  30. }
  31. pre {
  32. font-family: monospace, monospace; /* 1 */
  33. font-size: 1em; /* 2 */
  34. }
  35. a {
  36. background-color: transparent;
  37. }
  38. abbr[title] {
  39. border-bottom: none; /* 1 */
  40. text-decoration: underline; /* 2 */
  41. text-decoration: underline dotted; /* 2 */
  42. }
  43. b,
  44. strong {
  45. font-weight: bolder;
  46. }
  47. code,
  48. kbd,
  49. samp {
  50. font-family: monospace, monospace; /* 1 */
  51. font-size: 1em; /* 2 */
  52. }
  53. small {
  54. font-size: 80%;
  55. }
  56. sub,
  57. sup {
  58. font-size: 75%;
  59. line-height: 0;
  60. position: relative;
  61. vertical-align: baseline;
  62. }
  63. sub {
  64. bottom: -0.25em;
  65. }
  66. sup {
  67. top: -0.5em;
  68. }
  69. img {
  70. border-style: none;
  71. }
  72. button,
  73. input,
  74. optgroup,
  75. select,
  76. textarea {
  77. font-family: inherit; /* 1 */
  78. font-size: 100%; /* 1 */
  79. line-height: 1.15; /* 1 */
  80. margin: 0; /* 2 */
  81. }
  82. button,
  83. input { /* 1 */
  84. overflow: visible;
  85. }
  86. button,
  87. select { /* 1 */
  88. text-transform: none;
  89. }
  90. button,
  91. [type="button"],
  92. [type="reset"],
  93. [type="submit"] {
  94. -webkit-appearance: button;
  95. }
  96. button::-moz-focus-inner,
  97. [type="button"]::-moz-focus-inner,
  98. [type="reset"]::-moz-focus-inner,
  99. [type="submit"]::-moz-focus-inner {
  100. border-style: none;
  101. padding: 0;
  102. }
  103. button:-moz-focusring,
  104. [type="button"]:-moz-focusring,
  105. [type="reset"]:-moz-focusring,
  106. [type="submit"]:-moz-focusring {
  107. outline: 1px dotted ButtonText;
  108. }
  109. table{
  110. border-spacing:0px;
  111. }
  112. fieldset {
  113. padding: 0.35em 0.75em 0.625em;
  114. }
  115. legend {
  116. box-sizing: border-box; /* 1 */
  117. color: inherit; /* 2 */
  118. display: table; /* 1 */
  119. max-width: 100%; /* 1 */
  120. padding: 0; /* 3 */
  121. white-space: normal; /* 1 */
  122. }
  123. progress {
  124. vertical-align: baseline;
  125. }
  126. textarea {
  127. overflow: auto;
  128. }
  129. [type="checkbox"],
  130. [type="radio"] {
  131. box-sizing: border-box; /* 1 */
  132. padding: 0; /* 2 */
  133. }
  134. [type="number"]::-webkit-inner-spin-button,
  135. [type="number"]::-webkit-outer-spin-button {
  136. height: auto;
  137. }
  138. [type="search"] {
  139. -webkit-appearance: textfield; /* 1 */
  140. outline-offset: -2px; /* 2 */
  141. }
  142. [type="search"]::-webkit-search-decoration {
  143. -webkit-appearance: none;
  144. }
  145. ::-webkit-file-upload-button {
  146. -webkit-appearance: button; /* 1 */
  147. font: inherit; /* 2 */
  148. }
  149. details {
  150. display: block;
  151. }
  152. summary {
  153. display: list-item;
  154. }
  155. template {
  156. display: none;
  157. }
  158. [hidden] {
  159. display: none;
  160. }
  161. body{
  162. background-color: #f2f2f2
  163. }
  164. table td{
  165. text-align: center;
  166. }
  167. table td small {
  168. font-size: 80%;
  169. color:#999;
  170. }
  171. .tR{
  172. text-align: right;
  173. }
  174. .tL{
  175. text-align: left;
  176. }
  177. .header{
  178. background-color: #fff;
  179. padding:4px;
  180. color:#333;
  181. text-align: center;
  182. }
  183. .wrapContent{
  184. background: url(contentBg-index.png) no-repeat top center;
  185. background-size: 300%;
  186. border-top:2px solid #f8b62a;
  187. }
  188. .quotedBg {
  189. border-color: #273fe2;
  190. background: url(contentBg-index.jpg) no-repeat top center;
  191. background-size: 300%;
  192. }
  193. .pageTitle {
  194. font-size:.5rem;
  195. color:#fff;
  196. text-align: center;
  197. }
  198. .pageTitle h1{
  199. background: url(titleBg-yellow.png) repeat;
  200. display: inline-block;
  201. padding:4px;
  202. margin-bottom:0;
  203. margin-top: 2px
  204. }
  205. .pageTitle h2 {
  206. background: url(titleBg-black.png) repeat;
  207. display: inline-block;
  208. padding:4px;
  209. margin:4px 0 0 0;
  210. }
  211. .quotedBg .pageTitle h1 {
  212. background: url(titleBg-blue.png) repeat;
  213. }
  214. .content{
  215. margin:8px auto;
  216. background: #fff;
  217. width: 90%;
  218. display: block;
  219. padding:8px;
  220. }
  221. .areaSelect ul {
  222. margin:10px 0;
  223. }
  224. .areaSelect ul li{
  225. margin-bottom: 8px;
  226. text-align: center;
  227. font-size: .5rem
  228. }
  229. .areaSelect ul a {
  230. background-color:#f8b62a;
  231. color:#fff;
  232. text-decoration: none;
  233. padding:4px 32px;
  234. display: inline-block;
  235. font-size: .8rem
  236. }
  237. .areaContent .title i{
  238. font-size: .5rem;
  239. float: right;
  240. }
  241. .areaContent dl{
  242. margin-top:8px;
  243. }
  244. .areaContent dt{
  245. background-color: #f8b62a;
  246. color:#fff;
  247. padding:2px;
  248. }
  249. .areaContent dd{
  250. padding:4px;
  251. margin-left:0;
  252. font-size: .75rem;
  253. }
  254. .areaContent dd.address{
  255. font-size: .6rem;
  256. color:#666;
  257. }
  258. .footer {
  259. font-size: .4rem;
  260. text-align: center;
  261. }
  262. .areaContent dd table{
  263. width: 100%
  264. }
  265. .areaContent dd a{
  266. color:#333;
  267. text-decoration: none
  268. }
  269. /*报价单*/
  270. .quoted-main {
  271. }
  272. .quoted-main legend{
  273. font-size: 1rem;
  274. color:#3c6cb4;
  275. padding:.5rem 0;
  276. text-align: center;
  277. font-weight: 600;
  278. margin:0 auto;
  279. }
  280. .quoted-main .formTable,.quoted-main .subTable{
  281. width: 100%;
  282. border-top: 1px solid #dbdff0;
  283. }
  284. .quoted-main .formTable {
  285. border-left: 1px solid #dbdff0;
  286. }
  287. .quoted-main .formTable td{
  288. font-size: .7rem;
  289. padding:8px;
  290. border-bottom: 1px solid #dbdff0;
  291. border-right: 1px solid #dbdff0;
  292. }
  293. .subTable td.greenBg{
  294. background-color: #17ab0c0d
  295. }
  296. .subTable td.orangeBg{
  297. background-color:#ed8b000d
  298. }
  299. .subTable td.redBg{
  300. background-color: #f700000d
  301. }
  302. .quoted-main .qp-title{
  303. background:#dbdff0;
  304. font-size: .7rem;
  305. color: #3c6cb4;
  306. padding:8px 8px;
  307. font-weight:normal;
  308. }
  309. .quoted-main .q-price{
  310. color:#3c6cb4;
  311. font-size: .8rem;
  312. display: inline-block;
  313. margin-right: 5px
  314. }
  315. .quoted-main .q-price:before{
  316. content: '¥';
  317. font-size: 12px;
  318. float: left;
  319. }
  320. .quoted-main .table-xscroll{
  321. overflow-x: scroll;
  322. width: 795px
  323. }
  324. .quoted-main tr.sbg td{
  325. background-color: #dbdff036
  326. }
  327. .quoted-main tr td.greenBg{
  328. background-color: #17ab0c0d
  329. }
  330. .quoted-main tr td.orangeBg{
  331. background-color:#FF78190d
  332. }
  333. .quoted-main tr td.redBg{
  334. background-color: #FFCC2B0d
  335. }
  336. .colYellow{
  337. color:#FFCC2B;
  338. }
  339. .colGreen{
  340. color:#17ab0c;
  341. }
  342. .colOrange{
  343. color:#FF7819;
  344. }
  345. .trainFormTab{
  346. padding: 5px;
  347. margin-bottom: 5px;
  348. background-color: #3c6cb4
  349. }
  350. .trainFormTab a{
  351. padding:8px 10px;
  352. display: inline-block;
  353. color:#fff;
  354. }
  355. .trainFormTab .now{
  356. background-color:#fff;
  357. color:#3c6cb4;
  358. }