@charset "utf-8";

/* https://www.tailwindcss.cn/ */
@import url("./tailwind.min.css");

/* https://animate.style */
/*@import url("https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.0/animate.min.css");*/

/* https://remixicon.com/ */
@import url("../fonts/remixicon.css");


/* jr custom */

body {
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, SimHei, sans-serif;
    font-size: 16px;
    background-color: #eaeaea;
}

body.el-loading-parent--hidden {
    padding-right: 6px;
}

.jr-wrap {
    height: 100vh;
}

.jr-header {
    background-color: #115;
    color: #fff;
}

.jr-header.light {
    background: url(../images/head.jpg) 50% 0 no-repeat;
}

.jr-footer {
    /*background-color: #eaeaea;*/
}

.jr-content {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.jr-aside {
    background-color: #fff;
}

.jr-main {
    margin-right: -1rem;
    padding: 0 1rem;
}

.jr-main .el-card {
    border-radius: 0;
}

.jr-main .el-card__body {
    padding: 15px;
}

.jr-menu-switch {
    width: 40px;
    height: 40px;
    /*margin: 10px 30px 10px -72px;*/
    line-height: 40px;
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    cursor: pointer;
}

.jr-menu-switch.switched {
    transform: rotate(180deg);
}

.jr-nav .current {
    background: linear-gradient(to bottom, #46f, #18f);
}

.jr-nav .current a:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;

}

.jr-nav li {
    position: relative;
}

.jr-nav li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: rgba(0,136,255,.2);
    transition: .3s;
}

.jr-nav li:hover:before {
    height: 100%;
}

.jr-nav li a {
    position: relative;
    z-index: 2;
}

/* jr 工具类 */

.w-1\/7 {
    width: 14.28%;
}

.jr-ellipsis-l2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.jr-ellipsis-l3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.column-icon {
    float: right;
    display: block;
    margin: -48px -48px 0 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 32px;
    background-color: rgba(255, 255, 255, .3);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .15);
    border-radius: 100px;
    opacity: .75
}

[v-cloak] {
    display: none;
}

/* webkit滚动条 */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #bbb;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

::-webkit-scrollbar-track-piece {
    background-color: #ddd;
}

/* element ui fix */

.el-scrollbar__wrap {
    overflow-x: hidden;
}

.el-menu {
    border: none !important;
}

.el-carousel__indicator .el-carousel__button {
    background-color: #ccc;
}

.el-carousel__indicator.is-active .el-carousel__button {
    background-color: #18f;
}

/* element ui layout */

.jr-wrap .el-aside {
    max-width: 240px;
    background-color: #304156;
    color: #fff;
}

.jr-wrap .el-aside .el-menu .el-menu-item.is-active,
.jr-header .el-menu.el-menu--horizontal .el-menu-item.is-active {
    position: relative;
    background-color: rgba(255, 255, 255, .05) !important;
}

.jr-wrap .el-aside .el-menu .el-menu-item.is-active:before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 4px;
    background-color: #18f;
}

.jr-header .el-submenu__title i,
.jr-header .el-menu-item i {
    color: #5df;
}

.jr-header .el-menu-item.is-active i {
    color: #18f;
}

.jr-logo {
    box-sizing: border-box;
    position: relative;
    max-width: 360px;
    height: 60px;
}

.jr-logo .el-image {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.jr-logo .el-image img {
    display: block;
    height: 100%;
    object-position: 0 50%;
}

.jr-logo b {
    display: block;
    min-width: 236px;
    padding-left: 20px;
    line-height: 60px;
    font-size: 18px;
    cursor: pointer;
}

.jr-logo b i {
    margin-right: 0.5rem;
    color: #acf;
}

/* 侧边大图标菜单 */

.jr-aside-menu li a {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 20px;
    line-height: 24px;
    font-size: 15px;
    text-align: center;
    color: #999;
    transition: .3s;
}

.jr-aside-menu li.current a {
    background-color: #f8f8f8;
    color: #038;
}

.jr-aside-menu li a:hover {
    background-color: #fafafa;
    color: #18f;
}

.jr-aside-menu li a i {
    display: block;
    width: 48px;
    height: 48px;
    margin: 8px auto;
    line-height: 48px;
    text-align: center;
    font-size: 28px;
    color: #048;
    border-radius: 4px;
    transition: .3s;
}

.jr-aside-menu li a:hover i {
    background-color: #18f;
    color: #fff;
}

.jr-aside-menu li.current a i {
    background-color: #038;
    color: #fff;
}

.jr-aside-menu li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 35%;
    right: 35%;
    height: 4px;
    background-color: #7df;
    opacity: 0;
    transform: scale(0, 1);
    transition: .3s;
}

.jr-aside-menu li a:hover:before,
.jr-aside-menu li.current a:before {
    opacity: 1;
    transform: scale(1, 1);
}

.jr-aside-menu .el-badge__content.is-fixed {
    margin-right: 16px;
}

/* 企业详情 */

.jr-bar {
    background-color: #116;
    color: #fff;
}

.jr-ava {
    position: relative;
}

.jr-user-noti i,
.jr-ava i {
    font-size: 20px;
}

.jr-ava.el-avatar {
    background: rgba(255, 255, 255, .05);
}

.jr-bar .el-breadcrumb__inner a,
.el-breadcrumb__inner.is-link {
    color: #5df !important;
}

.jr-bar .el-breadcrumb__inner {
    color: #09c !important;
}

.jr-bar .el-badge__content {
    border: none;
}

.jr-board {
    background-color: #038;
    color: #fff;
}

.jr-board .el-avatar>img {
    width: 72%;
    height: 72%;
    margin: 14%;
    border-radius: 4px;
}

.jr-fav-list .el-badge__content {
    margin-right: 1rem;
}

/* 详情表 */
.mark {
    /*background-image: url(../images/mark.png) !important;
    background-size: 300px auto !important;*/
    background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' font-size='18' font-weight='bold' fill-opacity='0.1' text-anchor='middle' dominant-baseline='middle' transform='rotate(-30, 100 100)'%3E湖北省中小企业融资信用平台%3C/text%3E%3C/svg%3E");

}

.jr-form-view .el-form-item {
    margin: 0 -1px -1px 0 !important;
    padding: 5px 10px;
    /*background-color: #fff;*/
    border: 1px solid #ebeef5;
    transition: .3s;
}

.jr-form-view.stripe>.el-form-item:nth-child(even),
.jr-form-view.stripe .el-row:nth-child(even) .el-form-item {
    background-color: #fafafa;
}

.jr-form-view .el-form-item__label {
    color: #999;
}

.jr-form-view .el-form-item__content p {
    width: 100%;
    overflow: hidden;
    padding: 4px 0;
    line-height: 24px;
}

.jr-form-view .el-collapse-item__content .el-row {
    margin-right: 1px;
}

/* 查询功能 */

.jr-query .el-input__inner,
.jr-query .el-input-group__append,
.jr-query .el-input-group__prepend {
    /*border-color: rgba(255, 255, 255, .15);*/
    border-color: #06b;
    background-color: rgba(255, 255, 255, .05);
    color: inherit;
}

.jr-query .el-input__inner:hover {
    position: relative;
    z-index: 9;
    border-color: #37e;
}

.jr-query .el-input.is-active .el-input__inner,
.jr-query .el-input__inner:focus {
    border-color: #49f;
}

.jr-query .el-checkbox {
    color: inherit;
}

.jr-query .el-checkbox__label {
    min-width: 100px;
}

/* 系统桌面 */

.stats-icon {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -32px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 40px;
    background-color: rgba(0, 0, 0, .05);
    /*color: #fff;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, .02), 0 0 0 12px rgba(0, 0, 0, .03);
    border-radius: 100px;*/
}

.jr-wrap .el-card__header {
    border: none;
    padding: 10px 15px;
}

.jr-wrap .el-card__body {
    padding: 16px;
}

/* element ui table */
.el-table .th {
    color: #048;
}

.el-table .th2 {
    border-bottom: 1px solid #eef !important;
    color: #048;
}

.el-table .th3 {
    border-bottom: 2px solid #bde !important;
    color: #048;
}

.el-table--small .caret-wrapper {
    margin: -6px 0;
}

.el-table__column-filter-trigger {
    margin: -6px -6px -6px 6px;
}

.el-table .et {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
}

.el-tooltip__popper.is-light {
    border: 1px solid #dcdfe6;
}

.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow {
    border-top-color: #dcdfe6;
}

/* 组件 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

input[type='number'] {
  -moz-appearance: textfield !important;
}

@media (max-width: 768px) {
    .el-table {
        margin-top: 10px;
    }

    .item-handle_extra {
        text-align: center;
    }

    .item-handle_extra .el-button span {
        display: none;
    }
}

@media (max-width: 576px) {

    .el-pagination__total,
    .el-pagination__sizes,
    .el-pagination__jump {
        display: none !important;
    }
}

/* 正文页 */

.jr-article p {
    margin: 1em 0;
    text-indent: 2em;
    line-height: 2em;
    font-size: inherit;
}

.jr-article p img{
    margin: 0 auto;
}

/* 通用登录 */

.sign-logo {
    height: 120px;
    margin-top: 10vh;
    margin-bottom: 20px;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

.sign {
    position: relative;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.sign:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
}

.sign-banner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    min-height: 400px;
    background: url('images/bg02.png') 50% 50%/100% auto no-repeat;
}

.sign-form {
    float: right;
    box-sizing: border-box;
    width: 50%;
    padding: 40px;
    background-color: #fff;
}

.footer {
    margin-top: 20px;
    padding: 15px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.footer.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(100vh - 80px);
}

.sign-form {
    min-height: 400px;
    font-size: 14px;
}

.sign-form h2 {
    margin-bottom: 20px;
}

.sign-form h2 b {
    display: block;
    line-height: 1.5;
    font-size: 20px;
}

.sign-form h2 strong {
    font-weight: normal;
    font-size: 14px;
    color: #aaa;
}

.sign .el-form-item {
    margin-bottom: 0;
}

.sign .el-form-item+.el-form-item {
    margin-top: 20px;
}

.sign .el-button {
    display: block;
    width: 100%;
    font-size: 18px;
}

.sign .el-button+.el-button {
    margin: 10px 0 0;
}

.sign .el-form-item__content,
.sign .el-input__icon {
    line-height: 44px;
}

.sign .el-input__inner {
    height: 44px;
    line-height: 44px;
}

.sign .el-input-group__append,
.sign .el-input-group__prepend {
    background-color: #fff;
}

.sign-code {
    display: block;
    width: 120px;
    height: 42px;
    /*margin: 0 -20px;*/
    /*padding: 0 10px;*/
    background-color: #fff;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 480px) {

    .sign {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .sign-banner {
        display: none;
    }

    .sign-banner,
    .sign-form {
        width: 100%;
        position: relative;
    }

    .sign-form {
        padding: 1rem;
    }

    .el-message {
        min-width: initial;
    }
}

.sign .el-input-group__append{
    width: 100px;
    padding: 0px;
}


/* 组图 */

.photos {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    font-size: 14px;
}

.photos p {
    margin: 0;
}

.photos .pic {
    position: relative;
    overflow: hidden;
    height: 500px;
    border: 1px solid #ddd;
    padding: 34px;
    text-align: center;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.photos .pic img {
    min-width: 200px;
    max-width: 100%;
    max-height: 500px;
    margin: 0 auto;
    background: url(../images/loading.gif) center no-repeat;
    background-size: 24px;
}

.photos .pic li {
    position: relative;
    height: 500px;
}

.photos .pic li a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 200px;
    line-height: 0;
    font-size: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all .3s;
}

.photos .pic li span {
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 15px;
    line-height: 20px;
    font-size: 16px;
    background: #333;
    background: linear-gradient(to top, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    opacity: 0;
    transform: translate(0, 90px);
    transition: all .3s;
}

.photos .pic li:hover span {
    opacity: 1;
    transform: translate(0, 0);
}

.photos .handle {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 80px;
    height: 24px;
    margin-left: -40px;
    line-height: 24px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid #ddd;
    border-radius: 3px 3px 0 0;
}

.play-state {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 4px;
    line-height: 16px;
    text-align: center;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle/%3E%3C/defs%3E%3Cpath fill='%2300a0e9' d='M238.933 170.667h204.8v682.666h-204.8zm341.334 0h204.8v682.666h-204.8z'/%3E%3C/svg%3E") center no-repeat;
    vertical-align: middle;
    cursor: pointer;
}

.pauseState {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2306b' d='M388.876 833.1l438.132-352.593-438.133-344.248z'/%3E%3C/svg%3E") center no-repeat;
}

.page-state {
    display: inline-block;
    width: 4em;
    text-align: center;
    vertical-align: middle;
}

.pic-prev,
.pic-next {
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.pic-prev {
    transform: translate(-50px, 0);
    left: 10px;
}

.pic-next {
    transform: translate(50px, 0);
    right: 10px;
}

.photos .pic:hover .pic-prev,
.photos .pic:hover .pic-next {
    opacity: 1;
    transform: translate(0, 0);
    color: #fff;
}

.pic-prev:hover,
.pic-next:hover {
    background-color: #00a0e9;
}

.photos .preview {
    position: relative;
    border: 1px solid #ddd;
    margin-top: -1px;
    padding: 0 4px;
    height: 100px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}

.photos .preview li {
    float: left;
    width: 20%;
    font-size: 14px;
}

.photos .preview li a {
    position: relative;
    overflow: hidden;
    display: block;
    height: 80px;
    margin: 10px 5px;
    line-height: 20px;
    background-color: #f1f1f1;
    transition: all .3s;
}

.photos .preview li.on a {
    background-color: #00a0e9;
    color: #fff;
}

.photos .preview li img {
    display: block;
    margin: 0 auto;
    width: 100%;
    min-height: 80px;
    opacity: .5;
    transform: scale(1);
    transition: all .3s;
}

.photos .preview li a:hover img,
.photos .preview li.on img {
    transform: scale(1.05);
    opacity: 1;
}

.photos .preview li a span {
    display: block;
    max-height: 60px;
    margin: 10px;
    overflow: hidden;
}

.preview-prev,
.preview-next {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin-top: -12px;
    text-align: center;
    font-size: 18px;
    background-color: #06b;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: scale(0.8, 0.8);
    transition: all .3s;
}

.prevStop,
.nextStop {
    background-color: #aaa !important;
    cursor: not-allowed;
}

.preview:hover .preview-prev,
.preview:hover .preview-next {
    transform: scale(1, 1);
    opacity: 1;
    color: #fff;
}

.preview-prev {
    left: -12px;
}

.preview-next {
    right: -12px;
}

@media (max-width: 768px) {
    .photos {
        width: auto;
        margin: 20px 0;
    }

    .photos .pic {
        padding: 14px;
    }

    .photos .preview {
        display: none;
    }

}

.jr-set-area .el-dialog {
    margin-top: calc(50vh - 130px) !important;
}

@-moz-document url-prefix() {
    .el-scrollbar {
        padding-bottom: 10px;
    }
}
/*左侧菜单选中样式*/
.el-submenu.is-active .el-submenu__title i {
    color: #fff;
}

.user-info {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .user-info {
        width: 550px;
    }
}
