| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469 |
- /* Write your styles */
- html,
- body {
- background: #e9ecf3;
- overflow: inherit;
- }
- ul,
- li {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- input {
- border: none;
- }
- a {
- color: #337ab7;
- }
- a:hover {
- cursor: pointer;
- color: #23527c;
- }
- .am-breadcrumb {
- padding: 0;
- margin-top: 10px;
- }
- .am-topbar-inverse {
- background: #fff;
- border-color: #e9ecf3;
- }
- .am-topbar-brand {
- color: #337ab7;
- margin-right: 20px;
- }
- .am-topbar-brand {
- height: 75px;
- line-height: 75px;
- }
- .am-topbar {
- min-height: 75px;
- line-height: 75px;
- }
- .am-topbar-inverse .am-topbar-nav>li>a {
- height: 75px;
- line-height: 75px;
- padding: 0 12px;
- }
- .am-topbar-inverse .am-topbar-nav>li>a:focus,
- .am-topbar-inverse .am-topbar-nav>li>a:hover {
- background: none;
- color: initial;
- }
- .am-topbar-inverse .am-topbar-nav>li>a:after {
- border-bottom: none;
- }
- .am-topbar-inverse .am-topbar-nav>li>a:focus:after,
- .am-topbar-inverse .am-topbar-nav>li>a:hover:after {
- border-bottom: none;
- }
- .am-topbar-inverse .am-topbar-nav>li>a {}
- .am-nav-pills>li+li {
- margin-left: 0;
- }
- .am-topbar-inverse .am-topbar-nav>li.am-active>a,
- .am-topbar-inverse .am-topbar-nav>li.am-active>a:focus,
- .am-topbar-inverse .am-topbar-nav>li.am-active>a:hover {
- background-color: #f9fafc;
- }
- ul.am-dropdown-content>li>a:focus,
- ul.am-dropdown-content>li>a:hover {
- background: none;
- }
- ul.am-dropdown-content>li>a {
- color: #96a5aa;
- padding: 12px 8px 12px 18px;
- white-space: initial;
- font-size: 12px;
- display: table-cell;
- }
- .admin-sidebar-list li a {
- color: #485a6a;
- font-size: 14px;
- }
- .tpl-color-success {
- color: #36c6d3;
- }
- .tpl-color-danger {
- color: #ed6b75;
- }
- .tpl-color-warning {
- color: #F1C40F;
- }
- .tpl-color-primary {
- color: #8E44AD;
- }
- .tpl-badge-success {
- background-color: #36c6d3!important;
- }
- .tpl-badge-danger {
- background-color: #ed6b75!important;
- }
- .tpl-badge-warning {
- background-color: #F1C40F!important;
- }
- .tpl-badge-primary {
- background-color: #8E44AD!important;
- }
- .tpl-header-list li {
- color: #999;
- border-bottom: 1px solid #F1F4F7;
- }
- .tpl-header-list li:last-child {
- border-bottom: none;
- }
- .tpl-header-list li:hover {
- background: #f9fafc;
- }
- .tpl-header-list-link {
- color: #999!important;
- }
- .tpl-header-list-user-nick {
- color: #7FB0DA;
- }
- .tpl-header-list-user-nick {
- color: #7FB0DA;
- }
- .tpl-header-list-user-ico img {
- margin-left: 5px;
- margin-top: -4px;
- height: 39px;
- display: inline-block;
- border-radius: 50%;
- }
- .tpl-header-list-ico-out-size {
- font-size: 16px;
- }
- ul.tpl-dropdown-content {
- width: 260px;
- padding: 8px;
- }
- ul.tpl-dropdown-content li>a.tpl-dropdown-content-message {
- padding: 16px 12px;
- display: block;
- border-bottom: 1px solid #F1F4F7;
- }
- ul.tpl-dropdown-content li>a.tpl-dropdown-content-message:last-child {
- border-bottom: none;
- }
- .tpl-dropdown-content-photo {
- float: left;
- margin: 0 6px 6px 0;
- }
- .tpl-dropdown-content-photo img {
- height: 40px;
- width: 40px;
- -webkit-border-radius: 50%!important;
- -moz-border-radius: 50%!important;
- -ms-border-radius: 50%!important;
- -o-border-radius: 50%!important;
- border-radius: 50%!important;
- }
- .tpl-dropdown-content-subject {
- display: block;
- margin-left: 46px;
- }
- .tpl-dropdown-content-external {
- display: block;
- overflow: hidden;
- padding: 10px;
- letter-spacing: .5px;
- border-bottom: 1px solid #F1F4F7;
- }
- .tpl-dropdown-content-external a {
- padding: 0!important;
- display: block!important;
- float: right;
- clear: none!important;
- }
- .tpl-dropdown-content-external h3 {
- margin: 0;
- padding: 0;
- font-size: 13px;
- color: #96a5aa;
- font-weight: normal;
- /*display: inline-block;*/
- float: left;
- }
- .tpl-dropdown-content-external h3 span {
- font-weight: 600;
- font-size: 16px;
- }
- .tpl-dropdown-content-from {
- font-size: 13px;
- font-weight: 600;
- }
- .tpl-dropdown-content-time {
- font-size: 12px;
- font-weight: 400;
- opacity: .5;
- filter: alpha(opacity=50);
- float: right;
- }
- .tpl-dropdown-content-font {
- display: block!important;
- font-size: 12px;
- line-height: 22px;
- margin-left: 46px;
- }
- .tpl-dropdown-ico-btn-size {
- width: 18px;
- height: 18px;
- line-height: 18px;
- font-size: 8px;
- color: #fff;
- }
- .tpl-dropdown-list-fl {
- width: 70%;
- position: relative;
- }
- .tpl-dropdown-list-fr {
- width: 30%;
- display: table-cell;
- font-size: 12px;
- text-align: right;
- line-height: initial;
- vertical-align: middle;
- padding-right: 20px;
- }
- .tpl-dropdown-list-bdbc {
- border-bottom: 1px solid #F1F4F7;
- }
- .tpl-dropdown-list-bdbc:last-child {
- border-bottom: none;
- }
- .tpl-logo {
- display: inline-block;
- vertical-align: middle;
- margin-top: -5px;
- padding-left: 18px;
- width: 160px;
- }
- .tpl-logo img {
- display: block;
- width: 100%;
- }
- .tpl-dropdown-content .task {
- margin-bottom: 5px;
- }
- .tpl-dropdown-content .desc {
- font-size: 13px;
- font-weight: 300;
- }
- .tpl-dropdown-content .percent {
- float: right;
- font-weight: 600;
- display: inline-block;
- }
- .tpl-dropdown-content-progress {
- display: block!important;
- }
- .tpl-dropdown-content .progress {
- display: block;
- background-color: #f5f5f5;
- margin: 8px 0 2px;
- }
- .tpl-progress {
- height: 16px;
- margin-bottom: 0;
- }
- .tpl-dropdown-content .progress-bar {
- float: left;
- width: 0%;
- height: 100%;
- font-size: 12px;
- line-height: 20px;
- color: #fff;
- text-align: center;
- background-color: #337ab7;
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-transition: width 0.6s ease;
- -o-transition: width 0.6s ease;
- transition: width 0.6s ease;
- }
- .tpl-page-container {
- margin: 0;
- padding: 20px 20px 0;
- }
- .tpl-page-header-fixed {
- margin-top: 75px;
- }
- .tpl-navbar-collapse {
- width: 235px;
- float: left;
- background: #fff;
- border-radius: 6px;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
- padding-bottom: 20px;
- }
- .admin-offcanvas-bar {
- border-radius: 2px;
- overflow: hidden;
- }
- .tpl-page-container-nav-heading {
- height: 50px;
- padding: 25px 15px 10px;
- color: #5C9ACF;
- font-size: 13px;
- font-weight: 600;
- }
- .admin-sidebar-sub {
- background: none;
- padding-left: 0;
- }
- .admin-sidebar-list .admin-sidebar-sub li {
- padding-left: 0;
- }
- .admin-sidebar-sub li:first-child {
- border-top: none;
- }
- .admin-sidebar-list li {
- position: relative;
- border: none;
- padding-left: 24px;
- border-left: 3px solid #fff;
- }
- .admin-sidebar-list .admin-parent li {}
- .tpl-page-container-ico {
- font-size: 20px;
- position: absolute;
- top: 6px;
- left: 18px;
- padding-right: 10px;
- color: #a7bdcd;
- }
- .tpl-sidebar-list {}
- .tpl-sidebar-list li.tpl-sidebar-list-hover:hover a,
- .tpl-sidebar-list li.tpl-sidebar-list-hover.active a {
- color: #5b9bd1;
- }
- .tpl-sidebar-list li.tpl-sidebar-list-hover:hover .tpl-page-container-ico,
- .tpl-sidebar-list li.tpl-sidebar-list-hover.active .tpl-page-container-ico {
- color: #5b9bd1;
- }
- .tpl-sidebar-list li.tpl-sidebar-list-hover:hover,
- .tpl-sidebar-list li.tpl-sidebar-list-hover.active {
- background: #f2f6f9;
- border-left: 3px solid #5C9ACF!important;
- }
- .tpl-sidebar-list-hover-show .tpl-sidebar-list-hover-show-font:hover,
- .tpl-sidebar-list-hover-show .tpl-sidebar-list-hover-show-font:hover .tpl-page-container-ico {
- color: #5b9bd1;
- }
- .tpl-sidebar-list-hover-show.active .tpl-sidebar-list-hover-show-font,
- .tpl-sidebar-list-hover-show.active .tpl-sidebar-list-hover-show-font .tpl-page-container-ico {
- color: #5b9bd1;
- }
- .tpl-sidebar-list-hover-show:hover,
- .tpl-sidebar-list-hover-show.active {
- background: #f2f6f9;
- border-left: 3px solid #f2f6f9;
- }
- .admin-sidebar-sub li:hover,
- .admin-sidebar-sub li.active {
- background: #f2f6f9;
- border-left: 3px solid #f2f6f9;
- }
- .admin-sidebar-sub li:hover a,
- .admin-sidebar-sub li.active a {
- color: #5b9bd1;
- }
- .tpl-topbar-list-button {
- float: left;
- color: #C0CDDC;
- font-size: 18px;
- }
- .tpl-topbar-list-button span {
- cursor: pointer;
- }
- .tpl-content-wrapper {
- padding-left: 255px;
- /*padding-top: 10px;*/
- }
- .tpl-content-wrapper-hover {
- padding-left: 0px;
- }
- .tpl-content-page-title {
- color: #697882;
- font-size: 22px;
- font-weight: 400;
- }
- .tpl-left-nav {
- width: 235px;
- float: left;
- background: #fff;
- border-radius: 6px;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
- padding-bottom: 20px;
- }
- .tpl-left-nav-title {
- height: 50px;
- padding: 25px 15px 10px;
- color: #5C9ACF;
- font-size: 13px;
- font-weight: 600;
- }
- .tpl-left-nav-list {
- width: 235px;
- }
- .tpl-left-nav-item {}
- .tpl-left-nav-item .nav-link {
- display: block;
- position: relative;
- margin: 1px 0 0;
- border: 0;
- padding: 12px 15px;
- /*padding-top: 6px;*/
- text-decoration: none;
- color: #485a6a;
- font-size: 14px;
- }
- .tpl-left-nav-item .nav-link span,
- .tpl-left-nav-sub-menu a span {
- font-size: 14px;
- font-weight: 400;
- color: #485a6a;
- }
- .tpl-left-nav-item .nav-link i,
- .tpl-left-nav-sub-menu a i {
- font-size: 20px;
- position: relative;
- text-shadow: none;
- font-weight: 300;
- top: 2px;
- margin-left: 1px;
- margin-right: 6px;
- color: #a7bdcd;
- }
- .tpl-left-nav-item .nav-link:hover {
- background: #f2f6f9;
- color: #5b9bd1;
- border-left: 3px solid #5C9ACF!important;
- margin-left: -3px;
- padding-left: 15px;
- }
- .tpl-left-nav-item .nav-link:hover i,
- .tpl-left-nav-sub-menu a:hover i {
- color: #5b9bd1;
- }
- .tpl-left-nav-item .nav-link:hover span,
- .tpl-left-nav-sub-menu a:hover span {
- color: #5b9bd1;
- font-weight: bold;
- }
- .tpl-left-nav-item .nav-link.active {
- border-left: 3px solid #5C9ACF!important;
- background: #f2f6f9;
- margin-left: -3px;
- padding-left: 15px;
- }
- .tpl-left-nav-item .nav-link.active span,
- .tpl-left-nav-item .nav-link.active i {
- color: #5b9bd1;
- }
- .tpl-left-nav-sub-menu {
- list-style: none;
- display: none;
- padding: 0;
- margin: 0;
- }
- .tpl-header-nav-hover-ico {
- color: #C0CDDC!important;
- font-size: 19px!important;
- }
- .tpl-left-nav-more-ico {
- -webkit-transition: all 300ms;
- transition: all 300ms;
- font-size: 16px!important;
- top: 4px!important;
- }
- .tpl-left-nav-more-ico-rotate {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
- -webkit-transition: all 300ms;
- transition: all 300ms;
- }
- .tpl-left-nav-sub-menu a {
- display: block;
- margin: 0;
- padding: 4px 14px 9px 30px;
- text-decoration: none;
- font-size: 14px;
- font-weight: 400;
- background: 0 0;
- }
- .tpl-left-nav-sub-menu a:hover,
- .tpl-left-nav-sub-menu a.active {
- color: #5b9bd1;
- background: #f2f6f9!important;
- }
- .tpl-left-nav-sub-menu a.active i,
- .tpl-left-nav-sub-menu a.active span {
- color: #5b9bd1;
- background: #f2f6f9!important;
- }
- .tpl-left-nav-content-ico {
- font-size: 14px!important;
- position: relative;
- top: 8px!important;
- color: #ffbe40!important;
- }
- .tpl-left-nav-content {
- background-color: #36c6d3;
- border-radius: 1000px;
- color: #fff!important;
- padding: 0px 8px!important;
- float: right;
- position: relative;
- font-style: normal;
- font-family: "微软雅黑";
- top: 10px!important;
- font-size: 12px!important;
- }
- .tpl-content-scope {}
- .note {
- margin: 0 0 20px;
- padding: 15px 30px 15px 15px;
- border-left: 5px solid #eee;
- border-radius: 0 4px 4px 0;
- font-size: 13px;
- }
- .note h3 {
- margin-bottom: 10px;
- font-size: 20px;
- font-weight: 500;
- }
- .note p {
- margin: 0;
- font-size: 14px;
- line-height: 26px;
- }
- .note-info {
- background-color: #f5f8fd;
- border-color: #8bb4e7;
- color: #010407;
- }
- .label-danger {
- background-color: #ed6b75;
- }
- .label {
- display: inline;
- padding: 0.2em 0.6em 0.3em;
- font-size: 75%;
- font-weight: bold;
- line-height: 1;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
- }
- .dashboard-stat .visual {
- width: 80px;
- height: 80px;
- display: block;
- float: left;
- padding-top: 10px;
- padding-left: 15px;
- margin-bottom: 15px;
- font-size: 35px;
- line-height: 35px;
- }
- .dashboard-stat.blue .visual>i {
- color: #FFF;
- opacity: .1;
- filter: alpha(opacity=10);
- }
- .dashboard-stat .visual>i {
- margin-left: -35px;
- font-size: 110px;
- line-height: 110px;
- }
- .dashboard-stat .details {
- position: absolute;
- right: 15px;
- padding-right: 15px;
- }
- .dashboard-stat.blue .details .number {
- color: #FFF;
- }
- .dashboard-stat .details .number {
- padding-top: 25px;
- text-align: right;
- font-size: 34px;
- line-height: 36px;
- letter-spacing: -1px;
- margin-bottom: 0;
- font-weight: 300;
- }
- .dashboard-stat.blue .details .desc {
- color: #FFF;
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .dashboard-stat .details .desc {
- text-align: right;
- font-size: 16px;
- letter-spacing: 0;
- font-weight: 300;
- }
- .dashboard-stat.blue .more {
- color: #FFF;
- background-color: #258fd7;
- }
- .dashboard-stat {
- display: block;
- margin-bottom: 25px;
- overflow: hidden;
- border-radius: 4px;
- }
- .dashboard-stat .more {
- clear: both;
- display: block;
- padding: 6px 10px;
- position: relative;
- text-transform: uppercase;
- font-weight: 300;
- font-size: 11px;
- opacity: .7;
- filter: alpha(opacity=70);
- }
- .row {
- margin-left: -18px;
- margin-right: -18px;
- overflow: hidden;
- }
- .row-mb {
- margin-bottom: 25px;
- }
- .dashboard-stat.blue {
- background-color: #3598dc;
- }
- .dashboard-stat.red {
- background-color: #e7505a;
- }
- .dashboard-stat.green {
- background-color: #32c5d2;
- }
- .dashboard-stat.purple {
- background-color: #8E44AD;
- }
- .dashboard-stat .more>i {
- display: inline-block;
- margin-top: 1px;
- float: right;
- }
- .m-icon-swapright {
- background-position: -27px -10px;
- }
- .m-icon-white {
- background-image: url(../img/syncfusion-icons-white.png);
- }
- .dashboard-stat.red .more {
- color: #fff;
- background-color: #e53e49;
- }
- .dashboard-stat.red .visual>i {
- color: #fff;
- opacity: .1;
- filter: alpha(opacity=10);
- }
- .dashboard-stat.red .details .number {
- color: #fff;
- }
- .dashboard-stat.red .details .desc {
- color: #fff;
- opacity: 1;
- filter: alpha(opacity=100);
- }
- [class^=m-icon-] {
- width: 14px;
- height: 14px;
- margin-top: 3px;
- line-height: 14px;
- vertical-align: top;
- }
- .dashboard-stat.green .details .number {
- color: #FFF;
- }
- .dashboard-stat.green .details .desc {
- color: #FFF;
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .dashboard-stat.green .more {
- color: #FFF;
- background-color: #2bb8c4;
- }
- .dashboard-stat.green .visual>i {
- color: #FFF;
- opacity: .1;
- filter: alpha(opacity=10);
- }
- .dashboard-stat.purple .visual>i {
- color: #fff;
- opacity: .1;
- filter: alpha(opacity=10);
- }
- .dashboard-stat.purple .details .number {
- color: #fff;
- }
- .dashboard-stat.purple .details .desc {
- color: #fff;
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .dashboard-stat.purple .more {
- color: #fff;
- background-color: #823e9e;
- }
- .tpl-portlet {
- padding: 12px 20px 15px;
- background-color: #fff;
- border-radius: 4px;
- }
- .tpl-portlet-title {
- padding: 0;
- min-height: 48px;
- border-bottom: 1px solid #eef1f5;
- margin-bottom: 10px;
- overflow: hidden;
- }
- .tpl-caption {
- color: #666;
- padding: 10px 0;
- float: left;
- display: inline-block;
- font-size: 16px;
- line-height: 18px;
- }
- .font-green {
- color: #32c5d2!important;
- }
- .font-red {
- color: #e7505a!important;
- }
- .bold {
- font-weight: 700!important;
- }
- .actions {
- float: right;
- display: inline-block;
- padding: 6px 0 14px;
- }
- .actions-btn {
- width: 100%;
- }
- .actions-btn li {
- display: inline-block;
- padding: 4px 14px;
- font-size: 12px;
- line-height: 1.5;
- color: #e7505a;
- border: 1px solid #e7505a;
- border-radius: 60px;
- cursor: pointer;
- }
- .actions-btn li:hover {
- transition: all .3s;
- }
- .actions-btn li.red {
- border-color: #e7505a;
- color: #e7505a;
- background: 0 0;
- }
- .actions-btn li.red:hover,
- .actions-btn li.red-on {
- border-color: #e7505a;
- color: #fff;
- background-color: #e7505a;
- }
- .actions-btn li.green {
- border-color: #32c5d2;
- color: #32c5d2;
- background: 0 0;
- }
- .actions-btn li.green:hover,
- .actions-btn li.green-on {
- border-color: #32c5d2;
- color: #FFF;
- background-color: #32c5d2;
- }
- .actions-btn li.purple {
- border-color: #8E44AD;
- color: #8E44AD;
- background: 0 0;
- }
- .actions-btn li.purple:hover,
- .actions-btn li.purple-on {
- border-color: #8E44AD;
- color: #FFF;
- background-color: #8E44AD;
- }
- .actions-btn li.dark {
- border-color: #2f353b;
- color: #2f353b;
- background: 0 0;
- }
- .actions-btn li.dark:hover,
- .actions-btn li.dark-on {
- border-color: #2f353b;
- color: #FFF;
- background-color: #2f353b;
- }
- .actions-btn li.blue {
- border-color: #3598dc;
- color: #3598dc;
- background: 0 0;
- }
- .actions-btn li.blue:hover,
- .actions-btn li.blue-on {
- border-color: #3598dc;
- color: #FFF;
- background-color: #3598dc;
- }
- .tpl-echarts {
- width: 100%;
- min-height: 400px;
- }
- .tpl-scrollable {
- width: 100%;
- min-height: 400px;
- }
- .number-stats {}
- .number-stats {
- padding: 10px 0 16px;
- overflow: hidden;
- }
- .number-stats .stat-number .title {
- font-size: 13px;
- margin-bottom: 3px;
- color: #B8C3C7;
- }
- .number-stats .stat-number .number {
- font-size: 27px;
- line-height: 27px;
- }
- .tpl-table-uppercase {
- font-weight: 600;
- font-size: 13px;
- color: #93a2a9;
- border: 0;
- border-bottom: none;
- }
- .tpl-table-uppercase>th {
- border: none!important;
- }
- .tpl-table-uppercase td {
- border-top: 1px solid #F2F5F8!important;
- }
- .tpl-table .user-pic {
- display: inline-block;
- vertical-align: middle;
- height: 30px;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- -ms-border-radius: 100%;
- -o-border-radius: 100%;
- border-radius: 100%;
- }
- .tpl-table .user-name {
- font-size: 12px;
- }
- .tpl-table {
- margin-bottom: 0;
- }
- .am-table>tbody>tr>td,
- .am-table>tbody>tr>th,
- .am-table>tfoot>tr>td,
- .am-table>tfoot>tr>th,
- .am-table>thead>tr>td,
- .am-table>thead>tr>th {
- border-top: 1px solid #F2F5F8;
- color: #93a2a9;
- }
- .font-green {
- color: #32c5d2!important;
- }
- .caption-helper {
- padding: 0;
- margin: 0;
- line-height: 13px;
- color: #9eacb4;
- font-size: 13px;
- font-weight: 400;
- }
- .input-inline {
- display: inline-block;
- width: auto;
- vertical-align: middle;
- }
- .input-small {
- width: 145px!important;
- }
- .input-icon {
- position: relative;
- left: 0;
- }
- .input-icon i {
- font-size: 14px;
- margin-top: 9px;
- }
- .input-icon>i {
- color: #ccc;
- position: absolute;
- margin-top: 2px;
- z-index: 3;
- width: 16px;
- font-size: 16px;
- text-align: center;
- left: 0;
- left: auto;
- right: 8px;
- float: right;
- }
- .form-control {
- display: block;
- width: 100%;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857;
- color: #4d6b8a;
- background-color: #fff;
- background-image: none;
- border: 1px solid #c2cad8;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- outline: none;
- }
- .form-control {
- height: 30px;
- padding: 2px 26px 3px 10px;
- font-size: 13px;
- }
- .input-icon.right {
- left: auto;
- right: 0;
- }
- .tpl-portlet-input {
- float: right;
- display: inline-block;
- padding: 4px 0;
- }
- .wrapper {
- z-index: 1;
- height: 400px;
- width: 100%;
- background: #fff;
- overflow: hidden;
- position: relative;
- }
- .scroller {
- position: absolute;
- z-index: 1;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- width: 100%;
- -webkit-transform: translateZ(0);
- -moz-transform: translateZ(0);
- -ms-transform: translateZ(0);
- -o-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-text-size-adjust: none;
- -moz-text-size-adjust: none;
- -ms-text-size-adjust: none;
- -o-text-size-adjust: none;
- text-size-adjust: none;
- }
- .scroller ul {
- list-style: none;
- padding: 0;
- margin: 0;
- width: 100%;
- text-align: left;
- }
- .scroller li {
- padding: 0 10px;
- height: 40px;
- line-height: 40px;
- font-size: 14px;
- }
- .iScrollIndicator {
- background: rgb(215, 220, 226)!important;
- border: none!important;
- border-radius: 0!important;
- opacity: 1!important;
- }
- .iScrollVerticalScrollbar {
- opacity: 1!important;
- }
- .tpl-task-list {
- list-style: none;
- padding: 0;
- margin: 0;
- }
- .tpl-task-list li {
- position: relative;
- padding: 10px!important;
- border-bottom: 1px solid #F4F6F9;
- height: auto!important;
- font-size: 14px!important;
- line-height: 22px!important;
- }
- .task-checkbox {
- float: left;
- width: 30px;
- }
- .task-title {
- color: #838FA1;
- margin-right: 10px;
- }
- .task-title-sp {
- margin-right: 5px;
- }
- .label-sm {
- font-size: 13px;
- padding: 2px 5px;
- }
- .label-success {
- background-color: #36c6d3;
- }
- .label {
- text-shadow: none!important;
- font-size: 14px;
- font-weight: 300;
- padding: 3px 6px;
- color: #fff;
- }
- .task-config {
- display: none;
- position: absolute;
- top: 1px;
- right: 10px;
- }
- .tpl-task-list li:hover .task-config {
- display: block;
- margin-bottom: 0!important;
- }
- .tpl-task-list-hover {
- padding: 2px 12px;
- color: #666;
- border-radius: 3px;
- background-color: #e1e5ec;
- border-color: #e1e5ec;
- }
- .tpl-task-list-hover:hover {
- color: #999;
- }
- .tpl-task-list-dropdown {
- position: absolute;
- top: 10px;
- left: -85px;
- }
- .tpl-task-list-dropdown-ul {
- width: 80px!important;
- min-width: 80px!important;
- }
- .tpl-task-list-dropdown-ul li {
- /*padding: 0!important;*/
- text-align: center;
- }
- .tpl-task-list>li:hover {
- background: #F4F6F9;
- }
- .tpl-task-list-dropdown-ul li a {
- padding: 0!important;
- display: inherit!important;
- }
- .label-danger {
- background-color: #ed6b75;
- }
- .label-warning {
- background-color: #F1C40F;
- }
- .label-default {
- background-color: #bac3d0;
- }
- .tpl-index-tabs {
- position: relative;
- }
- .tpl-index-tabs .am-nav-tabs {
- border: none;
- position: absolute;
- top: -55px;
- right: 0;
- }
- .tpl-index-tabs .am-nav-tabs li a {
- color: #333;
- font-size: 13px;
- border: none;
- padding-bottom: 16px;
- }
- .tpl-index-tabs .am-nav-tabs li a:hover {
- background: transparent;
- border: none;
- border-bottom: 4px solid #36c6d3;
- }
- .tpl-index-tabs .am-nav-tabs>li.am-active>a,
- .tpl-index-tabs .am-nav-tabs>li.am-active>a:focus,
- .tpl-index-tabs .am-nav-tabs>li.am-active>a:hover {
- border: none;
- }
- .tpl-index-tabs .am-nav-tabs li.am-active {
- border: none;
- border-bottom: 4px solid #36c6d3;
- }
- .tpl-index-tabs .am-tabs-bd .am-tab-panel {
- padding: 0;
- }
- .tpl-index-tabs .am-tabs-bd {
- border: none;
- }
- .tpl-task-remind {}
- .tpl-task-remind li {
- color: #82949a;
- margin-bottom: 7px;
- }
- .tpl-task-remind li .cosA {
- margin-right: 80px;
- }
- .tpl-task-remind li .cosB {
- float: right;
- width: 75px;
- margin-left: -75px;
- text-align: right;
- font-style: italic;
- color: #c1cbd0;
- }
- .tpl-label-info {
- font-size: 13px;
- padding: 2px 5px;
- background-color: #659be0;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
- }
- .tpl-task-remind li .cosA .cosIco {
- display: inline-block;
- width: 24px;
- height: 24px;
- vertical-align: middle;
- color: #fff;
- text-align: center;
- border-radius: 3px;
- background-color: #36c6d3;
- }
- .label-danger {
- background-color: #ed6b75!important;
- }
- .label-info {
- background-color: #659be0!important;
- }
- .label-warning {
- background-color: #F1C40F!important;
- }
- .tpl-portlet-components {
- border: 1px solid #e7ecf1;
- padding: 12px 20px 15px;
- background-color: #fff;
- margin-top: 0;
- margin-bottom: 25px;
- overflow: hidden;
- }
- .tpl-portlet-components .portlet-title {
- border-bottom: 1px solid #eef1f5;
- padding: 0;
- min-height: 48px;
- margin-bottom: 10px;
- }
- .tpl-portlet-components .portlet-title .caption {
- float: left;
- display: inline-block;
- font-size: 18px;
- line-height: 18px;
- color: #666;
- padding: 10px 0;
- }
- .tpl-block {
- padding-top: 10px;
- padding-bottom: 10px;
- font-size: 18px;
- }
- .tpl-alert {
- padding: 15px;
- margin-bottom: 20px;
- border: 1px solid transparent;
- border-radius: 4px;
- }
- .tpl-fz-ml {
- margin-left: 30px;
- }
- .tpl-table-fz-check {
- border: 1px solid transparent;
- height: 12px;
- width: 12px;
- background: #fff;
- }
- .am-table-striped>tbody>tr:nth-child(odd)>td,
- .am-table-striped>tbody>tr:nth-child(odd)>th {
- background: #f3f4f6;
- }
- .am-selected-btn.am-btn-default {
- border-radius: 3px;
- }
- .am-input-group {
- border-radius: 3px;
- overflow: hidden;
- }
- .tpl-am-btn-success {
- border-color: #5eb95e!important;
- }
- .tpl-pagination .am-disabled a,
- .tpl-pagination li a {
- color: #23abf0;
- border-radius: 3px;
- padding: 6px 12px;
- }
- .tpl-pagination .am-active a {
- background: #23abf0;
- color: #fff;
- border: 1px solid #23abf0;
- padding: 6px 12px;
- }
- .tpl-table-images {}
- .tpl-table-images-content {
- width: 100%;
- border: 1px solid #e7ecf1;
- padding: 26px;
- margin-bottom: 30px;
- }
- .tpl-table-images-content-i {
- position: relative;
- display: block;
- width: 100%;
- }
- .tpl-table-images-content-i-time {
- width: 100%;
- font-size: 12px;
- color: #666;
- padding-bottom: 10px;
- border-bottom: 1px solid #e7ecf1;
- margin-bottom: 10px;
- }
- .tpl-table-images-content-i-shadow {
- background: url(../img/lbbg.png) bottom repeat-x;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- }
- .tpl-table-images-content-i-info {
- position: absolute;
- left: 10px;
- right: 0;
- bottom: 10px;
- z-index: 2;
- }
- .tpl-table-images-content-i-info span.ico {
- line-height: 40px;
- display: inline-block;
- color: #fff;
- font-size: 14px;
- }
- .tpl-table-images-content-i-info span.ico img {
- border-radius: 50%;
- width: 40px;
- display: inline-block;
- margin-right: 10px;
- }
- .tpl-table-images-content-i img {
- display: block;
- width: 100%;
- }
- .tpl-table-images-content-block {
- width: 100%;
- padding-top: 10px;
- color: #333;
- }
- .tpl-table-images-content .tpl-i-title {
- font-size: 14px;
- padding-bottom: 10px;
- }
- .tpl-table-images-content .tpl-i-font {
- font-size: 14px;
- color: #666;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- line-height: 1.6em;
- -webkit-line-clamp: 2;
- max-height: 3em;
- }
- .tpl-table-images-content .tpl-i-more {}
- .tpl-table-images-content .tpl-i-more ul {
- border-top: 1px solid #e7ecf1;
- border-bottom: 1px solid #e7ecf1;
- margin-top: 10px;
- width: 100%;
- overflow: hidden;
- padding: 10px 0px;
- }
- .tpl-table-images-content .tpl-i-more li {
- text-align: center;
- width: 33.3333%;
- font-size: 14px;
- float: left;
- }
- .tpl-edit-content-btn {
- width: 100%;
- }
- .tpl-edit-content-btn button {
- width: 25%!important;
- }
- .tpl-form-body {
- padding: 20px;
- }
- .tpl-form-line {}
- .tpl-form-line-form {}
- .tpl-form-line-form input[type=number]:focus,
- .tpl-form-line-form input[type=search]:focus,
- .tpl-form-line-form input[type=text]:focus,
- .tpl-form-line-form input[type=password]:focus,
- .tpl-form-line-form input[type=datetime]:focus,
- .tpl-form-line-form input[type=datetime-local]:focus,
- .tpl-form-line-form input[type=date]:focus,
- .tpl-form-line-form input[type=month]:focus,
- .tpl-form-line-form input[type=time]:focus,
- .tpl-form-line-form input[type=week]:focus,
- .tpl-form-line-form input[type=email]:focus,
- .tpl-form-line-form input[type=url]:focus,
- .tpl-form-line-form input[type=tel]:focus,
- .tpl-form-line-form input[type=color]:focus,
- .tpl-form-line-form select:focus,
- .tpl-form-line-form textarea:focus,
- .am-form-field:focus {
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .tpl-form-line-form input[type=number],
- .tpl-form-line-form input[type=search],
- .tpl-form-line-form input[type=text],
- .tpl-form-line-form input[type=password],
- .tpl-form-line-form input[type=datetime],
- .tpl-form-line-form input[type=datetime-local],
- .tpl-form-line-form input[type=date],
- .tpl-form-line-form input[type=month],
- .tpl-form-line-form input[type=time],
- .tpl-form-line-form input[type=week],
- .tpl-form-line-form input[type=email],
- .tpl-form-line-form input[type=url],
- .tpl-form-line-form input[type=tel],
- .tpl-form-line-form input[type=color],
- .tpl-form-line-form select,
- .tpl-form-line-form textarea,
- .am-form-field {
- display: block;
- width: 100%;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857;
- color: #4d6b8a;
- background-color: #fff;
- background-image: none;
- border: 1px solid #c2cad8;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- background: 0 0;
- border: 0;
- border-bottom: 1px solid #c2cad8;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- -ms-border-radius: 0;
- -o-border-radius: 0;
- border-radius: 0;
- color: #555;
- box-shadow: none;
- padding-left: 0;
- padding-right: 0;
- font-size: 14px;
- }
- .tpl-amazeui-form {}
- .tpl-amazeui-form .am-form-label {
- color: #999;
- font-weight: normal;
- font-size: 14px;
- }
- .tpl-amazeui-form input::-webkit-input-placeholder {
- font-size: 12px;
- }
- .tpl-amazeui-form textarea::-webkit-input-placeholder {
- font-size: 12px;
- }
- .tpl-amazeui-form small {
- font-size: 12px;
- }
- .tpl-form-line-form .am-checkbox,
- .tpl-form-line-form .am-checkbox-inline,
- .tpl-form-line-form .am-form-label,
- .tpl-form-line-form .am-radio,
- .tpl-form-line-form .am-radio-inline {
- margin-top: 0;
- margin-bottom: 0;
- }
- .tpl-form-line-form .am-form-group:after {
- clear: both;
- }
- .tpl-form-line-form .am-form-group:after,
- .tpl-form-line-form .am-form-group:before {
- content: " ";
- display: table;
- }
- .tpl-form-line-form .am-form-label {
- padding-top: 5px;
- font-size: 16px;
- color: #888;
- font-weight: inherit;
- text-align: right;
- }
- .tpl-form-line-form .am-form-group {
- /*padding: 20px 0;*/
- }
- .tpl-form-line-form .am-form-label .tpl-form-line-small-title {
- color: #999;
- font-size: 12px;
- }
- .tpl-form-no-bg {
- background: none!important;
- }
- .tpl-switch input[type="checkbox"] {
- position: absolute;
- opacity: 0;
- }
- .tpl-switch input[type="checkbox"].ios-switch+div {
- vertical-align: middle;
- width: 40px;
- height: 20px;
- border-radius: 999px;
- background-color: rgba(0, 0, 0, 0.1);
- -webkit-transition-duration: .4s;
- -webkit-transition-property: background-color, box-shadow;
- margin-top: 6px;
- }
- .tpl-switch input[type="checkbox"].ios-switch:checked+div {
- width: 40px;
- background-position: 0 0;
- background-color: #36c6d3;
- }
- .tpl-switch input[type="checkbox"].tinyswitch.ios-switch+div {
- width: 34px;
- height: 18px;
- }
- .tpl-switch input[type="checkbox"].bigswitch.ios-switch+div {
- width: 50px;
- height: 25px;
- }
- .tpl-switch input[type="checkbox"].green.ios-switch:checked+div {
- background-color: #00e359;
- border: 1px solid rgba(0, 162, 63, 1);
- box-shadow: inset 0 0 0 10px rgba(0, 227, 89, 1);
- }
- .tpl-switch input[type="checkbox"].ios-switch+div>div {
- float: left;
- width: 18px;
- height: 18px;
- border-radius: inherit;
- background: #ffffff;
- -webkit-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
- -webkit-transition-duration: 0.4s;
- -webkit-transition-property: transform, background-color, box-shadow;
- -moz-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
- -moz-transition-duration: 0.4s;
- -moz-transition-property: transform, background-color;
- pointer-events: none;
- margin-top: 1px;
- margin-left: 1px;
- }
- .tpl-switch input[type="checkbox"].ios-switch:checked+div>div {
- -webkit-transform: translate3d(20px, 0, 0);
- -moz-transform: translate3d(20px, 0, 0);
- background-color: #ffffff;
- }
- .tpl-switch input[type="checkbox"].tinyswitch.ios-switch+div>div {
- width: 16px;
- height: 16px;
- margin-top: 1px;
- }
- .tpl-switch input[type="checkbox"].tinyswitch.ios-switch:checked+div>div {
- -webkit-transform: translate3d(16px, 0, 0);
- -moz-transform: translate3d(16px, 0, 0);
- box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
- }
- .tpl-switch input[type="checkbox"].bigswitch.ios-switch+div>div {
- width: 23px;
- height: 23px;
- margin-top: 1px;
- }
- .tpl-switch input[type="checkbox"].bigswitch.ios-switch:checked+div>div {
- -webkit-transform: translate3d(25px, 0, 0);
- -moz-transform: translate3d(16px, 0, 0);
- }
- .tpl-switch input[type="checkbox"].green.ios-switch:checked+div>div {
- box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 162, 63, 1);
- }
- .tpl-btn-bg-color-success {
- background-color: #36c6d3!important;
- border: none;
- }
- .tpl-form-file-img {
- width: 300px;
- margin-bottom: 10px;
- }
- .tpl-form-file-img img {
- width: 100%;
- display: block;
- }
- .myapp-login {
- background: #334054;
- background-size: 100%;
- height: 100%;
- }
- .myapp-login-logo-block {
- width: 100%;
- }
- .myapp-login-logo {
- width: 100%;
- text-align: center;
- padding-top: 30px;
- }
- .myapp-login-logo i {
- color: #eb602e;
- font-size: 120px;
- display: inline-block;
- }
- .myapp-login-logo-text {
- padding-top: 30px;
- font-family: Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
- color: #fff;
- font-weight: bold;
- font-size: 40px;
- text-align: center;
- width: 100%;
- }
- .myapp-login-logo-text span {
- color: #53d192;
- }
- .myapp-login-logo-text i {
- color: #53d192;
- font-size: 50px;
- }
- .myapp-login-logo-text .info {
- padding-bottom: 30px;
- border-bottom: 1px solid #4d4d4d;
- font-family: FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
- width: 100%;
- font-weight: normal;
- font-size: 14px;
- color: #fff;
- }
- .login-font {
- font-size: 12px;
- font-family: "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
- width: 100%;
- color: #5e5e5e;
- text-align: center;
- padding: 20px 0;
- padding-top: 10px;
- }
- .login-font i {
- color: #53d192;
- font-style: normal;
- }
- .login-font span {
- color: #fff;
- }
- .myapp-login .am-form-group {
- margin-bottom: 0;
- }
- .login-am-center {
- margin: 0 auto;
- float: none;
- }
- .login-am-center .am-form input {
- background: #fff;
- border: none;
- font-size: 12px;
- line-height: 30px;
- text-indent: 10px;
- border-radius: 0px 0px 6px 6px;
- }
- .login-am-center .am-form .am-form-group:first-child input {
- border-radius: 6px 6px 0px 0px;
- }
- .login-am-center .am-btn-default {
- width: 100%;
- border-radius: 6px;
- background: #53d192;
- border: none;
- color: #fff;
- font-size: 14px;
- line-height: 30px;
- }
- .tpl-login-max {
- max-width: 640px;
- margin: 0 auto;
- }
- .am-topbar-btn {
- margin-top: 21px;
- }
- .tpl-chart-mb {
- margin-top: 20px;
- margin-bottom: 40px;
- }
- @media screen and (max-width: 1000px) {
- .tpl-left-nav-hover {
- display: none;
- width: 100%;
- margin-bottom: 10px;
- }
- .tpl-left-nav-list {
- width: 100%;
- }
- .tpl-content-wrapper {
- padding-left: 0;
- }
- }
- .display-flex-start {
- display: flex!important;
- align-items: center;
- }
- .display-flex-column {
- display: flex;
- flex-direction: column;
- }
- .flex-space-evenly {
- justify-content: space-evenly;
- }
- .flex-space-between {
- justify-content: space-between;
- }
- .items-center {
- align-items: center;
- }
- .justify-center {
- justify-content: center;
- }
- .justify-end {
- justify-content: flex-end;
- }
- .items-start {
- align-items: flex-start;
- }
- .display-flex-between {
- display: flex;
- justify-content: space-between;
- }
- .display-flex-around {
- display: flex;
- justify-content: space-around;
- }
- .display-flex-evenly {
- display: flex;
- justify-content: space-evenly;
- }
- .display-flex-wrap {
- display: flex;
- flex-wrap: wrap;
- }
- .margin-left-3px {
- margin-left: 3px;
- }
- .margin-left-10 {
- margin-left: 10px;
- }
- .margin-left-15 {
- margin-left: 15px;
- }
- .margin-left-20 {
- margin-left: 20px;
- }
- .margin-left-30 {
- margin-left: 30px;
- }
- .margin-right-10 {
- margin-right: 10px;
- }
- .margin-right-15 {
- margin-right: 15px;
- }
- .margin-top-10 {
- margin-top: 10px;
- }
- .margin-top-15 {
- margin-top: 15px;
- }
- .margin-top-50 {
- margin-top: 50px;
- }
- .margin-top-10per {
- margin-top: 10%;
- }
- .padding-right-0 {
- padding-right: 0!important;
- }
- .padding-left-0 {
- padding-left: 0!important;
- }
- .padding-left-10 {
- padding-left: 10px;
- }
- .date-box-self {
- background: #fff;
- width: 300px;
- border-radius: 3px;
- border: 1px solid #d7d7d7;
- }
- .date-input-self {
- border: none;
- background-color: #fff!important;
- text-indent: 10px;
- }
- .date-button-self {
- border: none;
- background-color: #fff!important;
- }
- .am-btn-self {
- color: #555;
- background-color: #fff;
- border-color: #d7d7d7;
- }
- .doc-js-btn-1 > .am-active {
- color: #fff!important;
- background-color: #409eff!important;
- }
- .vis-hidden {
- visibility: hidden!important;
- }
- .width-100{
- width: 100%!important;
- }
- .width-90{
- width: 90%!important;
- }
- .width-80{
- width: 80%!important;
- }
- .width-70 {
- width: 70%!important;
- }
- .width-65 {
- width: 65%!important;
- }
- .width-60 {
- width: 60%!important;
- }
- .width-40 {
- width: 40%!important;
- }
- .width-35 {
- width: 35%!important;
- }
- .width-30 {
- width: 30%!important;
- }
- .width-25 {
- width: 25%!important;
- }
- .width-20 {
- width: 20%!important;
- }
- .width-17 {
- width: 17%!important;
- }
- .width-15 {
- width: 15%!important;
- }
- .width-13 {
- width: 13%!important;
- }
- .width-12 {
- width: 12%!important;
- }
- .width-10 {
- width: 10%!important;
- }
- .width-9 {
- width: 9%!important;
- }
- .width-8 {
- width: 8%!important;
- }
- .width-80px {
- width: 80px!important;
- }
- .margin-top-5 {
- margin-top:5px;
- }
- .margin-top-20 {
- margin-top: 20px;
- }
- .margin-top-35 {
- margin-top: 35px;
- }
- .margin-bottom-35 {
- margin-bottom: 35px;
- }
- .margin-bottom-20 {
- margin-bottom:20px
- }
- .margin-bottom-10 {
- margin-bottom:10px
- }
- .margin-bottom-5 {
- margin-bottom:5px
- }
- .margin-right-5 {
- margin-right: 5px;
- }
- .margin-right-20 {
- margin-right:20px;
- }
- .margin-right-30 {
- margin-right:30px;
- }
- .padding-top-0 {
- padding-top: 0!important;
- }
- .padding-top-20 {
- padding-top: 20px!important;
- }
- .font-size-10 {
- font-size: 10px;
- }
- .font-size-12 {
- font-size: 12px;
- }
- .font-size-13 {
- font-size: 13px!important;
- }
- .font-size-14 {
- font-size: 14px;
- }
- .font-size-15 {
- font-size: 15px;
- }
- .font-size-20 {
- font-size: 20px;
- }
- .font-size-24 {
- font-size: 24px;
- }
- .font-size-32 {
- font-size: 32px;
- }
- .font-family-cur {
- font-family: cursive;
- }
- .right-list a {
- text-decoration: underline;
- }
- .font-normal {
- font-weight: normal;
- }
- .height-120 {
- height: 120px;
- }
- .green-3A{
- background: #67C23A;
- }
- .border-bottom-d7 {
- border-bottom: 1px solid #d7d7d7;
- }
- .radius-4 {
- border-radius: 5px;
- }
- .radio-box {
- position: absolute;
- top: 55px;
- left: 40%;
- z-index: 99;
- }
- .back-btn {
- width: 50px;
- height: 25px;
- line-height: 25px;
- font-size: 13px;
- background-color: #ECF5FF;
- border: 1px solid #B0D8FF;
- border-radius: 5px;
- color: #40A9FF;
- cursor: pointer;
- }
- .color-555 {
- color: #555;
- }
- .color-999 {
- color: #999;
- }
- .color-blue {
- color: #40A9FF!important;
- }
- .color-gray {
- color: #909D99;
- }
- .color-red {
- color: #FF007F;
- }
- .default-input-class {
- height: 35px!important;
- border: 1px solid #d7d7d7!important;
- border-radius: 2px!important;
- width: 40%;
- text-indent: 5px!important;
- font-size: 14px!important;
- }
- .disabled-input-class {
- background-color: #F5F7FA!important;
- color: #6CC1EF!important;
- }
- .default-textArea-class {
- height: 100px;
- border: 1px solid #d7d7d7;
- border-radius: 2px;
- width: 40%;
- padding: 3px;
- text-indent: 7px;
- }
- .default-btn-class {
- background-color: #409EFF;
- border: none;
- width: 100px;
- color: #fff;
- height: 35px;
- border-radius: 5px;
- }
- .disabled-btn-class {
- background-color: #909D99!important;
- color: #ffffff!important;
- }
- .left-line-class {
- width: 2px;
- height: 330px;
- background-color: #EEEFF2;
- position: absolute;
- left: -3px;
- top: 45px;
- }
- .cursor-hand {
- cursor: pointer;
- }
- .add-btn-default {
- background-color: #96BF48;
- }
- .cancel-btn {
- background-color: #fff;
- color: #555;
- border:1px solid #d7d7d7;
- }
- .modal-bottom-btn {
- position: fixed;
- bottom: 50px;
- right: 50px;
- }
- .header-title-class {
- color: #5a8dbb;
- font-weight: bold;
- font-size: 20px;
- }
- .right-box-class {
- background: #fff;
- padding-top: 20px;
- padding-bottom: 20px;
- border-radius: 5px;
- }
- .right-light-box {
- background: #D9EDF7;
- float: left!important;
- border-radius: 5px;
- padding-top: 5px;
- padding-bottom: 5px;
- margin-top: 10px;
- }
- .display-flex-start label {
- font-weight: normal;
- margin-right: 10px;
- }
- .display-flex-start label input {
- margin-right: 5px;
- }
- #time-box label{
- margin-right: 5px;
- border-radius: 5px;
- }
- .self-tabs-box {
- height: 50px;
- background-color: #f4f5f9;
- margin: 15px 0 15px 0;
- }
- .self-tabs-box div {
- height: 50px;
- line-height: 50px;
- padding: 0 15px 0 15px;
- }
- .tabs-active {
- color: #1890ff;
- border-bottom: 3px solid #1890ff;
- }
- .self-hide {
- display: none;
- }
- .margin-top-60 {
- margin-top: 60px;
- }
- .fff-btn-class {
- background-color: #fff;
- color: #555;
- border: 1px solid #d7d7d7;
- width: 100px;
- height: 35px;
- border-radius: 5px;
- }
- .pos-relative {
- position: relative;
- }
- .build-img-box {
- position: absolute;
- top: 0;
- right: 15%;
- }
- .build-img-box img {
- border-radius: 3px;
- }
- @media screen and (max-width: 1600px) {
- .date-box-self {
- width:220px;
- }
- }
- @media screen and (max-width: 1500px) {
- .build-img-box {
- position: absolute;
- top: 0;
- right: 7%;
- }
- .date-box-self {
- width:200px;
- }
- }
- .hidden-none {
- display: none!important;
- }
- .upload-box{
- width: 140px;
- height:100px;
- line-height: 50px;
- background-color: #f5f7fa;
- border-radius: 2px;
- border: 1px dashed #d7d7d7;
- background-size: contain;
- background-position: center;
- background-repeat: no-repeat;
- }
- @media screen and (max-width: 1600px) {
- .upload-box{
- width: 120px;
- height:80px;
- line-height: 30px;
- }
- }
- @media screen and (max-width: 1400px) {
- .upload-box{
- width: 100px;
- height:60px;
- line-height:15px;
- }
- }
- .picModal {
- position: absolute;
- top: 0;
- width:100%;
- height:83%;
- border-radius: 3px;
- background-color: rgba(0,0,0,.5);
- display:none;
- z-index:99;
- }
- .picModal-box{
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index:100;
- }
- .self-diamond-icon {
- width: 5px;
- height: 5px;
- background-color: #000;
- margin-right: 10px;
- transform: rotate(45deg);
- }
- .input-unit-class{
- position:absolute;
- top: 6px;
- right: 8px;
- }
- .am-float-right {
- float: right;
- }
- .am-table-striped>tbody>tr:nth-child(odd)>td, .am-table-striped>tbody>tr:nth-child(odd)>th {
- background: #fff;
- }
- .am-table>tbody>tr>td, .am-table>tbody>tr>th, .am-table>tfoot>tr>td, .am-table>tfoot>tr>th, .am-table>thead>tr>td, .am-table>thead>tr>th {
- color: #555;
- }
- .am-input-group .am-form-field, .am-input-group-btn>.am-btn {
- height: 33px;
- }
- .am-table>tbody>tr>td, .am-table>tbody>tr>th, .am-table>tfoot>tr>td, .am-table>tfoot>tr>th, .am-table>thead>tr>td, .am-table>thead>tr>th {
- vertical-align: middle;
- }
|