:root {
    --main-color: #2042e3;
}

html,body {
    font-size: 16px;
    font-family: "Times New Roman", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #FFF;
    color: #333;
}

.container-fluid {
    max-width: 1440px;
}

[v-cloak] {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.text-one-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-tow-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.5 * 2em);
}

.card {
    transition: .3s;
}

.card.card-hover:hover {
    transform: translateY(-6px);
    cursor: pointer;
}

.card.card-hover:hover .text-hover {
    text-decoration: underline;
}

.text-hover:hover {
    text-decoration: underline;
}

.text-stripe-hover:hover {
    transition: .1s;
    color: #2042e3;
}

.logo-img {
    max-width: 60px;
}

@media (max-width: 767px) {
    .logo-img {
        max-width: 40px;
    }
    .system-name {
        font-size: 16px;
    }
}

/* 标题1 */
.wic-title-1 {
    width: fit-content;
    padding-bottom: 1rem;
    margin: auto;
    position: relative;
}

.wic-title-1::after {
    content: "";
    display: block;
    width: 60px;
    border: 1px solid #2042e3;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
}

/* 标题2 */
.wic-title-2 {
    width: max-content;
    padding-bottom: 1rem;
    position: relative;
}

.wic-title-2::after {
    content: "";
    display: block;
    width: 100%;
    border: 0.1rem solid #2042e3;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Header样式START */
.header {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 0 6px 2px rgba(0,0,0,0.06);
}

.header .navbar {
    padding: 0;
    transition: all 0.3s ease-out 0s;
}

/* LOGO */
.header .navbar-brand {
    padding: 0;
}

.header .logo {
    width: 356px;
    transition: 0.3s;
}

/* Toggler */
.header .navbar-toggler {
    background-color: #2042e3;
    padding: 5px 8px !important;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .navbar-toggler .toggler-icon {
    background-color: #fff !important;
}

.header .navbar-toggler:hover {
    background-color: #081828 !important;
}

.header .navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header .navbar-toggler .toggler-icon {
    width: 22px;
    height: 2px;
    background-color: #333;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.header .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.header .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

/* 菜单按钮 */
.header .navbar-nav .nav-item {
    position: relative;
    margin-left: 2em;
}

.header .navbar-nav .nav-item a {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 30px 0;
    position: relative;
    text-transform: capitalize;
}

.header .navbar-nav .nav-item a::before {
    content: '';
    width: 0;
    left: 0;
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #2042e3;
    opacity: 0;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 5;
}

.header .navbar-nav .nav-item a:hover,
.header .navbar-nav .nav-item a.active {
    color: #2042e3;
}

.header .navbar-nav .nav-item:hover a:before,
.header .navbar-nav .nav-item a.active::before {
    opacity: 1;
    width: 100%;
}

.header .navbar-nav li .sub-menu li a.active {
    background-color: #2042e3 !important;
    color: #fff !important;
}

.header .navbar-nav .nav-item a i {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
}

/* 登录按钮 */
.header .login {
    font-size: 1.25rem;
    padding: 30px 0;
    margin-left: 2em;
    color: #2042e3;
}

.header .login:hover {
    color: #5f77e5;
}
/* Header样式END */

/* Main */
.main {
    padding-top: 162px;
}

/* Footer */
.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .header .logo {
        max-width: 250px;
    }

    .header .navbar-nav .nav-item a {
        padding: 10px 0;
    }

    .main {
        padding-top: 112px;
    }
}