| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- // scroll
- ::-webkit-scrollbar {
- width: .5rem;
- height: .5rem;
- background: hsla(0, 0%, 100%, 0.6);
- }
- ::-webkit-scrollbar-track {
- border-radius: 0;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 0;
- background-color: rgba(95,95,95,.4);
- transition: background-color .15s;
- &:hover {
- background-color: rgba(95,95,95, .7);
- }
- }
- #cnzz_stat_icon_1267002346 {
- display: none;
- }
- // common style
- .clearfix {
- &:before, &:after {
- display: table;
- content: " ";
- }
- &:after {
- clear: both;
- }
- }
- .list-unstyled {
- padding-left: 0;
- list-style: none;
- }
- .list-inline li {
- display: inline-block;
- padding-left: 5px;
- padding-right: 5px;
- }
- .hide {
- opacity: 0;
- visibility: hidden;
- pointer-events: none;
- }
- .pull-left {
- float: left;
- }
- .pull-right {
- float: right;
- }
- .container {
- width: $container-width;
- margin: 0 auto;
- }
- .dl-horizontal dt {
- float: left;
- width: 160px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .dl-horizontal dd {
- display: block;
- margin-left: 180px;
- &:before, &:after {
- display: table;
- content: " ";
- }
- &:after {
- clear: both;
- }
- }
- .dropdown {
- position: relative;
- .dropdown-toggle {
- cursor: pointer;
- }
- .dropdown-menu {
- position: absolute;
- left: 0;
- top: 100%;
- min-width: 100%;
- display: none;
- background-color: $white;
- z-index: 100;
- }
- &:hover {
- .dropdown-menu {
- display: block;
- }
- }
- }
- // button
- .btn {
- display: inline-block;
- height: 36px;
- line-height: 1;
- padding: 3px 12px;
- margin: 0;
- border: 1px solid transparent;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- &.btn-default {
- color: $text;
- background-color: $white;
- border-color: $dividers;
- }
- &.btn-primary {
- color: $white;
- background-color: $primary;
- border-color: $primary;
- }
- }
- // form
- .form-control {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background-color: $white;
- background-image: none;
- border: $border;
- color: #999;
- display: inline-block;
- font-size: inherit;
- height: 36px;
- line-height: 1;
- outline: none;
- padding: 3px 10px;
- width: 100%;
- &.input-primary {
- border-color: $primary;
- }
- }
- .input-group {
- position: relative;
- display: inline-table;
- width: 100%;
- border-collapse: separate;
- .form-control, .input-group-btn {
- display: table-cell;
- }
- .input-group-addon, .input-group-btn {
- position: relative;
- width: 1px;
- white-space: nowrap;
- vertical-align: middle;
- }
- .form-control {
- position: relative;
- z-index: 2;
- float: left;
- width: 100%;
- }
- .input-group-btn {
- .btn {
- position: relative;
- }
- }
- }
- // vue animate
- .slide-down-enter-active, .slide-down-leave-active {
- transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .7;
- transform: translate3d(0, 4em, 0);
- }
- .slide-down-enter, .slide-down-leave-active {
- opacity: .3;
- transform: translate3d(0, 4em, 0);
- }
- .slide-left-enter-active, .slide-left-leave-active {
- transition: all .2s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .5;
- transform: translate3d(2em, 0, 0);
- }
- .slide-left-enter, .slide-left-leave-active {
- opacity: .3;
- transform: translate3d(2em, 0, 0);
- }
- .slide-right-enter-active, .slide-right-leave-active {
- transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
- opacity: .5;
- transform: translate3d(5em, 0, 0);
- }
- .slide-right-enter, .slide-right-leave-active {
- opacity: .3;
- transform: translate3d(5em, 0, 0);
- }
- .fade-enter-active, .fade-leave-active {
- transition: opacity .25s
- }
- .fade-enter, .fade-leave-active {
- opacity: 0
- }
- .fade-move {
- transition: transform .25s;
- }
- .page-enter-active, .page-leave-active {
- transition: opacity .25s
- }
- .page-enter, .page-leave-active {
- opacity: 0
- }
- .module-enter-active, .module-leave-active {
- transition: opacity .25s
- }
- .module-enter, .module-leave-active {
- opacity: 0
- }
- .aside-enter-active {
- transition: opacity .25s cubic-bezier(1, -1.17, 1, -1.17);
- }
- .aside-leave-active {
- transition: opacity 0s
- }
- .aside-enter, .aside-leave-active {
- opacity: 0
- }
- a {
- color: #2d8cf0;
- background: 0 0;
- text-decoration: none;
- outline: 0;
- cursor: pointer;
- transition: color .2s ease;
- }
- .select-adder {
- background:url("../../static/images/all/xiala.png") right no-repeat #fff !important;
- background-position-x: 100% !important;
- /*将默认的select选择框样式清除*/
- appearance:none;
- -moz-appearance:none;
- -webkit-appearance:none;
- -ms-appearance:none;
- }
- .select-adder::-ms-expand {
- display: none;
- }
- //按钮不可点击状态
- .el-button.is-disabled, .el-button.is-disabled:focus, .el-button.is-disabled:hover {
- color: #bfcbd9 !important ;
- cursor: not-allowed !important ;
- background-image: none !important ;
- background-color: #eef1f6 !important ;
- border-color: #d1dbe5 !important ;
- }
- //每项最后一步按钮不可点击状态
- .el-button.finish.is-disabled, .el-button.finish.is-disabled:focus, .el-button.finish.is-disabled:hover {
- color: #fff !important;
- background-color: #0076AD !important;
- border: none !important;
- opacity: .7;
- cursor: not-allowed !important;
- }
- //隐藏加载数据状态
- .el-input__icon{
- display: none;
- }
- //表单样式
- form .el-form-item {
- margin: 0 auto 16px;
- width: 360px;
- }
- form .el-form-item:last-child {
- margin: -8px auto 0!important;
- }
- form .el-form-item .el-form-item__content {
- margin-left: 0 !important;
- }
- form .el-form-item .el-form-item__content .el-input__inner{
- padding: 0 0 0 18px;
- width: 360px;
- height: 44px;
- line-height: 44px;
- font-size: 14px;
- color: #000;
- border-radius: 0;
- }
- form .el-form-item .el-form-item__content .msg{
- float: left;
- width: 210px;
- }
- form .el-form-item .el-form-item__content .msg .el-input__inner{
- width: 210px;
- }
- form .el-form-item .el-form-item__content .code{
- float: right;
- width: 130px;
- height: 44px;
- font-size: 14px;
- color: #5a5a5a;
- background: #f4f4f4;
- border: 1px solid #dcdcdc;
- border-radius: 0;
- cursor: pointer;
- }
- form .el-form-item .el-form-item__content .el-form-item__error {
- position: absolute;
- top: 15px;
- left: 380px;
- padding-top: 0;
- width: 100%;
- text-align: left;
- }
- form .el-form-item .el-form-item__content .finish{
- display: inline-block;
- margin-top: 34px;
- width: 360px;
- height: 44px;
- line-height: 44px;
- font-size: 16px;
- color: #fff;
- background: #0076AD;
- border-radius: 3px;
- border: none;
- }
- form .el-form-item .el-form-item__content .el-checkbox{
- float: left;
- margin-left: 50px;
- }
- form .el-form-item .el-form-item__content .el-checkbox .el-checkbox__inner{
- width: 16px;
- height: 16px;
- border: 1px solid #ccc;
- border-radius: 0;
- }
- form .el-form-item .el-form-item__content .el-textarea .el-textarea__inner{
- width: 360px;
- height: 120px;
- border-radius: 0;
- }
- //我同意按钮
- .el-checkbox__input.is-checked .el-checkbox__inner{
- background: transparent !important;
- border-color: #bfbfbf !important;
- }
- .el-checkbox__input.is-focus .el-checkbox__inner{
- border-color: #bfbfbf !important;
- }
- .el-checkbox__inner{
- border-color: #bfbfbf !important;
- }
- .el-checkbox__inner::after{
- border: 2px solid #0076AD !important;
- border-top: 0 !important;
- border-left: 0 !important;
- }
- //登录页面样式
- //错误提示框变红隐藏
- .login-form .el-form-item.is-error .el-input__inner, .login-form .el-form-item.is-error .el-input__inner:focus, .login-form .el-form-item.is-error .el-textarea__inner, .login-form .el-form-item.is-error .el-textarea__inner:focus, .login-form .el-message-box__input input.invalid, .login-form .el-message-box__input input.invalid:focus {
- border-color: #ccc!important;
- }
- .login-form .el-input__inner{
- padding-left: 30px !important;
- width: 306px !important;
- height: 34px !important;
- line-height: 34px !important;
- }
- .login-form .el-form-item{
- position: relative;
- width: 306px !important;
- }
- .login-form .el-form-item i.fa{
- position: absolute;
- top: 4px;
- left: 0;
- z-index: 2;
- display: block;
- width: 30px;
- height: 34px;
- line-height: 34px;
- text-align: center;
- pointer-events: none;
- color: #999;
- font-size: 18px;
- }
- .login-form .captcha{
- overflow: hidden;
- }
- .login-form .code-input{
- float: left;
- width: 150px !important;
- }
- .login-form .code-input .el-input__inner{
- padding: 0 !important;
- height: 34px !important;
- line-height: 34px !important;
- width: 150px !important;
- }
- .login-form img.code-img{
- margin-top: 5px;
- float: left;
- height: 30px;
- width: 108px;
- }
- .login-form a.code-click{
- float: right;
- display: inline-block;
- margin-top: 5px;
- width: 45px;
- line-height: 15px;
- text-align: right;
- font-size: 12px;
- color: #666;
- vertical-align: middle;
- cursor: pointer;
- }
- .login-form a.code-click:hover{
- color: #5078cb;
- text-decoration: none;
- outline: 0;
- }
- .login-form .el-form-item a.forget{
- color: #5078cb;
- font-size: 12px;
- }
- .login-form .el-form-item.text-right{
- }
- .login-form .text-right .el-form-item__content{
- height: 20px;
- line-height: 16px;
- }
- .login-form .el-form-item .login{
- width: 306px;
- height: 34px;
- line-height: 30px;
- }
- //个人注册错误框颜色
- form .el-form-item .el-form-item__content div.active .el-input__inner{
- border-color: #f56c6c !important;
- }
- //个人注册正确框颜色
- form .el-form-item .el-form-item__content div.correct .el-input__inner{
- border-color: #67c23a !important;
- }
- //登录选择企业弹出框
- .dialog .el-dialog__header{
- display: none;
- }
- .dialog .el-dialog__body{
- padding: 0;
- }
- //企业认证
- form .el-form-item.padding55 .el-form-item__content .el-input__inner{
- padding-left: 55px;
- }
- form .el-form-item.padding45 .el-form-item__content .el-input__inner{
- padding-left: 45px;
- }
|