user.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. #userInfo {
  2. width: 45px;
  3. height: 45px;
  4. float: left;
  5. display: inline-block;
  6. }
  7. #userContent {
  8. /*border-bottom: 1px solid #01b7ff;*/
  9. /*background: #3b8ee1 url(../images/layout/userLogo.png) 0 20px no-repeat;*/
  10. /*padding-left: 70px;*/
  11. position: relative;
  12. }
  13. #userContent.no-login {
  14. /*border-bottom: 1px solid #01b7ff;*/
  15. /*background: #3b8ee1 url(../images/layout/userLogo.png) 0 8px no-repeat;*/
  16. position: relative;
  17. }
  18. /* 地名地址搜索框 */
  19. #userContent .UserAddressSearch {
  20. position: absolute;
  21. right: 60px;
  22. width: 200px;
  23. /*top: 0;*/
  24. /*line-height: 68px;*/
  25. cursor: pointer;
  26. z-index: 111;
  27. /*left: 0;*/
  28. /*margin: 10px 0 0 10px;*/
  29. background-size: 45px;
  30. /*position: absolute;*/
  31. /*left: 10px;*/
  32. /*top: -5px;*/
  33. }
  34. #addressSearch {
  35. width: 200px;
  36. /* height: 30px; */
  37. border: 1px solid #ccc;
  38. border-radius: 3px;
  39. padding: 10px 5px;
  40. display: none;
  41. }
  42. /* 地名地址返回结果BOX */
  43. #resultListBox {
  44. position: absolute;
  45. top: 50px;
  46. right: 0px;
  47. width: 400px;
  48. padding: 20px 10px 10px 10px;
  49. background-color: #fff;
  50. border: 1px solid #ccc;
  51. border-radius: 3px;
  52. box-shadow: -5px 5px 5px 2px rgba(0, 0, 0, 0.15);
  53. }
  54. #resultListBox .closeDiv {
  55. position: absolute;
  56. padding: 5px;
  57. top: 0px;
  58. right: 5px;
  59. color: #909399;
  60. font-size: 20px;
  61. user-select: none;
  62. -ms-user-select: none;
  63. -moz-user-select: none;
  64. -webkit-user-select: none;
  65. }
  66. #resultListBox .closeDiv:hover {
  67. color: #f56c6c;
  68. }
  69. .resultItem {
  70. position: relative;
  71. padding: 10px 5px;
  72. border-bottom: 1px dashed #ccc;
  73. border-left: 2px solid #fff;
  74. color: #303133;
  75. font-weight: bold;
  76. text-indent: 1em;
  77. }
  78. .resultItem:hover {
  79. border-bottom: 1px dashed #409eff;
  80. border-left: 2px solid #409eff;
  81. color: #409eff;
  82. }
  83. .orientation {
  84. padding-left: 20px;
  85. }
  86. .orientation::before {
  87. position: absolute;
  88. top: 50%;
  89. left: 5px;
  90. transform: translateY(-50%);
  91. content: "";
  92. width: 15px;
  93. height: 20px;
  94. background: url(../images/layout/marker/b1.png) center no-repeat;
  95. background-size: contain;
  96. }
  97. #userContent .userLink {
  98. /*position: absolute;*/
  99. /*top: 0;*/
  100. width: 45px;
  101. height: 45px;
  102. background: url(../images/layout/userLogo.png) center no-repeat;
  103. /*line-height: 68px;*/
  104. text-align: center;
  105. color: #fff;
  106. cursor: pointer;
  107. z-index: 111;
  108. /*left: 0;*/
  109. /*margin: 10px 0 0 10px;*/
  110. background-size: 45px;
  111. /*display: none;*/
  112. /*position: absolute;*/
  113. /*left: 10px;*/
  114. /*top: -5px;*/
  115. }
  116. #userContent .userLink:hover,
  117. #userContent .userLink.active {
  118. border-color: rgba(64, 158, 255, 0.8);
  119. }
  120. #userContent .userInfo {
  121. background: rgba(64, 158, 255, 0.8) url(../images/layout/userLogo.png) 5px 8px
  122. no-repeat;
  123. position: absolute;
  124. top: 60px;
  125. right: 0px;
  126. z-index: 99999;
  127. width: 235px;
  128. background-size: 60px;
  129. display: none;
  130. height: 70px;
  131. }
  132. #userContent .userInfo.active {
  133. display: block;
  134. }
  135. #userContent .userInfo .login {
  136. display: none;
  137. color: #eeeeee;
  138. font-size: 16px;
  139. height: 46px;
  140. line-height: 46px;
  141. padding: 0px 10px;
  142. margin-left: 70px;
  143. }
  144. #userContent .userInfo .lgtop {
  145. margin-left: 70px;
  146. }
  147. #userContent .userInfo .login a {
  148. color: #ffffff;
  149. padding-left: 5px;
  150. font-size: 16px;
  151. font-weight: bold;
  152. }
  153. #userContent .userInfo .moreLink {
  154. display: none;
  155. color: #666;
  156. font-size: 16px;
  157. background: #fff;
  158. position: relative;
  159. }
  160. #userContent .userInfo .moreLink .linkList {
  161. padding: 5px 0;
  162. margin-left: 10px;
  163. }
  164. #userContent .userInfo .moreLink .linkList li {
  165. cursor: pointer;
  166. height: 42px;
  167. line-height: 42px;
  168. text-align: left;
  169. padding-left: 27px;
  170. width: 60px;
  171. font-size: 14px;
  172. }
  173. #userContent .userInfo .moreLink .linkList li:hover {
  174. color: #01b7ff;
  175. }
  176. #userContent .userInfo .moreLink .linkList li.quit {
  177. text-align: right;
  178. font-size: 14px;
  179. color: #999;
  180. height: 30px;
  181. line-height: 30px;
  182. cursor: pointer;
  183. }
  184. #userContent .userInfo .moreLink .linkList li.collect {
  185. background: url(../images/user/userCenter.png) 1px no-repeat;
  186. background-size: 13px;
  187. }
  188. #userContent .userInfo .moreLink .linkList li.myBh {
  189. background: url(../images/user/star.png) left no-repeat;
  190. background-size: 15px;
  191. display: none;
  192. }
  193. #userContent .userInfo .moreLink .linkList li.myBh.active {
  194. display: block;
  195. }
  196. #userContent .userInfo .moreLink .linkList li.myBh.uFavo {
  197. background: url(../images/user/uFavo.png) left no-repeat;
  198. background-size: 15px;
  199. }
  200. #userContent .userInfo .moreLink .linkList li.set {
  201. background: url(../images/user/set.png) left no-repeat;
  202. background-size: 15px;
  203. display: none;
  204. }
  205. #userContent .userInfo .moreLink .linkList li.share {
  206. background: url(../images/user/share.png) left no-repeat;
  207. background-size: 18px;
  208. width: 56px;
  209. vertical-align: top;
  210. }
  211. #userContent .userInfo .moreLink .linkList li.share a {
  212. height: 42px;
  213. line-height: 42px;
  214. text-align: left;
  215. color: #666;
  216. font-size: 14px;
  217. }
  218. #userContent .popup-lt {
  219. position: absolute;
  220. top: 0px;
  221. left: -20px;
  222. bottom: 19px;
  223. width: 20px;
  224. background: url(../images/popup/bg-pp-2d-lt.png) top left no-repeat;
  225. display: none;
  226. }
  227. #userContent .popup-lb {
  228. position: absolute;
  229. left: -20px;
  230. bottom: 0px;
  231. width: 42px;
  232. height: 19px;
  233. background: url(../images/popup/bg-pp-2d-lb.png) top left no-repeat;
  234. display: none;
  235. }
  236. #userContent .popup-rt {
  237. position: absolute;
  238. right: -8px;
  239. top: 0px;
  240. bottom: 19px;
  241. width: 8px;
  242. background: url(../../images/popup/bg-pp-2d-rt.png) top left no-repeat;
  243. display: none;
  244. }
  245. #userContent .popup-rb {
  246. position: absolute;
  247. right: -8px;
  248. bottom: 0px;
  249. height: 19px;
  250. left: 22px;
  251. background: url(../../images/popup/bg-pp-2d-rb.png) top right no-repeat;
  252. display: none;
  253. }
  254. #userContent .popup-ct {
  255. height: 48px;
  256. background: url(../../images/popup/bg-pp-23d-ct.png) top left repeat-x;
  257. color: #fff;
  258. padding-left: 10px;
  259. }
  260. #userContent .popup-ct.lgtop {
  261. display: none;
  262. }
  263. #userContent .popup-cb {
  264. background: #ffffff;
  265. }
  266. #userContent .username {
  267. font-weight: normal;
  268. padding-top: 15px;
  269. color: #fff;
  270. width: 155px;
  271. overflow: hidden;
  272. white-space: nowrap;
  273. text-overflow: ellipsis;
  274. }
  275. #userContent .lgtime {
  276. font-size: 12px;
  277. display: inline-block;
  278. color: #fff;
  279. }
  280. #userContent .quit {
  281. font-size: 12px;
  282. color: #999;
  283. display: inline-block;
  284. margin-left: 10px;
  285. cursor: pointer;
  286. border: 1px solid #eee;
  287. border-radius: 3px;
  288. padding: 3px 8px;
  289. position: absolute;
  290. bottom: 14px;
  291. right: 14px;
  292. display: none;
  293. }
  294. #userContent .mt10 {
  295. margin-top: 5px;
  296. padding-bottom: 10px;
  297. /*display: none;*/
  298. }
  299. /*3D*/
  300. #userContent.class3d .popup-lt {
  301. position: absolute;
  302. top: 0px;
  303. left: 0px;
  304. bottom: 19px;
  305. width: 20px;
  306. background: url(../../images/popup/bg-pp-3d-lt.png) top left no-repeat;
  307. }
  308. #userContent.class3d .popup-lb {
  309. position: absolute;
  310. left: 0px;
  311. bottom: 0px;
  312. width: 42px;
  313. height: 19px;
  314. background: url(../../images/popup/bg-pp-3d-lb.png) top left no-repeat;
  315. }
  316. #userContent.class3d .popup-ct {
  317. height: 48px;
  318. background: url(../../images/popup/bg-pp-23d-ct.png) top left repeat-x;
  319. }
  320. #userContent.class3d .popup-cb {
  321. background: #ffffff;
  322. }
  323. #userContent.class3d .popup-rt {
  324. position: absolute;
  325. right: 0px;
  326. top: 0px;
  327. bottom: 19px;
  328. width: 8px;
  329. background: url(../../images/popup/bg-pp-3d-rt.png) top left no-repeat;
  330. }
  331. #userContent.class3d .popup-rb {
  332. position: absolute;
  333. right: 0px;
  334. bottom: 0px;
  335. height: 19px;
  336. left: 16px;
  337. background: url(../../images/popup/bg-pp-3d-rb.png) top right no-repeat;
  338. }
  339. #userContent.class3d .username {
  340. /*padding-left: 10px;*/
  341. }
  342. #userContent.class3d .lgtime {
  343. /*padding-left: 10px;*/
  344. }
  345. .arrow {
  346. width: 16px;
  347. height: 14px;
  348. position: absolute;
  349. top: 10px;
  350. right: 10px;
  351. cursor: pointer;
  352. z-index: 1003;
  353. }
  354. .arrow.left {
  355. background: url(../images/layout/arrow_left.png) left no-repeat;
  356. display: none;
  357. }
  358. .arrow.right {
  359. background: url(../images/layout/arrow_right.png) left no-repeat;
  360. }
  361. .weideng {
  362. font-size: 14px;
  363. line-height: 24px;
  364. padding-top: 11px;
  365. }
  366. #userContent .lgfooter {
  367. width: 100%;
  368. height: 30px;
  369. margin-top: 5px;
  370. margin-bottom: 10px;
  371. display: none;
  372. }
  373. #userContent .lgfooter #switchInter {
  374. color: #fff;
  375. line-height: 30px;
  376. font-size: 16px;
  377. width: 100%;
  378. text-align: center;
  379. height: 100%;
  380. }
  381. #userContent .lgfooter dl {
  382. height: 100%;
  383. width: 100%;
  384. }
  385. #userContent .lgfooter dt {
  386. width: 100px;
  387. float: left;
  388. }
  389. #userContent .lgfooter dd {
  390. width: 100px;
  391. float: left;
  392. position: relative;
  393. height: 100%;
  394. overflow: hidden;
  395. cursor: pointer;
  396. }
  397. #userContent .lgfooter .bottom {
  398. width: 50px;
  399. height: 10px;
  400. position: absolute;
  401. background: #69a8f5;
  402. border-radius: 5px;
  403. top: 10px;
  404. left: 20px;
  405. }
  406. #userContent .lgfooter .check-button {
  407. position: absolute;
  408. height: 25px;
  409. width: 40px;
  410. background: #2b85f1;
  411. border-radius: 13px;
  412. line-height: 25px;
  413. top: 2px;
  414. left: 8px;
  415. }