123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169 |
- .m-0 {
- margin-top: 0px !important;
- margin-right: 0px !important;
- margin-bottom: 0px !important;
- margin-left: 0px !important;
- }
- .mt-0 {
- margin-top: 0px !important;
- }
- .mr-0 {
- margin-right: 0px !important;
- }
- .mb-0 {
- margin-bottom: 0px !important;
- }
- .ml-0 {
- margin-left: 0px !important;
- }
- .mx-0 {
- margin-left: 0px !important;
- margin-right: 0px !important;
- }
- .my-0 {
- margin-top: 0px !important;
- margin-bottom: 0px !important;
- }
- .p-0 {
- padding-top: 0px !important;
- padding-right: 0px !important;
- padding-bottom: 0px !important;
- padding-left: 0px !important;
- }
- .pt-0 {
- padding-top: 0px !important;
- }
- .pr-0 {
- padding-right: 0px !important;
- }
- .pb-0 {
- padding-bottom: 0px !important;
- }
- .pl-0 {
- padding-left: 0px !important;
- }
- .px-0 {
- padding-left: 0px !important;
- padding-right: 0px !important;
- }
- .py-0 {
- padding-top: 0px !important;
- padding-bottom: 0px !important;
- }
- .m-1 {
- margin-top: 5px !important;
- margin-right: 5px !important;
- margin-bottom: 5px !important;
- margin-left: 5px !important;
- }
- .mt-1 {
- margin-top: 5px !important;
- }
- .mr-1 {
- margin-right: 5px !important;
- }
- .mb-1 {
- margin-bottom: 5px !important;
- }
- .ml-1 {
- margin-left: 5px !important;
- }
- .mx-1 {
- margin-left: 5px !important;
- margin-right: 5px !important;
- }
- .my-1 {
- margin-top: 5px !important;
- margin-bottom: 5px !important;
- }
- .p-1 {
- padding-top: 5px !important;
- padding-right: 5px !important;
- padding-bottom: 5px !important;
- padding-left: 5px !important;
- }
- .pt-1 {
- padding-top: 5px !important;
- }
- .pr-1 {
- padding-right: 5px !important;
- }
- .pb-1 {
- padding-bottom: 5px !important;
- }
- .pl-1 {
- padding-left: 5px !important;
- }
- .px-1 {
- padding-left: 5px !important;
- padding-right: 5px !important;
- }
- .py-1 {
- padding-top: 5px !important;
- padding-bottom: 5px !important;
- }
- .m-2 {
- margin-top: 10px !important;
- margin-right: 10px !important;
- margin-bottom: 10px !important;
- margin-left: 10px !important;
- }
- .mt-2 {
- margin-top: 10px !important;
- }
- .mr-2 {
- margin-right: 10px !important;
- }
- .mb-2 {
- margin-bottom: 10px !important;
- }
- .ml-2 {
- margin-left: 10px !important;
- }
- .mx-2 {
- margin-left: 10px !important;
- margin-right: 10px !important;
- }
- .my-2 {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- .p-2 {
- padding-top: 10px !important;
- padding-right: 10px !important;
- padding-bottom: 10px !important;
- padding-left: 10px !important;
- }
- .pt-2 {
- padding-top: 10px !important;
- }
- .pr-2 {
- padding-right: 10px !important;
- }
- .pb-2 {
- padding-bottom: 10px !important;
- }
- .pl-2 {
- padding-left: 10px !important;
- }
- .px-2 {
- padding-left: 10px !important;
- padding-right: 10px !important;
- }
- .py-2 {
- padding-top: 10px !important;
- padding-bottom: 10px !important;
- }
- .m-3 {
- margin-top: 15px !important;
- margin-right: 15px !important;
- margin-bottom: 15px !important;
- margin-left: 15px !important;
- }
- .mt-3 {
- margin-top: 15px !important;
- }
- .mr-3 {
- margin-right: 15px !important;
- }
- .mb-3 {
- margin-bottom: 15px !important;
- }
- .ml-3 {
- margin-left: 15px !important;
- }
- .mx-3 {
- margin-left: 15px !important;
- margin-right: 15px !important;
- }
- .my-3 {
- margin-top: 15px !important;
- margin-bottom: 15px !important;
- }
- .p-3 {
- padding-top: 15px !important;
- padding-right: 15px !important;
- padding-bottom: 15px !important;
- padding-left: 15px !important;
- }
- .pt-3 {
- padding-top: 15px !important;
- }
- .pr-3 {
- padding-right: 15px !important;
- }
- .pb-3 {
- padding-bottom: 15px !important;
- }
- .pl-3 {
- padding-left: 15px !important;
- }
- .px-3 {
- padding-left: 15px !important;
- padding-right: 15px !important;
- }
- .py-3 {
- padding-top: 15px !important;
- padding-bottom: 15px !important;
- }
- .m-4 {
- margin-top: 20px !important;
- margin-right: 20px !important;
- margin-bottom: 20px !important;
- margin-left: 20px !important;
- }
- .mt-4 {
- margin-top: 20px !important;
- }
- .mr-4 {
- margin-right: 20px !important;
- }
- .mb-4 {
- margin-bottom: 20px !important;
- }
- .ml-4 {
- margin-left: 20px !important;
- }
- .mx-4 {
- margin-left: 20px !important;
- margin-right: 20px !important;
- }
- .my-4 {
- margin-top: 20px !important;
- margin-bottom: 20px !important;
- }
- .p-4 {
- padding-top: 20px !important;
- padding-right: 20px !important;
- padding-bottom: 20px !important;
- padding-left: 20px !important;
- }
- .pt-4 {
- padding-top: 20px !important;
- }
- .pr-4 {
- padding-right: 20px !important;
- }
- .pb-4 {
- padding-bottom: 20px !important;
- }
- .pl-4 {
- padding-left: 20px !important;
- }
- .px-4 {
- padding-left: 20px !important;
- padding-right: 20px !important;
- }
- .py-4 {
- padding-top: 20px !important;
- padding-bottom: 20px !important;
- }
- .mx-auto {
- margin: 0 auto !important;
- float: none !important;
- }
- .my-auto-parent {
- position: relative !important;
- }
- .my-auto {
- position: absolute !important;
- top: 50% !important;
- transform: translateY(-50%) !important;
- }
- html,
- body {
- height: 100%;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- -moz-osx-font-smoothing: grayscale;
- font-feature-settings: 'liga';
- -webkit-text-size-adjust: 100%;
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
- font-weight: 400;
- background: #f4f6f8;
- font-size: 14px;
- color: #616161;
- }
- body {
- padding-top: 70px;
- overflow-x: hidden;
- overflow-y: auto;
- }
- a {
- color: #555;
- }
- .btn-primary {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff;
- }
- .btn-primary:hover {
- color: #fff;
- background-color: #0069d9;
- border-color: #0062cc;
- }
- .btn-gray {
- color: #212529;
- background-color: #f8f9fa;
- border-color: #f8f9fa;
- }
- .btn-gray:hover {
- color: #212529;
- background-color: #e2e6ea;
- border-color: #dae0e5;
- }
- .btn-light,
- .label-primary {
- color: #0084ff;
- background: rgba(0, 132, 255, 0.1);
- border-color: transparent;
- }
- .btn-light:hover,
- .label-primary:hover {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff;
- }
- .btn-outline-primary {
- color: #007bff;
- background-color: transparent;
- background-image: none;
- border-color: #007bff;
- }
- .btn-outline-primary:hover {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff;
- }
- .btn-primary:focus,
- .btn-primary:hover,
- .btn-primary:active,
- .btn-primary.active,
- .btn-light.active,
- .voted {
- color: #fff;
- background-color: #007bff;
- border-color: #007bff;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .btn-lg {
- -webkit-border-radius: 3px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 3px;
- -moz-background-clip: padding;
- border-radius: 3px;
- background-clip: padding-box;
- }
- .wow {
- visibility: hidden;
- }
- .navbar-inverse .navbar-nav > li > a {
- color: #caced2;
- }
- @media (hover: hover) {
- .dropdown a:hover + .dropdown-menu {
- display: block;
- margin-top: 0;
- }
- }
- .alert-paid {
- margin: 10px 0;
- text-align: center;
- }
- .alert-paid a {
- color: #f39c12;
- }
- .navbar-inverse .navbar-nav .dropdown:hover > a {
- color: #fff;
- background-color: transparent;
- }
- .dropdown-submenu {
- position: relative;
- }
- .dropdown-submenu > .dropdown-menu {
- top: 0;
- left: 100%;
- margin-top: 0;
- margin-left: -1px;
- -webkit-border-radius: 3px 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 3px 0 3px 3px;
- -moz-background-clip: padding;
- border-radius: 3px 0 3px 3px;
- background-clip: padding-box;
- }
- .dropdown-submenu:hover > .dropdown-menu {
- display: block;
- }
- .dropdown-submenu:hover > a:after {
- border-left-color: #fff;
- }
- .dropdown-submenu > a:after {
- display: block;
- content: " ";
- float: right;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
- border-width: 5px 0 5px 5px;
- border-left-color: #ccc;
- margin-top: 5px;
- margin-right: -10px;
- }
- .dropdown-submenu.pull-left {
- float: none;
- }
- .dropdown-submenu.pull-left > .dropdown-menu {
- left: -100%;
- margin-left: 10px;
- -webkit-border-radius: 3px 0 3px 3px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 3px 0 3px 3px;
- -moz-background-clip: padding;
- border-radius: 3px 0 3px 3px;
- background-clip: padding-box;
- }
- .navbar-collapse.collapse.in .navbar-nav .dropdown-menu {
- padding: 0;
- }
- .navbar-collapse.collapse.in .navbar-nav .dropdown-submenu .dropdown-menu > li > a {
- padding-left: 45px;
- }
- .navbar {
- border: none;
- }
- .navbar-nav .form-search {
- position: relative;
- }
- .navbar-nav .form-search input {
- position: absolute;
- top: 0;
- right: 0;
- }
- .navbar-nav .form-search input:focus {
- width: 250px;
- }
- .navbar-nav li > a {
- font-size: 13px;
- }
- .navbar-nav li > a h5 {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .navbar-nav > li > a {
- font-size: 14px;
- }
- .navbar-nav ul.dropdown-menu {
- border: none;
- border-radius: 0;
- }
- .navbar-nav ul.dropdown-menu > li > a {
- padding: 5px 20px;
- }
- @media screen and (max-width: 767px) {
- .navbar-nav .form-search input {
- position: relative;
- }
- .navbar-nav .form-search input:focus {
- width: 100%;
- }
- }
- .navbar-brand {
- padding: 5px 15px;
- }
- .toast-top-center {
- top: 50px;
- }
- .toast-top-center > div {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- /*修复nice-validator新版下的一处BUG*/
- .nice-validator input,
- .nice-validator select,
- .nice-validator textarea,
- .nice-validator [contenteditable] {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- }
- /*修复nice-validator和summernote的编辑框冲突*/
- .nice-validator .note-editor .note-editing-area .note-editable {
- display: inherit;
- }
- /*预览区域*/
- .plupload-preview,
- .faupload-preview {
- padding: 0 10px;
- margin-bottom: 0;
- }
- .plupload-preview li,
- .faupload-preview li {
- margin-top: 5px;
- margin-bottom: 10px;
- }
- .plupload-preview .thumbnail,
- .faupload-preview .thumbnail {
- margin-bottom: 10px;
- }
- .plupload-preview a,
- .faupload-preview a {
- display: block;
- }
- .plupload-preview a:first-child,
- .faupload-preview a:first-child {
- height: 90px;
- }
- .plupload-preview a img,
- .faupload-preview a img {
- height: 80px;
- object-fit: cover;
- }
- #floatbtn {
- width: 50px;
- height: auto;
- position: fixed;
- top: auto;
- right: 50%;
- bottom: 10px;
- left: auto;
- z-index: 80;
- margin-right: -640px;
- }
- #floatbtn.fixed {
- position: absolute;
- bottom: 279px;
- right: 50%;
- }
- #floatbtn > a,
- #floatbtn .floatbtn-item {
- cursor: pointer;
- position: relative;
- z-index: 90;
- display: block;
- margin-top: 4px;
- width: 50px;
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 20px;
- color: #d5d5d5;
- background-color: #fff;
- border: 1px solid #eee;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- #floatbtn > a.hover:hover,
- #floatbtn .floatbtn-item.hover:hover {
- -webkit-transition: background-color 400ms ease-out;
- -moz-transition: background-color 400ms ease-out;
- -o-transition: background-color 400ms ease-out;
- transition: background-color 400ms ease-out;
- background: #0084ff;
- text-decoration: none;
- text-align: center;
- line-height: 20px;
- padding: 5px;
- }
- #floatbtn > a.hover:hover i,
- #floatbtn .floatbtn-item.hover:hover i {
- display: none;
- }
- #floatbtn > a.hover:hover em,
- #floatbtn .floatbtn-item.hover:hover em {
- display: block;
- color: #fff;
- font-size: 14px;
- font-style: normal;
- text-decoration: none;
- }
- #floatbtn > a em,
- #floatbtn .floatbtn-item em {
- display: none;
- }
- #floatbtn > a:hover,
- #floatbtn .floatbtn-item:hover {
- background: #0084ff;
- }
- #floatbtn > a:hover i,
- #floatbtn .floatbtn-item:hover i {
- color: #fff;
- }
- #floatbtn > a:hover .floatbtn-wrapper,
- #floatbtn .floatbtn-item:hover .floatbtn-wrapper {
- display: block;
- }
- #floatbtn .iconfont {
- display: inline-block;
- font: normal normal normal 14px/1 iconfont;
- font-size: inherit;
- }
- .floatbtn-wrapper {
- position: absolute;
- right: 59px;
- top: -55px;
- z-index: 120;
- display: none;
- width: 190px;
- height: 212px;
- background-color: #fff;
- border: 1px solid #eee;
- }
- .floatbtn-wrapper:before {
- content: "";
- position: absolute;
- right: -12px;
- top: 0;
- height: 200px;
- width: 12px;
- background: transparent;
- }
- .floatbtn-wrapper:after {
- content: "";
- position: absolute;
- right: -6px;
- top: 73px;
- display: block;
- width: 0;
- height: 0;
- border-left: 6px solid #d5d5d5;
- border-top: 6px solid transparent;
- border-bottom: 6px solid transparent;
- }
- .floatbtn-wrapper > .qrcode {
- margin-top: 20px;
- line-height: 1;
- }
- .floatbtn-wrapper > .qrcode > img {
- width: 128px;
- height: 128px;
- }
- .floatbtn-wrapper p {
- font-size: 14px;
- line-height: 20px;
- color: #999;
- }
- .floatbtn-wrapper p em {
- color: #dd3067;
- }
- .floatbtn-share .floatbtn-wrapper:after {
- top: 18px;
- }
- .floatbtn-share .floatbtn-wrapper .social-share .icon-wechat .wechat-qrcode p {
- font-size: 12px;
- }
- .text-primary,
- .text-primary:hover {
- color: #2c3e50;
- }
- .text-success,
- .text-success:hover {
- color: #18bc9c;
- }
- .text-danger,
- .text-danger:hover {
- color: #e74c3c;
- }
- .text-warning,
- .text-warning:hover {
- color: #f39c12;
- }
- .text-info,
- .text-info:hover {
- color: #3498db;
- }
- .well {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .responsive-container {
- position: relative;
- width: 100%;
- border: 1px solid #f8f8f8;
- }
- footer {
- padding: 30px 0;
- background: #363f48;
- color: #fff;
- }
- footer a {
- color: #fff;
- }
- footer a:hover {
- color: #0084ff;
- }
- .nav-sidebar li.active a {
- text-decoration: none;
- background-color: #ecf0f1;
- }
- .navbar-toggle .icon-bar {
- width: 18px;
- }
- .footer-inner {
- padding: 2em 0;
- }
- .footer-inner .copyright {
- margin-bottom: 20px !important;
- line-height: 1.5;
- }
- .footer-inner .footer-logo {
- margin-bottom: 20px;
- }
- .footer-inner .footer-logo a {
- padding: 15px 15px;
- background: rgba(0, 0, 0, 0.07);
- font-size: 40px;
- font-weight: 700;
- }
- .footer-inner .footer-logo a:hover,
- .footer-inner .footer-logo a:focus {
- text-decoration: none;
- }
- .footer-inner h3 {
- font-weight: 400;
- margin-bottom: 20px;
- }
- .footer-inner p {
- font-weight: 400;
- }
- .footer-inner p:last-child {
- margin-bottom: 0;
- }
- .footer-inner .links {
- padding: 0;
- margin: 0 0 20px 0;
- }
- .footer-inner .links li {
- list-style: none;
- padding: 5px 0;
- }
- .footer-inner .links li a:hover {
- text-decoration: underline;
- }
- .footer-inner .footer-social {
- text-align: right;
- margin-top: 0;
- }
- .footer-inner .footer-social a {
- margin-right: 15px;
- margin-bottom: 10px;
- font-size: 20px;
- }
- .footer-inner .footer-social a:hover {
- text-decoration: none;
- }
- .article-list {
- padding: 0;
- background: #fff;
- }
- .article-list .article-item {
- padding: 20px 0;
- border-bottom: 1px solid #efefef;
- }
- .article-list .article-item .content {
- margin-top: 15px;
- color: #919191;
- }
- .article-list .gallery-article {
- margin-top: 0;
- }
- .article-list .gallery-article .row {
- margin: 0 -10px;
- }
- .article-list .gallery-article .article-title {
- margin-bottom: 10px;
- }
- .article-list .gallery-article .media .media-body {
- padding-left: 0;
- }
- .article-list .gallery-article .media .media-body .article-tag {
- position: relative;
- margin-top: 10px;
- }
- .article-list .article-title {
- margin: 0;
- font-size: 1.25em;
- line-height: 1.45;
- margin-bottom: 5px;
- color: #000;
- }
- .article-list .article-title a {
- color: #444;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-list .article-title a:hover {
- color: #007bff;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-list .article-title a .img-new {
- margin-left: 2px;
- margin-bottom: 2px;
- height: 16px;
- }
- .article-list .article-intro {
- height: 44px;
- line-height: 22px;
- color: #828a92;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- }
- .article-list .media {
- color: #919191;
- }
- .article-list .media .media-body {
- padding-left: 20px;
- line-height: 25px;
- }
- .article-list .media .media-left {
- overflow: hidden;
- padding: 0;
- }
- .article-list .media .media-left a {
- display: block;
- width: 160px;
- }
- .article-list .media-body {
- position: relative;
- }
- .article-list .media-body .article-tag {
- display: block;
- clear: both;
- position: absolute;
- bottom: 0;
- color: #aaa;
- font-size: 13px;
- }
- .article-list .media-body .article-tag span {
- margin: 0 8px;
- }
- .article-list .media-body .article-tag span a {
- color: #aaa;
- }
- .article-list .media-body .article-tag .pull-left {
- height: 34px;
- line-height: 34px;
- color: #919191;
- }
- .article-list .media-body .article-tag .pull-left a {
- color: #919191;
- }
- .article-list .pager {
- margin: 40px 0 20px 0;
- }
- .article-metas {
- overflow: hidden;
- }
- .article-metas .metas-title {
- margin: 0;
- font-size: 1.65em;
- line-height: 1.45;
- margin-bottom: 5px;
- color: #000;
- }
- .article-metas .metas-title a {
- color: #444;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-metas .metas-title a:hover {
- color: #007bff;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-metas .metas-body {
- color: #999;
- margin: 0px auto;
- }
- .article-metas .metas-body span {
- margin-right: 10px;
- }
- .article-metas .metas-body span i {
- margin-right: 5px;
- }
- .article-metas .metas-body p {
- margin-bottom: 0;
- margin-top: 0px;
- font-size: 12px;
- }
- .article-text {
- line-height: 30px;
- margin-bottom: 15px;
- }
- .article-text img {
- margin: 10px auto;
- display: block;
- max-width: 100%;
- height: auto;
- -webkit-border-radius: 2px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 2px;
- -moz-background-clip: padding;
- border-radius: 2px;
- background-clip: padding-box;
- }
- .article-text ul li {
- line-height: 30px;
- }
- .article-action-btn {
- color: #999;
- }
- .article-action-btn a {
- color: #999;
- }
- .article-action-btn .bdshare-button-style0-16 .bds_more {
- float: none;
- padding: 0;
- height: inherit;
- line-height: inherit;
- font-size: inherit;
- background: none;
- color: #999;
- }
- .article-prevnext {
- color: #666;
- }
- .entry-meta ul {
- overflow: hidden;
- margin: 0 0 10px 0;
- padding: 0 0 10px 0;
- border-bottom: 1px solid #dedede;
- }
- .entry-meta ul li {
- line-height: 26px;
- }
- .related-article,
- .gallery-article {
- margin-top: 10px;
- }
- .related-article .row,
- .gallery-article .row {
- margin: 0 -5px;
- }
- .related-article .col-sm-3,
- .gallery-article .col-sm-3 {
- padding: 0 10px;
- }
- .related-article .col-sm-3 a,
- .gallery-article .col-sm-3 a {
- display: block;
- }
- @media (max-width: 480px) {
- .related-article .row,
- .gallery-article .row {
- margin: 0 -5px !important;
- }
- .related-article .col-sm-3,
- .gallery-article .col-sm-3 {
- padding: 0 5px 10px 5px;
- }
- }
- .panel-default {
- border: none;
- padding: 0 15px;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- -webkit-border-radius: 2px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 2px;
- -moz-background-clip: padding;
- border-radius: 2px;
- background-clip: padding-box;
- }
- .panel-default > .panel-heading {
- position: relative;
- padding: 15px 0;
- background: #fff;
- border-bottom: 1px solid #f5f5f5;
- }
- .panel-default > .panel-heading .panel-title {
- font-size: 16px;
- /*color: @gray-dark;*/
- }
- .panel-default > .panel-heading .panel-title > i {
- display: none;
- }
- .panel-default > .panel-heading small {
- font-weight: normal;
- color: #999;
- font-size: 13px;
- }
- .panel-default > .panel-heading .more {
- position: absolute;
- top: 13px;
- right: 0;
- display: block;
- color: #919191;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- font-weight: 400;
- font-size: 13px;
- }
- .panel-default > .panel-heading .more:hover {
- color: #616161;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .panel-default > .panel-heading div.more {
- top: 17px;
- }
- .panel-default > .panel-heading .panel-bar {
- position: absolute;
- top: 7px;
- right: 0;
- display: block;
- }
- .panel-default > .panel-footer {
- padding: 15px 0;
- background: none;
- }
- .panel-default > .panel-body {
- position: relative;
- padding: 15px 0;
- }
- .panel-primary > .panel-heading {
- background-color: #46c37b;
- color: #fff;
- }
- .panel-primary > .panel-body {
- background: #fafafa;
- border-bottom-left-radius: 2px;
- border-bottom-right-radius: 2px;
- }
- .panel-gray {
- -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
- -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
- }
- .panel-gray > .panel-heading {
- background-color: #f5f5f5;
- color: #919191;
- }
- .panel-gray > .panel-body {
- color: #919191;
- background: #fff;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .panel-page {
- padding: 45px 50px 50px;
- min-height: 500px;
- }
- .panel-page .panel-heading {
- background: transparent;
- border-bottom: none;
- margin: 0 0 30px 0;
- padding: 0;
- }
- .panel-page .panel-heading h2 {
- font-size: 25px;
- margin-top: 0;
- }
- .tabs-wrapper {
- -webkit-border-radius: 4px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 4px;
- -moz-background-clip: padding;
- border-radius: 4px;
- background-clip: padding-box;
- background-color: #fff;
- }
- .tabs-wrapper .tabs-mark-group {
- border-bottom: 1px dashed #e4ecf3;
- }
- .tabs-wrapper .tabs-mark-group .title {
- width: 90px;
- margin-top: 3px;
- float: left;
- }
- .tabs-wrapper .tabs-mark-group .classify {
- margin-top: 3px;
- }
- .tabs-wrapper .tabs-mark-group .classify a,
- .tabs-wrapper .tabs-mark-group .classify i {
- color: #919191;
- }
- .tabs-wrapper .tabs-mark-group .classify a:focus,
- .tabs-wrapper .tabs-mark-group .classify a:hover {
- color: #43bc60;
- }
- .tabs-wrapper .tabs-mark-group .content {
- margin-left: 100px;
- }
- .tabs-wrapper .tabs-mark {
- margin: 0 4px;
- }
- .tabs-wrapper .tabs-mark a {
- border: 1px solid #e4ecf3;
- padding: 2px 5px;
- color: #919191;
- }
- .tabs-wrapper .tabs-mark i {
- font-size: 10px;
- margin-left: 5px;
- }
- .tabs-wrapper .tabs-mark.active a,
- .tabs-wrapper .tabs-mark:focus a,
- .tabs-wrapper .tabs-mark:hover a {
- color: #43bc60;
- border: 1px solid #43bc60;
- }
- .tabs-wrapper .tabs-group {
- position: relative;
- overflow-y: hidden;
- }
- .tabs-wrapper .tabs-group .title {
- float: left;
- padding: 10px 0;
- width: 80px;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-wrap: normal;
- }
- .tabs-wrapper .tabs-group .content {
- list-style: none;
- padding: 0;
- margin: 0 0 0 60px;
- }
- .tabs-wrapper .tabs-group .content > li {
- float: left;
- padding: 5px 12px;
- }
- .tabs-wrapper .tabs-group .content > li > a {
- display: block;
- padding: 5px 10px;
- border: none;
- -webkit-border-radius: 4px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 4px;
- -moz-background-clip: padding;
- border-radius: 4px;
- background-clip: padding-box;
- color: #828a92;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .tabs-wrapper .tabs-group .content > li.active > a,
- .tabs-wrapper .tabs-group .content > li:focus > a,
- .tabs-wrapper .tabs-group .content > li:hover > a {
- color: #0084ff;
- }
- .tabs-wrapper .tabs-group .tabs-toggle {
- position: absolute;
- right: 20px;
- top: 18px;
- font-size: 12px;
- line-height: 1;
- cursor: pointer;
- }
- .tabs-wrapper .tabs-group + .tabs-group {
- border-top: 1px dashed #e4ecf3;
- }
- .tabs-multiple .tabs-group .content > li > a {
- margin: 2px 0;
- display: block;
- padding: 3px 10px;
- -webkit-border-radius: 3px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 3px;
- -moz-background-clip: padding;
- border-radius: 3px;
- background-clip: padding-box;
- }
- .tabs-multiple .tabs-group .content > li.active > a {
- color: #0084ff;
- background: rgba(0, 132, 255, 0.1);
- }
- .article-filter {
- position: relative;
- background-color: #fafafa;
- -webkit-border-radius: 4px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 4px;
- -moz-background-clip: padding;
- border-radius: 4px;
- background-clip: padding-box;
- margin-bottom: 30px;
- }
- .article-filter .btn-group.open .dropdown-toggle {
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- color: #43bc60;
- }
- .article-filter .filter {
- position: absolute;
- text-align: right;
- top: 0;
- right: 15px;
- width: 300px;
- }
- .article-filter .filter .btn {
- background: none;
- padding: 10px 0;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-filter .filter .btn:hover {
- color: #43bc60;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-filter .filter .btn > i {
- font-size: 18px;
- }
- .article-filter .filter label {
- margin-left: 15px;
- margin-top: 11px;
- vertical-align: top;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .article-filter .filter label:hover {
- color: #43bc60;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- h1 .breadcrumb {
- padding: 0 5px;
- margin-bottom: 5px;
- background: none;
- }
- h1 .breadcrumb li {
- font-size: 12px;
- font-weight: 400;
- }
- .carousel-focus .item .carousel-img {
- background-size: cover;
- width: 100%;
- height: 120px;
- background-position: center center;
- -webkit-transition: all 0.3s;
- -moz-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- }
- .carousel-focus:hover .carousel-img {
- -webkit-transform: scale(1.02);
- -moz-transform: scale(1.02);
- -o-transform: scale(1.02);
- -ms-transform: scale(1.02);
- transform: scale(1.02);
- }
- .carousel-focus .carousel-control.left,
- .carousel-focus .carousel-control.right {
- background-image: none;
- }
- .carousel-focus .carousel-control.left span,
- .carousel-focus .carousel-control.right span {
- display: none;
- }
- .carousel-focus .carousel-control.left:hover,
- .carousel-focus .carousel-control.right:hover {
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .carousel-focus .carousel-control.left:hover span,
- .carousel-focus .carousel-control.right:hover span {
- display: block;
- }
- .panel-blockimg {
- border: none;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .panel-blockimg img {
- width: 100%;
- }
- .hot-tags .panel-body a span {
- margin-bottom: 10px;
- }
- .tags {
- margin: 0;
- display: inline-block;
- }
- .tags .tag {
- margin-bottom: 5px;
- }
- .tag {
- display: inline-block;
- padding: 0 8px;
- height: 24px;
- line-height: 24px;
- font-weight: 400;
- font-size: 13px;
- text-align: center;
- color: #0084ff;
- background: rgba(0, 132, 255, 0.1);
- margin-right: 3px;
- border-radius: 2px;
- }
- .tag img {
- width: 16px;
- height: 16px;
- margin-top: -1px;
- margin-right: 3px;
- }
- .tag[href]:focus,
- .tag[href]:hover {
- background-color: #007bff;
- color: #fff;
- text-decoration: none;
- }
- .tag-xs {
- padding: 0 6px;
- height: 20px;
- line-height: 20px;
- font-size: 12px;
- }
- .tag-sm {
- padding: 0 6px;
- height: 22px;
- line-height: 22px;
- font-size: 13px;
- }
- .tag-lg {
- font-size: 16px;
- font-weight: 700;
- height: 30px;
- line-height: 28px;
- }
- .tag-link {
- background-color: transparent;
- }
- .tag-logo {
- padding-left: 25px;
- background-repeat: no-repeat;
- background-position: 4px 2px;
- background-size: 16px 16px;
- }
- .tag-success {
- background-color: #dff0d8;
- color: #18bc9c;
- }
- .tag-info {
- background-color: #d9edf7;
- color: #3498db;
- }
- .tag-warning {
- background-color: #fcf8e3;
- color: #f39c12;
- }
- .tag-danger {
- background-color: #f2dede;
- color: #e74c3c;
- }
- .product-item .card {
- border-radius: 3px;
- position: relative;
- padding: 12px;
- margin: 0 auto 20px;
- -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
- -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
- -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
- transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
- border: 1px solid #eee;
- min-height: 250px;
- overflow: hidden;
- background-color: #fff;
- }
- .product-item .card .thumb {
- position: relative;
- -webkit-transition: all 0.5s ease-out 0s;
- -moz-transition: all 0.5s ease-out 0s;
- -o-transition: all 0.5s ease-out 0s;
- transition: all 0.5s ease-out 0s;
- margin: -12px;
- }
- .product-item .card .thumb > .preview-link::before {
- background: rgba(0, 0, 0, 0.2);
- opacity: 0;
- z-index: 1;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- content: "";
- -webkit-transition: all 0.5s ease-out 0s;
- -moz-transition: all 0.5s ease-out 0s;
- -o-transition: all 0.5s ease-out 0s;
- transition: all 0.5s ease-out 0s;
- }
- .product-item .card .thumb > .quickview-link {
- display: block;
- width: 40px;
- height: 40px;
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- margin: auto;
- line-height: 40px;
- text-align: center;
- z-index: 10;
- background: #000;
- border-radius: 50%;
- opacity: 0;
- visibility: hidden;
- color: #fff;
- transform: scale(0);
- -webkit-transform: scale(0);
- transition: all 0.3s ease-out 0s;
- -webkit-transition: all 0.3s ease-out 0s;
- }
- .product-item .card .thumb:hover .preview-link::before {
- opacity: 1;
- }
- .product-item .card .thumb:hover .quickview-link {
- opacity: 1;
- visibility: visible;
- transform: scale(1);
- -webkit-transform: scale(1);
- }
- .product-item .card:hover {
- -webkit-transform: translateY(-6px);
- -moz-transform: translateY(-6px);
- -o-transform: translateY(-6px);
- -ms-transform: translateY(-6px);
- transform: translateY(-6px);
- -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
- -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
- box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
- }
- .product-item .card:hover .operate .pull-right {
- display: block;
- }
- .product-item .card .image {
- position: relative;
- width: 100%;
- height: 1px;
- overflow: hidden;
- padding-bottom: 75%;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center center;
- }
- .product-item .card .title {
- padding-top: 10px;
- }
- .product-item .card h2 {
- color: #000;
- padding: 0;
- margin-bottom: 5px;
- height: 24px;
- margin-top: 15px;
- font-size: 14px;
- font-weight: 400;
- line-height: 24px;
- text-align: left;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- }
- .product-item .card .operate {
- height: 31px;
- overflow: hidden;
- }
- .product-item .card .operate .pull-right {
- display: none;
- }
- #content-container > h1 {
- margin-top: 0;
- }
- .main-content {
- min-height: 100%;
- margin: 0 auto -256px;
- padding-bottom: 15px;
- }
- .main-content:after {
- content: "";
- display: block;
- height: 256px;
- }
- footer,
- .main-content:after {
- height: 256px;
- }
- @media (max-width: 768px) {
- .main-content {
- min-height: 100%;
- margin: 0 auto -400px;
- padding-bottom: 15px;
- }
- .main-content:after {
- content: "";
- display: block;
- height: 400px;
- }
- footer,
- .main-content:after {
- height: 400px;
- }
- }
- .lasest-update .panel-body {
- padding: 8px 0;
- }
- .lasest-update .panel-body ul {
- margin-bottom: 0;
- }
- .lasest-update .panel-body ul li {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- position: relative;
- height: 35px;
- line-height: 35px;
- }
- .channel-list .row .col-xs-12 {
- min-height: 315px;
- }
- .channel-list .row .col-xs-12 h3 {
- border-bottom: 1px solid #eee;
- padding-bottom: 10px;
- position: relative;
- }
- .channel-list .row .col-xs-12 h3 > a {
- font-size: 16px;
- position: relative;
- padding-left: 6px;
- }
- .channel-list .row .col-xs-12 h3 > a:before {
- position: absolute;
- top: 2px;
- left: 0px;
- content: ' ';
- width: 2px;
- height: 15px;
- background: #0084ff;
- display: inline-block;
- }
- .channel-list .row .col-xs-12 h3 em {
- position: absolute;
- right: 5px;
- top: 2px;
- font-style: normal;
- font-weight: 400;
- }
- .channel-list .row .col-xs-12 h3 em a {
- font-size: 12px;
- }
- .channel-list .row .media {
- margin-bottom: 10px;
- }
- .channel-list .row .media .media-left a {
- width: 120px;
- display: block;
- }
- .channel-list .row .media .media-body {
- font-size: 12px;
- }
- .channel-list .row .media .media-body p {
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- font-size: 14px;
- padding-right: 15px;
- }
- .channel-list .row ul.inner-list li {
- margin-bottom: 5px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- position: relative;
- padding-right: 40px;
- height: 30px;
- line-height: 30px;
- }
- .channel-list .row ul.inner-list li a {
- color: #616161;
- }
- .channel-list .row ul.inner-list li span {
- position: absolute;
- right: 0;
- }
- #comment-container #commentlist dl {
- position: relative;
- border-bottom: 1px solid #eee;
- clear: both;
- padding: 10px 0;
- margin-bottom: 5px;
- }
- #comment-container #commentlist dl dt {
- float: left;
- margin-right: 10px;
- width: 44px;
- height: 44px;
- display: block;
- position: absolute;
- }
- #comment-container #commentlist dl dt img {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- }
- #comment-container #commentlist dl dd {
- padding-left: 55px;
- float: left;
- width: 100%;
- }
- #comment-container #commentlist dl dd cite a {
- color: #0084ff;
- }
- #comment-container #commentlist dl dd small {
- color: #999;
- margin: 0 0 0 3px;
- height: 20px;
- line-height: 20px;
- font-size: 10px;
- }
- #comment-container #commentlist dl dd small a {
- display: none;
- }
- #comment-container #commentlist dl dd dl {
- margin: 0px;
- border-top: 1px solid #eee;
- border-bottom: none;
- padding-top: 15px;
- padding-bottom: 0;
- }
- #comment-container #commentlist dl dd dl dd {
- width: 550px;
- }
- #comment-container #commentlist dl dd p {
- margin-top: 5px;
- margin-bottom: 10px;
- line-height: 24px;
- }
- #comment-container #commentlist dl dd p em {
- font-style: normal;
- display: inline-block;
- padding: 0 5px;
- height: 22px;
- line-height: 22px;
- font-weight: 400;
- font-size: 13px;
- text-align: center;
- color: #0084ff;
- background: rgba(0, 132, 255, 0.1);
- border-radius: 2px;
- }
- #comment-container #commentlist cite {
- font-style: normal;
- }
- #comment-container h3 {
- position: relative;
- font-size: 16px;
- padding: 15px 0;
- background: #fff;
- }
- #comment-container h3 a {
- display: none;
- }
- #comment-container #postcomment .form-group {
- margin-bottom: 10px;
- }
- #comment-container #postcomment label {
- font-weight: normal;
- }
- #comment-container #postcomment a small {
- display: inline !important;
- }
- .fieldlist dd {
- display: block;
- margin: 5px 0;
- }
- .fieldlist dd input {
- display: inline-block;
- width: 300px;
- }
- .fieldlist dd input:first-child {
- width: 110px;
- }
- .fieldlist dd ins {
- width: 110px;
- display: inline-block;
- text-decoration: none;
- font-weight: bold;
- }
- .text-gray {
- color: #d2d6de !important;
- }
- .no-padding {
- padding: 0 !important;
- }
- .no-border {
- border: none !important;
- }
- .pager .pagination {
- margin: 0;
- }
- .pager .pager {
- margin: 0;
- }
- .pager li {
- margin: 0 .4em;
- display: inline-block;
- }
- .pager li:first-child > a,
- .pager li:last-child > a,
- .pager li:first-child > span,
- .pager li:last-child > span {
- padding: .5em 1.2em;
- }
- .pager li > a,
- .pager li > span {
- background: none;
- border: 1px solid #e6e6e6;
- border-radius: 0.25em;
- padding: .5em .93em;
- font-size: 14px;
- }
- .list-partner li {
- display: inline-block;
- margin: 0 12px 12px 0;
- padding: 10px 15px;
- width: 140px;
- text-align: center;
- border: 1px solid #efefef;
- }
- .list-partner li:hover {
- border: 1px solid #363f48;
- }
- .list-partner li img {
- height: 30px;
- }
- .index-gallary h5,
- .related-article h5 {
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- font-weight: normal;
- height: 15px;
- }
- .index-focus {
- margin-bottom: 19px;
- }
- .article-content > .panel-heading {
- padding: 0;
- margin: 0 -15px;
- }
- .article-content > .panel-heading > .breadcrumb {
- background: #fff;
- font-size: 13px;
- margin-bottom: 0;
- padding: 10px 15px;
- }
- .article-donate {
- padding: 10px 0;
- text-align: center;
- }
- .article-donate a {
- min-width: 120px;
- -webkit-border-radius: 3px;
- -webkit-background-clip: padding-box;
- -moz-border-radius: 3px;
- -moz-background-clip: padding;
- border-radius: 3px;
- background-clip: padding-box;
- }
- .category-title {
- margin-bottom: 20px;
- font-size: 24px;
- color: #444;
- }
- .category-title .breadcrumb li {
- font-size: 14px;
- }
- .category-order li > a.active {
- color: #0084ff;
- }
- .img-zoom {
- overflow: hidden;
- display: inline-block;
- }
- .img-zoom img {
- -webkit-transition: all 0.3s;
- -moz-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- }
- .img-zoom:hover img {
- -webkit-transform: scale(1.1);
- -moz-transform: scale(1.1);
- -o-transform: scale(1.1);
- -ms-transform: scale(1.1);
- transform: scale(1.1);
- }
- .embed-responsive {
- position: relative;
- display: block;
- height: 0;
- padding: 0;
- overflow: hidden;
- }
- .embed-responsive img {
- position: absolute;
- object-fit: cover;
- width: 100%;
- height: 100%;
- border: 0;
- }
- .embed-responsive-16by9 {
- padding-bottom: 56.25%;
- }
- .embed-responsive-4by3 {
- padding-bottom: 75%;
- }
- .embed-responsive-square {
- padding-bottom: 100%;
- }
- .list-links a {
- margin-right: 5px;
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .navbar-header {
- width: 44px;
- overflow: hidden;
- }
- }
- @media (max-width: 767px) {
- ul.dropdown-menu {
- position: relative;
- width: 100%;
- background: #222;
- }
- ul.dropdown-menu .open > a,
- ul.dropdown-menu .open > a:hover,
- ul.dropdown-menu .open > a:focus {
- background: none;
- color: #9d9d9d;
- }
- ul.dropdown-menu > .dropdown-menu {
- position: relative;
- width: 100%;
- margin: 0;
- }
- .navbar-nav .open .dropdown-menu > li > a {
- line-height: 22px;
- }
- .navbar-nav .form-search {
- padding: 0 10px;
- }
- .navbar-nav .open .dropdown-menu {
- position: relative;
- width: 100%;
- margin: 0;
- left: 0;
- background: #404950;
- }
- .dropdown-submenu > a:after {
- display: none;
- }
- .panel-page {
- padding: 15px;
- min-height: 300px;
- }
- .article-list .media .media-left a {
- width: 110px;
- }
- .article-list .media .media-body .article-title {
- font-size: 1em;
- }
- .article-list .media-body .article-tag {
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- }
- .navbar-nav {
- margin: 8.25px 0;
- }
- .navbar-nav .form-search.focused {
- position: inherit;
- }
- .navbar-nav .form-search.focused input {
- position: inherit;
- width: 100%;
- }
- .dropdown:not(.open):hover > .dropdown-menu {
- display: none;
- }
- .article-list .media-body .article-tag span {
- margin: 0 2px;
- }
- .article-pay a.btn {
- display: block;
- margin-top: 5px;
- }
- .navbar-form {
- margin: 10px 0;
- }
- .navbar-nav .form-search {
- padding: 0;
- }
- .focus-img {
- margin-top: 15px;
- padding: 0 15px;
- }
- .focus-img > .row {
- margin-left: 0;
- }
- }
- @media (min-width: 768px) {
- #index-focus .item .carousel-img {
- height: 340px;
- width: 100%;
- }
- #news-focus .item .carousel-img,
- #product-focus .item .carousel-img,
- #download-focus .item .carousel-img {
- height: 272px;
- width: 100%;
- }
- .navbar-form .form-search .form-control {
- width: 150px;
- }
- }
- @media (min-width: 979px) {
- ul.nav li.dropdown:hover > ul.dropdown-menu {
- display: block;
- }
- }
- @media screen and (min-width: 768px) {
- .carousel-caption {
- left: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.3);
- padding: 0;
- bottom: 0;
- text-shadow: none;
- }
- .carousel-caption h3 {
- margin: 0;
- font-size: 14px;
- padding: 15px;
- text-align: left;
- }
- .carousel-caption p {
- display: none;
- }
- .carousel-indicators {
- bottom: 3px;
- right: 15px;
- width: auto;
- left: inherit;
- opacity: .6;
- }
- }
- .carousel-control {
- text-shadow: none;
- }
- .carousel-control .fa {
- font: normal normal normal 30px/1 FontAwesome;
- }
- .carousel-control .icon-prev {
- left: 20px;
- }
- .carousel-control .icon-next {
- right: 20px;
- }
- .carousel-control .fa-chevron-left:before {
- content: "\f053";
- }
- .carousel-control .fa-chevron-right:before {
- content: "\f054";
- }
- .loadmore {
- width: 80%;
- margin: 1.5em auto;
- line-height: 1.6em;
- font-size: 14px;
- text-align: center;
- clear: both;
- }
- .loadmore-tips {
- display: inline-block;
- vertical-align: middle;
- }
- .loadmore-line {
- border-top: 1px solid #E5E5E5;
- margin-top: 2.4em;
- }
- .loadmore-line .loadmore-tips {
- position: relative;
- top: -0.9em;
- padding: 0 .55em;
- background-color: #FFFFFF;
- color: #808080;
- }
- .btn-loadmore {
- clear: both;
- }
- .download-list {
- margin: 0 -15px;
- }
- .download-list li {
- width: 95px;
- float: left;
- display: inline-block;
- margin: 0 15px;
- padding: 15px 0;
- text-align: center;
- position: relative;
- height: 170px;
- }
- .download-list li a {
- display: block;
- }
- .download-list li a p {
- word-break: keep-all;
- text-overflow: ellipsis;
- line-height: 25px;
- height: 25px;
- overflow: hidden;
- }
- .download-list li a img + span {
- display: block;
- overflow: hidden;
- height: 20px;
- }
- .download-list li:hover em {
- display: none;
- }
- .download-list li:hover a.btn {
- display: block;
- width: 80px;
- margin: 0 auto;
- }
- .download-list li a:hover {
- text-decoration: none;
- }
- .download-list img {
- width: 90px;
- height: 90px;
- margin-bottom: 8px;
- }
- .download-list em {
- display: block;
- color: #999;
- font-style: normal;
- }
- .download-list li > a.link {
- display: block;
- height: 120px;
- overflow: hidden;
- }
- .download-list a.btn {
- display: none;
- }
- .focus-img > .row > div {
- padding: 0;
- padding-right: 15px;
- margin-bottom: 15px;
- height: 100%;
- display: block;
- }
- .focus-img > .row > div a > span {
- border-radius: 3px;
- overflow: hidden;
- }
- .focus-img .intro {
- position: absolute;
- bottom: 0;
- background: #000;
- padding: 0 5px 0 5px;
- width: 100%;
- opacity: .5;
- color: #fff;
- height: 30px;
- line-height: 30px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: center;
- }
- .focus-img a {
- display: block;
- }
- .focus-img img {
- width: 100%;
- }
- /* 搜索建议 */
- .autocomplete-suggestions {
- text-align: left;
- cursor: default;
- background: #fff;
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 2px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- background-clip: padding-box;
- position: absolute;
- display: none;
- z-index: 1036;
- max-height: 254px;
- overflow: hidden;
- overflow-y: auto;
- box-sizing: border-box;
- }
- .autocomplete-suggestions .autocomplete-suggestion {
- padding: 5px 12px;
- }
- .autocomplete-suggestions .autocomplete-suggestion:hover {
- background: #f0f0f0;
- }
|