style1.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. body{
  2. font-family:"微软雅黑","Tahoma";
  3. height:100%;
  4. background: #f3f3f3;
  5. overflow-x: hidden;
  6. }
  7. ul, ol, li, h1 {
  8. line-height:normal;
  9. list-style-image:none;
  10. list-style-position:outside;
  11. list-style-type:none;
  12. }
  13. dl,ul {
  14. margin:0;
  15. padding:0;
  16. }
  17. dd {
  18. margin-left:0
  19. }
  20. a {
  21. outline:none;
  22. text-decoration: none;
  23. }
  24. a img {
  25. border:0 none
  26. }
  27. img {
  28. vertical-align:middle;
  29. border:0px
  30. }
  31. table {
  32. border-collapse:collapse
  33. }
  34. .fL {float:left}
  35. .fR {float:right}
  36. .clearfix:after {
  37. content:".";
  38. display:block;
  39. height:0;
  40. clear:both;
  41. visibility:hidden
  42. }
  43. .clearfix {
  44. display:inline-block;
  45. overflow:hidden
  46. }
  47. .clearfix {
  48. display:block
  49. }
  50. @font-face {
  51. font-family: 'iconMenu';
  52. src: url('fonts/iconMenu.eot?ambimp');
  53. src: url('fonts/iconMenu.eot?ambimp#iefix') format('embedded-opentype'),
  54. url('fonts/iconMenu.ttf?ambimp') format('truetype'),
  55. url('fonts/iconMenu.woff?ambimp') format('woff'),
  56. url('fonts/iconMenu.svg?ambimp#iconMenu') format('svg');
  57. font-weight: normal;
  58. font-style: normal;
  59. }
  60. [class^="icon-"], [class*=" icon-"] {
  61. /* use !important to prevent issues with browser extensions that change fonts */
  62. font-family: 'iconMenu' !important;
  63. speak: none;
  64. font-style: normal;
  65. font-weight: normal;
  66. font-variant: normal;
  67. text-transform: none;
  68. line-height: 1;
  69. /* Better Font Rendering =========== */
  70. -webkit-font-smoothing: antialiased;
  71. -moz-osx-font-smoothing: grayscale;
  72. }
  73. .topWrap{
  74. width:100%;
  75. height:80px;
  76. background:#fff;
  77. line-height: 75px;
  78. border-bottom: 2px solid #0aa770;
  79. }
  80. .width1000{
  81. width: 1000px;
  82. margin:0 auto;
  83. }
  84. .logo{
  85. margin:0 150px 0 0;
  86. width:250px;
  87. height:60px;
  88. }
  89. .logo h3{
  90. margin:0;
  91. padding:15px 0;
  92. }
  93. .topRight{
  94. position:relative;
  95. height:80px;
  96. color: #aaa;
  97. }
  98. .topRight span img{
  99. border-radius: 16px;
  100. }
  101. .topRight a{
  102. margin:0 5px;
  103. cursor: pointer;
  104. }
  105. .userOperations{
  106. position:absolute;
  107. top:78px;
  108. right:0;
  109. z-index: 999;
  110. background:#fff;
  111. border:1px solid #00925f;
  112. width:115px;
  113. display:none;
  114. }
  115. .userOperations li a{
  116. display:block;
  117. margin:0;
  118. padding:7px 10px;
  119. color:#333;
  120. }
  121. .userOperations li a:hover{
  122. background:#f0f0f0;
  123. text-decoration: none;
  124. color:#23527c;
  125. }
  126. .footerWrap{
  127. position:absolute;
  128. bottom:0;
  129. left:0;
  130. right:0;
  131. width:100%;
  132. background:#fff;
  133. border-top:1px solid #ddd;
  134. text-align: center;
  135. color:#999;
  136. }
  137. .footerInfo{
  138. height:50px;
  139. line-height: 50px;
  140. }
  141. .mainCon{
  142. margin:20px 0;
  143. }
  144. .mainWrap{
  145. margin:20px 0 70px 0;
  146. }
  147. .mainInfo{
  148. padding:20px;
  149. background:#fff;
  150. border:1px solid #ddd;
  151. }
  152. .mainImg{
  153. position:relative;
  154. width:1000px;
  155. height:500px;
  156. background:#f0f0f0;
  157. background:url(u27Bg.jpg) center center no-repeat;
  158. }
  159. .wrapBg{
  160. background: rgba(0,0,0,0.5);
  161. height:100%;
  162. }
  163. .wrapBgBlack{
  164. background: rgba(0,0,0,0.7);
  165. height:100%;
  166. }
  167. .classMain{
  168. position:absolute;
  169. top:30%;
  170. left:50%;
  171. /*margin-top:-95px;*/
  172. margin-left: -300px;
  173. width:600px;
  174. color:#fff;
  175. }
  176. .classTitle{
  177. font-size: 28px;
  178. }
  179. .classTitle a{
  180. color:#fff;
  181. }
  182. .classInfo{
  183. margin:10px 0;
  184. height:50px;
  185. line-height: 50px;
  186. }
  187. .classInfo span{
  188. margin:0 30px 0 0;
  189. }
  190. .btnWrap{
  191. position:absolute;
  192. top:60%;
  193. left:50%;
  194. margin-left: -110px;
  195. }
  196. .btnApply{
  197. padding:12px 60px;
  198. font-size: 24px;
  199. border-radius: 5px;
  200. }
  201. .btnBlue{
  202. position:relative;
  203. border:1px solid #00925f;
  204. background:#079e69;
  205. /*background:#428BCA;
  206. border:1px solid #307ec1;
  207. width:220px;
  208. height:60px;*/
  209. }
  210. .btnGreen{
  211. border:1px solid #00925f;
  212. background:#079e69;
  213. }
  214. .btnGreen:hover{
  215. border:1px solid #008858;
  216. background:#00925f;
  217. color:#fff;
  218. }
  219. /*.btnBlue:before,.btnBlue:after{
  220. content: " ";
  221. display: block;
  222. position: absolute;
  223. width:218px;
  224. height:60px;
  225. top: -1px;
  226. left: -1px;
  227. -webkit-box-shadow:0 0 10px 7px #307ec1;
  228. -moz-box-shadow:0 0 10px 7px #307ec1;
  229. box-shadow:0 0 10px 7px #307ec1;
  230. border-radius: 10px;
  231. z-index:10;
  232. box-sizing: border-box;
  233. -webkit-animation: clipAni 5s infinite linear;
  234. }
  235. .btnBlue:before{
  236. -webkit-animation-delay: -5s;
  237. }
  238. @keyframes clipAni{
  239. 0%,100%{
  240. opacity: 0;);
  241. }
  242. 25%{
  243. opacity:0.3;);
  244. }
  245. 50%{
  246. opacity:0;);
  247. }
  248. 75%{
  249. opacity:0.3;);
  250. }
  251. }*/
  252. .btnBlue:hover{
  253. border:1px solid #008858;
  254. background:#00925f;
  255. color:#fff;
  256. /*border:1px solid #307ec1;
  257. background:#4897dc;
  258. color:#fff;*/
  259. }
  260. .btnLogin{
  261. background:#1abc9c;
  262. }
  263. .btnLogin:hover{
  264. background:#17b092;
  265. border:1px solid #12a88a;
  266. }
  267. .mainLogin{
  268. margin:0 auto;
  269. width:350px;
  270. }
  271. .identity{
  272. background: #fff;
  273. border:1px solid #ddd;
  274. }
  275. .tips{
  276. padding:10px 20px;
  277. background:#fafafa;
  278. border-bottom: 1px solid #ddd;
  279. }
  280. .idFrom{
  281. padding:20px 10px;
  282. }
  283. .idFrom .form-horizontal{
  284. width:550px;
  285. }
  286. .shopdetail{
  287. position:relative;
  288. width:100%;
  289. border:1px solid #ddd;
  290. border-top: 2px solid #aaa;
  291. background:#fff;
  292. margin-top: 70px;
  293. }
  294. .borderBreen{
  295. position:absolute;
  296. width:400px;
  297. left:0;
  298. top:-2px;
  299. border-top: 2px solid #079e69;
  300. }
  301. .shopProcess{
  302. position:absolute;
  303. right:0;
  304. top:-55px;
  305. }
  306. .shopProcess li span{
  307. float:left;
  308. width:100%;
  309. height:36px;
  310. line-height: 36px;
  311. color:#999;
  312. }
  313. .shopProcess li span.number{
  314. font:bold 16px/38px "arial";
  315. }
  316. .shopProcess li span.text{
  317. font: normal "simsun";
  318. }
  319. .shopProcess .redHover .number{
  320. position:relative;
  321. width:36px;
  322. height:36px;
  323. background:#079e69;
  324. border:2px solid #079e69;
  325. color:#fff;
  326. }
  327. /*.shopProcess .redHover .number i{
  328. width:36px;
  329. height:36px;
  330. line-height: 36px;
  331. border:2px solid #079e69;
  332. background:#079e69;
  333. color:#fff;
  334. transform:rotate(-45deg);
  335. -ms-transform:rotate(-45deg);
  336. -moz-transform:rotate(-45deg);
  337. -webkit-transform:rotate(-45deg);
  338. -o-transform:rotate(-45deg);
  339. background: url(shop-big-bg.png) center -46px no-repeat;
  340. }*/
  341. /*#triangleRright {
  342. position:absolute;
  343. top:13px;
  344. left:92px;
  345. font-style: normal;
  346. font-size: 0;
  347. width: 0;
  348. height: 0;
  349. border-top: 5px solid transparent;
  350. border-left: 7px solid #f97825;
  351. border-bottom: 5px solid transparent;
  352. }*/
  353. .shopProcess .redHover .text{
  354. color:#079e69;
  355. }
  356. .shopProcess li{
  357. display:inline;
  358. float:left;
  359. width:150px;
  360. position:relative;
  361. }
  362. .shopProcess .number{
  363. width:36px;
  364. height:36px;
  365. text-align: center;
  366. line-height: 36px;
  367. border:2px solid #dcdcdc;
  368. background:#fff;
  369. transform:rotate(45deg);
  370. -ms-transform:rotate(45deg);
  371. -moz-transform:rotate(45deg);
  372. -webkit-transform:rotate(45deg);
  373. -o-transform:rotate(45deg);
  374. }
  375. .number i{
  376. font-style: normal;
  377. display:inline-block;
  378. transform:rotate(-45deg);
  379. -ms-transform:rotate(-45deg);
  380. -moz-transform:rotate(-45deg);
  381. -webkit-transform:rotate(-45deg);
  382. -o-transform:rotate(-45deg);
  383. /*background: url(shop-big-bg.png) center 0 no-repeat;*/
  384. }
  385. .shopProcess li span.lineRed{
  386. width: 114px;
  387. height: 2px;
  388. background: #079e69;
  389. position: absolute;
  390. right: 0;
  391. top: 53px;
  392. }
  393. .shopdetail h4{
  394. padding:20px;
  395. margin:0;
  396. }
  397. .shopdetailInfo{
  398. margin:0 20px 30px 20px;
  399. border:1px solid #f0f0f0;
  400. }
  401. .shopdetailInfo h4{
  402. font-size: 16px;
  403. padding:15px;
  404. background:#f0f0f0;
  405. border-bottom: 1px solid #f0f0f0;
  406. }
  407. .shopdetailInfo span{
  408. float:left;
  409. height:50px;
  410. line-height: 50px;
  411. width:33.3333%;
  412. padding:0 20px;
  413. }
  414. .detailShow{
  415. margin:0;
  416. color:#999;
  417. cursor:pointer;
  418. }
  419. .detailMode{
  420. border:1px solid #ddd;
  421. }
  422. .detailMain{
  423. padding:15px;
  424. }
  425. .detailWay{
  426. background:#f0f0f0;
  427. /*padding:10px;*/
  428. border-bottom: 1px solid #ddd;
  429. }
  430. .detailWay ul li{
  431. position:relative;
  432. float:left;
  433. width:33.3333%;
  434. background:#e6e6e6;
  435. }
  436. .detailWay div{
  437. min-height:55px;
  438. line-height: 55px;
  439. }
  440. .detailWayNum{
  441. padding:0 20px;
  442. font-size: 30px;
  443. background:#0aa770;
  444. color:#fff;
  445. }
  446. .triangleRight {
  447. position:absolute;
  448. top:16px;
  449. left:57px;
  450. width: 0;
  451. height: 0;
  452. border-top: 12px solid transparent;
  453. border-left: 10px solid #0aa770;
  454. border-bottom: 12px solid transparent;
  455. }
  456. .detailWayInfo{
  457. padding:0 25px;
  458. font-size: 20px;
  459. background:#e6e6e6;
  460. color:#FF6600;
  461. }
  462. .detailWayCode{
  463. font-size: 60px;
  464. color:#fff;
  465. }
  466. /*.detailWay span{
  467. margin:0 3px;
  468. color:#FF6600;
  469. }*/
  470. .zhifubao{
  471. padding:5px 0;
  472. }
  473. .detailR{
  474. margin-right: 20px;
  475. }
  476. .price-orange{
  477. font-size: 24px;
  478. color:#FF6600;
  479. }
  480. .payBtn{
  481. margin:20px 0;
  482. }
  483. .detailBody{
  484. width:100%;
  485. text-align: center;
  486. }
  487. .detailBody h5{
  488. margin:0 25px;
  489. text-align: left;
  490. }
  491. .modaBtnGroup{
  492. margin:20px 0;
  493. width:100%;
  494. text-align: center;
  495. }
  496. .classInfoR{
  497. position:relative;
  498. margin:0 0 0 480px;
  499. }
  500. .classInfoR p{
  501. margin:15px 0;
  502. }
  503. .classInfoR span{
  504. margin-right: 60px;
  505. }
  506. .btnClassApply{
  507. position:absolute;
  508. top:174px;
  509. left:0;
  510. }
  511. .classInfoBttom{
  512. margin:20px 0 0 0;
  513. }
  514. .tab-content{
  515. margin:20px 0;
  516. }
  517. .classList h4{
  518. background:#f3f3f3;
  519. height:50px;
  520. line-height: 50px;
  521. margin:15px 0;
  522. font-size: 14px;
  523. font-weight: bold;
  524. }
  525. .classList h4 span{
  526. min-width: 72px;
  527. text-align: center;
  528. padding:0 15px;
  529. background:#666;
  530. color:#fff;
  531. margin:0 5px 0 0;
  532. display:inline-block;
  533. }
  534. .classSection{
  535. margin-bottom: 15px;
  536. background:#f6f6f6;
  537. }
  538. .classSection dt{
  539. font-weight: 500;
  540. padding:10px 15px 5px 15px;
  541. }
  542. .classSection dd .classVideo{
  543. position:relative;
  544. height:35px;
  545. line-height: 35px;
  546. text-indent: 15px;
  547. }
  548. .classSection dd a{
  549. display:block;
  550. }
  551. .classSection dd a:hover{
  552. background:#d7eed0;
  553. text-decoration: none;
  554. }
  555. .classTime{
  556. margin:0 25px 0 0;
  557. color:#999;
  558. }
  559. .videoPrice{
  560. position:absolute;
  561. top:0;
  562. left:500px;
  563. color:#FF6633;
  564. }
  565. .btnClassGroupShow{
  566. position:absolute;
  567. top:-2px;
  568. right:15px;
  569. }
  570. .btnClassGroup{
  571. position:absolute;
  572. top:-2px;
  573. right:15px;
  574. display:none;
  575. }
  576. .btnClass{
  577. height:35px;
  578. line-height: 32px;
  579. padding:0 20px;
  580. /*border:1px solid #eee;
  581. border-radius: 3px;*/
  582. }
  583. .videoImg{
  584. position:relative;
  585. width:960px;
  586. height:500px;
  587. background:#000;
  588. }
  589. .videoCon{
  590. width:960px;
  591. height:500px;
  592. background:#000;
  593. }
  594. .videoShadow{
  595. position:absolute;
  596. top:0;
  597. left:0;
  598. width:100%;
  599. height:100%;
  600. background:#000;
  601. }
  602. .videoShCon{
  603. position:absolute;
  604. width:530px;
  605. top:50%;
  606. left:50%;
  607. margin-left: -265px;
  608. margin-top: -125px;
  609. color:#fff;
  610. }
  611. .videoShCon h3 span{
  612. margin-right: 5px;
  613. color:#f00;
  614. }
  615. .videoShCon h3 .videoFinished{
  616. margin:0 10px;
  617. padding:5px;
  618. border-radius: 18px;
  619. border:2px solid #0aa770;
  620. color:#0aa770;
  621. }
  622. .videoShCon p{
  623. margin:15px 0;
  624. font-size: 16px;
  625. color:#666;
  626. }
  627. .btnShWrap{
  628. margin:30px 0;
  629. width:100%;
  630. text-align: center;
  631. }
  632. .btnShWrap .btn{
  633. margin:0 20px;
  634. }
  635. .classConVLeft{
  636. width:750px;
  637. }
  638. .classConVRight{
  639. margin:0 0 0 780px;
  640. }
  641. .classConVRight .progress{
  642. margin-top: 20px;
  643. height:26px;
  644. }
  645. .classConVRight .progress .progress-bar{
  646. line-height: 26px;
  647. }
  648. .classConLeft span{
  649. margin-right: 60px;
  650. }
  651. .classConLeftInfo span{
  652. color:#666;
  653. }
  654. .classConVRight .classConLeftInfo span{
  655. font-weight: bold;
  656. color:#0aa770;
  657. }
  658. .spl{
  659. margin:0 30px;
  660. font-style: normal;
  661. color:#bbb;
  662. }
  663. .classCVideo{
  664. margin:20px 0;
  665. }
  666. .profileTitle{
  667. background:#ddd;
  668. padding:10px;
  669. }
  670. .leftMenu{
  671. float:left;
  672. width:180px;
  673. background:#fff;
  674. border:1px solid #ddd;
  675. }
  676. .leftMenu li{
  677. border-bottom:1px solid #ddd;
  678. }
  679. .leftMenu li a{
  680. display:block;
  681. padding:0 15px;
  682. color:#333;
  683. height:45px;
  684. line-height: 45px;
  685. }
  686. .leftMenu li:last-child{
  687. border-bottom: none;
  688. }
  689. .leftMenu li:hover{
  690. background:#f7f7f7;
  691. }
  692. .leftMenu li a:hover{
  693. text-decoration: none;
  694. }
  695. .leftMenu li .active{
  696. background:#0aa770;
  697. color:#fff;
  698. }
  699. .rightMain{
  700. background:#fff;
  701. margin:0 0 0 200px;
  702. border:1px solid #ddd;
  703. }
  704. .userTitle{
  705. height:45px;
  706. border-bottom: 1px solid #ddd;
  707. }
  708. .userTitle h5{
  709. font-size: 16px;
  710. font-weight: bold;
  711. padding:0 15px;
  712. margin:0;
  713. line-height: 45px;
  714. }
  715. .userClass ul li{
  716. padding:25px;
  717. border-bottom: 1px solid #f0f0f0;
  718. }
  719. .userClass ul li:last-child{
  720. border-bottom: none;
  721. }
  722. .userClass ul li .progressNot{
  723. margin-bottom: 0;
  724. }
  725. .classInfoCon{
  726. position:relative;
  727. margin:0 0 0 200px;
  728. }
  729. .btnPlay{
  730. position:absolute;
  731. top:35px;
  732. right:0;
  733. }
  734. .classPro{
  735. margin:23px 0 0 0;
  736. font-size: 12px;
  737. }
  738. .orderList ul li{
  739. margin:25px;
  740. border:1px solid #f0f0f0;
  741. }
  742. .orderList .attBarList{
  743. padding:15px;
  744. font-size: 16px;
  745. background:#f0f0f0;
  746. border-bottom: 1px solid #f0f0f0;
  747. }
  748. .orderList .subOrder{
  749. padding:15px;
  750. }
  751. .orderList .subOrder span{
  752. float:left;
  753. width:30%;
  754. }
  755. .orderList .subOrder span:last-child{
  756. width:10%;
  757. }
  758. .bodyBg{
  759. position:fixed;
  760. top:0;
  761. bottom:0;
  762. left:0;
  763. right:0;
  764. width:100%;
  765. height:100%;
  766. background: rgba(0,0,0,0.5);
  767. z-index: 1040;
  768. }
  769. #videoTips{
  770. position:absolute;
  771. top:40%;
  772. left:50%;
  773. margin-left: -300px;
  774. margin-top: -125px;
  775. min-height:250px;
  776. z-index: 9999;
  777. }
  778. .warning ul li{
  779. padding:5px 0;
  780. }
  781. .modal-content .bg-warning{
  782. border-radius: 6px 6px 0 0;
  783. }