| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- @charset "utf-8";
- * {
- margin: 0;
- padding: 0;
- font-family: Microsoft YaHei, fontello;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- list-style: none;
- }
- body {
- margin: 0;
- padding: 0;
- overflow: hidden;
- }
- body,
- html {
- height: 100%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- ul,
- li {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- button:focus,
- button {
- outline: none;
- cursor: pointer;
- }
- a,
- a:hover,
- a:link,
- a:visited,
- button,
- button:focus,
- button:hover,
- i,
- i:hover,
- img,
- img:hover,
- input,
- input:focus,
- input:hover,
- select:focus,
- span,
- span:hover,
- textarea:focus {
- -webkit-transition: all .35s;
- -moz-transition: all .35s;
- -o-transition: all .35s;
- }
- a:hover,
- a:link,
- a:visited {
- text-decoration: none;
- }
- button:hover {
- opacity: .8;
- cursor: pointer;
- }
- [ripple],
- button {
- position: relative;
- transform: translate3d(0, 0, 0);
- overflow: hidden;
- }
- [ripple]:after,
- button:after {
- content: "";
- display: block;
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- pointer-events: none;
- background-image: radial-gradient(circle, #666 10%, transparent 10.01%);
- background-repeat: no-repeat;
- background-position: 50%;
- transform: scale(10, 10);
- opacity: 0;
- transition: transform .3s, opacity .5s;
- }
- [ripple]:active:after,
- button:active:after {
- transform: scale(0, 0);
- opacity: .3;
- transition: 0s;
- }
- .clearfix {
- zoom: 1;
- }
- /*通用头部样式*/
- .bowerTop {
- width: 100%;
- height: 1px;
- }
- .bowerHeader {
- position: relative;
- height: 20px;
- }
- .browerHeaderControl {
- position: absolute;
- right: 0px;
- }
- .browerHeaderControl button {
- width: 50px;
- height: 25px;
- border: transparent;
- background: #fff;
- font-size: 13px;
- }
- .browerHeaderControl button:hover {
- background: #eee;
- }
- .browerHeaderControl .close:hover {
- background: #E83C3C!important;
- color: #fff!important;
- }
- .browerHeaderControl .icon-cancel:hover {
- background: #e66350 !important;
- color: #fff;
- }
- .browerHeaderControl .icon-minus {
- color: #333;
- }
- /*浏览器搜索样式*/
- .BrowerHead {
- width: 100%;
- height: 26px;
- display: inline-flex;
- padding: 4px 0;
- background: #f5f5f5;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- }
- .Favorites {
- width: 100%;
- height: 26px;
- display: inline-flex;
- padding: 4px 0;
- background: #ffffff;
- /* border-top: 1px solid #ccc; */
- border-bottom: 1px solid #ccc;
- }
- .Favorites>ul>li {
- height: 25px;
- margin: 0 3px;
- border-radius: 5px;
- padding: 0 5px;
- background: -webkit-linear-gradient(left, white, #f1f1ff);
- -webkit-transition: all .3s;
- -moz-transition: all .3s;
- -ms-transition: all .3s;
- -o-transition: all .3s;
- transition: all .3s;
- cursor: pointer;
- float: left;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .Favorites>ul>li:hover {
- background: #f1f1f1;
- }
- .Favorites>ul>li img {
- width: 20px;
- float: left;
- line-height: 25px;
- margin: 3px 3px;
- }
- .Favorites>ul>li p {
- width: auto;
- max-width: 81px;
- float: left;
- font-size: 12px;
- line-height: 25px;
- margin: 0 3px;
- overflow: hidden;
- }
- .BrowerHead button {
- float: left;
- overflow: hidden;
- margin: 0 5px;
- background: none;
- width: 26px;
- border: none;
- font-size: 16px;
- }
- .BrowerHead button:hover {
- background: #dcdcdc;
- border-radius: 3px;
- }
- .BrowerUrlArea {
- width: calc(100% - 150px) !important;
- padding: 2px 5px !important;
- text-align: left !important;
- border: 1px solid #dcdcdc;
- background: #fff;
- border-radius: 3px;
- }
- .BrowerUrlArea>i {
- margin: 2px;
- }
- .BrowerUrlArea * {
- float: left;
- }
- .BrowerUrlArea span {
- float: left;
- width: 20px;
- text-align: center;
- line-height: 22px;
- font-size: 14px;
- }
- .BrowerUrlArea input {
- float: left;
- width: calc(100% - 42px) !important;
- height: 20px;
- border: 0 solid #d2d2d2;
- outline: none;
- text-indent: 10px;
- border-left: 1px solid #d2d2d2;
- display: block;
- background: none;
- }
- .BrowerHead .icon-ellipsis-vert {
- color: #8c8c8c;
- font-weight: lighter;
- font-size: 18px;
- padding-top: 2px;
- }
- .FavoritesMore {
- position: absolute;
- right: 5px;
- padding: 2px;
- cursor: pointer;
- color: #CCCCCC;
- }
- #FavoritesUl {
- overflow: hidden;
- z-index: 99999999;
- }
- /* 标签页右键菜单样式 */
- #US_TagSet {
- z-index: 999;
- }
- .icon-ellipsis-verter {
- color: #8c8c8c;
- font-weight: lighter;
- font-size: 18px;
- padding-top: 2px;
- }
- .bowerHeaderSeach .bowerMenu {
- float: right;
- }
- .bowerHeaderSeach .bowerMenu:hover {
- background: #ddd;
- }
- .bowerHeaderSeach .icon-menu {
- font-size: 21px;
- color: #5a5a5a;
- }
- /*选项卡样式*/
- .bowerCreaterWindow li {
- position: relative;
- max-width: 180px !important;
- width: 150px;
- min-width: 10px !important;
- top: 1px;
- height: 30px;
- display: initial;
- margin-right: 10px;
- text-align: center;
- color: #000;
- line-height: 43px;
- background-color: #e2e2e2;
- border-top: 1px solid #a2a2a2;
- z-index: 1;
- -webkit-app-region: no-drag;
- -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .BrowerActive {
- background-color: #f2f2f2 !important;
- border-top-color: #a9a9a9 !important;
- z-index: 999 !important;
- }
- .Listindex {
- z-index: 999 !important;
- }
- .BrowerActive {
- border-top: 1px solid #ccc!important;
- }
- .BrowerActive:before {
- border-top: 1px solid #ccc!important;
- background-color: #f2f2f2 !important;
- border-right-color: #ccc !important;
- }
- .BrowerActive:after {
- border-top: 1px solid #ccc!important;
- background-color: #f2f2f2 !important;
- border-left-color: #ccc !important;
- }
- .bowerCreaterWindow li:before,
- .bowerCreaterWindow li:after {
- content: '';
- position: absolute;
- display: block;
- width: 10px;
- height: 29px;
- top: -1px;
- background-color: #e2e2e2;
- border-top: 1px solid #a2a2a2;
- -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- }
- .bowerCreaterWindow li:before {
- right: -6px;
- border-right: 1px solid #a2a2a2;
- transform: skewX(20deg);
- }
- .bowerCreaterWindow li:after {
- left: -6px;
- transform: skewX(-20deg);
- border-left: 1px solid #a2a2a2;
- }
- .bowerCreaterWindow {
- float: left;
- width: calc(100% - 195px);
- height: 29px;
- display: inline-flex;
- overflow: unset;
- margin-left: 20px;
- -webkit-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- -moz-transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- transition: all .3s cubic-bezier(0.3, .1, .58, 1);
- }
- .BrowerListBody {
- display: inline-block;
- position: relative;
- width: calc(100% - 3px);
- height: 32px;
- z-index: 2;
- top: -2px;
- }
- .BrowerList img {
- float: left;
- width: 16px;
- height: 16px;
- margin-top: 8px;
- }
- .BrowerList p {
- float: left;
- min-width: 0;
- max-width: 80%;
- width: calc(100% - 40px);
- margin: 0 3px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 34px;
- text-align: left;
- font-size: 12px;
- margin-top: -1px;
- }
- .BrowerList i {
- float: right;
- width: 8px;
- height: 8px;
- padding: 4px;
- border-radius: 50%;
- font-size: 11px;
- text-align: center;
- line-height: 9px;
- margin-top: 8px;
- color: #888888;
- }
- .BrowerList i:hover {
- background: #ba4848;
- color: #fff;
- }
- button.BrowwerAdd {
- width: 32px !important;
- height: 18px;
- padding: 7px;
- margin: 6px 0 0 0;
- -webkit-transform: skew(20deg);
- -moz-transform: skew(20deg);
- -o-transform: skew(20deg);
- background: white;
- border: 1px solid #ccc;
- border-radius: 3px;
- -webkit-app-region: no-drag;
- }
- /*浏览器显示网页部分样式*/
- .BrowerContainer {
- height: calc(100% - 115px);
- position: absolute;
- width: 100%;
- left: 0;
- top: 116px;
- }
- .BrowerContainer webview,
- webview object {
- height: 100% !important;
- width: 100% !important;
- }
- /*右键菜单样式*/
- .MouseMenuMain {
- position: absolute;
- z-index: 22;
- display: none;
- width: auto;
- height: auto;
- min-width: 90pt;
- background: #fff;
- box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .MouseMenuMain li {
- width: auto;
- max-width: 400px;
- font-size: 13px;
- padding: 6px 18px;
- color: #333;
- text-align: left;
- white-space: nowrap;
- margin-bottom: 2px;
- }
- .MouseMenuMain li span {
- float: right;
- margin-left: 40px;
- color: #bfbfbf;
- }
- .MouseMenuMain li:hover {
- background-color: #eee;
- color: #000;
- cursor: pointer;
- }
- .US_BookmarkSet {
- position: absolute;
- z-index: 22;
- width: auto;
- height: auto;
- display: none;
- min-width: 90pt;
- background: #fff;
- z-index: 999999999;
- box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .US_BookmarkSet li {
- width: auto;
- max-width: 400px;
- font-size: 13px;
- padding: 6px 18px;
- color: #333;
- text-align: left;
- white-space: nowrap;
- margin-bottom: 2px;
- }
- .US_BookmarkSet li:hover {
- background-color: #eee;
- color: #000;
- cursor: pointer;
- }
- .MouseMenuMainer {
- position: absolute;
- z-index: 22;
- width: auto;
- height: auto;
- min-width: 90pt;
- background: #fff;
- box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .MouseMenuMainer {
- width: 300px;
- }
- .MouseMenuMainer li {
- width: auto;
- max-width: 400px;
- font-size: 13px;
- padding: 6px 18px;
- color: #333;
- text-align: left;
- white-space: nowrap;
- margin-bottom: 2px;
- }
- .MouseMenuMainer li img {
- width: 20px;
- float: left;
- line-height: 25px;
- margin: 3px 3px;
- }
- .MouseMenuMainer li p {
- font-size: 12px;
- line-height: 25px;
- margin: 0 3px;
- }
- .MouseMenuMainer li:hover {
- background-color: #eee;
- color: #000;
- cursor: pointer;
- }
- .MouseMenuMainStep {
- width: 100%;
- padding: 0 !important;
- height: 1px;
- background: #e8e8e8;
- margin: 5px 0;
- }
- /*查找菜单样式*/
- .BrowerFind {
- width: 320px;
- height: 35px;
- background: #fff;
- box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
- position: absolute;
- right: 20px;
- top: 80px;
- padding: 5px;
- z-index: 10;
- -webkit-animation-duration: .35s;
- animation-duration: .35s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
- display: none;
- overflow: hidden;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .BrowerFind * {
- float: left;
- }
- .BrowerFind input {
- width: 150px;
- height: 35px;
- border: none;
- font-size: 14px;
- padding: 0 2px;
- }
- .BrowerFind input:focus {
- outline: none;
- }
- .BrowerFind span {
- width: 50px;
- font-size: 12px;
- line-height: 35px;
- color: #888888;
- background: #fff;
- text-align: center;
- border-right: 1px solid #eee;
- }
- .BrowerFind button {
- background: none;
- border: none;
- width: 32px;
- margin: 0 3px;
- height: 35px;
- color: #888888;
- font-weight: bold;
- font-size: 18px;
- }
- .BrowerFind .icon-times {
- font-size: 14px;
- }
- /* 历史记录样式 */
- .HistoryMain {
- width: 100%;
- height: 100%;
- }
- .HistoryMain * {
- box-sizing: border-box;
- }
- .HistoryHead {
- width: 100%;
- height: 55px;
- background: #0b7aeb;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- input::-webkit-input-placeholder {
- /* WebKit browsers */
- color: #fff;
- }
- input:-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #fff;
- }
- input::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #fff;
- }
- input::-ms-input-placeholder {
- /* Internet Explorer 10+ */
- color: #fff;
- }
- .HistorySelect {
- width: 500px;
- height: 100%;
- margin: auto;
- }
- .HistorySelect div {
- width: 450px;
- height: 45px;
- background: #0062ea;
- position: relative;
- top: 5px;
- margin: auto;
- }
- .HistorySelect input {
- border: 0px;
- background: #0062ea;
- width: 400px;
- height: 35px;
- position: relative;
- top: 5px;
- color: #ffffff;
- margin-left: 20px;
- outline: none;
- z-index: 99999;
- }
- .browerHeaderControler {
- position: relative;
- }
- .HistoryHead p {
- float: left;
- font-size: 18px;
- color: #fff;
- line-height: 55px;
- padding-left: 15px;
- }
- .HistoryContainer {
- padding: 0px 100px 20px;
- height: 866px;
- background: #eee;
- overflow: auto;
- width: 1200px;
- float: right;
- }
- .Historyoperating {
- height: 866px;
- background: #eee;
- overflow: auto;
- width: 251px;
- float: left;
- }
- .Historyoperating ul {
- margin: 40px 00px;
- }
- .Historyoperating ul li {
- width: auto;
- transition: all .3s;
- height: 40px;
- line-height: 40px;
- padding: 0px 20px;
- cursor: pointer;
- }
- .Historyoperating ul li:hover {
- background: #dfdfdf;
- }
- .HistoryCard {
- width: 100%;
- background: #fff;
- /*box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2);*/
- margin-top: 20px;
- box-shadow: 0px 1px 1px 1px #c7c7c7;
- border-radius: 4px;
- }
- .HistoryCardContainer {
- width: 100%;
- }
- .HistoryCardContainer li {
- width: 100%;
- height: 35px;
- line-height: 25px;
- margin-bottom: 2px;
- padding: 5px;
- }
- .HistoryCardContainer li:hover {
- background: #eee;
- cursor: pointer;
- }
- .HistoryCardContainer li * {
- float: left;
- }
- .HistoryCardContainer li span {
- width: 80px;
- font-size: 12px;
- color: #7f7e7e;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .HistoryCardContainer li div {
- width: calc(100% - 100px);
- height: 100%;
- font-size: 13px;
- }
- .HistoryCardContainer li img {
- width: 15px;
- margin: 5px;
- }
- .HistoryCardContainer li p {
- height: 25px;
- width: 200px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .HistoryCardHead {
- width: 100%;
- font-weight: bold;
- font-size: 18px;
- padding: 5px;
- border-bottom: 1px solid #eee;
- line-height: 40px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .history_body span {
- padding-right: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 180px;
- }
- .history_body p {
- width: 270px;
- height: 20px;
- padding-right: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .history_body {
- display: inline-flex;
- margin-bottom: 10px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /* 反馈样式 */
- .FeedBackMain * {
- box-sizing: border-box;
- }
- .FeedBackMain {
- width: 100%;
- height: 100%;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .FeedBackHead {
- width: 100%;
- height: 55px;
- border-bottom: 2px solid #38f;
- }
- .FeedBackHead img {
- float: left;
- width: 30px;
- margin: 11px;
- }
- .FeedBackHead p {
- line-height: 55px;
- font-size: 16px;
- }
- .FeedBackContainer {
- width: 100%;
- padding: 10px;
- }
- .FeedBackContainer input,
- .FeedBackContainer textarea {
- width: 100%;
- border: 1px solid #eee;
- height: 35px;
- border-radius: 3px;
- margin-bottom: 10px;
- padding: 4px;
- resize: none;
- }
- .FeedBackContainer textarea {
- height: 150px!important;
- }
- .FeedBackContainer input:focus,
- .FeedBackContainer textarea:focus {
- outline: none;
- border: 1px solid #38f;
- }
- .FeedBackContainer span {
- float: left;
- color: #e85151;
- font-size: 14px;
- margin-top: 10px;
- text-indent: 10px;
- }
- .FeedBackContainer button {
- float: right;
- padding: 0 10px;
- height: 35px;
- background: #38f;
- color: #fff;
- border: 1px solid #eee;
- border-radius: 3px;
- overflow: hidden;
- }
- .HistoryBottom {
- width: 100%;
- height: 55px;
- transition: all .3s;
- position: fixed;
- background: #0b7aeb;
- bottom: -55px;
- }
- .HistoryBottomContent {
- width: 700px;
- height: auto;
- margin: auto;
- color: #ffffff;
- }
- .Historycount {
- width: auto;
- float: left;
- padding: 16px;
- font-size: 17px;
- z-index: 100;
- }
- .HistoryPick {
- width: auto;
- float: right;
- }
- .HistoryPick div {
- float: left;
- padding: 16px;
- font-size: 17px;
- z-index: 100;
- cursor: pointer;
- }
- #qingchu>div {
- width: 35px;
- height: 20px;
- font-size: 12px;
- float: right;
- text-align: center;
- line-height: 20px;
- border: 1px solid #ccc;
- border-radius: 5px;
- margin: 10px 5px 5px 5px;
- transition: all .3s;
- opacity: 0;
- cursor: pointer;
- }
- .item {
- /*z-index: 9999;*/
- }
- .Historyinput {
- margin-top: 7px;
- -webkit-app-region: no-drag;
- margin-right: 4px;
- }
- /*加载提示*/
- .BrowerTips {
- left: 0px;
- bottom: 0px;
- float: left;
- position: absolute;
- max-width: 30%;
- height: 30px;
- line-height: 30px;
- z-index: 2;
- font-size: 12px;
- box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .2);
- word-wrap: normal;
- background: #fff;
- text-overflow: ellipsis;
- word-spacing: normal;
- word-break: break-all;
- -webkit-transition: all .35s;
- -moz-transition: all .35s;
- -o-transition: all .35s;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- /*关于我们*/
- .FeedBackContainer p {
- padding: 10px;
- font-size: 14px;
- font-weight: bold;
- }
- .FeedBackContainer p span {
- float: unset;
- }
- /* 首页end */
- .column.over {
- border: 1px dashed #000;
- }
- .column {
- cursor: move;
- }
- .animated {
- -webkit-animation-duration: .35s;
- animation-duration: .35s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both
- }
- .animated.infinite {
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite
- }
- @-webkit-keyframes fadeIn {
- from {
- opacity: 0
- }
- to {
- opacity: 1
- }
- }
- @keyframes fadeIn {
- from {
- opacity: 0
- }
- to {
- opacity: 1
- }
- }
- .fadeIn {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn
- }
- @font-face {
- font-family: 'fontello';
- src: url('../font/fontello.eot?70736739');
- src: url('../font/fontello.eot?70736739#iefix') format('embedded-opentype'), url('../font/fontello.woff?70736739') format('woff'), url('../font/fontello.ttf?70736739') format('truetype'), url('../font/fontello.svg?70736739#fontello') format('svg');
- font-weight: normal;
- font-style: normal;
- }
- [class^="icon-"],
- [class*=" icon-"] {
- display: inline-block;
- font: normal normal normal 14px/1 fontello, Microsoft YaHei;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .icon-left:before {
- content: '\e800';
- }
- /* '' */
- .icon-right:before {
- content: '\e801';
- }
- /* '' */
- .icon-cancel:before {
- content: '\e802';
- }
- /* '' */
- .icon-minus:before {
- content: '\e803';
- }
- /* '' */
- .icon-menu:before {
- content: '\e804';
- }
- /* '' */
- .icon-play-circled2:before {
- content: '\e805';
- }
- /* '' */
- .icon-play:before {
- content: '\e806';
- }
- /* '' */
- .icon-lock:before {
- content: '\e807';
- }
- /* '' */
- .icon-plus:before {
- content: '\e808';
- }
- /* '' */
- .icon-cog:before {
- content: '\e809';
- }
- /* '' */
- .icon-cw:before {
- content: '\e80a';
- }
- /* '' */
- .icon-times:before {
- content: '\ebc4';
- }
- /* '' */
- .icon-window-maximize:before {
- content: '\ec0f';
- }
- /* '' */
- .icon-window-minimize:before {
- content: '\ec10';
- }
- /* '' */
- .icon-window-restore:before {
- content: '\ec11';
- }
- /* '' */
- .icon-angle-up:before {
- content: '\f106';
- }
- /* '' */
- .icon-angle-down:before {
- content: '\f107';
- }
- /* '' */
- .icon-ellipsis-vert:before {
- content: '\f142';
- }
- /* '' */
- /*滚动条*/
- *::-webkit-scrollbar {
- width: 7px;
- height: 7px;
- background: none;
- }
- *::-webkit-scrollbar-button {
- display: none;
- }
- *::-webkit-scrollbar-track {
- background: none;
- }
- *::-webkit-scrollbar-track-piece {
- display: none;
- }
- *::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0.3);
- position: absolute;
- width: 3px;
- right: 0;
- top: 0;
- bottom: 0;
- visibility: hidden\9;
- /* Target only IE7 and IE8 with this hack */
- opacity: .01;
- -webkit-transition: .2s;
- -moz-transition: .2s;
- -o-transition: .2s;
- transition: .2s;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- }
- *::-webkit-scrollbar-thumb:active,
- *::-webkit-scrollbar-thumb:hover {
- background: rgba(0, 0, 0, .50);
- }
- *::-webkit-scrollbar-corner {
- display: none;
- }
- *::-webkit-scrollbar-resizer {
- display: none;
- }
|