portal.less 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. .wrap {
  2. width: 100%;
  3. margin: 0 auto;
  4. background: #ffffff;
  5. .portal-header {
  6. background: #f8f8f8;
  7. width: 100%;
  8. border-bottom: 1px solid #ececec;
  9. .portal-top {
  10. width: 1280px;
  11. line-height: 30px;
  12. font-size: 14px;
  13. margin: 0 auto;
  14. color: #999;
  15. .top-welcomeText {
  16. float: left;
  17. }
  18. .top-alink {
  19. float: right;
  20. a {
  21. color: #999;
  22. padding: 0 8px;
  23. border-left: 1px solid #999;
  24. }
  25. >a {
  26. &:first-child {
  27. border: none;
  28. }
  29. }
  30. }
  31. >span {
  32. padding-left: 20px;
  33. }
  34. }
  35. }
  36. .footer {
  37. width: 100%;
  38. position: fixed;
  39. bottom: 0;
  40. left: 0;
  41. z-index: 1;
  42. text-align: center;
  43. padding: 6px 0;
  44. padding: 10px 0;
  45. text-align: center;
  46. background: #f0f0f0;
  47. p {
  48. line-height: 24px;
  49. }
  50. }
  51. .portal-nav {
  52. width: 1280px;
  53. height: 70px;
  54. margin: 0 auto;
  55. border-bottom: 1px solid #ececec;
  56. .nav-logoBox {
  57. float: left;
  58. width: 154px;
  59. height: 53px;
  60. padding-top: 53px;
  61. margin-top: 8px;
  62. position: relative;
  63. img {
  64. width: 154px;
  65. height: 53px;
  66. position: absolute;
  67. top: 0;
  68. left: 0;
  69. }
  70. }
  71. .nav-list {
  72. float: left;
  73. margin-left: 100px;
  74. li {
  75. float: left;
  76. width: 200px;
  77. height: 70px;
  78. line-height: 70px;
  79. text-align: center;
  80. a {
  81. display: inline-block;
  82. width: 200px;
  83. font-size: 18px;
  84. color: #333;
  85. }
  86. &:hover {
  87. background: #58a3ff;
  88. a {
  89. color: #fff;
  90. }
  91. }
  92. }
  93. .active {
  94. border-bottom: 2px solid #58a3ff;
  95. a {
  96. color: #58a3ff
  97. }
  98. }
  99. }
  100. .nav-search {
  101. float: right;
  102. height: 28px;
  103. width: 250px;
  104. margin-top: 20px;
  105. position: relative;
  106. >input {
  107. position: absolute;
  108. top: 0;
  109. left: 0;
  110. border-right: none;
  111. padding-left: 10px;
  112. width: 200px;
  113. border-top-left-radius: 14px;
  114. border-bottom-left-radius: 14px;
  115. border-top-right-radius: 0;
  116. border-bottom-right-radius: 0;
  117. }
  118. >button {
  119. position: absolute;
  120. right: 0;
  121. vertical-align: middle;
  122. border-top-left-radius: 0;
  123. border-bottom-left-radius: 0;
  124. border-top-right-radius: 14px;
  125. border-bottom-right-radius: 14px;
  126. border: none;
  127. height: 28px;
  128. background: #58a3ff;
  129. >img {
  130. vertical-align: middle;
  131. }
  132. }
  133. }
  134. }
  135. .portal-content {
  136. width: 1280px;
  137. margin: 0 auto; //background: #e0e0e0;
  138. padding-top: 20px;
  139. margin-bottom: 120px;
  140. .search-criteria {
  141. margin-bottom: 10px;
  142. border-bottom: 1px dotted #ccc;
  143. }
  144. .ant-radio-group {
  145. >label {
  146. border-radius: 0px;
  147. border: 1px solid #d9d9d9;
  148. margin-right: 10px;
  149. margin-bottom: 10px;
  150. }
  151. .ant-radio-button-wrapper-checked {
  152. border: 1px solid #58a3ff;
  153. box-shadow: none;
  154. }
  155. }
  156. .search-title {
  157. text-align: center;
  158. span {
  159. line-height: 28px;
  160. }
  161. }
  162. ul {
  163. box-sizing: border-box;
  164. margin-top: 20px;
  165. .user-detail {
  166. float: left;
  167. height: auto;
  168. width: 24%;
  169. background: #fff;
  170. border: 1px solid #d9d9d9;
  171. padding: 20px;
  172. margin-right: 12px;
  173. margin-bottom: 20px;
  174. .logo {
  175. height: 120px;
  176. width: 120px;
  177. position: relative;
  178. padding-top: 120px;
  179. margin: 0 auto;
  180. img {
  181. height: 120px;
  182. width: auto;
  183. position: absolute;
  184. top: 0;
  185. left: 0;
  186. }
  187. }
  188. >div:not(:first-child) {
  189. font-size: 16px;
  190. height: 24px;
  191. line-height: 24px;
  192. overflow: hidden;
  193. vertical-align: middle;
  194. color: #999;
  195. }
  196. .name {
  197. margin-top: 10px;
  198. text-align: center;
  199. color: #333;
  200. }
  201. .address {
  202. font-size: 18px;
  203. }
  204. .text-Number {
  205. color: #ea0862;
  206. font-size: 18px;
  207. }
  208. .text-unit {
  209. color: #333;
  210. font-size: 18px;
  211. }
  212. }
  213. }
  214. }
  215. .portal-carousel {
  216. margin: 20px 0;
  217. .slide-box {
  218. img {
  219. width: 100%;
  220. }
  221. }
  222. .slick-dots {
  223. >li {
  224. button {
  225. height: 4px;
  226. width: 20px;
  227. }
  228. }
  229. }
  230. }
  231. .portal-rate {
  232. &:hover {
  233. cursor: default;
  234. }
  235. }
  236. }
  237. .portal-desc-content {
  238. .ant-row {
  239. margin-bottom: 16px;
  240. }
  241. .interest {
  242. a,
  243. button {
  244. float: right;
  245. padding-right: 50px;
  246. line-height: 18px;
  247. i {
  248. vertical-align: middle;
  249. }
  250. }
  251. }
  252. }
  253. .detial_sub {
  254. line-height: 32px;
  255. .detial_sub_icon {
  256. vertical-align: middle;
  257. display: inline-block;
  258. height: 20px;
  259. width: 20px;
  260. padding-top: 20px;
  261. position: relative;
  262. img {
  263. position: absolute;
  264. top: 0;
  265. left: 0;
  266. height: 20px;
  267. }
  268. }
  269. .detial_sub_title {
  270. color: #666;
  271. margin-left: 6px;
  272. margin-right: 6px;
  273. }
  274. .detial_sub_text {
  275. color: #333;
  276. i {
  277. background: #ccc;
  278. border-radius: 2px;
  279. padding: 0 6px;
  280. margin-right: 6px;
  281. }
  282. }
  283. .money_text {
  284. color: #58a3ff;
  285. }
  286. .detial_sub_score {
  287. display: inline-block;
  288. width: 90px;
  289. >span {
  290. overflow: hidden;
  291. display: inline-block;
  292. vertical-align: top;
  293. }
  294. }
  295. }
  296. .detail_interest_sub {
  297. list-style: none;
  298. padding: 0 200px;
  299. margin-bottom: 20px;
  300. >li {
  301. margin-top: 20px;
  302. border: 1px solid #ececec;
  303. padding: 0 20px 20px;
  304. }
  305. .interest_list_title {
  306. line-height: 40px;
  307. padding-left: 60px;
  308. position: relative;
  309. >img {
  310. width: 30px;
  311. position: absolute;
  312. left: -12px;
  313. top: -1px;
  314. }
  315. >span {
  316. font-size: 20px;
  317. color: #58a3ff;
  318. }
  319. }
  320. .interest_list_name {
  321. position: relative;
  322. height: 24px;
  323. >p {
  324. font-size: 16px;
  325. text-align: right;
  326. padding-right: 120px;
  327. color: #58a3ff;
  328. }
  329. .interest_list_confirm {
  330. position: absolute;
  331. right: 10px;
  332. top: 2px;
  333. span {
  334. margin-right: 10px;
  335. }
  336. img {
  337. height: 22px;
  338. width: 22px;
  339. vertical-align: middle;
  340. }
  341. }
  342. }
  343. }