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

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

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

/* 导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
}

.logo {
    float: left;
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 10px;
}

.logo-text {
    color: #333;
}

.nav {
    float: right;
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.nav-item {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link.active {
    color: #4CAF50;
    font-weight: 600;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 180px;
    display: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #4CAF50;
}

/* 导航操作按钮 */
.nav-actions {
    margin-left: 20px;
}

.login-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #45a049;
    transform: none;
    box-shadow: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    margin-left: 20px;
}

/* 英雄区域 */
.hero {
    position: relative;
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    float: left;
    width: 50%;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: #4CAF50;
    color: white;
    margin-right: 15px;
    font-size: 16px;
    padding: 12px 24px;
}

.primary-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-image {
    float: right;
    width: 50%;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 英雄区域备注 */
.hero-note {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
}

.hero-note p:first-child {
    font-weight: 600;
    margin-bottom: 10px;
    color: #4CAF50;
}

.hero-note p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* 英雄区域侧边栏 */
.hero-sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.sidebar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sidebar-btn i {
    font-size: 18px;
    margin-bottom: 4px;
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn:hover {
    background-color: #3b5998;
    color: white;
}

.group-btn:hover {
    background-color: #ff4757;
    color: white;
}

.support-btn:hover {
    background-color: #3742fa;
    color: white;
}

/* 服务区域 */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* 服务器类型区域 */
.server-types {
    padding: 80px 0;
    background-color: white;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.server-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.server-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4CAF50;
    font-size: 32px;
}

.server-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.server-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 服务器特点区域 */
.server-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background-color: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4CAF50;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4CAF50;
    font-size: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.service-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.service-link:hover {
    color: #45a049;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* 特色区域 */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #4CAF50;
    font-size: 20px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 价格区域 */
.pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.pricing-card.popular {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 8px;
}

.price-period {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.pricing-features li i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 12px;
}

.pricing-footer {
    margin-top: 24px;
}

.pricing-details {
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.detail-label {
    color: #666;
}

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

/* 联系方式部分 */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 关于我们 */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    margin-right: 16px;
    margin-bottom: 16px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 12px;
}

/* 联系我们 */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #4CAF50;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-text p {
    color: #666;
    font-size: 14px;
}

.contact-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.contact-social h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.social-links {
    display: flex;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.social-link:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 页脚 */
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0 30px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.footer-logo a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 10px;
}

.footer-logo p {
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    flex: 1;
    min-width: 180px;
    margin-right: 24px;
    margin-bottom: 24px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-content,
    .hero-image {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .about-image {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin: 8px 0;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid #e9ecef;
        border-radius: 4px;
        margin-top: 8px;
        margin-left: 20px;
    }
    
    .nav-actions {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }
    
    .login-btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .service-card,
    .feature-item,
    .pricing-card {
        padding: 20px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 常见问题样式 */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.faq-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.faq-q {
    width: 32px;
    height: 32px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
}

.faq-a {
    width: 32px;
    height: 32px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}