/* General Help Center Styles */
[v-cloak] {
    display: none;
}

.container {
    max-width: 1200px;

}

.help-center-container {
    padding: 40px 0;
    background-color: #f9f9f9;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    font-size: 1em;
}

.breadcrumb a {
    color: #1e9fff;
}


/* Hero Section */
.help-hero {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.help-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.help-hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

/* Search Bar */
.search-bar {
    max-width: 800px;
    margin: 0 auto;
}

.search-bar form {
    display: flex;
    width: 100%;
}

.search-bar .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.search-bar {
    display: flex;

    height: 50px;
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.search-bar .btn {
    height: 50px;
    border-radius: 0 25px 25px 0;
    background: #b83088;
    border: #b83088;
    padding: 6px 20px;
}

.search-bar .btn:focus {
    background: #b83088;
    border: #b83088;
    outline: none
}

/* Topics Section */
.popular-articles {
    margin-bottom: 40px;
}

.all-topics h2,
.popular-articles h2,
#search-results-title {
    margin-bottom: 30px;
    font-weight: bold;
}

.topic-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 明确指定要过渡的属性 */
    transition: all 0.3s ease;
    cursor: pointer;
}

.topic-card:hover {
    background: #EEFBF5;
    box-shadow: inset 0 0 0 2px #0B7AAD;
}

.topic-card:hover a {
    color: #0B7AAD;
}

.topic-card img {
    width: 56px;
    height: 56px;
    margin: 10px 0 25px;
}

.topic-card h4 {
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 20px;
    height: 40px;
    text-align: center;
}

.topic-card h4 a {
    color: #333;
    text-decoration: none;
}

.topic-card h4 a:hover {
    text-decoration: none;
}

/* Popular Articles */
.popular-articles .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
}

.list-group-item {
    cursor: pointer;

}

.popular-articles .list-group-item:hover,
.category-page .list-group-item:hover {
    color: #1e9fff;
}

.popular-articles .list-group-item .glyphicon {
    color: #cccccc;
}


/* Article & Category Page */
.help-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.help-sidebar .list-group-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    border: 1px solid #ddd;
}

.help-sidebar .list-group-item img {
    width: 30px;
    height: 30px;
}

.help-sidebar .list-group-item.active {
    background: #EEFBF5;
    color: #333;
}

.help-sidebar .list-group-item:hover {
    background: #EEFBF5;
    color: #333;
    border: 1px solid #ddd;

}

.help-article {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.help-article h1 {
    margin-top: 0;
}

.article-meta {
    color: #888;
    font-size: 1em;
    margin-bottom: 20px;
}

.feedback-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.suggested-articles {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.suggested-articles h3 {
    margin-top: 0;
}

.suggested-articles ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.suggested-articles ul li a {
    display: block;
    padding: 8px 0;
    color: #1e9fff;
    text-decoration: none;
}

.suggested-articles ul li a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Search Results */
#search-results-list .list-group-item-heading {
    color: #b83088;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    text-shadow: none;
    ;
}

@media (max-width: 1200px) {

    .category-page,
    .help-sidebar {
        margin-top: 10px !important;
    }
}