userinfo.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. .warp_userinfo {
  2. overflow: auto;
  3. overflow-x: hidden;
  4. margin-bottom: 56px;
  5. }
  6. .left_tab {
  7. width: 149px;
  8. height: 521px;
  9. background: #F6F7F7;
  10. float: left;
  11. }
  12. .left_tab a {
  13. font-size: 14px;
  14. padding: 11px 33px;
  15. display: block;
  16. border-bottom: 2px solid #fff;
  17. }
  18. .left_tab a img {
  19. position: relative;
  20. width: 15px;
  21. top: -1px;
  22. margin-right: 2px;
  23. }
  24. .left_tab .active{
  25. color: #fff;
  26. background: #51a7ff;
  27. }
  28. .left_tab a:hover{
  29. color: #fff;
  30. background: #51a7ff;
  31. }
  32. .content_right{
  33. width: 1049px;
  34. min-height: 521px;
  35. margin-left: 2px;
  36. background: #F6F7F7;
  37. float: left;
  38. }
  39. /* 账号保存的样式 */
  40. .account_info {
  41. width: 300px;
  42. margin: auto;
  43. font-size: 14px;
  44. color: #494949;
  45. margin-top: 30px;
  46. line-height: 45px;
  47. }
  48. .account_info span {
  49. width: 70px;
  50. text-align: right;
  51. float: left;
  52. margin-right: 15px;
  53. }
  54. .account_info img {
  55. width: 83px;
  56. border-radius: 50%;
  57. }
  58. .account_info div div {
  59. float: left;
  60. width: 208px;
  61. line-height: normal;
  62. margin-top: 12px;
  63. }
  64. .account_info div{
  65. overflow: hidden;
  66. }
  67. .account_info a {
  68. display: block;
  69. width: 265px;
  70. height: 44px;
  71. background: #51a7ff;
  72. color: #fff;
  73. font-size: 16px;
  74. text-align: center;
  75. margin-top: 25px;
  76. margin: 26px auto;
  77. border-radius: 2px;
  78. }
  79. .edit_nav {
  80. margin: 10px;
  81. overflow: hidden;
  82. }
  83. .edit_nav a {
  84. height: 24px;
  85. display: block;
  86. width: max-content;
  87. float: left;
  88. margin-right: 27px;
  89. color: #B2B2B2;
  90. }
  91. .edit_nav .active {
  92. border-bottom: 2px solid #51a7ff;
  93. color: #494949;
  94. }
  95. .edit_image {
  96. width: 350px;
  97. margin: auto;
  98. font-size: 12px;
  99. color: #B2B2B2;
  100. margin-top: 107px;
  101. line-height: 31px;
  102. text-align: center;
  103. }
  104. .edit_image>img {
  105. width: 100px;
  106. border-radius: 50%;
  107. }
  108. .edit_image p{
  109. margin: 30px 0;
  110. }
  111. .edit_image input {
  112. width: 265px;
  113. height: 44px;
  114. background: #51a7ff;
  115. border: none;
  116. color: #fff;
  117. font-size: 16px;
  118. }
  119. /* 账号保存的样式 end*/
  120. .user_form{
  121. width: 350px;
  122. margin: auto;
  123. font-size: 14px;
  124. color: #494949;
  125. line-height: 31px;
  126. }
  127. .user_form span{
  128. display: block;
  129. width: 70px;
  130. text-align: right;
  131. float: left;
  132. margin-right: 5px;
  133. line-height: 27px;
  134. }
  135. .user_form input[type="text"],.user_form input[type="date"]{
  136. width: 255px;
  137. height: 31px;
  138. line-height: 31px;
  139. padding-left: 10px;
  140. border: 1px solid #EEEEEE;
  141. }
  142. .address {
  143. height: 92px;
  144. }
  145. .address_error {
  146. margin-top: -12px;
  147. }
  148. .user_form textarea {
  149. width: 261px;
  150. height: 70px;
  151. border: 1px solid #eee;
  152. }
  153. .user_form .save{
  154. font-size: 16px;
  155. width: 265px;
  156. height: 44px;
  157. color: #fff;
  158. background: #51a7ff;
  159. border: none;
  160. border-radius: 2px;
  161. margin-left: 75px;
  162. margin-top: 4px;
  163. cursor: pointer;
  164. }
  165. .user_form p {
  166. color: #FC5E5B;
  167. font-size: 12px;
  168. line-height: 28px;
  169. padding-left: 75px;
  170. display: none;
  171. }
  172. .qqnum ,.birthday,.postalcode,.nickname{
  173. height:59px;
  174. position: relative;
  175. }
  176. .nickname .tip{
  177. display: block;
  178. color: #a1a1a1;
  179. position: absolute;
  180. right: -231px;
  181. top: 2px;
  182. width: fit-content;
  183. }
  184. .sex {
  185. height: 40px;
  186. }
  187. label{
  188. line-height: 20px;
  189. display: inline-block;
  190. margin-left: 5px;
  191. margin-right:15px;
  192. color: #777;
  193. }
  194. .radio_type{
  195. width: 20px;
  196. height:20px;
  197. appearance: none;
  198. -webkit-appearance: none;
  199. position: relative;
  200. top: -2px;
  201. }
  202. .radio_type:before{
  203. content: '';
  204. width: 13px;
  205. height: 13px;
  206. border: 1px solid #D2D2D2;
  207. display: inline-block;
  208. border-radius: 50%;
  209. vertical-align: middle;
  210. }
  211. .radio_type:after{
  212. content: '';
  213. width: 7px;
  214. height: 7px;
  215. text-align: center;
  216. background:#D2D2D2;
  217. border-radius: 50%;
  218. display: block;
  219. position: absolute;
  220. top: 14px;
  221. left: 4px;
  222. }
  223. .radio_type:checked:before{
  224. content: '';
  225. width: 13px;
  226. height: 13px;
  227. border: 1px solid #51a7ff;
  228. display: inline-block;
  229. border-radius: 50%;
  230. vertical-align: middle;
  231. }
  232. .radio_type:checked:after{
  233. content: '';
  234. width: 7px;
  235. height:7px;
  236. text-align: center;
  237. background:#51a7ff;
  238. border-radius: 50%;
  239. display: block;
  240. position: absolute;
  241. top: 14px;
  242. left: 4px;
  243. }
  244. .radio_type:checked+label{
  245. color: #51a7ff;
  246. }
  247. .footer ul{
  248. color: #fff !important;
  249. background: #494949 !important;
  250. }
  251. .footer ul a{
  252. color: #fff;
  253. }
  254. .cutdown{
  255. background:#D2D2D2 ;
  256. }
  257. /* 消费记录 */
  258. .warp_recharg {
  259. width: 910px;
  260. margin: 25px auto;
  261. }
  262. .pay_info .warp_recharg{
  263. width: 1018px;
  264. }
  265. form.query_form {
  266. font-size: 12px;
  267. line-height: 32px;
  268. color: #494949;
  269. text-align: right;
  270. }
  271. .ordernum,.gamename{
  272. width: 149px;
  273. height: 28px;
  274. padding-left: 12px;
  275. border: 1px solid #eee;
  276. }
  277. .pay_info .ordernum,.pay_info .gamename{
  278. width: 96px;
  279. }
  280. .pay_info select{
  281. width: 96px;
  282. height: 30px;
  283. padding-left: 12px;
  284. border: 1px solid #eee;
  285. }
  286. #strattime,#endtime{
  287. width: 120px;
  288. height: 30px;
  289. border: 1px solid #eee;
  290. display: inline-block !important;
  291. }
  292. input.query {
  293. font-size: 14px;
  294. color: #fff;
  295. width: 99px;
  296. height: 31px;
  297. background: #51a7ff;
  298. border: none;
  299. border-radius: 2px;
  300. cursor: pointer;
  301. margin-left: 12px;
  302. }
  303. .query_form span {
  304. margin-left: 10px;
  305. }
  306. .query_form span:first-child {
  307. margin-left: 0px;
  308. }
  309. .query_form .line{margin: 0px;}
  310. .records_title {
  311. width: 100%;
  312. height: 32px;
  313. background: #f0f1f1;
  314. margin-top: 16px;
  315. color: #494949;
  316. font-size: 12px;
  317. font-weight: bold;
  318. }
  319. .records{
  320. width: 100%;
  321. background: #fff;
  322. color: #494949;
  323. font-size: 12px;
  324. overflow: auto;
  325. }
  326. .records_title span,.pay_records span{
  327. display: block;
  328. float: left;
  329. line-height: 32px;
  330. height: 32px;
  331. text-align: center;
  332. border: 1px solid #F6F7F7;
  333. margin-top: -1px;
  334. margin-left: -1px;
  335. overflow: hidden;
  336. text-overflow: ellipsis;
  337. white-space: nowrap;
  338. }
  339. .badge {
  340. border: none;
  341. width: 100%;
  342. }
  343. .pay_detail {
  344. display: none;
  345. background: #fff;
  346. font-size: 12px;
  347. line-height: 20px;
  348. padding: 5px 35px;
  349. color: #494949;
  350. border-bottom: 1px solid #F6F7F7;
  351. }
  352. .pay_detail b {
  353. padding-right: 5px;
  354. }
  355. .orderid,.time{
  356. width: 180.5px;
  357. }
  358. .orderid{
  359. position: relative;
  360. }
  361. .orderid b{
  362. width: 24px;
  363. font-size: 19px;
  364. position: absolute;
  365. left: 0;
  366. padding: 0 5px;
  367. cursor: pointer;
  368. color: #B2B2B2;
  369. }
  370. .game{width: 130px;}
  371. .mount,.pay,.coin{width: 130px;}
  372. /* 存号箱 */
  373. .giftbox{
  374. text-align: right;
  375. }
  376. .gift_name{width: 208px;position: relative;}
  377. .gift_cont{width: 240px;}
  378. .record_cont .gift_cont{width: 230px;}
  379. .gift_code{width: 142px;}
  380. .record_cont .gift_code{width: 132px;}
  381. .collect_time{width: 163px;}
  382. .record_cont .collect_time{width: 153px;}
  383. .operation{width: 151px;}
  384. .record_cont .operation{width: 141px;}
  385. .operation a {
  386. background: #51a7ff;
  387. color: #fff;
  388. padding: 4px 25px;
  389. border-radius: 2px;
  390. }
  391. .gift_name b {
  392. width: 24px;
  393. font-size: 19px;
  394. position: absolute;
  395. left: 0;
  396. padding: 0 5px;
  397. cursor: pointer;
  398. color: #B2B2B2;
  399. }
  400. .record_cont {
  401. overflow: auto;
  402. overflow-y: hidden;
  403. word-break: break-all;
  404. border-bottom: 1px solid #f6f7f7;
  405. }
  406. .gift_records p{
  407. line-height: 32px;
  408. border-bottom: 1px solid #F6F7F7;
  409. display: none;
  410. padding-left: 46px;
  411. }
  412. .record_cont div {
  413. display: block;
  414. float: left;
  415. padding-left: 0;
  416. margin-left: -1px;
  417. margin-top: -1px;
  418. text-align: center;
  419. line-height: normal;
  420. min-height: 14px;
  421. display: flex !important;
  422. align-items: center;
  423. justify-content: space-around;
  424. flex-direction: column;
  425. padding: 5px;
  426. border-left: 1px solid #f6f7f7;
  427. }
  428. .record_cont div span{
  429. line-height: 16px;
  430. display: inline-block;
  431. vertical-align: middle;
  432. }
  433. .gift_records .gift_name {
  434. /* text-align: left; */
  435. width: 164px !important;
  436. padding-left: 40px;
  437. padding-right: 5px;
  438. }
  439. .gift_box{
  440. height: auto !important;
  441. }
  442. .login_password {
  443. width: 523px;
  444. height: 142px;
  445. border-right: 1px solid #EEEEEE;
  446. border-bottom: 1px solid #EEEEEE;
  447. float: left;
  448. }
  449. .login_password:hover{
  450. background: #fff;
  451. }
  452. .zhaq_img {
  453. position: relative;
  454. width: 87px;
  455. margin: 26px 12px 0px 166px;
  456. float: left;
  457. }
  458. .zhaq_img .icon{
  459. position: absolute;
  460. left: 29px;
  461. top: 29px;
  462. width: 30px;
  463. }
  464. .zhaq_title {
  465. float: left;
  466. height: 87px;
  467. margin-top: 46px;
  468. display: table-cell;
  469. vertical-align: middle;
  470. }
  471. .zhaq_title h4 {
  472. font-size: 16px;
  473. line-height: 33px;
  474. }
  475. .zhaq_title a {
  476. font-size: 12px;
  477. color: #FF6600;
  478. border: 1px solid #FF6600;
  479. border-radius: 15px;
  480. padding: 1px 18px;
  481. }
  482. .zhaq_title a:hover {
  483. background: #ff6600;
  484. color: #fff;
  485. }
  486. .zhaq_title p{
  487. font-size: 12px;
  488. color: #B2B2B2;
  489. line-height: 22px;
  490. }
  491. .bind{
  492. margin-top: 40px !important;
  493. }
  494. .bind h4{
  495. line-height: 22px !important;
  496. }
  497. /* 修改密码 */
  498. .changepwd {
  499. width: 340px;
  500. margin: 150px auto;
  501. }
  502. .changepwd span {
  503. font-size: 14px;
  504. display: block;
  505. float: left;
  506. width: 70px;
  507. text-align: right;
  508. line-height: 32px;
  509. }
  510. .changepwd input {
  511. width: 252px;
  512. height: 28px;
  513. border: 1px solid #eee;
  514. padding-left: 12px;
  515. }
  516. .changepwd p{
  517. font-size: 12px;
  518. color:#FC5351;
  519. margin-left: 70px;
  520. line-height: 26px;
  521. display: none;
  522. }
  523. .changepwd div{height: 58px;}
  524. .changepwd a {
  525. font-size: 16px;
  526. color: #fff;
  527. padding: 7px 34px;
  528. background: #B5B5B5;
  529. border-radius: 2px;
  530. margin-left: 70px;
  531. }
  532. .changepwd .resetpwd{
  533. width: 100px;
  534. height: 36px;
  535. font-size: 16px;
  536. color: #fff;
  537. border: none;
  538. background: #ff9c00;
  539. border-radius: 2px;
  540. cursor: pointer;
  541. margin-left: 61px;
  542. padding: 0px;
  543. }
  544. /* 手机邮箱验证 */
  545. .verify_identity {
  546. width: 540px;
  547. color: #494949;
  548. margin: 155px auto;
  549. }
  550. .verify_identity p {
  551. font-size: 14px;
  552. margin-bottom: 26px;
  553. }
  554. .mail_verify, .phone_verify {
  555. width: 540px;
  556. height: 69px;
  557. border: 1px solid #EEEEEE;
  558. background: #fff;
  559. margin-top: 12px;
  560. }
  561. .mail_verify p, .phone_verify p {
  562. line-height: 69px;
  563. float: left;
  564. margin-left: 23px;
  565. margin-bottom: 0px;
  566. }
  567. .mail_verify a, .phone_verify a {
  568. font-size: 12px;
  569. color: #51a7ff;
  570. border: 1px solid #51a7ff;
  571. border-radius: 5px;
  572. padding: 7px 18px;
  573. float: right;
  574. margin: 18px;
  575. }
  576. .mail_verify a:hover, .phone_verify a:hover {
  577. color: #fff;
  578. background: #51a7ff;
  579. }
  580. .code_verify {
  581. width: 340px;
  582. margin: 140px auto;
  583. }
  584. .code_verify p{
  585. font-size: 14px;
  586. }
  587. .tipinfo {
  588. font-size: 12px;
  589. margin-bottom: 30px;
  590. }
  591. .send_code{
  592. margin-top: 30px;
  593. height: 73px;
  594. }
  595. .send_code span{
  596. font-size: 14px;
  597. line-height: 32px;
  598. }
  599. .getcode{
  600. width: 154px;
  601. height: 30px;
  602. border: 1px solid #eee;
  603. padding-left: 12px;
  604. }
  605. .sendcode {
  606. width: 85px;
  607. height: 32px;
  608. font-size: 12px;
  609. color: #fff;
  610. background: #51a7ff;
  611. border: none;
  612. border-radius: 2px;
  613. margin-left: 8px;
  614. cursor: pointer;
  615. }
  616. .send_code p {
  617. font-size: 12px;
  618. line-height: 40px;
  619. margin-left: 62px;
  620. color: #FC5351;
  621. display: none;
  622. }
  623. .nextstep,.confirm,.real_name .define {
  624. width: 265px;
  625. height: 44px;
  626. font-size: 16px;
  627. color: #fff;
  628. background: #ff9c00;
  629. border: none;
  630. border-radius: 2px;
  631. margin-left: 63px;
  632. cursor: pointer;
  633. }
  634. .code_verify a {
  635. font-size: 12px;
  636. color: #b2b2b2;
  637. padding-left: 64px;
  638. line-height: 40px;
  639. }
  640. /* 手机邮箱绑定 */
  641. .bindcode {
  642. width: 360px;
  643. margin: 140px auto;
  644. color: #494949;
  645. }
  646. .bindcode p:first-child {
  647. font-size: 12px;
  648. margin-bottom: 30px;
  649. }
  650. .input-img {
  651. width: 30px;
  652. height: 34px;
  653. background: #d2d2d2;
  654. position: absolute;
  655. }
  656. .input-img img {
  657. width: 16px;
  658. margin: 7px;
  659. }
  660. .bindphone,.bindmail{
  661. width: 227px;
  662. height: 32px;
  663. border: 1px solid #eee;
  664. padding-left: 37px;
  665. }
  666. .bind_code .getcode{
  667. padding-left: 42px;
  668. width: 124px;
  669. }
  670. .warp_input{height: 61px;position: relative;}
  671. .warp_input p{
  672. font-size: 12px;
  673. color: #FC5351;
  674. line-height: 28px;
  675. display: none;
  676. }
  677. .confirm{
  678. margin-left: 0px;
  679. }
  680. /* 实名认证 */
  681. .realname {
  682. width: 510px;
  683. margin: 120px auto;
  684. }
  685. .realname p:first-child {
  686. font-size: 14px;
  687. color: #494949;
  688. line-height: 32px;
  689. margin-bottom: 50px;
  690. }
  691. .realname span {
  692. font-size: 14px;
  693. color: #494949;
  694. display: block;
  695. float: left;
  696. line-height: 32px;
  697. }
  698. .realname span:first-child{
  699. width: 70px;
  700. text-align: right;
  701. }
  702. .real_name div input {
  703. width: 251px;
  704. height: 28px;
  705. padding-left: 12px;
  706. border: 1px solid #eee;
  707. }
  708. .real_name p {
  709. font-size: 12px;
  710. color: #FC5E5B;
  711. padding-left: 70px;
  712. line-height: 26px;
  713. display: none;
  714. }
  715. .real_name div{
  716. height: 58px;
  717. width: 340px;
  718. margin: auto;
  719. }
  720. .real_name .define{
  721. margin-left: 155px;
  722. display: block;
  723. text-align: center;
  724. line-height: 44px;
  725. }
  726. /* 关于我们等 */
  727. .info_tab a{
  728. padding: 0px;
  729. width: 149px;
  730. height: 43px;
  731. line-height: 43px;
  732. text-align: center;
  733. }
  734. .title {
  735. height: 43px;
  736. border-bottom: 1px solid #eee;
  737. }
  738. .title h1 {
  739. font-size: 16px;
  740. font-weight: bold;
  741. padding-left: 23px;
  742. line-height: 43px;
  743. float: left;
  744. }
  745. .language {
  746. float: right;
  747. line-height: 43px;
  748. font-size: 14px;
  749. padding-right: 26px;
  750. }
  751. .select {
  752. color: #FF8B02;
  753. }
  754. .chinese_cont,.english_cont {
  755. font-size: 14px;
  756. line-height: 28px;
  757. margin: 33px 28px 0px 25px;
  758. }
  759. .chinese_cont p,.english_cont p{
  760. text-indent:25px
  761. }
  762. .english_cont{display: none;}
  763. .warp_cont {
  764. margin: 26px 26px 15px 25px;
  765. }
  766. .tab_title{width: 180px;}
  767. .policy .content_right {
  768. height: auto;
  769. }
  770. .policy_cont{
  771. margin-bottom: 25px;
  772. }
  773. .policy_cont p{
  774. margin-top: 5px;
  775. font-size: 14px;
  776. line-height: 1.5;
  777. text-indent: 20px;
  778. }
  779. .policy_cont h4{
  780. color: orange;
  781. font-size: 16px;
  782. margin: 15px 0px;
  783. }
  784. .policy_cont h3{
  785. font-size: 18px;
  786. font-weight: 700;
  787. margin: 15px 0px;
  788. }
  789. .warp_cont3 {
  790. margin: 0px 26px 15px 25px;
  791. }
  792. .agreement {
  793. border: 1px solid #eee;
  794. padding: 0 16px 30px 16px;
  795. color: #494949;
  796. line-height: 20px;
  797. margin-bottom: 30px;
  798. }
  799. .agreement h1{
  800. width: 1200px;
  801. text-align: center;
  802. font-size: 24px;
  803. font-weight: bold;
  804. line-height: 60px;
  805. margin: 0 -16px;
  806. border-bottom: 1px solid #eee;
  807. }
  808. .agreement b{
  809. font-size: 16px;
  810. text-indent: 2em;
  811. margin-top: 20px;
  812. display: block;
  813. }
  814. .agreement p{
  815. font-size: 14px;
  816. text-indent:2em;
  817. line-height: 28px;
  818. }
  819. /* 分页 */
  820. .page {
  821. width: 100%;
  822. text-align: center;
  823. }
  824. .pagination {
  825. height: 33px;
  826. margin: auto;
  827. width: max-content;
  828. display:inline-block;
  829. *display:inline;
  830. *zoom:1;
  831. display: flex;
  832. }
  833. .pagination li {
  834. float: left;
  835. }
  836. .pagination li a,.pagination li span{
  837. font-size: 14px;
  838. padding: 6px 13px;
  839. color: #494949;
  840. border-radius: 4px;
  841. border: 1px solid #eee;
  842. margin: 0 5px;
  843. cursor: pointer;
  844. background-color: #fff;
  845. }
  846. .pagination li a:hover{
  847. color: #fff;
  848. background: #51a7ff;
  849. border: 1px solid #51a7ff;
  850. }
  851. .pagination .active span{
  852. color: #fff;
  853. background: #51a7ff;
  854. border: 1px solid #51a7ff;
  855. }
  856. .pagination .disabled span{
  857. color: #fff;
  858. background: #eee;
  859. }
  860. .pagination .disabled span:hover{
  861. color: #fff;
  862. background: #eee;
  863. }
  864. .rows {
  865. margin: 4px 0 ;
  866. color: #B2B2B2;
  867. font-size: 14px;
  868. text-align: center;
  869. }
  870. .layui-input, .layui-textarea {
  871. display: initial !important;
  872. }
  873. .layui-form-select dl dd.layui-this {
  874. background-color: #51a7ff !important;
  875. }
  876. input#date {
  877. width: 267px;
  878. height: 33px;
  879. }
  880. /* 我的游戏 */
  881. .mygame{
  882. position: relative;
  883. }
  884. .mygame .title {
  885. height: auto;
  886. overflow: hidden;
  887. border-bottom: none;
  888. }
  889. .mygame .tip {
  890. float: left;
  891. font-size: 16px;
  892. color: #494949;
  893. margin: 25px 0 25px 20px !important;
  894. }
  895. .mygame .tip>p {
  896. float: left;
  897. margin-right: 8px;
  898. padding-left: 7px;
  899. border-left: 3px solid #FF8D10;
  900. }
  901. .mygame .tip img {
  902. width: 17px;
  903. }
  904. .tip_pop {
  905. position: absolute;
  906. display: none;
  907. top: 3px;
  908. left: 125px;
  909. color: #fff;
  910. width: 295px;
  911. font-size: 12px;
  912. padding: 5px;
  913. line-height: 17px;
  914. border-radius: 10px;
  915. background: #000000ba;
  916. }
  917. .tip_pop span {
  918. color: #FF8D10;
  919. margin-right: 5px;
  920. }
  921. .tip_pop .left {
  922. position: absolute;
  923. left: -20px;
  924. top: 24px;
  925. width: 0;
  926. height: 0;
  927. border-top: 10px solid transparent;
  928. border-right: 10px solid #000000ba;
  929. border-bottom: 10px solid transparent;
  930. font-size: 0;
  931. line-height: 0;
  932. }
  933. .tip:hover .tip_pop{
  934. display: block;
  935. }
  936. .status{
  937. width: 96px;
  938. height: 30px;
  939. padding-left: 12px;
  940. border: 1px solid #eee;
  941. }
  942. .query_form.query_box {
  943. float: right;
  944. margin: 20px;
  945. }
  946. .mygame .list,.youlove .list{
  947. margin-left: 16px;
  948. width: auto;
  949. }
  950. .mygame .list li,.youlove .list li{
  951. width: 188px !important;
  952. }
  953. .game_state{
  954. font-size: 16px !important;
  955. color: #B2B2B2;
  956. margin-top: 16px;
  957. }
  958. .no_download {
  959. width: 118px;
  960. height: 36px;
  961. margin: auto;
  962. font-size: 16px;
  963. margin-top: 22px;
  964. cursor: pointer;
  965. background: #fff;
  966. padding-top: 0px !important;
  967. color: #B2B2B2 !important;
  968. line-height: 36px !important;
  969. border: 1px solid #B2B2B2;
  970. border-radius: 29px;
  971. }
  972. .warp_public_nav{
  973. border-bottom: none !important;}
  974. .youlove .tit{
  975. padding-left: 7px;
  976. border-left: 3px solid #FF8D10;
  977. margin: 20px;
  978. font-size: 16px;
  979. }