html, body {
    font-family: '微软雅黑', '宋体', '黑体', 'Arial', sans-serif;
    height: 100%;
    display: block;
}
body { display: flex; flex-direction: column; }
p { margin: 0; padding: 0; }
a { text-decoration: none; }
.container {
    max-width: 1200px;
}
.header-nav a {
    color: white;
    margin-right: 10px;
    text-decoration: none;
}
.card {
    border-color: #eee;
}

.header {
    color: #eee;
}

.header a {
    color: #eee;
}

.header a:hover {
    color: #ccc;
}

.header .nav-item {  }
.header .nav-item a { color: #000; background-color: rgba(255,255,255, 0.7); margin-right: 5px; border-radius: 10px; box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); }
.header .nav-item.active a { background-color: rgba(255, 0, 0, 1); color: #eee; }
.header .nav-item a:hover { color: #fff; background-color: rgba(255, 0, 0, 0.5); }

.search {
    width: 45px;
    height: 40px;
    background-color: rgba(255,255,255, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 10px;
}
.search:before {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    position: relative;
    background-color: #00FEDE;
    transition: all 0.5s ease;
}
.search.open {
    width: 250px;
}
.search.open:before {
    height: 30px;
    margin: 5px 0 5px 10px;
    position: absolute;
}

.search .search-box {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    color: #fff;
    padding-left: 20px;
}
.search .search-box:focus {
    outline: none;
}

.search .search-button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    color: #000;
}

.search-min-result { display: inline-block; position: absolute; bottom: -15px; box-sizing: border-box; width: 100%;  }
.search-min-result .autocomplete-suggestions { background: rgba(0, 0, 0, 1); padding: 0 10px 15px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); border-radius: 0 0 1rem 1rem; width: 100%; }
.search-min-result a { color: #fff; display: block; }
.search-min-result a:hover { color: #000;}
.autocomplete-suggestion {  }
.autocomplete-selected { background: #F0F0F0; color: #000; cursor: pointer; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399FF; }
.autocomplete-group { border-bottom: 1px dashed #fff; padding-bottom: 5px; }
.autocomplete-group strong { display: block; border-bottom: 1px solid #000; }

.hover-underline {
        display: inline;
        box-shadow: inset 0 -2px 0 0 transparent; /* 控制初始状态的下划线 */
        transition: box-shadow 0.3s;
    }

    .hover-underline:hover {
        box-shadow: inset 0 -2px 0 0 #999; /* 调整偏移量增加间隔 */
    }

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ccc;
}

.text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 限制显示的行数为2 */
    overflow: hidden;
}

/*pagination*/
.pagination {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
    font: 16px/24px sans-serif;
}

.page {
    display: inline-block;
    padding: 0px 9px;
    margin-right: 4px;
    margin-bottom: 4px;
    border-radius: 3px;
    border: solid 1px #c0c0c0;
    background: #e9e9e9;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color: #717171;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}

.page:hover, .page.gradient:hover {
    background: #fefefe;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFEFE), to(#f0f0f0));
    background: -moz-linear-gradient(0% 0% 270deg,#FEFEFE, #f0f0f0);
}

.page.active {
    border: none;
    background: #616161;
    box-shadow: inset 0px 0px 8px rgba(0,0,0, .5), 0px 1px 0px rgba(255,255,255, .8);
    color: #f0f0f0;
    text-shadow: 0px 0px 3px rgba(0,0,0, .5);
}

.page.gradient {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#e9e9e9));
    background: -moz-linear-gradient(0% 0% 270deg,#f8f8f8, #e9e9e9);
}

.mini-page { position: absolute; height: 40px; line-height: 40px; right: 0; top: 0; bottom: -1px; }
.mini-page .prev { margin-right: 15px; }
.mini-page a:last-child { margin: 0px; }

.footer {
    position: relative;
    clear: both;
    color: black;
    background-color: #d3d5db;
    padding: 15px 0px;
}

.footer a { color: black; }
.footer a:hover { color: #003366; font-weight: bolder; }