form.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. @font-face {
  2. font-family: 'FZLTZHK'; /* 这个名字可以自己定义 */
  3. src: url('../font/.font-spider/FZLTZHK--GBK1-0.TTF '); /* IE9 Compat Modes */
  4. /*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
  5. url('../fonts/.font-spider/FZLTZHK--GBK1-0.TTF') format('ttf'),
  6. url('../fonts/.font-spider/FZLTZHK--GBK1-0.TTF') format('truetype'), /* Safari, Android, iOS */
  7. url('')
  8. font-weight: bold;
  9. font-style: normal;
  10. }
  11. @font-face {
  12. font-family: 'SourceHanSansCN-Normal'; /* 这个名字可以自己定义 */
  13. src: url('../font/.font-spider/SourceHanSansCN-Normal.ttf '); /* IE9 Compat Modes */
  14. /*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
  15. url('../fonts/.font-spider/SourceHanSansCN-Normal.ttf') format('ttf'),
  16. url('../fonts/.font-spider/SourceHanSansCN-Normal.ttf') format('truetype'), /* Safari, Android, iOS */
  17. url('')
  18. font-weight: bold;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: 'SourceHanSansCN-Regular'; /* 这个名字可以自己定义 */
  23. src: url('../font/SourceHanSansCN-Regular.ttf '); /* IE9 Compat Modes */
  24. /*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
  25. url('../fonts/.font-spider/SourceHanSansCN-Regular.ttf') format('ttf'),
  26. url('../fonts/.font-spider/SourceHanSansCN-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
  27. url('')
  28. font-weight: bold;
  29. font-style: normal;
  30. }
  31. body, html {
  32. margin: 0;
  33. width: 100%;
  34. height: 100%;
  35. padding: 0;
  36. font-family: 微软雅黑;
  37. }
  38. header {
  39. display: inline-block;
  40. }
  41. header > img {
  42. width: 100%;
  43. display: inline-block;
  44. }
  45. .wrap {
  46. background:rgba(42,97,241,1);
  47. display: inline-block;
  48. text-align: center;
  49. position:absolute;
  50. width: 100%;
  51. height:100%;
  52. }
  53. .wrap > img {
  54. width: 100%;
  55. margin-bottom: 1rem;
  56. position:relative;
  57. }
  58. .wrap-form {
  59. background: url("../image/form-img (3).png");
  60. background-size: 100% 100%;
  61. display: inline-block;
  62. position:relative;
  63. }
  64. .wrap-form .form {
  65. display: inline-block;
  66. text-align: center;
  67. padding-top: 1rem;
  68. width: 100%;
  69. }
  70. .wrap-form-img{
  71. position:relative;
  72. background: url("../image/form-img (2).png");
  73. background-size: 100% 100%;
  74. display: inline-block;
  75. height: 6rem;
  76. width: 95%;
  77. margin: 0 auto;
  78. margin-top:40%;
  79. margin-bottom:2rem;
  80. margin-left:.5rem;
  81. }
  82. .wrap-form .form input {
  83. display: inline;
  84. text-decoration: none;
  85. outline: none;
  86. list-style: none;
  87. padding: 0 1rem;
  88. width: 70%;
  89. height: 2.5625rem;
  90. margin:0.375rem;
  91. border:1px solid rgba(125,125,125,1);
  92. border-radius:0.875rem;
  93. font-size:0.8125rem;
  94. font-family:SourceHanSansCN;
  95. font-weight:400;
  96. color:rgba(22,1,132,1);
  97. }
  98. /* WebKit browsers */
  99. input::-webkit-input-placeholder {
  100. font-size:0.8125rem;
  101. font-family:SourceHanSansCN;
  102. font-weight:500;
  103. color:rgba(22,1,132,1);
  104. }
  105. /* Mozilla Firefox 4-18使用伪类 */
  106. input:-moz-placeholder {
  107. font-size:0.8125rem;
  108. font-family:SourceHanSansCN;
  109. font-weight:500;
  110. color:rgba(22,1,132,1);
  111. }
  112. /* Mozilla Firefox 19+ 使用伪元素 */
  113. input::-moz-placeholder {
  114. font-size:0.8125rem;
  115. font-family:SourceHanSansCN;
  116. font-weight:500;
  117. color:rgba(22,1,132,1);
  118. }
  119. /* IE10使用伪类 */
  120. input:-ms-input-placeholder {
  121. font-size:0.8125rem;
  122. font-family:SourceHanSansCN;
  123. font-weight:400;
  124. color:rgba(22,1,132,1);
  125. }
  126. input::-webkit-input-placeholder {
  127. font-size: 12px;
  128. }
  129. .btn {
  130. background: url("../image/form-img (1).png");
  131. background-size: 100% 100%;
  132. width:30%;
  133. height: 2.1875rem;
  134. margin: .5rem auto;
  135. text-align: center;
  136. cursor: pointer;
  137. z-index: 10;
  138. font-size:1.125rem;
  139. font-family:SourceHanSansCN;
  140. font-weight:500;
  141. color:rgba(22,1,132,1);
  142. line-height: 2.1875rem;
  143. margin-bottom:1.5rem;
  144. }
  145. .input_in {
  146. display: inline-block;
  147. width: 100%;
  148. position: relative;
  149. }
  150. .icon {
  151. display: inline-block;
  152. padding: .2rem .5rem;
  153. position: absolute;
  154. top: .1rem;
  155. right: .2rem;
  156. }
  157. .icon > img {
  158. width: 1rem;
  159. }
  160. .class-list {
  161. display: inline-block;
  162. width: 100%;
  163. background: #fff;
  164. border-bottom-left-radius: .4rem;
  165. border-bottom-right-radius: .4rem;
  166. border: solid 1px #B157E1;
  167. border-top: none;
  168. padding: .4rem .1rem;
  169. position: absolute;
  170. top: 1.5rem;
  171. left: 0;
  172. }
  173. .class-list ul {
  174. list-style: none;
  175. display: inline-block;
  176. margin: 0;
  177. padding: 0;
  178. }
  179. .class-list ul li {
  180. display: inline-block;
  181. border-radius: .3rem;
  182. padding: .3rem .7rem;
  183. background: #CEB9F8;
  184. margin: .8rem;
  185. }
  186. .input_in .hide {
  187. display: none;
  188. }
  189. .mark {
  190. width: 100%;
  191. height: 200%;
  192. background: rgba(0, 0, 0, .4);
  193. position: fixed;
  194. top: 0;
  195. font-weight: bold;
  196. font-family: FZLTZHK;
  197. display: none;
  198. }
  199. .mark-card {
  200. display: inline-block;
  201. background-color: #fff;
  202. position: absolute;
  203. background: url("../image/image13.png") no-repeat;
  204. background-size: 100% 100%;
  205. width: 94%;
  206. height: 47%;
  207. margin: 5% 3%;
  208. }
  209. .mark-header {
  210. display: inline-block;
  211. width: 100%;
  212. margin-top: .5rem;
  213. }
  214. .mark-header .del {
  215. width: 1.2rem;
  216. margin: .2rem 1.5rem;
  217. float: right;
  218. }
  219. .mark-name {
  220. text-align: center;
  221. padding: 1.5rem;
  222. padding-bottom: 0;
  223. }
  224. .mark-name > span {
  225. text-align: center;
  226. color: #fff;
  227. font-family: SourceHanSansCN-Normal;
  228. display: block;
  229. font-size: 36px;
  230. }
  231. .mark-name > p > span {
  232. list-style: none;
  233. color: #FFF600;
  234. font-size: 19px;
  235. }
  236. .mark-name > p {
  237. text-align: center;
  238. font-family: SourceHanSansCN-Normal;
  239. color: #fff;
  240. font-size: 17px;
  241. margin: 0;
  242. }
  243. .address-items {
  244. width: 97%;
  245. display: inline-block;
  246. margin-top: 1rem;
  247. }
  248. .address-scroll {
  249. display: inline-block;
  250. height: 16rem;
  251. width: 92.2%;
  252. text-align: left;
  253. padding: .7rem;
  254. padding-top: 0;
  255. overflow: scroll;
  256. background-color: rgb(255, 255, 255);
  257. }
  258. .address-items .item {
  259. width: 100%;
  260. border-bottom: solid 1px rgba(100, 100, 100, 0.5);
  261. padding-top: .6rem;
  262. padding-bottom: .6rem;
  263. }
  264. .address-items .item span, .recommend-info .item span {
  265. color: #000;
  266. font-family: SourceHanSansCN-Regular;
  267. font-weight: 400;
  268. font-size: 13px;
  269. }
  270. .recommend-info .name, .recommend-info .address-info {
  271. display: inline-block;
  272. color: #1c1c1c;
  273. font-size: 13px;
  274. }
  275. .address-items .item .name, .recommend-info .item .name {
  276. display: inline-block;
  277. color: #1c1c1c;
  278. font-size: 13px;
  279. font-weight: bold;
  280. font-family: FZLTZHK;
  281. }
  282. .address-items .item .address-info {
  283. width: 100%;
  284. display: block;
  285. font-size: 13px;
  286. }
  287. .address-items .item .phone {
  288. }
  289. .recommend-info {
  290. display: inline-block;
  291. font-weight: 400;
  292. padding: .3rem;
  293. font-family: SourceHanSansCN-Regular;
  294. text-align: left;
  295. }
  296. .info-title {
  297. font-size: 15px;
  298. font-family: SourceHanSansCN-Regular;
  299. color: #fff;
  300. text-align: center;
  301. background-color: rgb(255, 117, 168);
  302. }
  303. .recommend-info .item {
  304. padding-left: .7rem;
  305. padding-right: .7rem;
  306. background-color: #fff;
  307. }
  308. .show {
  309. display: block;
  310. }
  311. .hide {
  312. display: none;
  313. }