portal.less 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. font-size: 18px;
  82. color: #333;
  83. }
  84. &:hover {
  85. background: #58a3ff;
  86. a {
  87. color: #fff;
  88. }
  89. }
  90. }
  91. .active {
  92. border-bottom: 2px solid #58a3ff;
  93. a {
  94. color: #58a3ff
  95. }
  96. }
  97. }
  98. .nav-search {
  99. float: right;
  100. height: 28px;
  101. width: 250px;
  102. margin-top: 20px;
  103. position: relative;
  104. >input {
  105. position: absolute;
  106. top: 0;
  107. left: 0;
  108. border-right: none;
  109. padding-left: 10px;
  110. width: 200px;
  111. border-top-left-radius: 14px;
  112. border-bottom-left-radius: 14px;
  113. border-top-right-radius: 0;
  114. border-bottom-right-radius: 0;
  115. }
  116. >button {
  117. position: absolute;
  118. right: 0;
  119. border-top-left-radius: 0;
  120. border-bottom-left-radius: 0;
  121. border-top-right-radius: 14px;
  122. border-bottom-right-radius: 14px;
  123. border: none;
  124. height: 28px;
  125. background: #58a3ff;
  126. }
  127. }
  128. }
  129. .portal-content {
  130. width: 1280px;
  131. margin: 0 auto; //background: #e0e0e0;
  132. padding-top: 20px;
  133. margin-bottom: 120px;
  134. .search-criteria {
  135. margin-bottom: 10px;
  136. border-bottom: 1px dotted #ccc;
  137. }
  138. .ant-radio-group {
  139. >label {
  140. border-radius: 0px;
  141. border: 1px solid #d9d9d9;
  142. margin-right: 10px;
  143. margin-bottom: 10px;
  144. }
  145. .ant-radio-button-wrapper-checked {
  146. border: 1px solid #58a3ff;
  147. box-shadow: none;
  148. }
  149. }
  150. .search-title {
  151. text-align: center;
  152. span {
  153. line-height: 28px;
  154. }
  155. }
  156. ul {
  157. box-sizing: border-box;
  158. margin-top: 20px;
  159. .user-detail {
  160. float: left;
  161. height: auto;
  162. width: 24%;
  163. background: #fff;
  164. border: 1px solid #d9d9d9;
  165. padding: 20px;
  166. margin-right: 12px;
  167. margin-bottom: 20px;
  168. .logo {
  169. height: 120px;
  170. width: 120px;
  171. position: relative;
  172. padding-top: 120px;
  173. margin: 0 auto;
  174. img {
  175. height: 120px;
  176. width: auto;
  177. position: absolute;
  178. top: 0;
  179. left: 0;
  180. }
  181. }
  182. >div:not(:first-child) {
  183. font-size: 16px;
  184. height: 24px;
  185. line-height: 24px;
  186. overflow: hidden;
  187. vertical-align: middle;
  188. color: #999;
  189. }
  190. .name {
  191. margin-top: 10px;
  192. text-align: center;
  193. color: #333;
  194. }
  195. .address {
  196. font-size: 18px;
  197. }
  198. .text-Number {
  199. color: #ea0862;
  200. font-size: 18px;
  201. }
  202. .text-unit {
  203. color: #333;
  204. font-size: 18px;
  205. }
  206. }
  207. }
  208. }
  209. .portal-carousel {
  210. margin: 20px 0;
  211. .slide-box {
  212. img {
  213. width: 100%;
  214. }
  215. }
  216. .slick-dots {
  217. >li {
  218. button {
  219. height: 4px;
  220. width: 20px;
  221. }
  222. }
  223. }
  224. }
  225. .portal-rate {
  226. &:hover {
  227. cursor: default;
  228. }
  229. }
  230. }
  231. .portal-desc-content {
  232. .ant-row {
  233. margin-bottom: 16px;
  234. }
  235. .interest {
  236. a,
  237. button {
  238. float: right;
  239. padding-right: 50px;
  240. line-height: 18px;
  241. i {
  242. vertical-align: middle;
  243. }
  244. }
  245. }
  246. }
  247. .detial_sub {
  248. line-height: 32px;
  249. .detial_sub_icon {
  250. vertical-align: middle;
  251. display: inline-block;
  252. height: 20px;
  253. width: 20px;
  254. padding-top: 20px;
  255. position: relative;
  256. img {
  257. position: absolute;
  258. top: 0;
  259. left: 0;
  260. height: 20px;
  261. }
  262. }
  263. .detial_sub_title {
  264. color: #666;
  265. margin-left: 6px;
  266. margin-right: 6px;
  267. }
  268. .detial_sub_text {
  269. color: #333;
  270. i {
  271. background: #ccc;
  272. border-radius: 2px;
  273. padding: 0 6px;
  274. margin-right: 6px;
  275. }
  276. }
  277. .money_text {
  278. color: #58a3ff;
  279. }
  280. .detial_sub_score {
  281. display: inline-block;
  282. width: 90px;
  283. >span {
  284. overflow: hidden;
  285. display: inline-block;
  286. vertical-align: top;
  287. }
  288. }
  289. }
  290. .detail_interest_sub {
  291. list-style: none;
  292. padding: 0 200px;
  293. margin-bottom: 20px;
  294. >li {
  295. margin-top: 20px;
  296. border: 1px solid #ececec;
  297. padding: 0 20px 20px;
  298. }
  299. .interest_list_title {
  300. position: relative;
  301. line-height: 60px;
  302. padding-left: 60px;
  303. >img {
  304. width: 30px;
  305. position: absolute;
  306. left: -12px;
  307. top: -1px;
  308. }
  309. >span {
  310. font-size: 20px;
  311. color: #58a3ff;
  312. }
  313. .interest_list_confirm {
  314. position: absolute;
  315. right: 10px;
  316. top: 0;
  317. span {
  318. margin-right: 10px;
  319. }
  320. img {
  321. height: 22px;
  322. width: 22px;
  323. vertical-align: middle;
  324. }
  325. }
  326. }
  327. }