/* 主CSS渲染 */

/* 全局 START */

html, body {
    height: 100%; /* 设置HTML和body元素的高度为100% */
}

/* 使用自定义字体 START */
@font-face {
    font-family: 'Noto Sans SC';
    src: url('../font/NotoSansSC-VariableFont_wght.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
}
/* 使用自定义字体 END */

/* 设置container的最大宽度 START */
.container {
    max-width: 80%;
}
/* 设置container的最大宽度 END */

/* 设置navbar的最大高度 START */
.navbar {
    height: 58px;
    width: 100%;
}
/* 设置navbar的最大高度 END */


/* 卡片相关 START */
.breadcrumb-item a,
.breadcrumb-item {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: white;
}

.nav-def {
    color: inherit;
    text-decoration: none;
}

.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.5s ease;
}
.card-link:hover {
    color: inherit;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 14px;
    }
    .navbar {
        height: auto; /* 在手机端恢复默认高度 */
    }

    html, body {
        height: auto; /* 在手机端恢复默认高度 */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .breadcrumb {
        font-size: 16px;
    }
}
/* 卡片相关 END */

/* custom color START */
.color-red-light {
    background-color: #D03542;
}

.color-red-drak {
    background-color: #9D2933;
}

.color-cyan-light {
    background-color: #002949;
}

.color-cyan-drak {
    background-color: #000028;
}
/* custom color END */

.img-2 {
    max-width: 25%;
    height: auto;
}

/* 全局 END */

/* home START */
.home-screen-bg {
    background-image: url(../image/home/text_bg.png);
}
/* home END */