/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.header {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
    padding: 15px 0;

}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.logo img {
    width: 180px;
    margin-right: 10px;
    border-radius: 8px;
}

.logo-icon {
    margin-right: 8px;
    font-size: 20px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 主要内容区域 */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 120px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

/* 文章列表 */
.article-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;

}

.article-card {
    display: flex;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:last-child {
    margin: 10px;
    border-bottom: none;
}

.article-card:hover {
    transform: translateY(-2px);
}

.article-image {
    width: 200px;
    height: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 15px;
}

.article-category {
    font-size: 16px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-category img {
    width: 200px;
    height: 150px;
}


.article-subtitle {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-content {
    flex: 1;
    padding: 0 20px;
    padding: 0 20px;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.article-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.meta-item span {
    color: #666;
}

/* 分页 */
.pagination {
    padding: 20px;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
}

.pagination-item {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
    background-color: #81C784;
    color: white;
    border-color: #81C784;
}

/* 侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    overflow: hidden;

}

.sidebar-title {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* 热门文章列表 */
.hot-article-list {
    padding: 15px 0;
}

.hot-article-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.3s ease;
}

.hot-article-item:last-child {
    border-bottom: none;
}

.hot-article-item:hover {
    background-color: #f8f9fa;
}

.hot-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.hot-top {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.hot-normal {
    background: #f1f3f4;
    color: #666;
}

.hot-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}


/* 底部 */
.footer {
    background: #333;
    color: #999;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-text {
    font-size: 12px;
}

/* 详情页样式 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4CAF50;
}

.separator {
    margin: 0 8px;
    color: #999;
}

.current {
    color: #333;
    font-weight: 500;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.article-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.article-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-header .article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-header .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.article-content {
    line-height: 1.8;
    color: #333;
}

.content-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
}

.content-intro p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.content-heading {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.content-subheading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.article-image-container {
    margin: 30px 0;
    text-align: center;
}

.article-main-image {
    display: inline-block;
    border: 3px solid #666;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

.content-list {
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-conclusion {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
    font-style: italic;
}

.share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    color: #666;
    font-weight: 500;
}

.share-btn {
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.share-btn.weibo {
    background: #ff6b6b;
    color: white;
}

.share-btn.wechat {
    background: #4CAF50;
    color: white;
}

.share-btn.qq {
    background: #1976D2;
    color: white;
}

.share-btn.qzone {
    background: #FF9800;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.related-articles {
    margin-top: 40px;
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.related-card {
    padding: 15px;
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-image {
    width: 310px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 8px;
    flex-shrink: 0;
}

.related-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
}

.related-meta {
    font-size: 11px;
    color: #999;
    display: flex;
    gap: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        order: -1;
    }

    .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        gap: 15px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 120px;
    }

    .container {
        padding: 0 15px;
    }

    .article-detail {
        padding: 20px;
    }

    .article-header .article-title {
        font-size: 24px;
    }

    .article-header .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }

    .related-card {
        flex-direction: column;
    }

    .related-image {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 16px;
    }

    .article-excerpt {
        font-size: 13px;
    }

    .pagination-item {
        padding: 6px 8px;
        margin: 0 1px;
        font-size: 12px;
    }

    .hot-title {
        font-size: 12px;
    }

    .article-header .article-title {
        font-size: 20px;
    }

    .content-heading {
        font-size: 18px;
    }

    .content-subheading {
        font-size: 16px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .related-articles {
        padding: 20px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.article-card:nth-child(4) {
    animation-delay: 0.4s;
}

.article-card:nth-child(5) {
    animation-delay: 0.5s;
}

.article-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #81C784;
}

.nav-right a {
    margin: auto;
    text-decoration: none;
    color: #ffffff;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.header {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
    padding: 15px 0;

}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

.logo img {
    width: 180px;
    margin-right: 10px;
    border-radius: 8px;
}

.logo-icon {
    margin-right: 8px;
    font-size: 20px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 主要内容区域 */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 120px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

/* 文章列表 */
.article-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;

}

.article-card {
    display: flex;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:last-child {
    margin: 10px;
    border-bottom: none;
}

.article-card:hover {
    transform: translateY(-2px);
}

.article-image {
    width: 200px;
    height: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 15px;
}

.article-category {
    font-size: 16px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-category img {
    width: 200px;
    height: 150px;
}


.article-subtitle {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.article-content {
    flex: 1;
    padding: 0 20px;
    padding: 0 20px;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.article-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.meta-item span {
    color: #666;
}

/* 分页 */
.pagination {
    padding: 20px;
    text-align: center;
    background: white;
    border-top: 1px solid #eee;
}

.pagination-item {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
    background-color: #81C784;
    color: white;
    border-color: #81C784;
}

/* 侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: white;
    border-radius: 10px;
    overflow: hidden;

}

.sidebar-title {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* 热门文章列表 */
.hot-article-list {
    padding: 15px 0;
}

.hot-article-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.3s ease;
}

.hot-article-item:last-child {
    border-bottom: none;
}

.hot-article-item:hover {
    background-color: #f8f9fa;
}

.hot-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.hot-top {
    background: linear-gradient(135deg, #81C784, #4CAF50);
    color: white;
}

.hot-normal {
    background: #f1f3f4;
    color: #666;
}

.hot-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}


/* 底部 */
.footer {
    background: #333;
    color: #999;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-text {
    font-size: 12px;
}

/* 详情页样式 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4CAF50;
}

.separator {
    margin: 0 8px;
    color: #999;
}

.current {
    color: #333;
    font-weight: 500;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.article-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.article-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-header .article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-header .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.article-content {
    line-height: 1.8;
    color: #333;
}

.content-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
}

.content-intro p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.content-heading {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.content-subheading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
}

.article-content p {
    text-indent: 2ch;
    margin-bottom: 15px;
}

.article-content p img {
    margin: auto;
    display: block;
}

.article-image-container {
    margin: 30px 0;
    text-align: center;
}

.article-main-image {
    display: inline-block;
    border: 3px solid #666;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

.content-list {
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-conclusion {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
    font-style: italic;
}

.share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    color: #666;
    font-weight: 500;
}

.share-btn {
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.share-btn.weibo {
    background: #ff6b6b;
    color: white;
}

.share-btn.wechat {
    background: #4CAF50;
    color: white;
}

.share-btn.qq {
    background: #1976D2;
    color: white;
}

.share-btn.qzone {
    background: #FF9800;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.related-articles {
    margin-top: 40px;
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-category img {
    width: 100%;
    height: 174px;
}

.related-content {
    padding: 0 15px;
    flex: 2;
}

.related-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    font-size: 11px;
    color: #999;
    display: flex;
    gap: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        order: -1;
    }

    .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        gap: 15px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 120px;
    }

    .container {
        padding: 0 15px;
    }

    .article-detail {
        padding: 20px;
    }

    .article-header .article-title {
        font-size: 24px;
    }

    .article-header .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }

    .related-card {
        flex-direction: column;
    }

    .related-image {
        width: 100%;
        height: 174px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 16px;
    }

    .article-excerpt {
        font-size: 13px;
    }

    .pagination-item {
        padding: 6px 8px;
        margin: 0 1px;
        font-size: 12px;
    }

    .hot-title {
        font-size: 12px;
    }

    .article-header .article-title {
        font-size: 20px;
    }

    .content-heading {
        font-size: 18px;
    }

    .content-subheading {
        font-size: 16px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .related-articles {
        padding: 20px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.article-card:nth-child(4) {
    animation-delay: 0.4s;
}

.article-card:nth-child(5) {
    animation-delay: 0.5s;
}

.article-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #81C784;
}

.nav-right a {
    margin: auto;
    text-decoration: none;
    color: #ffffff;
}
