| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971 |
- ::-webkit-scrollbar-track {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
- }
- ::-webkit-scrollbar-thumb {
- background-color: rgba(0,0,0,0.05);
- border-radius: 10px;
- -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
- }
- ::-webkit-scrollbar-thumb {
- background-color: rgba(0,0,0,0.2);
- border-radius: 10px;
- -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
- }
- ::-webkit-scrollbar {
- width: 16px;
- height: 16px;
- }
- ::-webkit-scrollbar-track,
- ::-webkit-scrollbar-thumb {
- border-radius: 999px;
- border: 5px solid transparent;
- }
- ::-webkit-scrollbar-track {
- box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;
- }
- ::-webkit-scrollbar-thumb {
- min-height: 20px;
- background-clip: content-box;
- box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
- }
- ::-webkit-scrollbar-corner {
- background: transparent;
- }
- * {
- padding: 0px;
- margin: 0px;
- font-size: 9pt;
- }
- ul, li, h1, h2, h3, h4, h5, h6, dl, dt, dd {
- padding: 0;
- margin: 0;
- }
- ul {
- list-style: none;
- }
- img {
- border: none;
- }
- a {
- color: #000000;
- }
- a:hover {
- color: #000000;
- }
- a:focus {
- outline: none;
- -moz-outline: none;
- color: #000000;
- }
- body {
- margin: 0px;
- padding: 0px;
- font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
- color: #000000;
- }
- .loading_background {
- cursor: wait;
- display: block;
- width: 100%;
- height: 100%;
- opacity: 0.0;
- filter: alpha(opacity=00);
- background: #fff;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10000;
- }
- #loading_manage {
- color: #666;
- font-size: 20px;
- position: absolute;
- z-index: 10001;
- left: 0%;
- top: 40%;
- border: 1px solid rgb(187, 187, 187);
- width: auto;
- height: 80px;
- line-height: 78px;
- padding-left: 80px;
- padding-right: 20px;
- background: #fff;
- display: none;
- cursor: pointer;
- border-radius: 8px;
- background-image: url(../images/loading.gif);
- background-repeat: no-repeat;
- background-position: 8px 50%;
- box-shadow: 0 1px 15px rgba(0,0,0,.175);
- }
- #loading_manage span {
- font-size: 12pt;
- }
- #container {
- margin: 0 auto;
- }
- #side {
- float: left;
- width: 80px;
- _margin-right: -3px;
- position: relative;
- height: 100%;
- background: #2c3849;
- }
- #icon-vension {
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10;
- }
- .user-select {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .titlePanel {
- line-height: 60px;
- height: 60px;
- background: #fff;
- border: 1px solid #ccc;
- margin: 0px;
- border-bottom: none;
- position: relative;
- }
- .titlePanel .title-info {
- background: url(../images/view_grid.png) left center no-repeat;
- padding-left: 16px;
- float: left;
- margin: 20px 0 0 20px;
- height: 20px;
- line-height: 20px;
- cursor: pointer;
- }
- .titlePanel .title-name {
- line-height: 20px;
- padding-left: 10px;
- font-size: 18px;
- }
- .titlePanel .title-name .arrow {
- width: 8px;
- height: 8px;
- display: block;
- float: right;
- margin-left: 10px;
- margin-top: 7px;
- background: url(../images/black_arrow_8.png) 0 -8px no-repeat;
- }
- .titlePanel .grid-operation {
- line-height: 60px;
- height: 60px;
- width: 100%;
- background: #fff;
- position: absolute;
- display: none;
- }
- .titlePanel .grid-operation ul {
- margin: 13px 0 0 5px;
- }
- .titlePanel .grid-operation ul li {
- float: left;
- height: 12px;
- line-height: 12px;
- }
- .titlePanel .grid-operation ul .first {
- position: relative;
- display: block;
- padding: 10px 15px;
- }
- .titlePanel .grid-operation .closeoperation {
- position: absolute;
- top: 23px;
- right: 18px;
- display: block;
- height: 12px;
- width: 12px;
- background: url(../images/button_pm_close.png) left center no-repeat;
- }
- .titlePanel .title-search {
- float: left;
- padding-left: 15px;
- }
- .titlePanel .title-search .btn {
- margin-bottom: 3px;
- padding-top: 5px;
- }
- .titlePanel .title-search select {
- padding: 4px;
- padding-left: 6px;
- }
- .titlePanel .title-search .form-control {
- border-radius: 4px;
- box-shadow: none;
- }
- .titlePanel .title-search .ui-filter .form-control {
- border-radius: 0px;
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- }
- .titlePanel .toolbar {
- float: right;
- padding-right: 15px;
- line-height: 56px;
- }
- .titlePanel .toolbar i {
- font-size: 14px;
- margin-top: -1px;
- vertical-align: middle;
- color: #666666;
- }
- .toolbar-btn i {
- font-size: 13px;
- vertical-align: middle;
- margin-bottom: 2px;
- }
- .taskblockPanel {
- background: #fff;
- box-shadow: 0 1px 3px rgba(0,0,0,0.2);
- border: 1px solid #cfcfcf;
- }
- .taskblockPanel .taskblock {
- background-color: #fff;
- overflow-y: auto;
- width: 100%;
- }
- .taskblockPanel .taskblock li {
- color: #8E8E8E;
- line-height: 22px;
- height: 80px;
- border: 1px solid #DDD;
- margin: 5px 5px 5px 0;
- padding: 7px;
- border-left: 5px solid #337ab7;
- background: #FFF;
- border-radius: 5px;
- list-style: none;
- margin: 10px;
- }
- .taskblockPanel .taskblock li:hover {
- background: #F5F5F5;
- }
- .taskblockPanel .taskblock .item-text {
- font-weight: bold;
- font-size: 13px;
- }
- .dropdown-menu i {
- vertical-align: inherit;
- margin-bottom: 3px;
- }
- .tools_bar_icon {
- padding-left: 3px;
- height: 32px;
- line-height: 32px;
- border-bottom: #ccc 1px solid;
- margin-bottom: 1px;
- background: #F7F7F7;
- }
- .tools_bar_icon .icon-botton {
- margin-top: 3px;
- margin-right: 4px;
- vertical-align: middle;
- line-height: 10px;
- padding: 4px;
- float: left;
- cursor: pointer;
- border: 1px solid #ccc;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
- }
- .tools_bar_icon .icon-botton:hover {
- background-color: #fff;
- }
- label[disabled], label[disabled] label {
- color: #ccc;
- opacity: 1;
- cursor: default;
- }
- .form {
- width: 100%;
- margin: 0px;
- padding: 0px;
- border-collapse: collapse;
- border-width: 3px 1px 1px;
- table-layout: fixed;
- }
- .form .formTitle {
- position: relative;
- left: 0px;
- text-align: right;
- white-space: nowrap;
- font-weight: normal;
- width: 90px;
- padding-right: 10px;
- }
- .form .formTitle font {
- color: red;
- position: absolute;
- right: 0px;
- }
- .form .formTitle-top {
- vertical-align: top;
- padding-top: 4px;
- }
- .form .formValue {
- position: relative;
- padding: 5px;
- width: auto;
- }
- .form .formValue select {
- padding: 4px;
- padding-left: 4px;
- }
- .form-control {
- color: #000;
- border-radius: 0px;
- box-shadow: none;
- font-size: 9pt;
- height: 28px;
- padding-top: 0px;
- padding-bottom: 1px;
- padding-right: 0px;
- padding-left: 5px;
- resize: none;
- }
- .form-control:focus {
- border-color: #337ab7;
- box-shadow: none;
- }
- .form div.active {
- border-color: #337ab7;
- box-shadow: none;
- }
- .form textarea.form-control {
- padding-top: 5px;
- }
- textarea.form-control {
- padding-top: 5px;
- }
- .form-control[disabled], fieldset[disabled] .form-control {
- background-color: #eee;
- opacity: 1;
- cursor: default;
- opacity: 0.6;
- }
- .form-control[readonly], fieldset[readonly] .form-control {
- background-color: #fff;
- cursor: default;
- }
- .form .control-button {
- padding-left: 5px;
- padding-right: 5px;
- border: 1px solid #ccc;
- float: left;
- height: 28px;
- line-height: 27px;
- text-align: center;
- border-left: none;
- cursor: pointer;
- background: #ddd;
- }
- .form .control-button:hover {
- opacity: 0.8;
- }
- .form .input-button {
- border: none;
- right: 8px;
- top: 50%;
- width: 12px;
- height: 16px;
- margin-top: -12px;
- cursor: pointer;
- overflow: hidden;
- position: absolute;
- z-index: 100;
- }
- .form .wdate-datepicker {
- background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
- }
- .form .input-box {
- position: absolute;
- right: 11px;
- top: 9px;
- color: #ccc;
- font-size: 16px;
- cursor: pointer;
- }
- .form .input-success {
- position: absolute;
- right: 11px;
- top: 8px;
- color: #468847;
- font-size: 16px;
- cursor: default;
- }
- .form .input-warning {
- position: absolute;
- right: 11px;
- top: 9px;
- color: #C09853;
- font-size: 16px;
- cursor: default;
- }
- .form .input-error {
- position: absolute;
- right: 11px;
- top: 9px;
- color: #B94A48;
- font-size: 16px;
- cursor: default;
- }
- .form-button {
- padding: 0px;
- height: 40px;
- line-height: 36px;
- text-align: right;
- border-top: 1px solid #ccc;
- background-color: #f5f5f5;
- position: absolute;
- top: 100%;
- margin-top: -40px;
- width: 100%;
- padding-right: 6px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .form-error-text {
- padding-left: 30px;
- height: 26px;
- color: red;
- line-height: 25px;
- background: url('../images/validatebox_warning.png') center left no-repeat;
- background-position: 10px 4px;
- }
- .form-succeed-text {
- padding-left: 30px;
- height: 26px;
- color: green;
- line-height: 25px;
- background: url('../images/accept.png') center left no-repeat;
- background-position: 10px 4px;
- }
- .input-datepicker {
- background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
- }
- .input-wdatepicker {
- background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
- }
- .input-underline {
- box-shadow: none;
- border-top: 0px;
- border-left: 0px;
- border-right: 0px;
- border-bottom: 1px solid #ccc;
- height: 25px;
- }
- .has-error .form-control:focus {
- border-color: #B94A48;
- }
- .has-error .ui-select .ui-select-text {
- border-color: #b94a48;
- }
- .has-error .ui-select {
- border-color: #b94a48;
- }
- .has-error .ui-select:focus {
- border-color: #843534;
- }
- .ui-select[disabled], fieldset[disabled] .ui-select {
- background-color: #eee;
- opacity: 1;
- cursor: default;
- background-image: none;
- opacity: 0.6;
- }
- .ui-select {
- cursor: pointer;
- outline: 0;
- width: auto;
- height: 28px;
- line-height: 26px;
- position: relative;
- background: #fff url(../images/a2.png) no-repeat right center;
- }
- .ui-select-focus {
- border-color: #337ab7;
- }
- .ui-select .ui-select-text {
- box-shadow: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- border: 1px solid #ccc;
- padding-left: 5px;
- height: 28px;
- line-height: 26px;
- }
- .ui-select-option {
- margin: 0px;
- padding: 0px;
- width: 100%;
- display: none;
- position: absolute;
- left: 0px;
- top: 28px;
- background-color: #fff;
- overflow: hidden;
- border: 1px solid #ccc;
- border-top: 0;
- z-index: 9999;
- }
- .ui-select-option .ui-select-option-content {
- overflow-y: auto;
- }
- .ui-select-option li {
- min-height: 26px;
- line-height: 26px;
- overflow: hidden;
- cursor: pointer;
- }
- .ui-select-option li.on {
- background-color: #eee;
- }
- .ui-select-option li.liactive {
- background-color: #337ab7;
- color: #fff;
- }
- .ui-select-option-search {
- position: relative;
- }
- .ui-select-option-search .form-control {
- box-shadow: none;
- border-color: #ccc;
- border: none;
- border-top: 1px solid #ccc;
- height: 25px;
- margin: 0px;
- }
- .ui-select-option-search .input-query {
- position: absolute;
- right: 4px;
- top: 1px;
- color: #ccc;
- font-size: 16px;
- }
- .ui-underline .ui-select-text {
- box-shadow: none;
- border-top: 0px;
- border-left: 0px;
- border-right: 0px;
- border-bottom: 1px solid #ccc;
- height: 25px;
- }
- .ui-filter {
- cursor: pointer;
- outline: 0;
- width: auto;
- height: 29px;
- line-height: 28px;
- position: relative;
- }
- .ui-filter .ui-filter-text {
- border-radius: 4px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- border: 1px solid #ccc;
- padding-left: 5px;
- height: 29px;
- line-height: 27px;
- position: relative;
- z-index: 100;
- background: #fff url(../images/a2.png) no-repeat right center;
- }
- .ui-filter .ui-filter-text.active {
- border-bottom-left-radius: 0px;
- border-bottom-right-radius: 0px;
- }
- .ui-filter .ui-filter-list {
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- overflow: hidden;
- padding: 20px;
- padding-top: 15px;
- padding-bottom: 10px;
- width: 100%;
- display: none;
- left: 0px;
- top: 28px;
- background-color: #fff;
- overflow-y: auto;
- border: 1px solid #ccc;
- position: absolute;
- z-index: 99;
- box-shadow: 0 6px 12px rgba(0,0,0,.175);
- }
- .ui-filter .ui-filter-list .ui-filter-list-bottom {
- overflow: hidden;
- zoom: 1;
- margin-top: 10px;
- height: 30px;
- float: right;
- }
- .ui-filter .ui-filter-list .formTitle {
- text-align: left;
- white-space: nowrap;
- font-weight: normal;
- width: 65px;
- }
- .ui-option-list {
- width: 100%;
- }
- .ui-option-list li {
- height: 25px;
- line-height: 25px;
- overflow: hidden;
- cursor: pointer;
- padding-left: 5px;
- }
- .ui-option-list li.on {
- background-color: #eee;
- }
- .ui-option-list li.liactive {
- background-color: #337ab7;
- color: #fff;
- }
- .panel-Title {
- border-color: #c5c5c5;
- background-color: #fff;
- color: #666;
- height: 32px;
- line-height: 32px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-weight: bold;
- border-bottom: 1px solid #ccc;
- padding-left: 9px;
- }
- .ui-layout .panel-Title {
- border-color: #c5c5c5;
- background-color: #fff;
- color: #666;
- height: 32px;
- line-height: 32px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-weight: bold;
- border-bottom: 1px solid #ccc;
- padding-left: 9px;
- }
- .ui-layout .west-Panel {
- background: #fff;
- border: 1px solid #ccc;
- padding: 0px;
- }
- .ui-layout .east-Panel {
- margin-right: 10px;
- margin-top: 10px;
- background: #fff;
- border: 1px solid #ccc;
- padding: 0px;
- }
- .ui-layout .center-Panel {
- border: 1px solid #ccc;
- background: #fff;
- }
- .ui-layout .center-Panel .titlePanel {
- border-left: none;
- border-right: none;
- border-top: none;
- }
- .ui-layout .center-Panel .ui-widget-content {
- border: none;
- border-top: 1px solid #ccc;
- }
- .ui-icon-seek-next {
- display: block;
- height: 20px;
- line-height: 18px;
- width: 22px;
- border-radius: 5px;
- border: 1px solid #ccc;
- color: #666666;
- padding-left: 2px;
- }
- .ui-icon-seek-prev {
- display: block;
- height: 20px;
- line-height: 18px;
- width: 22px;
- border-radius: 5px;
- border: 1px solid #ccc;
- color: #666666;
- padding-right: 3px;
- }
- .ui-icon-seek-end {
- display: block;
- height: 20px;
- line-height: 18px;
- width: 22px;
- border-radius: 5px;
- border: 1px solid #ccc;
- margin-right: 5px;
- color: #666666;
- }
- .ui-icon-seek-first {
- display: block;
- height: 20px;
- line-height: 18px;
- width: 22px;
- border-radius: 5px;
- border: 1px solid #ccc;
- margin-right: 5px;
- color: #666666;
- }
- .ui-icon-seek-next:hover, .ui-icon-seek-prev:hover, .ui-icon-seek-end:hover, .ui-icon-seek-first:hover {
- background-color: #F5F5F5;
- }
- .contextmenu {
- position: fixed;
- top: -9999px;
- left: -9999px;
- z-index: 4000;
- display: none;
- }
- .contextmenu ul {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- float: left;
- background: url(../images/line.png) 26px 0 repeat-y #f1f1f1;
- padding: 5px 0;
- border: 1px solid #BEBEBE;
- box-shadow: 0 6px 12px rgba(0,0,0,.175);
- background-color: #fff;
- border-radius: 4px;
- }
- .contextmenu ul li {
- cursor: pointer;
- clear: both;
- line-height: 22px;
- white-space: nowrap;
- padding: 3px 33px;
- }
- .contextmenu ul .disabled {
- cursor: not-allowed;
- color: #ccc;
- }
- .contextmenu ul li.sub {
- background-repeat: no-repeat;
- background-position: right 11px;
- background-image: url(../images/arrow1.png);
- }
- .contextmenu ul li.active {
- background-color: #F5F5F5;
- color: #000000;
- }
- .contextmenu ul ul {
- display: none;
- position: absolute;
- color: #000000;
- }
- .contextmenu .m-split {
- height: 2px;
- background: url(../images/splitLine_bg.gif) center repeat-x;
- margin: 0 2px;
- margin-top: 1px;
- margin-bottom: 1px;
- margin-left: 26px;
- }
- .contextmenu li img {
- position: absolute;
- border: 0px;
- left: 6px;
- margin-top: 4px;
- width: 16px;
- height: 16px;
- }
- .mtip.success .mclose {
- background-position: -16px 0;
- }
- .mtip.error .mclose {
- background-position: -8px 0;
- }
- .mtip.warning .mclose {
- background-position: 0 0;
- }
- .mtip.success .mclose:hover {
- background-position: -16px -8px;
- }
- .mtip.error .mclose:hover {
- background-position: -8px -8px;
- }
- .mtip.warning .mclose:hover {
- background-position: 0 -8px;
- }
- .mtip .micon {
- background-image: url("../images/micon.png");
- background-repeat: no-repeat;
- display: inline-block;
- width: 20px;
- height: 16px;
- padding-right: 10px;
- margin-top: 0px;
- }
- .mtip.error .micon {
- background-position: 0 0;
- vertical-align: top;
- }
- .mtip.success .micon {
- background-position: 0 -66px;
- vertical-align: top;
- }
- .mtip.warning .micon {
- background-position: 0 -132px;
- vertical-align: top;
- }
- .mtip > span {
- vertical-align: 3px;
- line-height: 1;
- display: inline-block;
- width: auto;
- font-size: 16px;
- }
- .mtip {
- border-radius: 0 0 4px 4px;
- padding-top: 7px;
- padding-left: 25px;
- padding-right: 25px;
- padding-bottom: 5px;
- color: #fff;
- text-shadow: 0 1px 0 rgba(0,0,0,0.2);
- box-shadow: 0 4px 4px rgba(0,0,0,0.2);
- }
- .mtip.error {
- background-color: #cd3237;
- background-image: -moz-linear-gradient(top,#e34447,#cd3237);
- background-image: -ms-linear-gradient(top,#e34447,#cd3237);
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#e34447),to(#cd3237));
- background-image: -webkit-linear-gradient(top,#e34447,#cd3237);
- background-image: -o-linear-gradient(top,#e34447,#cd3237);
- background-image: linear-gradient(top,#e34447,#cd3237);
- border: 1px solid #ca3e3e;
- }
- .mtip.success {
- background-color: #43ab00;
- background-image: -moz-linear-gradient(top,#43ab00,#388e00);
- background-image: -ms-linear-gradient(top,#43ab00,#388e00);
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#43ab00),to(#388e00));
- background-image: -webkit-linear-gradient(top,#43ab00,#388e00);
- background-image: -o-linear-gradient(top,#43ab00,#388e00);
- background-image: linear-gradient(top,#43ab00,#388e00);
- border: 1px solid #338100;
- }
- .mtip.warning {
- background-color: #0f76cd;
- background-image: -moz-linear-gradient(top,#0f76cd,#086cc1);
- background-image: -ms-linear-gradient(top,#0f76cd,#086cc1);
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#0f76cd),to(#086cc1));
- background-image: -webkit-linear-gradient(top,#0f76cd,#086cc1);
- background-image: -o-linear-gradient(top,#0f76cd,#086cc1);
- background-image: linear-gradient(top,#0f76cd,#086cc1);
- border: 1px solid #006096;
- }
- .tip_container {
- display: none;
- z-index: 9999;
- position: fixed;
- top: 0;
- text-align: left;
- width: auto;
- _width: auto;
- }
- .poptip {
- z-index: 1000;
- position: absolute;
- top: 20px;
- left: 20px;
- padding: 6px 10px 6px;
- *padding: 7px 10px 5px;
- line-height: 16px;
- color: #fff;
- font-size: 12px;
- background-color: #B94A48;
- border: solid 1px #B94A48;
- border-radius: 2px;
- box-shadow: 0 0 3px #ddd;
- }
- .poptip-arrow {
- position: absolute;
- overflow: hidden;
- font-style: normal;
- font-family: simsun;
- text-shadow: 0 0 2px #ccc;
- }
- .poptip-arrow em, .poptip-arrow i {
- position: absolute;
- left: 0;
- top: 0;
- font-style: normal;
- }
- .poptip-arrow em {
- color: #B94A48;
- }
- .poptip-arrow i {
- color: #B94A48;
- text-shadow: none;
- }
- .poptip-arrow-top, .poptip-arrow-bottom {
- height: 6px;
- width: 12px;
- left: 12px;
- margin-left: -6px;
- }
- .poptip-arrow-left, .poptip-arrow-right {
- height: 12px;
- width: 6px;
- top: 12px;
- margin-top: -6px;
- }
- .poptip-arrow-top {
- top: -6px;
- }
- .poptip-arrow-top em {
- top: -1px;
- }
- .poptip-arrow-top i {
- top: 0px;
- }
- .poptip-arrow-bottom {
- bottom: -6px;
- }
- .poptip-arrow-bottom em {
- top: -8px;
- }
- .poptip-arrow-bottom i {
- top: -9px;
- }
- .poptip-arrow-left {
- left: -6px;
- }
- .poptip-arrow-left em {
- left: 1px;
- }
- .poptip-arrow-left i {
- left: 2px;
- }
- .poptip-arrow-right {
- right: -6px;
- }
- .poptip-arrow-right em {
- left: -6px;
- }
- .poptip-arrow-right i {
- left: -7px;
- }
- .treesearch {
- position: relative;
- }
- .treesearch .form-control {
- box-shadow: none;
- border-color: #ccc;
- border-left: none;
- border-right: none;
- border-bottom: none;
- height: 28px;
- margin: 0px;
- }
- .treesearch .input-query {
- position: absolute;
- right: 6px;
- top: 2px;
- color: #ccc;
- font-size: 16px;
- cursor: pointer;
- }
- .sys_spec_text {
- padding-left: 15px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .sys_spec_text li {
- position: relative;
- outline: none;
- display: inline;
- float: left;
- height: 46px;
- position: relative;
- margin: 10px 15px 0px 0;
- outline: none;
- }
- .sys_spec_text li a {
- cursor: pointer;
- vertical-align: middle;
- text-align: center;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- height: 39px;
- line-height: 38px;
- width: 100px;
- text-align: center;
- padding: 0px 0px;
- border: 1px solid #ccc;
- border-radius: 3px;
- background: #fff;
- display: inline-block;
- outline: none;
- }
- .sys_spec_text li a:hover {
- padding: 0 0px;
- text-decoration: none;
- }
- .sys_spec_text li.active a {
- color: #ff5d5b;
- border: 1px solid #ff5d5b;
- padding: 0 0px;
- background: url(../images/duihao_03.png) right top no-repeat;
- }
- .card-box {
- width: 195px;
- height: 60px;
- float: left;
- border: 1px solid #ccc;
- background-color: #fff;
- border-radius: 3px;
- margin-left: 10px;
- margin-top: 10px;
- overflow: hidden;
- position: relative;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- cursor: pointer;
- }
- .card-box.active {
- border: 2px solid #ff5d5b;
- padding: 0 0px;
- background: url(../images/duihao_03.png) right top no-repeat;
- }
- .card-box-img {
- float: left;
- width: 60px;
- height: 60px;
- line-height: 58px;
- background-color: #EBEBEB;
- border-right: 1px solid #ccc;
- }
- .card-box-img img {
- margin-left: 9px;
- border-radius: 45px;
- }
- .card-box-content {
- float: left;
- padding-left: 6px;
- padding-top: 4px;
- }
- .card-box-content p {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- width: 120px;
- }
- .profile-nav {
- background: #fff;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .profile-nav li {
- line-height: 34px;
- height: 34px;
- margin-bottom: 10px;
- padding-left: 22px;
- cursor: pointer;
- border-left: 3px solid #fff;
- }
- .profile-nav li.active {
- border-left: 3px solid #2c3849;
- background: #F5F5F5;
- }
- .profile-nav li.hover {
- border-left: 3px solid #F5F5F5;
- background: #F5F5F5;
- }
- .profile-nav .divide {
- margin: 20px;
- margin-bottom: 10px;
- margin-top: 10px;
- display: block;
- border-bottom: 1px solid #ccc;
- }
- .profile-content {
- padding-left: 22px;
- padding-right: 22px;
- overflow: auto;
- }
- .profile-content .title {
- padding-top: 20px;
- line-height: 34px;
- font-size: 12px;
- font-weight: bold;
- border-bottom: 1px solid #ccc;
- }
- .profile-content .formTitle {
- width: 80px;
- height: 45px;
- text-align: left;
- }
- .profile-content .input-profile {
- border-radius: 4px;
- width: 300px;
- }
- .profile-content textarea.input-profile {
- padding: 5px;
- }
- .portal-panel {
- margin: 0px;
- padding: 0px;
- min-height: 65px;
- height: auto;
- padding-left: 22px;
- padding-right: 22px;
- }
- .portal-panel .portal-panel-title {
- padding-top: 10px;
- line-height: 45px;
- font-size: 12px;
- font-weight: bold;
- border-bottom: 1px solid #ccc;
- color: #666;
- font-weight: 300;
- font-size: 16px;
- }
- .portal-panel .portal-panel-content {
- padding: 5px;
- }
- .task-stat {
- border-radius: 5px;
- font-family: "Open Sans", sans-serif;
- display: block;
- margin: 10px;
- overflow: hidden;
- color: #FFFFFF;
- }
- .task-stat .visual > i {
- color: #FFFFFF;
- opacity: 0.4;
- filter: alpha(opacity=10);
- }
- .task-stat .visual {
- width: 80px;
- height: 50px;
- display: block;
- float: left;
- padding-top: 10px;
- padding-left: 15px;
- margin-bottom: 18px;
- font-size: 35px;
- line-height: 35px;
- }
- .task-stat .visual > i {
- margin-left: -5px;
- font-size: 60px;
- line-height: 65px;
- }
- .task-stat .details {
- position: absolute;
- right: 10px;
- padding-right: 15px;
- }
- .task-stat .details .number {
- padding-top: 10px;
- text-align: right;
- font-size: 32px;
- line-height: 36px;
- letter-spacing: -1px;
- margin-bottom: 0px;
- font-weight: 300;
- }
- .task-stat .details .desc {
- text-align: right;
- font-size: 15px;
- padding-top: 5px;
- }
- .task-stat .more {
- clear: both;
- display: block;
- padding: 6px 10px 6px 10px;
- position: relative;
- text-transform: uppercase;
- font-weight: 300;
- font-size: 10px;
- opacity: 0.7;
- filter: alpha(opacity=70);
- text-decoration: none;
- color: #FFFFFF;
- }
- .task-stat .more:hover {
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
- }
- .task-stat .more > i {
- display: inline-block;
- margin-top: 0px;
- float: right;
- font-size: 15px;
- }
- .mail-nav-top {
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #ccc;
- }
- .mail-nav-top .option {
- position: relative;
- height: 40px;
- float: left;
- line-height: 40px;
- width: 49%;
- cursor: pointer;
- color: #666666;
- text-align: center;
- font-weight: bold;
- font-family: "Microsoft Yahei",verdana;
- font-size: 14px;
- }
- .mail-nav-top .receive {
- border-right: 1px solid #ccc;
- }
- .mail-nav-top .option i {
- font-size: 18px;
- vertical-align: middle;
- margin-right: 5px;
- }
- .mail-nav-top .option:hover {
- color: #337ab7;
- }
- .mail-floder-icon {
- position: absolute;
- margin-left: -15px;
- color: #666666;
- }
- .mail-send-addresss {
- position: relative;
- height: auto;
- overflow: auto;
- padding-top: 4px;
- cursor: default;
- }
- .mail-send-address {
- background-color: #f5f5f5;
- position: relative;
- overflow: hidden;
- padding: 0 5px;
- border-radius: 10px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- float: left;
- height: 19px;
- max-width: 400px;
- margin-right: 3px;
- margin-bottom: 2px;
- border: 1px solid #ccc;
- color: #666666;
- }
- .mail-send-address-name {
- padding-right: 3px;
- max-width: 300px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- float: left;
- line-height: 19px;
- }
- .mail-send-address-del {
- float: right;
- font-size: 16px;
- width: 15px;
- height: 19px;
- line-height: 16px;
- font-weight: bold;
- cursor: pointer;
- border-left: 1px solid #eeeeee;
- padding-left: 2px;
- }
- .crumb-path .back {
- border-right: 1px solid #cad5e3;
- color: #337ab7;
- cursor: pointer;
- float: left;
- font-size: 12px;
- margin: 0 6px 0 0;
- padding-right: 8px;
- }
- .crumb-path .path-item {
- background: url(../images/file_arrow.png) 100% 4px no-repeat;
- color: #337ab7;
- cursor: pointer;
- font-size: 12px;
- margin: 0 6px 0 0;
- max-width: 15%;
- overflow: hidden;
- padding-right: 12px;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .crumb-path .path-item:last-child {
- background: none;
- color: #000000;
- cursor: default;
- }
- .app-box {
- padding: 40px 0 0 20px;
- overflow: hidden;
- }
- .app-box .app-item {
- position: relative;
- float: left;
- margin-right: 20px;
- margin-left: 20px;
- margin-bottom: 30px;
- width: 100px;
- text-align: center;
- cursor: pointer;
- }
- .app-box .app-item .app-logo {
- height: 80px;
- width: 80px;
- display: inline-block;
- position: relative;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
- margin-bottom: 9px;
- }
- .app-box .app-item .app-name {
- width: 100px;
- text-align: center;
- font-size: 13px;
- font-weight: 400;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .app-box .app-item-add {
- float: left;
- margin-right: 20px;
- margin-left: 20px;
- margin-bottom: 30px;
- width: 100px;
- text-align: center;
- cursor: pointer;
- background: url(../images/icon_app_add.png) center no-repeat;
- }
- .app-box .app-item-add .app-logo {
- height: 80px;
- width: 80px;
- display: inline-block;
- position: relative;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
- margin-bottom: 9px;
- }
- .app-box .app-item-close {
- z-index: 10;
- position: absolute;
- right: -5px;
- top: -5px;
- width: 24px;
- height: 24px;
- overflow: hidden;
- cursor: pointer;
- background: url(../images/ui_close.png) no-repeat 0px 0px;
- display: none;
- }
- .cover-box {
- height: 291px;
- width: 271px;
- border-radius: 5px;
- border: 1px solid #ccc;
- margin-bottom: 20px;
- margin-right: 20px;
- float: left;
- }
- .cover-img {
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- height: 170px;
- width: 270px;
- border-bottom: 1px solid #ccc;
- text-align: center;
- }
- .cover-info {
- padding: 6px 15px 28px;
- height: 80px;
- overflow: hidden;
- }
- .cover-info h4 {
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: keep-all;
- white-space: nowrap;
- display: block;
- font-weight: bold;
- line-height: 18px;
- margin-top: 7px;
- margin-bottom: 5px;
- color: #8B8B8C;
- }
- .cover-info small {
- color: #838383;
- padding-bottom: 10px;
- }
- .cover-button {
- background-color: #f6f6f6;
- border-radius: 0 0 5px 5px;
- border-top: 1px solid #e7e7e7;
- box-shadow: 0 1px 0 0 #fff inset;
- padding: 4px 5px 4px 5px;
- color: #8B8B8C;
- position: relative;
- text-align: right;
- }
- .editview {
- position: relative;
- margin-bottom: 1px;
- margin-right: 1px;
- }
- .editview:hover {
- border: 1px dashed #337ab7;
- }
- .editviewtitle {
- display: none;
- position: absolute;
- right: -1px;
- top: -1px;
- z-index: 100;
- height: 20px;
- line-height: 20px;
- border: 1px solid #2e6da4;
- cursor: pointer;
- background-color: #337ab7;
- color: #fff;
- }
- div.standtabborder {
- border-right: #ccc 1px solid;
- float: left;
- width: 32px;
- }
- div.standtab {
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- padding-top: 5px;
- padding-bottom: 5px;
- padding-right: 7px;
- margin-left: 3px;
- margin-top: 5px;
- display: inline-block;
- width: 29px;
- cursor: pointer;
- text-align: right;
- border: #ccc 1px solid;
- border-right: none;
- }
- div.standtabactived {
- background-color: rgb(255,255,255);
- }
- .timeline {
- position: relative;
- padding-left: 20px;
- }
- .line {
- width: 1px;
- height: 100%;
- background-color: #ccc;
- position: absolute;
- left: 26px;
- z-index: -1;
- }
- .timeline ul li {
- padding-left: 25px;
- color: #333333;
- line-height: 30px;
- position: relative;
- }
- .timeline ul li:last-child {
- margin-bottom: 0px;
- }
- .timeline ul li span.label {
- position: absolute;
- left: -5px;
- top: 0px;
- border-radius: 10px;
- padding: 3px;
- padding-left: 6px;
- padding-right: 12px;
- height: 20px;
- line-height: 13px;
- }
- .timeline ul li span.label i {
- margin-right: 5px;
- }
- .timeline ul li div.content {
- padding-top: 20px;
- }
- .timeline {
- position: relative;
- padding-left: 20px;
- overflow: hidden;
- }
- .line {
- width: 1px;
- height: 100%;
- background-color: #ccc;
- position: absolute;
- left: 26px;
- z-index: -1;
- }
- .timeline ul li {
- padding-left: 25px;
- color: #333333;
- line-height: 30px;
- position: relative;
- }
- .timeline ul li:last-child {
- margin-bottom: 0px;
- }
- .timeline ul li span.label {
- position: absolute;
- left: -5px;
- top: 0px;
- border-radius: 10px;
- padding: 3px;
- padding-left: 6px;
- padding-right: 12px;
- height: 20px;
- line-height: 13px;
- }
- .timeline ul li span.label i {
- margin-right: 5px;
- }
- .timeline ul li div.content {
- padding-top: 35px;
- padding-bottom: 15px;
- }
- .timeline ul li div.content .item-flag {
- color: #fff;
- position: absolute;
- left: -4px;
- margin-top: 5px;
- height: 20px;
- line-height: 20px;
- width: 20px;
- border-radius: 20px;
- background: #898989;
- text-align: center;
- font-size: 10px;
- }
- .timeline ul li div.content .item-data {
- font-size: 13px;
- line-height: 30px;
- }
- .timeline ul li div.content .item-data .time {
- color: #8E8E8E;
- padding-right: 5px;
- }
- .timeline ul li div.content .item-data .name i {
- padding-left: 5px;
- padding-right: 5px;
- font-size: 14px;
- }
- .border {
- border: 1px solid #ccc;
- }
- .border-top {
- border-top: 1px solid #ccc;
- }
- .border-right {
- border-right: 1px solid #ccc;
- }
- .border-left {
- border-left: 1px solid #ccc;
- }
- .border-bottom {
- border-bottom: 1px solid #ccc;
- }
- .no-data {
- background: #FFF url(../images/no_data.png) 100px 60px no-repeat;
- height: 402px;
- margin-right: 18px;
- position: absolute;
- z-index: 200;
- top: 150px;
- width: 700px;
- left: 18px;
- }
- .bottomline {
- border-bottom: 1px solid #ccc;
- padding-top: 12px;
- padding-left: 40px;
- height: 44px;
- }
- .label-success-learun {
- background: #0aa699;
- }
- .label-inverse-learun {
- background: #1f3853;
- }
- .label-important-learun {
- background: #f35958;
- }
- .wizard {
- border-left: none;
- border-top: none;
- border-right: none;
- }
- .wizard-step-content {
- border-left: none;
- border-bottom: none;
- border-right: none;
- }
- .wizard-step-pane {
- margin: 10px;
- margin-bottom: 0px;
- }
- .wizard-step-content .drag-tip {
- text-align: center;
- padding-top: 100px;
- }
- .wizard-step-content .drag-tip i {
- font-size: 204px;
- color: #0FA74F;
- }
- .wizard-step-content .drag-tip p {
- color: #666;
- font-size: 12px;
- margin-top: 10px;
- }
- .commonForm td:first-child {
- position: relative;
- left: 0px;
- text-align: right;
- white-space: nowrap;
- font-weight: normal;
- width: 90px;
- padding-right: 10px;
- }
- .commonForm td:first-child font {
- color: red;
- position: absolute;
- right: 0px;
- }
- .commonForm td:last-child {
- position: relative;
- left: 0px;
- text-align: right;
- white-space: nowrap;
- font-weight: normal;
- width: 90px;
- padding-right: 10px;
- }
- .commonForm td:last-child select {
- padding: 4px;
- padding-left: 4px;
- }
|