| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607 |
- @charset "UTF-8";
- html {
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- text-rendering: optimizelegibility;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- word-break: break-all; }
- body {
- min-width: 1200px;
- color: #333;
- font: 14px/1.5 'Microsoft YaHei', 'Hiragino Sans GB', Helvetica, Arial, 'Lucida Grande', sans-serif; }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none; }
- input[type='number'] {
- -moz-appearance: textfield; }
- input:-webkit-autofill,
- textarea:-webkit-autofill,
- select:-webkit-autofill {
- background-color: transparent; }
- ::-ms-clear,
- ::-ms-reveal {
- display: none; }
- *,
- *:before,
- *:after {
- -webkit-box-sizing: inherit;
- box-sizing: inherit; }
- /* 内外边距通常让各个浏览器样式的表现位置不同 */
- body,
- dl,
- dd,
- ul,
- ol,
- h1,
- h2,
- h3,
- h4,
- h5,
- input,
- textarea,
- p,
- button,
- td {
- margin: 0;
- padding: 0; }
- /* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- menu,
- nav,
- section {
- display: block; }
- /* 要注意表单元素并不继承父级 font 的问题 */
- body,
- button,
- input,
- select,
- textarea {
- font: 400 14px/1.5 'Microsoft YaHei', '微软雅黑', Arial, sans-serif; }
- /* 去掉各Table cell 的边距并让其边重合 */
- table {
- border-collapse: collapse;
- border-spacing: 0; }
- /* 去除默认边框 */
- img {
- border: 0;
- vertical-align: top;
- max-height: 100%;
- max-width: 100%; }
- /* 一致的 del 样式 */
- del {
- text-decoration: line-through; }
- a {
- color: #333;
- text-decoration: none;
- -webkit-transition: color 0.2s ease;
- transition: color 0.2s ease;
- outline: 0;
- cursor: pointer; }
- strong,
- b {
- font-weight: bold;
- color: #000; }
- em,
- i {
- font-style: normal;
- font-weight: 400; }
- /* 去掉列表前的标识, li 会继承,大部分网站通常用列表来很多内容,所以应该当去 */
- ul,
- ol {
- list-style: none; }
- button {
- border: none;
- outline: none;
- cursor: pointer; }
- input,
- textarea {
- outline: none; }
- textarea {
- resize: none; }
- .clearfix:before,
- .clearfix:after {
- content: '';
- display: table; }
- .clearfix:after {
- clear: both; }
- .clearfix {
- zoom: 1; }
- /* 强制文本换行 */
- .textwrap,
- .textwrap td,
- .textwrap th {
- word-wrap: break-word;
- word-break: break-all; }
- .textwrap-table {
- table-layout: fixed; }
- h1,
- h2,
- h3,
- h4,
- h5 {
- font-weight: normal; }
- :-webkit-autofill {
- -webkit-text-fill-color: #333 !important;
- -webkit-transition: background-color 5000s ease-in-out 0s;
- transition: background-color 5000s ease-in-out 0s; }
- .animated {
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both; }
- .animated.infinite {
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite; }
- .animated.hinge {
- -webkit-animation-duration: 2s;
- animation-duration: 2s; }
- .wow {
- visibility: hidden; }
- @-webkit-keyframes upbit {
- from {
- -webkit-transform: translate3d(0, 30px, 0);
- transform: translate3d(0, 30px, 0);
- opacity: .3; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1; } }
- @keyframes upbit {
- from {
- -webkit-transform: translate3d(0, 30px, 0);
- transform: translate3d(0, 30px, 0);
- opacity: .3; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1; } }
- @-webkit-keyframes slideInLeft {
- from {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- @keyframes slideInLeft {
- from {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- .slideInLeft {
- -webkit-animation-name: slideInLeft;
- animation-name: slideInLeft; }
- @-webkit-keyframes slideInRight {
- from {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- @keyframes slideInRight {
- from {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- .slideInRight {
- -webkit-animation-name: slideInRight;
- animation-name: slideInRight; }
- @-webkit-keyframes fadeIn {
- from {
- opacity: 0; }
- to {
- opacity: 1; } }
- @keyframes fadeIn {
- from {
- opacity: 0; }
- to {
- opacity: 1; } }
- .fadeIn {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn; }
- @-webkit-keyframes zoomIn {
- from {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3); }
- 50% {
- opacity: 1; } }
- @keyframes zoomIn {
- from {
- opacity: 0;
- -webkit-transform: scale3d(0.3, 0.3, 0.3);
- transform: scale3d(0.3, 0.3, 0.3); }
- 50% {
- opacity: 1; } }
- .zoomIn {
- -webkit-animation-name: zoomIn;
- animation-name: zoomIn; }
- @-webkit-keyframes slideInUp {
- from {
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- @keyframes slideInUp {
- from {
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- visibility: visible; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0); } }
- .slideInUp {
- -webkit-animation-name: slideInUp;
- animation-name: slideInUp; }
- @-webkit-keyframes slideInDown {
- from {
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- visibility: visible;
- opacity: 0; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1; } }
- @keyframes slideInDown {
- from {
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- visibility: visible;
- opacity: 0; }
- to {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1; } }
- .slideInDown {
- -webkit-animation-name: slideInDown;
- animation-name: slideInDown; }
- .clearfix:after, .clearfix:before {
- content: '';
- display: table; }
- .clearfix:after {
- clear: both; }
- i.error:before, .index-banner .owl-prev,
- .index-banner .owl-next, .breadcrumb li:before {
- font-family: 'iconfont' !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale; }
- .index-start .btn-reg, .coop-form .form-box, .help-money .tab-contents .btn, .about-knowus-mission li:before, .pro-con .more, .download-link .list {
- display: block;
- margin-left: auto;
- margin-right: auto; }
- .ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- a, .index-why .img, .analysis-nav li a, .analysis-list .list-item a, .activity-list .list-item a {
- transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -o-transition: all 0.2s ease-out; }
- .icon {
- font-size: inherit; }
- .container {
- width: 1250px;
- margin-left: auto;
- margin-right: auto; }
- /* header */
- .header {
- background-color: #fff; }
- .header-top {
- height: 32px;
- color: #767676;
- font-size: 12px;
- line-height: 32px;
- background-color: #2b2b2b;
- overflow: hidden; }
- .header-top .sup a {
- color: #727272;
- margin: 0;
- padding: 0 8px; }
- .header-top a {
- color: #FFF;
- margin-left: 11px; }
- .header-top a:hover {
- text-decoration: underline; }
- .header-top a .icon {
- font-size: 18px; }
- .header-right {
- float: right;
- margin-right:10px;
- }
- .header-main {
- height: 96px; }
- .header-main h1 {
- padding-top: 5px;
- display: inline-block; }
- .header-main h1 a,
- .header-main h1 img {
- display: inline-block; }
- .header-nav {
- float: right;
- margin-top: 55px;
- line-height: 1;
- font-size: 14px; }
- .header-nav > li {
- float: left;
- position: relative;
- height: 40px; }
- .header-nav > li:last-child a {
- padding-right: 0; }
- .header-nav > li > a {
- color: #222;
- padding: 0 34px; }
- .header-nav > li.active > a {
- color: #d8192b; }
- .header-nav > li .subnav {
- display: none;
- padding-top: 34px;
- position: absolute;
- width: 158px;
- top: 30px;
- left: 50%;
- margin-left: -79px;
- z-index: 99999; }
- .header-nav > li ul {
- font-size: 14px;
- padding: 5px;
- background-color: #454545;
- border-radius: 8px;
- text-align: center; }
- .header-nav > li ul:before {
- content: '';
- width: 0;
- height: 0;
- position: absolute;
- top: 24px;
- left: 50%;
- margin-left: -10px;
- border-width: 0 10px 10px 10px;
- border-style: solid solid solid solid;
- border-color: transparent transparent #454545 transparent; }
- .header-nav > li ul a {
- color: #FFF;
- padding: 15px 0 12px 0;
- display: block;
- margin: 0; }
- .header-nav > li ul a:hover {
- background-color: #d8192b;
- color: #FFF;
- border-radius: 2px; }
- .header-btns {
- display: none; }
- .header-fixed {
- width: 100%; }
- .header-fixed .content {
- padding-top: 76px; }
- .header-fixed .header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 9999;
- -webkit-transition: all 0.4s;
- transition: all 0.4s; }
- .header-fixed .header-btns {
- display: block;
- float: right;
- margin-top: 23px;
- margin-left: 58px;
- font-size: 0; }
- .header-fixed .header-btns a {
- display: inline-block;
- padding: 4px 10px;
- text-align: center;
- font-size: 16px;
- border-radius: 4px;
- margin-left: 10px;
- border: solid 1px #d8192b;
- color: #d8192b; }
- .header-fixed .header-btns .btn-border:hover {
- color: #FFF;
- background-color: #d8192b; }
- .header-fixed .header-btns .btn-bg {
- color: #FFF;
- background-color: #d8192b; }
- .header-fixed .header-btns .btn-bg:hover {
- opacity: .9; }
- /* end header */
- /* footer */
- .footer {
- background-color: #2b2b2b; }
- .footer-top {
- padding: 39px 0 0px; }
- .footer-nav dl {
- float: left;
- width: 235px;
- min-height: 200px;
- padding-left: 20px;
- margin-right: 2;}
- .footer-nav dl:last-child {
- margin-right: 0; }
- .footer-nav dt {
- font-size: 16px;
- line-height: 36px;
- color: #fff; }
- .footer-nav dd {
- color: #565656;
- font-size: 12px;
- line-height: 30px; }
- .footer-nav dd a {
- color: #565656; }
- .footer-nav dd a:hover {
- text-decoration: underline; }
- .footer-nav .footer-sup {
- width: 219px; }
- .footer-nav .footer-contact {
- width: 267px; }
- .footer-nav .detail {
- color: #FFF;
- margin-left: 12px; }
- .footer-nav .detail-img {
- margin-left: 12px;
- display: inline-block;
- padding-top: 8px;
- line-height: 1; }
- .footer-bottom {
- padding: 0px 0 30px;
- text-align: center;}
- .footer-bottom .copyright {
- line-height: 36px;
- color: #999999; }
- .footer-bottom .copyright .bq {
- margin-left: 10px; }
- .footer-bottom .copyright a {
- color: #999999; }
- .footer-bottom .copyright a:hover {
- text-decoration: underline; }
- .footer-bottom .copyright a.link {
- margin-left: 12px; }
- .footer-bottom .warning {
- line-height: 24px;
- font-size: 12px;
- color: #666666;
- text-align: left;
- }
- /* end footer */
- /* 浮框按钮 */
- .sideNav {
- position: fixed;
- right: 0;
- top: 50%;
- margin-top: -145px;
- z-index: 9999; }
- .sideNav .close {
- margin-bottom: -8px;
- margin-left: -8px;
- position: relative;
- z-index: 9;
- cursor: pointer;
- width: 16px;
- height: 16px;
- border-radius: 15px;
- background: #d8192b;
- color: #FFF;
- text-align: center;
- line-height: 15px; }
- .sideNav .close:hover {
- background: #1b6499; }
- .sideNav ul {
- border: solid 1px #d8192b;
- background-color: #FFF;
- border-radius: 4px; }
- .sideNav li {
- text-align: center; }
- .sideNav li:first-child a {
- border: none; }
- .sideNav .icon {
- display: block;
- width: 40px;
- height: 35px;
- margin: 0 auto 3px auto;
- font-size: 30px; }
- .sideNav a {
- display: inline-block;
- width: 73px;
- height: 70px;
- padding-top: 5px;
- color: #d8192b;
- border-top: solid 1px #d8192b; }
- .sideNav a:hover {
- text-decoration: none;
- background-color: #d8192b;
- color: #FFF; }
- .sideNavCover {
- position: relative; }
- .sideNavCover > a {
- position: relative;
- z-index: 9; }
- .sideNavCover .btn {
- position: absolute;
- top: 0;
- right: 0;
- width: 156px;
- padding-top: 2px;
- margin-right: -170px;
- font-size: 0;
- border-top-left-radius: 8px;
- border-bottom-left-radius: 8px; }
- .sideNavCover .btn a {
- width: 68px;
- height: 68px;
- background-color: #FFF;
- font-size: 12px;
- color: #d8192b;
- border-radius: 0;
- border: 1px solid #d8192b;
- margin-left: 5px;
- border-radius: 4px; }
- .sideNavCover .btn a:hover {
- color: #FFF;
- background-color: #d8192b; }
- .sideNavCover.active > a {
- color: #FFF;
- background-color: #d8192b;
- border-radius: 0; }
- .sideNavCover.active > a:before {
- display: block; }
- .sideNavCover .btn .ico-true {
- background: url(../images/ico-sideTrue.png) no-repeat center center; }
- .sideNavCover .btn a:first-child:hover .ico-true {
- background-image: url(../images/ico-sideTrue-h.png); }
- .sideNavCover .btn .ico-demo {
- background: url(../images/ico-sideDemo.png) no-repeat center center; }
- .sideNavCover .btn a:hover .ico-demo {
- background-image: url(../images/ico-sideDemo-h.png); }
- /* 表单错误信息 */
- i.error {
- width: 220px;
- position: absolute;
- color: red;
- top: 42px;
- left: 0;
- z-index: 3;
- font-size: 12px; }
- i.error:before {
- content: "\e75d";
- color: red;
- vertical-align: middle;
- display: inline-block;
- margin-top: -1px;
- margin-right: 5px; }
- i.error.success:before {
- content: "\e622";
- color: green; }
- input[type="text"].error,
- input[type="password"].error,
- select.error {
- border-color: #f9aeae; }
- /* banner */
- .index-banner {
- position: relative; }
- .index-banner .owl-theme .owl-nav {
- display: none;
- margin-top: 0 !important; }
- .index-banner .owl-theme .owl-dots {
- position: absolute;
- bottom: 49px;
- text-align: center;
- width: 100%; }
- .index-banner .owl-theme .owl-dots .owl-dot.active span {
- background: #fff;
- background: transparent;
- border: 2px solid #d8192b;
- }
- .index-banner .owl-theme .owl-dots .owl-dot span {
- display: inline-block;
- margin: 5px 8px 5px 0;
- border: 2px solid #fff;
- width: 15px;
- height: 15px;
- border-radius: 0;
- -webkit-transition: width 0.1s ease-in 0s;
- transition: width 0.1s ease-in 0s;
- -webkit-transform-origin: 50% 0 0;
- -ms-transform-origin: 50% 0 0;
- transform-origin: 50% 0 0;
- cursor: pointer; }
- .index-banner .owl-prev,
- .index-banner .owl-next {
- position: absolute;
- top: 50%;
- font-size: 0;
- width: 30px;
- height: 80px;
- line-height: 80px;
- font-size: 0 !important;
- margin-top: -40px !important;
- background-color: transparent !important;
- color: #FFF;
- opacity: .5; }
- .index-banner .owl-prev:hover,
- .index-banner .owl-next:hover {
- opacity: .8; }
- .index-banner .owl-prev {
- left: 220px; }
- .index-banner .owl-prev:before {
- font-size: 44px;
- content: "\e624"; }
- .index-banner .owl-next {
- right: 240px; }
- .index-banner .owl-next:before {
- font-size: 44px;
- content: "\e621"; }
- .index-notice {
- width: 100%;
- position: absolute;
- z-index: 9;
- bottom: -1px;
- height: 45px;
- line-height: 45px;
- background-color: #FFF;
- opacity: 0.7;
- color: #555;
- overflow: hidden; }
- .index-notice .more {
- float: right;
- font-size: 12px;
- font-family: "Arial";
- color: #555; }
- .index-notice .more:hover {
- color: #d8192b;
- text-decoration: underline; }
- .index-notice .inner {
- position: relative;
- padding-left: 78px; }
- .index-notice .tit {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- width: 78px;
- height: 45px;
- background: url(../images/index-notice.png) no-repeat left center; }
- .index-notice ul {
- position: absolute; }
- .index-notice li:before {
- content: '';
- display: inline-block;
- width: 4px;
- height: 4px;
- border-radius: 4px;
- margin-right: 4px;
- vertical-align: middle;
- background-color: #e0212d; }
- .index-data {
- -webkit-box-shadow: -1px 1px 2px 1px #e9e7e7;
- box-shadow: -1px 1px 2px 1px #e9e7e7; }
- .index-data ul {
- height: 81px;
- overflow: hidden; }
- .index-data li {
- line-height: 97px;
- float: left;
- color: #666;
- margin-right: 115px; }
- .index-data li:last-child {
- margin-right: 0; }
- .index-data em {
- display: inline-block;
- vertical-align: top;
- font-size: 42px;
- color: #333;
- height: 120px;
- line-height: 80px;
- margin-right: 10px; }
- .index-open {
- position: absolute;
- left: 350px;
- top: 430px;
- z-index: 1000;
- }
- .index-open a {
- display: inline-block;
- width: 300px;
- height: 45px;
- line-height: 45px;
- border-radius: 4px;
- font-size: 18px;
- text-align: center;
- color: #FFF;
- background-color: #2b2b2b;
- border-color: #2b2b2b; }
- .index-open a:focus, .index-open a.focus {
- color: #FFF;
- background-color: #d8192b;
- border-color: #d8192b; }
- .index-open a:hover {
- color: #FFF;
- background-color: #d8192b;
- border-color: #d8192b; }
- .index-open a:hover {
- opacity: .9; }
- .index-open a:last-child {
- margin-left: 0px;
- background-color: #d8192b;
- border: none; }
- .index-open a:last-child:hover {
- background-color: #ff5762; }
- .index-tit {
- height: 42px;
- font-size: 36px;
- line-height: 1;
- letter-spacing: 4px;
- color: #333333;
- text-align: center; }
- .index-tips {
- font-size: 16px;
- line-height: 36px;
- color: #999999;
- text-align: center;
- margin-top: 10px; }
- .index-product {
- padding-top: 50px;
- }
- .index-product .list {
- padding-top: 30px;}
- .index-product .list a {
- display: block;
- float: left;
- overflow: hidden; }
- .index-product .list a:first-child {
- margin-left: 0; }
- .index-product .list-one a:first-child {
- margin: 0px 30px 0px 0; }
- .index-product .list a img {
- -webkit-transition: all .5s ease;
- transition: all .5s ease; }
- .index-product .list a:hover img {
- -webkit-transform: scale(1.1);
- -ms-transform: scale(1.1);
- transform: scale(1.1); }
- .index-product .list .img {
- background-color: #eee;
- float: left;
- }
- .index-product .list .img:hover {
- opacity: .9; }
- .index-product .list .img p {
- line-height: 46px;
- text-align: center; }
- .index-product .list .txt {
- line-height: 30px;
- float: left;
- color: #666;
- padding: 10px 60px 0 34px;
- }
- .index-product .list .txt p:before {
- content: '·';
- margin-right: 15px;
- color: #666; }
- .index-product .list .txt p:hover {
- color: #d8192b; }
- .index-product .list .txt p:hover:before {
- color: #d8192b; }
- .index-info {
- height: 541px;
- padding: 50px 0 80px 0;
- margin-top: 58px;
- background-color: #f7f7f7; }
- .index-info .tit {
- color: #000;
- font-size: 18px; }
- .index-info .tit .icon {
- margin-right: 8px;
- font-size: 26px; }
- .index-info .tit .more {
- font-size: 12px;
- line-height: 28px;
- color: #999;
- float: right; }
- .index-info .tit .more:hover {
- color: #d8192b; }
- /* 市场行情 */
- .index-info-price {
- float: left;
- width: 578px; }
- .index-info-price table {
- width: 100%; }
- .index-info-price tbody tr:nth-child(odd) {
- background-color: #fafafa; }
- .index-info-price th {
- font-size: 14px;
- line-height: 36px;
- color: #555;
- padding: 10px 0 5px 0; }
- .index-info-price th:last-child {
- padding-right: 30px; }
- .index-info-price td {
- color: #333;
- padding: 3px 0 6px 0;
- text-align: center; }
- .index-info-price td:first-child:hover {
- color: #d8192b;
- cursor: pointer; }
- .index-info-price td span {
- display: inline-block;
- min-width: 100px;
- height: 31px;
- line-height: 31px;
- background-color: #f97371;
- border-radius: 2px;
- color: #FFF;
- text-align: center; }
- .index-info-price td .bg-red {
- background-color: #f94b56; }
- .index-info-price td .bg-red:hover {
- background-color: #ed6c6a; }
- .index-info-price td .bg-green {
- background-color: #2ea437; }
- .index-info-price td .bg-green:hover {
- background-color: #36b445; }
- .index-info-price th:first-child,
- .index-info-price td:first-child {
- text-align: left; }
- .index-info-price th:last-child,
- .index-info-price td:last-child {
- text-align: right; }
-
- .index-info-notice ul {
- padding: 10px 15px 0px 0;
- min-height: 400px
- }
- .index-info-notice li {
- line-height: 38px;
- }
- .index-info-notice li:before {
- content: '·';
- font-size: 45px;
- line-height: 32px;
- margin-right: 13px;
- vertical-align: top;
- color: #d8192b;
- }
- /* 汇评分析 */
- .index-analysis {
- float: right;
- width: 567px; }
- .index-analysis .list {
- margin-top: 10px; }
- .index-analysis a {
- display: block;
- height: 100px; }
- .index-analysis .tit {
- position: relative;
- }
- .index-analysis .tit .more {
- position: absolute;
- right: 0;
- top: 0;
- height: 24px;
- float: right;
- line-height: 24px;
- }
- .index-analysis .list-item {
- margin-top: 20px; }
- .index-analysis .list-item img {
- float: left;
- margin-right: 33px; }
- .index-analysis .list-item img:hover {
- opacity: .9; }
- .index-analysis .list-item h4 {
- line-height: 36px;
- color: #333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .index-analysis .list-item h4:hover {
- color: #d8192b;
- text-decoration: underline; }
- .index-analysis .list-item .date {
- font-size: 12px;
- line-height: 22px;
- margin-bottom: 5px;
- color: #999; }
- .index-analysis .list-item p {
- font-size: 12px;
- line-height: 20px;
- color: #666;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical; }
- .index-analysis .list-item p:hover {
- color: #d8192b;
- text-decoration: underline; }
- /* 为什么选择FXM */
- .index-why {
- height: 680px;
- padding-top: 30px;
- background: url(../images/index-why-bg.jpg) no-repeat top center; }
- .index-why .index-tit {
- color: #FFF; }
- .index-why .index-tips {
- margin-top: 0; }
- .index-why li {
- margin-top: 10px;
- text-align: center;
- float: left;
- width: 263px;
- margin-right: 205.5px; }
- .index-why li:nth-child(3n) {
- margin-right: 0; }
- .index-why .img {
- display: inline-block;
- width: 112px;
- height: 112px;
- border-radius: 112px; }
- .index-why .img.img1 {
- background: #fff url(../images/index-why-1.png) no-repeat center center; }
- .index-why .img.img2 {
- background: #fff url(../images/index-why-2.png) no-repeat center center; }
- .index-why .img.img3 {
- background: #fff url(../images/index-why-3.png) no-repeat center center; }
- .index-why .img.img4 {
- background: #fff url(../images/index-why-4.png) no-repeat center center; }
- .index-why .img.img5 {
- background: #fff url(../images/index-why-5.png) no-repeat center center; }
- .index-why .img.img6 {
- background: #fff url(../images/index-why-6.png) no-repeat center center; }
- .index-why .img.img1:hover {
- background: #d8192b url(../images/index-why-1-h.png) no-repeat center center; }
- .index-why .img.img2:hover {
- background: #d8192b url(../images/index-why-2-h.png) no-repeat center center; }
- .index-why .img.img3:hover {
- background: #d8192b url(../images/index-why-3-h.png) no-repeat center center; }
- .index-why .img.img4:hover {
- background: #d8192b url(../images/index-why-4-h.png) no-repeat center center; }
- .index-why .img.img5:hover {
- background: #d8192b url(../images/index-why-5-h.png) no-repeat center center; }
- .index-why .img.img6:hover {
- background: #d8192b url(../images/index-why-6-h.png) no-repeat center center; }
- .index-why dt {
- font-size: 18px;
- margin-top: 15px;
- line-height: 36px;
- color: #FFF; }
- .index-why dd {
- margin-top: 8px;
- line-height: 22px;
- color: #fff; }
- .index-start {
- padding: 60px 0; }
- .index-start .index-tit {
- font-size: 28px; }
- .index-start .index-tips {
- color: #666;
- margin-top: -10px; }
- .index-start .btn-reg {
- width: 346px;
- height: 60px;
- margin-top: 42px;
- line-height: 60px;
- background-color: #d8192b;
- border-radius: 2px;
- border: solid 1px #d8192b;
- font-size: 18px;
- color: #FFF;
- text-align: center; }
- .index-start .list {
- margin-top: 39px;
- text-align: center;
- line-height: 22px;
- color: #666666; }
- .index-start .list p {
- min-height: 34px; }
- .index-start .list .icon {
- display: inline-block;
- font-size: 45px;
- color: #d8192b;
- margin-bottom: 30px; }
- .index-start .list li {
- float: left;
- width: 238px;
- margin-right: 243px; }
- .index-start .list li:last-child {
- margin-right: 0; }
- /* 客服联系 */
- .index-service {
- padding: 30px 0;
- background-color: #f5f5f5; }
- .index-service .index-tit {
- font-size: 28px;
- line-height: 36px;
- color: #191919; }
- .index-service .index-tips {
- line-height: 36px;
- color: #999;
- margin-top: -5px; }
- .index-service form {
- margin-top: 12px; }
- .index-service .inpt-wrap {
- float: left;
- position: relative;
- margin-left: 31px; }
- .index-service .inpt-wrap:first-child {
- margin-left: 0; }
- .index-service .inpt {
- outline: none;
- border: 1px solid #dfdfdf;
- width: 276px;
- height: 42px;
- line-height: 20px;
- font-size: 12px;
- padding-left: 18px;
- padding-top: 10px;
- padding-bottom: 10px;
- background-color: #fff;
- color: #666; }
- .index-service .submit {
- width: 276px;
- height: 42px;
- font-size: 18px;
- background-color: #d8192b;
- text-align: center;
- color: #fff;
- border-radius: 2px;
- padding-left: 0;
- border: none;
- outline: none;
- cursor: pointer; }
- .index-service .submit:hover {
- opacity: .9; }
- .banner {
- height: 314px;
- background-position: top center;
- background-repeat: no-repeat; }
- .banner .main-title {
- font-size: 42px;
- line-height: 36px;
- color: #ffffff;
- padding-top: 77px; }
- .about-us {
- text-align: center;
- font-size: 30px;
- line-height: 30px;
- padding: 50px 0;
- color: #222;
- }
- /* 合作伙伴 */
- .coop-banner {
- height: 435px;
- padding-top: 114px;
- text-align: center;
- background-image: url(../images/coop-banner.jpg); }
- .coop-banner .tit {
- font-size: 34px;
- line-height: 36px;
- letter-spacing: 3px;
- color: #ffffff;
- margin-bottom: 30px; }
- .coop-banner p {
- font-size: 16px;
- line-height: 32px;
- letter-spacing: 1px;
- color: #fefefe;
- text-align: left; }
- .coop-banner .btn-wrap {
- margin-top: 54px; }
- .coop-banner a {
- display: inline-block;
- width: 191px;
- height: 47px;
- line-height: 47px;
- border-radius: 4px;
- color: #FFF;
- margin: 0 19px; }
- .coop-banner .btn-join {
- color: #FFF;
- background-color: #d8192b;
- border-color: #d8192b; }
- .coop-banner .btn-join:focus, .coop-banner .btn-join.focus {
- color: #FFF;
- background-color: #4090ff;
- border-color: #4090ff; }
- .coop-banner .btn-join:hover {
- color: #FFF;
- background-color: #4090ff;
- border-color: #4090ff; }
- .coop-banner .btn-more {
- border: solid 1px #ffffff; }
- .coop-banner .btn-more:hover {
- background-color: #d8192b;
- border-color: #d8192b;
- color: #FFF; }
- .coop-service {
- padding-top: 80px; }
- .coop-service .tit {
- text-align: center;
- font-size: 32px;
- line-height: 36px;
- letter-spacing: 3px;
- color: #333333; }
- .coop-service .desc {
- text-align: center;
- line-height: 36px;
- margin-top: 10px;
- letter-spacing: 1px;
- color: #666666; }
- .coop-service-list {
- margin-top: 15px; }
- .coop-service-list li {
- margin-bottom: 70px;
- height: 200px; }
- .coop-service-list .num {
- float: right;
- width: 120px;
- height: 120px;
- line-height: 120px;
- margin-top: 32px;
- margin-right: -60px;
- text-align: center;
- background-color: #d8192b;
- font-size: 31px;
- letter-spacing: 3px;
- color: #ffffff;
- -webkit-box-shadow: 0px 0px 8px #d8192b;
- box-shadow: 0px 0px 8px #d8192b; }
- .coop-service-list .num:after {
- content: '';
- display: block;
- position: absolute;
- border-bottom: 1px solid #FFF;
- top: 82px;
- left: 38px; }
- .coop-service-list .detail {
- width: 504px;
- padding-top: 32px; }
- .coop-service-list .detail .title {
- padding-left: 60px;
- font-size: 24px;
- line-height: 37px;
- letter-spacing: 2px;
- color: #d8192b; }
- .coop-service-list .detail .title.bg1 {
- background: url(../images/coop-ico-1.png) no-repeat left center; }
- .coop-service-list .detail .title.bg2 {
- background: url(../images/coop-ico-2.png) no-repeat left center; }
- .coop-service-list .detail .title.bg3 {
- background: url(../images/coop-ico-3.png) no-repeat left center; }
- .coop-service-list .detail .title.bg4 {
- background: url(../images/coop-ico-4.png) no-repeat left center; }
- .coop-service-list .detail p {
- margin-top: 10px;
- font-size: 16px;
- line-height: 28px;
- letter-spacing: 1px;
- color: #666666; }
- .coop-service-list img {
- display: block;
- float: right; }
- .coop-join {
- padding: 80px 0;
- background-color: #f5f5f5; }
- .coop-join .tit {
- font-size: 26px;
- line-height: 36px;
- letter-spacing: 2px;
- color: #333333;
- text-align: center; }
- .coop-join .desc {
- line-height: 36px;
- letter-spacing: 1px;
- color: #666666;
- text-align: center;
- margin-top: 10px; }
- .coop-form {
- width: 480px;
- padding-left: 72px;
- margin-top: 10px; }
- .coop-form .form-box {
- position: relative;
- margin-top: 30px;
- width: 357px; }
- .coop-form .icon {
- position: absolute;
- left: 13px;
- top: 9px;
- font-size: 24px;
- color: #c9c9c9; }
- .coop-form .inpt {
- width: 357px;
- height: 51px;
- padding: 12px;
- background-color: #ffffff;
- border: solid 1px #cccccc;
- padding-left: 50px; }
- .coop-form textarea {
- width: 357px;
- height: 106px;
- padding: 18px 20px 20px 50px;
- background-color: #ffffff;
- border: solid 1px #cccccc; }
- .coop-form .submit {
- width: 357px;
- height: 51px;
- background-color: #d8192b;
- border-radius: 4px;
- font-size: 20px;
- line-height: 36px;
- color: #ffffff; }
- .coop-form i.error {
- top: 55px; }
- .coop-contact {
- float: right;
- text-align: center;
- margin-right: 158px; }
- .coop-contact img {
- margin-top: 20px; }
- .coop-contact .phone-num {
- font-family: MicrosoftYaHei-Bold;
- font-weight: bold;
- margin-top: 62px;
- font-size: 42px;
- line-height: 36px;
- color: #d8192b; }
- .coop-contact .work-time {
- margin-top: 28px;
- line-height: 36px;
- color: #666666; }
- /* 汇评分析 */
- .analysis-banner {
- height: 320px;
- background-image: url(../images/analysis-banner.jpg); }
- .analysis-aside {
- width: 303px;
- float: right;
- margin-top: 30px;
- margin-bottom: 30px; }
- .analysis-aside img {
- margin-top: 30px; }
- .analysis-aside img:hover {
- opacity: .9; }
- .analysis-nav {
- border: solid 1px #e6e6e6; }
- .analysis-nav .title {
- height: 51px;
- padding: 16px 0 0 20px;
- background-color: #ffffff; }
- .analysis-nav .title span {
- font-size: 18px;
- line-height: 1;
- color: #d8192b;
- padding-left: 20px;
- border-left: 2px solid #d8192b; }
- .analysis-nav li {
- border-top: solid 1px #e6e6e6; }
- .analysis-nav li a {
- display: block;
- height: 99px;
- padding: 21px 20px 0 20px;
- line-height: 24px;
- color: #4d4d4d; }
- .analysis-nav li a:hover {
- background-color: #f5f5f5; }
- .analysis-nav li span {
- display: block; }
- .analysis-nav li .date {
- font-size: 12px;
- color: #999999;
- margin-top: 13px; }
- .analysis-main {
- margin-right: 356px; }
- .analysis-list {
- margin-top: 40px; }
- .analysis-list .list-item:first-child a {
- border-top: none; }
- .analysis-list .list-item a {
- display: block;
- height: 210px;
- padding: 30px 0;
- border-top: 1px solid #eee;
- border-bottom: 1px solid transparent; }
- .analysis-list .list-item a:hover {
- background-color: #f8f8f8; }
- .analysis-list .list-item img {
- float: left;
- margin-right: 45px; }
- .analysis-list .list-item img:hover {
- opacity: .9; }
- .analysis-list .list-item h4 {
- line-height: 36px;
- color: #333;
- font-size: 18px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .analysis-list .list-item .date {
- font-size: 12px;
- line-height: 24px;
- margin-bottom: 5px;
- color: #999; }
- .analysis-list .list-item p {
- line-height: 24px;
- color: #999;
- padding-right: 8px;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- margin-top: 12px; }
- /* 分页 */
- .pages-wrap {
- margin: 50px 0 66px;
- text-align: center; }
- .pagination {
- display: inline-block;
- position: relative;
- text-align: center;
- zoom: 1;
- color: #ccc; }
- .pagination a,
- .pagination span {
- line-height: 36px;
- height: 36px;
- width: 36px;
- border-radius: 3px; }
- .pagination span {
- float: left;
- margin: 0 5px;
- color: #bdbdbd;
- font-size: 14px; }
- .pagination a {
- float: left;
- margin: 0 5px;
- background: #fff;
- color: #999;
- font-size: 16px;
- text-decoration: none;
- border: solid 1px #e3e3e3; }
- .pagination:before, .pagination:after {
- content: "";
- display: table; }
- .pagination:after {
- clear: both;
- overflow: hidden; }
- .pagination .active {
- float: left;
- margin: 0 5px;
- color: #FFF;
- font-size: 14px;
- background-color: #d8192b;
- border-color: #d8192b; }
- .pagination a:hover {
- background-color: #c2e5ff;
- border-color: #c2e5ff;
- color: #666666; }
- .pagination .next,
- .pagination .prev,
- .pagination .layui-laypage-next,
- .pagination .layui-laypage-prev {
- font-family: "Simsun";
- font-size: 16px;
- font-weight: bold;
- width: 75px;
- height: 36px; }
- .pagination .now,
- .pagination .count,
- .pagination .layui-laypage-curr {
- padding: 0 5px;
- color: #ffffff;
- background-color: #d8192b; }
- .pagination .eg img {
- max-width: 800px;
- min-height: 500px; }
- .pagination input {
- float: left;
- margin: 0 5px;
- width: 38px;
- height: 38px;
- line-height: 38px;
- text-align: center;
- background: #fff;
- border: 1px solid #ebebeb;
- outline: none;
- color: #bdbdbd;
- font-size: 14px; }
- /* 汇评分析详情 */
- .breadcrumb li {
- height: 58px;
- padding: 30px 0 10px;
- display: inline-block;
- line-height: 1;
- color: #141414; }
- .breadcrumb li a {
- color: #333; }
- .breadcrumb li a:hover {
- color: #d8192b;
- text-decoration: underline; }
- .breadcrumb li:last-child {
- color: #999; }
- .breadcrumb li:first-child:before {
- display: none; }
- .breadcrumb li:before {
- padding: 0 5px;
- content: ">"; }
- .analysis-main .title {
- font-family: MicrosoftYaHei-Bold;
- font-size: 36px;
- line-height: 36px;
- color: #404040;
- margin-top: 15px; }
- .analysis-main .date {
- font-size: 12px;
- line-height: 36px;
- color: #888888;
- margin-top: 8px; }
- .analysis-main .article-main {
- margin-top: 20px;
- padding-bottom: 90px;
- border-top: 1px solid #e8e8e8;
- border-bottom: 1px solid #e8e8e8;
- padding-top: 22px;
- font-size: 16px;
- line-height: 30px;
- color: #444444; }
- .analysis-main .article-bottom {
- margin-top: 50px;
- margin-bottom: 150px; }
- .analysis-main .article-bottom a {
- font-size: 16px;
- line-height: 42px;
- color: #444444;
- display: block; }
- .analysis-main .article-bottom a:hover {
- text-decoration: underline;
- color: #1d87e4; }
- /* 活动专题 */
- .activity-list {
- margin-top: 80px; }
- .activity-list .list-item {
- position: relative;
- height: 160px;
- margin-top: 20px; }
- .activity-list .list-item:first-child a {
- border-top: none; }
- .activity-list .list-item a {
- display: block; }
- .activity-list .list-item img {
- float: left;
- margin-right: 20px;
- border-radius: 4px; }
- .activity-list .list-item img:hover {
- opacity: .9; }
- .activity-list .list-item .btn {
- position: absolute;
- right: 0;
- bottom: 0;
- display: block;
- line-height: 46px;
- width: 130px;
- height: 46px;
- background-color: #e0212d;
- font-size: 18px;
- color: #ffffff;
- text-align: center; }
- .activity-list .list-item .btn:hover {
- background-color: #e64e57; }
- .activity-list .list-item .btn-more {
- position: absolute;
- right: 0;
- top: 6px;
- display: block;
- width: 120px;
- height: 12px;
- font-size: 14px;
- line-height: 24px;
- letter-spacing: 1px;
- color: #d8192b; }
- .activity-list .list-item .btn-more:hover {
- text-decoration: underline; }
- .activity-list .list-item h4 {
- line-height: 36px;
- color: #d8192b;
- font-size: 24px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .activity-list .list-item h4:hover {
- text-decoration: underline; }
- .activity-list .list-item .date {
- line-height: 36px;
- margin-bottom: 5px;
- color: #999;
- margin-top: 14px; }
- .activity-list .list-item p {
- color: #999;
- padding-right: 8px;
- font-size: 16px;
- line-height: 24px;
- letter-spacing: 1px;
- color: #666666;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- margin-top: 5px; }
- .activity-pages-wrap {
- margin: 92px 0 85px; }
- /* 帮助与支持 */
- .help-banner {
- position: relative;
- z-index: 9;
- background-image: url(../images/help-banner.jpg); }
- .help-money .tab-nav {
- margin: 54px 0 60px; }
- .help-money .tab-nav a {
- font-size: 24px;
- color: #999999; }
- .help-money .tab-nav a:first-child {
- margin-right: 27px; }
- .help-money .tab-nav a.active, .help-money .tab-nav a:hover {
- color: #d8192b; }
- .help-money .tab-contents .tab-con {
- display: none; }
- .help-money .tab-contents .tab-con:first-child {
- display: block; }
- .help-money .tab-contents .desc {
- font-size: 16px;
- line-height: 32px;
- color: #555555; }
- .help-money .tab-contents table {
- width: 100%;
- background-color: #f7f8fa;
- text-align: center;
- margin-top: 25px;
- margin-bottom: 45px; }
- .help-money .tab-contents table td {
- border: solid 1px #d9d9d9;
- height: 104px; }
- .help-money .tab-contents table td:last-child {
- padding-left: 62px;
- text-align: left; }
- .help-money .tab-contents table th {
- background-color: #FFF;
- border: solid 1px #d9d9d9; }
- .help-money .tab-contents table .tips {
- font-size: 12px;
- color: #666666;
- margin-top: 4px; }
- .help-money .tab-contents .step {
- font-size: 16px;
- line-height: 36px;
- color: #555555; }
- .help-money .tab-contents .step i {
- display: inline-block;
- text-align: center;
- width: 26px;
- height: 26px;
- line-height: 26px;
- border-radius: 26px;
- color: #fefefe;
- margin-right: 16px;
- background-color: #626262; }
- .help-money .tab-contents .step-link {
- color: #555555; }
- .help-money .tab-contents .step-link:hover {
- color: #d8192b; }
- .help-money .tab-contents img {
- margin: 15px 0 80px; }
- .help-money .tab-contents .attention {
- font-size: 16px;
- line-height: 24px;
- color: #999999;
- margin-top: 66px; }
- .help-money .tab-contents .btn {
- width: 442px;
- height: 73px;
- border-radius: 4px;
- font-size: 24px;
- line-height: 73px;
- color: #ffffff;
- text-align: center;
- margin-top: 54px;
- margin-bottom: 80px; }
- .help-money .tab-contents .btn:hover {
- opacity: .9; }
- .help-money .tab-contents .btn-in {
- background-color: #e0212d; }
- .help-money .tab-contents .btn-out {
- background-color: #d8192b; }
- /* 常见问题 */
- .help-QA {
- margin-top: 45px; }
- .help-QA .analysis-aside {
- margin-top: 0; }
- .help-QA-sidenav {
- float: left;
- width: 208px;
- font-size: 14px;
- color: #555;
- text-align: left;
- border: solid 1px #e6e6e6; }
- .help-QA-sidenav.fixed {
- position: fixed;
- top: 148px; }
- .help-QA-sidenav li {
- height: 50px;
- line-height: 50px;
- padding-left: 16px;
- border-top: solid 1px #e6e6e6;
- cursor: pointer; }
- .help-QA-sidenav li:first-child {
- border-top: none; }
- .help-QA-sidenav li:before {
- content: '·';
- display: inline-block;
- vertical-align: middle;
- margin-right: 10px;
- margin-top: -3px; }
- .help-QA-sidenav li.active, .help-QA-sidenav li:hover {
- color: #FFF;
- background-color: #d8192b; }
- .help-QA-sidenav li.active a, .help-QA-sidenav li:hover a {
- color: #FFF; }
- .help-QA-sidenav li a {
- display: inline-block;
- width: 169px; }
- .help-QA-cons {
- width: 628px;
- margin-left: 238px;
- margin-bottom: 150px; }
- .help-QA-cons .title {
- font-size: 24px;
- color: #141414;
- line-height: 1;
- padding: 6px 10px 5px 0;
- margin-bottom: 10px; }
- .help-QA-cons .school-con {
- margin-top: -10px; }
- .help-QA-cons .link {
- color: #666; }
- .help-QA-cons .link:hover {
- color: #d8192b;
- text-decoration: underline; }
- .help-QA-cons dl {
- padding: 6px 0 20px;
- border-top: solid 1px #e6e6e6; }
- .help-QA-cons dl:first-child {
- border: none; }
- .help-QA-cons dt:before,
- .help-QA-cons dd:before {
- display: inline-block;
- width: 20px;
- height: 20px;
- line-height: 20px;
- color: #FFF;
- text-align: center;
- border-radius: 5px;
- font-size: 16px;
- font-family: sans-serif;
- margin-right: 10px; }
- .help-QA-cons dt {
- font-size: 16px;
- line-height: 50px;
- line-height: 1.6;
- color: #333333;
- padding: 14px 0 14px 10px; }
- .help-QA-cons dt:before {
- content: 'Q';
- background-color: #ce251f; }
- .help-QA-cons dd {
- position: relative;
- padding: 15px 10px 20px 40px;
- background-color: #f5f5f5;
- line-height: 20px;
- color: #666666; }
- .help-QA-cons dd p {
- margin-top: 10px; }
- .help-QA-cons dd:before {
- text-indent: 0;
- position: absolute;
- left: 10px;
- top: 15px;
- content: 'A';
- background-color: #d8192b; }
- .header-fixed .help-con {
- padding-top: 80px; }
- .header-fixed .help-con:first-child {
- padding-top: 0; }
- .header-fixed .help-con.padtop {
- padding-top: 80px; }
- /* 开户流程 */
- .help-open .tit {
- font-size: 36px;
- line-height: 24px;
- color: #333333;
- margin-top: 44px;
- margin-bottom: 74px; }
- .help-open-list {
- margin-bottom: 440px;
- height: 994px;
- border-left: dashed 1px #d8192b;
- margin-left: 22px; }
- .help-open-list li {
- position: relative;
- padding-left: 64px;
- margin-bottom: 20px; }
- .help-open-list li span.icon {
- position: absolute;
- left: -26px;
- top: 0;
- display: inline-block;
- width: 53px;
- height: 53px;
- border-radius: 53px;
- line-height: 53px;
- background-color: #d8192b;
- font-size: 30px;
- color: #FFF;
- text-align: center; }
- .help-open-list dt {
- padding-top: 15px;
- font-size: 20px;
- line-height: 32px;
- color: #555555; }
- .help-open-list dt .num {
- font-family: SimHei;
- font-size: 36px;
- font-style: italic;
- line-height: 24px;
- color: #d8192b;
- margin-right: 13px;
- vertical-align: middle; }
- .help-open-list dd {
- padding-left: 30px;
- margin-top: 10px;
- line-height: 32px;
- letter-spacing: 0px;
- color: #555555;
- width: 366px; }
- .help-open-list .img {
- float: right;
- padding: 24px 30px 24px 30px;
- margin-top: -30px;
- margin-bottom: 80px;
- background-color: #bbdfff;
- border-radius: 8px; }
- .help-open-pdf {
- width: 545px;
- height: 404px;
- padding: 20px 70px 45px 70px;
- background-color: #ffffff;
- border-radius: 8px; }
- .help-open-pdf .item {
- margin-top: 5px; }
- .help-open-pdf .item span {
- text-decoration: underline;
- line-height: 35px;
- color: #555555;
- vertical-align: middle; }
- .help-open-pdf .icon {
- font-size: 35px;
- color: #d8192b;
- vertical-align: middle; }
- .help-open-pdf a {
- float: right;
- display: block;
- width: 92px;
- height: 27px;
- line-height: 27px;
- font-size: 12px;
- text-align: center;
- margin-top: 20px;
- color: #ffffff;
- background: url(../images/btn-helpbg.png) no-repeat center center; }
- .help-open-pdf a:hover {
- opacity: .9; }
- /* 免责声明 */
- .fxm-file {
- background-color: #edf3f6;
- padding: 25px 0 103px; }
- .fxm-file .container {
- background-color: #FFF; }
- .fxm-file .title {
- font-size: 30px;
- color: #333;
- padding-bottom: 20px;
- text-align: center;
- border-bottom: 1px solid #ccc; }
- .fxm-file .file-con {
- padding: 40px 42px 0; }
- .fxm-file .file-con h4 {
- font-weight: bold;
- margin: 40px 0; }
- /*关于我们*/
- .about-banner {
- background-image: url(../images/about-banner.jpg); }
- .about-public-list {
- margin-top: 60px; }
- .about-public-list li {
- font-size: 16px;
- font-weight: normal;
- font-stretch: normal;
- line-height: 60px;
- letter-spacing: 0px;
- border-bottom: solid 1px #ededed; }
- .about-public-list .sign {
- font-size: 16px;
- line-height: 60px;
- color: #d8192b;
- margin-right: 40px; }
- .about-public-list .title {
- display: inline-block;
- width: 930px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- vertical-align: middle; }
- .about-public-list a {
- color: #555555; }
- .about-public-list a:hover .title {
- color: #d8192b;
- text-decoration: underline; }
- .about-public-list .date {
- float: right;
- line-height: 60px;
- color: #888888; }
- /* 了解我们 */
- .about-knowus .title {
- font-size: 36px;
- line-height: 36px;
- letter-spacing: 3px;
- color: #333333;
- text-align: center;
- margin: 90px 0 68px; }
- .about-knowus-banner {
- background-image: url(../images/about-knowus-banner.jpg); }
- .about-icon-nav {
- width: 100%;
- height: 120px;
- background-image: url(../images/about-icon-nav.jpg);
- background-size: 100% 100%;
- }
- .about-icon-nav ul {
- width: 1200px;
- margin: 0 auto;
- height: 105px;
- padding-top: 11px;
- }
- .about-icon-nav ul li {
- float: left;
- width: 340px;
- text-align: center;
- padding-right: 175px;
- }
- .about-icon-nav ul .last-nav {
- width: 170px;
- padding-right: 0px;
- }
- .about-icon-nav ul li div {
- font-size: 34px;
- color: #d8192b;
- line-height: 54px;
- }
- .about-icon-nav ul li p {
- font-size: 14px;
- color: #484848;
- line-height: 24px;
- }
- .about-knowus-data {
- padding: 80px 0 85px; }
- .about-knowus-data li {
- float: left;
- padding-left: 70px;
- margin-left: 108px; }
- .about-knowus-data li:first-child {
- margin-left: 0; }
- .about-knowus-data li.ico-2 {
- padding-left: 114px; }
- .about-knowus-data li .num {
- font-size: 32px;
- line-height: 60px;
- letter-spacing: 3px;
- color: #d8192b; }
- .about-knowus-data li p {
- ine-height: 60px;
- color: #999999; }
- .about-knowus-data li.ico-1 {
- background: #fff url(../images/about-knowus-ico-1.png) no-repeat left center; }
- .about-knowus-data li.ico-2 {
- background: #fff url(../images/about-knowus-ico-2.png) no-repeat left center; }
- .about-knowus-data li.ico-3 {
- background: #fff url(../images/about-knowus-ico-3.png) no-repeat left center; }
- .about-knowus-data li.ico-4 {
- background: #fff url(../images/about-knowus-ico-4.png) no-repeat left center; }
- .about-knowus-detail {
- font-size: 16px;
- line-height: 36px;
- color: #333333; }
- .about-knowus-detail img {
- float: right;
- margin-left: 16px; }
- .about-knowus-detail p.last {
- margin-top: 27px; }
- .about-knowus-font{
- width: 570px;
- float: left;
- font-size: 16px;
- line-height: 24px;
- color: #595959;
- }
- .about-knowus-mission {
- width: 100%;
- height: 600px;
- margin-top: 60px;
- background: url(../images/about-knowus-mission.jpg) no-repeat;
- }
- .mission-content {
- width: 1200px;
- margin: 0 auto;
- color: #fff;
- }
- .mission-content h2 {
- font-size: 30px;
- line-height: 30px;
- padding: 45px 0;
- color: #fff;
- text-align: center;
- }
- .mission-content li {
- float: left;
- padding-bottom: 45px;
- }
- .mission-content .right-padding {
- padding-right: 200px;
- }
- .mission-content li img {
- float: left;
- }
- .mission-content li .missionText {
- width: 360px;
- float: left;
- padding: 23px 0 0 45px;
- }
- .missionText h3{
- font-size: 18px;
- line-height: 30px;
- }
- .missionText p{
- font-size: 12px;
- line-height: 24px;
- }
- .about-knowus-sup {
- margin-bottom: 80px; }
- .about-knowus-sup li {
- float: left;
- width: 389px;
- height: 225px;
- padding: 27px 23px 28px 170px;
- background-color: #ffffff;
- -webkit-box-shadow: 1px 1px 5px 0px rgba(188, 188, 188, 0.35);
- box-shadow: 1px 1px 5px 0px rgba(188, 188, 188, 0.35);
- border: solid 1px #d8192b;
- margin-left: 16px; }
- .about-knowus-sup li:first-child {
- margin-left: 0; }
- .about-knowus-sup li.ico-1 {
- background: #fff url(../images/about-knowus-sup-1.png) no-repeat 17px 27px; }
- .about-knowus-sup li.ico-2 {
- background: #fff url(../images/about-knowus-sup-2.png) no-repeat 17px 27px; }
- .about-knowus-sup li.ico-3 {
- background: #fff url(../images/about-knowus-sup-3.png) no-repeat 17px 27px; }
- .about-knowus-sup li:before {
- content: '';
- display: block; }
- .about-knowus-sup h4 {
- font-size: 24px;
- line-height: 36px;
- color: #333333; }
- .about-knowus-sup p {
- height: 100px;
- font-size: 12px;
- line-height: 18px;
- color: #666666; }
- .about-knowus-sup .num {
- font-size: 16px;
- line-height: 18px;
- color: #d8192b; }
- /* 联系我们 */
- .about-contact-banner {
- background-image: url(../images/about-contact-banner.jpg); }
- .about-contact {
- margin-top: 100px; }
- .about-contact-box {
- margin-top: -100px;
- margin-bottom: 100px; }
- .about-contact-box .title {
- font-size: 36px;
- line-height: 60px;
- letter-spacing: 3px;
- padding: 52px 0 10px;
- color: #333333;
- border-bottom: 1px solid #e5e5e5; }
- .about-contact-box p {
- width: 417px;
- font-size: 16px;
- font-weight: normal;
- font-stretch: normal;
- line-height: 26px;
- letter-spacing: 0px;
- color: #555555;
- margin-top: 15px; }
- .about-contact-box img {
- float: right; }
- /* 产品介绍 */
- .banner {
- padding-top: 60px; }
- .banner .main-title-en {
- margin-top: 20px;
- font-size: 42px;
- line-height: 36px;
- letter-spacing: 4px;
- color: #ffffff; }
- .banner .main-title-en .en {
- font-size: 16px;
- line-height: 60px;
- letter-spacing: 1px; }
- .banner .inner-box {
- padding: 22px 54px 0 54px;
- height: 195px;
- background-color: rgba(27, 27, 27, 0.45); }
- .banner .inner-box p {
- font-size: 16px;
- line-height: 30px;
- color: #ffffff; }
- .pro-con {
- margin-bottom: 100px; }
- .pro-con .pro-desc {
- margin-top: 47px; }
- .pro-con .pro-desc img {
- float: left; }
- .pro-con .pro-desc .txt-img {
- height: 318px;
- margin-left: 555px; }
- .pro-con .title {
- margin-top: 53px;
- margin-bottom: 28px;
- text-align: center;
- font-size: 24px;
- line-height: 24px;
- letter-spacing: 2px;
- color: #333333; }
- .pro-con .more {
- width: 201px;
- height: 40px;
- line-height: 40px;
- border-radius: 4px;
- margin-top: 15px;
- border: solid 1px #cccccc;
- letter-spacing: 1px;
- color: #999999;
- text-align: center; }
- .pro-con .more:hover {
- color: #d8192b;
- border-color: #d8192b; }
- .pro-con table {
- width: 100%;
- line-height: 2;
- color: #555555;
- text-align: center; }
- .pro-con tr:nth-child(odd) {
- background-color: #f1fbff; }
- .pro-con th:first-child,
- .pro-con td:first-child {
- padding-left: 50px;
- text-align: left; }
- .pro-con th:last-child,
- .pro-con td:last-child {
- padding-right: 50px;
- text-align: right; }
- .pro-con th {
- height: 53px;
- background-color: #7cc2ee;
- color: #FFF; }
- .pro-con td {
- height: 59px;
- font-size: 16px; }
- .pro-con .about-rule th,
- .pro-con .about-rule td {
- text-align: left;
- padding-left: 50px; }
- /* 外汇 */
- .pro-fx-banner .main-title-en,
- .pro-gold-banner .main-title-en,
- .pro-oil-banner .main-title-en,
- .pro-index-banner .main-title-en,
- .pro-bitcoin-banner .main-title-en {
- margin-top: 0; }
- .pro-fx-banner {
- background-image: url(../images/pro-fx-banner.jpg); }
- .pro-fx .txt-img {
- /*background: url(../images/pro-fx-txt.jpg) no-repeat left center;*/
- }
-
- .txt-img {
- padding: 20px 0;
- }
- .txt-img h2 {
- font-size: 24px;
- color: #333;
- line-height: 44px;
- padding-bottom: 30px;
- }
- .txt-img .txt-list {
- font-size: 16px;
- color: #666;
- }
- .txt-img .txt-list li {
- float: left;
- width: 270px;
- padding-bottom: 20px;
- text-align: left;
- margin-right:25px;
- }
- .txt-img .txt-list li:before{
- content: '·';
- font-size: 45px;
- line-height: 23px;
- margin-right: 13px;
- vertical-align: top;
- color: #d8192b;
- }
- .txt-img .txt-list .txt-long {
- width: 370px;
- }
- .pro-fx tr:hover {
- background-color: #d0edff; }
- /* 贵金属 */
- .pro-gold-banner {
- background-image: url(../images/pro-gold-banner.jpg); }
- /*.pro-gold .txt-img {
- background: url(../images/pro-gold-txt.jpg) no-repeat left center; }*/
- .pro-gold tr:nth-child(odd) {
- background-color: #f6f6f6; }
- .pro-gold th {
- background-color: #bb8f32; }
- /* 原油 */
- .pro-oil-banner {
- background-image: url(../images/pro-oil-banner.jpg); }
- /*.pro-oil .txt-img {
- background: url(../images/pro-oil-txt.jpg) no-repeat left center; }*/
- .pro-oil tr:nth-child(odd) {
- background-color: #f6f6f6; }
- .pro-oil th {
- background-color: #333333; }
- /* 指数 */
- .pro-index-banner {
- background-image: url(../images/pro-index-banner.jpg); }
- /*.pro-index .txt-img {
- background: url(../images/pro-index-txt.jpg) no-repeat left center; }*/
- .pro-index tr:nth-child(odd) {
- background-color: #ecf6fc; }
- .pro-index th {
- background-color: #013266; }
- /* 比特币 */
- .pro-bitcoin-banner {
- background-image: url(../images/pro-bitcoin-banner.jpg); }
- /*.pro-bitcoin .txt-img {
- background: url(../images/pro-bitcoin-txt.jpg) no-repeat left center; }*/
- .pro-bitcoin tr:nth-child(odd) {
- background-color: #ecf6fc; }
- .pro-bitcoin th {
- background-color: #13a6aa; }
- /* 下载中心 */
- .download-banner {
- background-image: url(../images/download-banner.jpg);
- padding-top: 80px; }
- .download-banner p {
- font-size: 16px;
- line-height: 60px;
- letter-spacing: 3px;
- color: #ffffff;
- margin-top: -8px; }
- .download-banner .btn {
- display: block;
- width: 102px;
- height: 36px;
- line-height: 36px;
- border-radius: 4px;
- color: #FFF;
- text-align: center;
- margin-top: 5px;
- border: solid 1px rgba(255, 255, 255, 0.6); }
- .download-banner .btn:hover {
- color: #FFF;
- background-color: #d8192b; }
- .download .title {
- font-size: 32px;
- line-height: 32px;
- color: #333333;
- text-align: center;
- margin-top: 59px; }
- .download .tips {
- font-size: 16px;
- line-height: 25px;
- color: #999999;
- text-align: center;
- margin-top: 18px; }
- .download-list {
- margin: 60px 0 100px;
- min-height: 266px;
- padding-left: 597px;
- background: url(../images/download-img.png) no-repeat left center;
- font-size: 16px;
- line-height: 36px;
- color: #555555; }
- .download-list li:before {
- content: '';
- display: inline-block;
- vertical-align: middle;
- margin-right: 30px;
- width: 16px;
- height: 1px;
- background-color: #e0212d; }
- .download-link {
- padding: 70px 0 70px;
- background-color: #f5f5f5;
- font-size: 18px;
- line-height: 32px;
- color: #333333;
- text-align: center; }
- .download-link .title {
- margin-top: 0; }
- .download-link .list {
- width: 1070px;
- margin-top: 30px; }
- .download-link li {
- float: left;
- margin-left: 296px; }
- .download-link li:first-child {
- margin-left: 0; }
- .download-link a {
- display: block; }
- .download-link span {
- display: block;
- width: 119px;
- height: 119px; }
- .download-link .ico {
- margin-bottom: 5px;
- border-radius: 120px;
- overflow: hidden;
- width: 119px;
- height: 119px; }
- .download-link .over {
- position: relative; }
- .download-link .pc .default {
- background: url(../images/download-pc.png) no-repeat left center; }
- .download-link .pc .over {
- background: url(../images/download-pc-h.png) no-repeat left center; }
- .download-link .android .default {
- background: url(../images/download-android.png) no-repeat left center; }
- .download-link .android .over {
- background: url(../images/download-android-h.png) no-repeat left center; }
- .download-link .iphone .default {
- background: url(../images/download-ip.png) no-repeat left center; }
- .download-link .iphone .over {
- background: url(../images/download-ip-h.png) no-repeat left center; }
-
- /* 苹果的下载 */
- .mobile-download {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 999; }
- .mobile-download .iPhone_ {
- position: absolute;
- width:450px;
- height: 420px;
- top: 50%;
- margin-top: -210px;
- left: 50%;
- margin-left: -225px;
- background: #fff;
- -webkit-box-shadow: 0 0 20px #ccc;
- box-shadow: 0 0 20px #ccc;
- border-radius: 25px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- padding: 0 120px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box; }
- .mobile-download .subOne {
- width: 300px;
- height: 346px; }
- .mobile-download .subOne img {
- width:200px;
- }
- .mobile-download .subTwo {
- width: 380px;
- margin-left: 80px; }
- .mobile-download .iPhone_ .profile {
- margin-top: 20px; }
- .mobile-download .iPhone_ .profile > div {
- font-size: 16px;
- color: #666; }
- .mobile-download .iPhone_ .closeButton {
- position: absolute;
- top: 25px;
- right: 25px;
- cursor: pointer;
- }
- /* 苹果的下载 */
- /* 安卓下载 */
- .mobile1-download {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 999; }
- .mobile1-download .iPhone_ {
- position: absolute;
- width: 450px;
- height: 420px;
- top: 50%;
- margin-top: -210px;
- left: 50%;
- margin-left: -225px;
- background: #fff;
- -webkit-box-shadow: 0 0 20px #ccc;
- box-shadow: 0 0 20px #ccc;
- border-radius: 25px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- padding: 0 120px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box; }
- .mobile1-download .subOne {
- width: 300px;
- height: 346px; }
- .mobile1-download .subOne img {
- width: 300px; }
- .mobile1-download .subTwo {
- width: 380px;
- margin-left: 80px; }
- .mobile1-download .iPhone_ .profile {
- margin-top: 20px; }
- .mobile1-download .iPhone_ .profile > div {
- font-size: 16px;
- color: #666; }
- .mobile1-download .iPhone_ .closeButton1 {
- position: absolute;
- top: 25px;
- right: 25px;
- cursor: pointer;
- }
- /* 安卓下载 */
|