/* 全局样式 */
:root {
    --primary-color: #0056b3;
    --secondary-color: #e60012;
    --text-color: #333;
    --light-text: #777;
    --bg-light: #f9f9f9;
    --bg-dark: #1e3a6a;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

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

/* 特殊情况下的flexbox容器 */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 修改section内容布局 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

/* 关于我们部分的section-header左对齐 */
.about-section .section-header {
    text-align: left;
}

/* 各部分容器样式 */
.products-section .container,
.cases-section .container,
.sustainability-section .container,
.certifications-section .container,
.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn-primary {
    background: #e60012;
    color: #fff;
}

.btn-primary:hover {
    background: #c8000f;
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.section-header h2 {
    font-size: 2.2rem;
    color: #223A5E;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 1.8rem;
    color: #223A5E;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.section-header p .btn-view-more {
    margin-left: 10px;
    white-space: nowrap;
    display: inline-block;
    vertical-align: baseline;
}

/* 顶部信息栏 */
/* 这里删除了顶部信息栏(top-bar)的相关样式 */

/* 导航栏中的语言选择器 */
.language-selector-li {
    margin-left: 25px;
}

.language-selector-li select {
    background: #f5f5f5;
    color: #223A5E;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.language-selector-li select:hover {
    border-color: #e60012;
}

/* 导航栏 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.logo-container {
    flex: 0 0 200px;
}

.logo {
    height: 50px;
}

.main-nav {
    flex-grow: 1;
    text-align: right;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    color: #223A5E;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #e60012;
}

.nav-list a.active {
    color: #e60012 !important;
    font-weight: 700;
    position: relative;
}

.nav-list a.active::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: #e60012;
    border-radius: 2px;
    margin: 6px auto 0 auto;
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    min-width: 180px;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #223A5E;
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #223A5E;
    margin: 5px 0;
    border-radius: 2px;
}

/* 主横幅 */
.hero-banner {
    background-image: url('../assets/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 100vh; /* 填满整个视窗高度 */
    min-height: 600px; /* 设置最小高度，防止在小屏幕上过小 */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    max-width: 600px;
    text-align: left;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* 产品目录部分 */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    width: 100%;
}

/* 产品类别 */
.product-category {
    flex: 0 0 calc(33.33% - 30px);
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category:hover {
    transform: translateY(-10px);
}

.product-category-img {
    height: 200px;
    overflow: hidden;
}

.product-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-category:hover .product-category-img img {
    transform: scale(1.1);
}

.product-category-content {
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    padding-bottom: 60px; /* 为按钮留出空间 */
    text-align: center; /* 使内容居中 */
}

.product-category-content h3 {
    font-size: 1.3rem;
    color: #223A5E;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center; /* 标题居中 */
}

.product-category-content p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: center; /* 段落文字居中 */
}

.product-category-content .btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* 保留原有的产品项样式，以兼容可能的旧代码 */
.product-item {
    flex: 0 0 calc(33.33% - 30px);
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    background: #fff;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #223A5E;
    margin-top: 0;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.btn-view-more {
    display: inline-block;
    color: #e60012;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.btn-view-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e60012;
    transition: width 0.3s;
}

.btn-view-more:hover::after {
    width: 100%;
}

/* 成功案例部分 */
.cases-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.case-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-image {
    width: 100%;
    height: 100%;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34, 58, 94, 0.9);
    color: white;
    padding: 20px;
    transform: translateY(100px);
    transition: transform 0.3s;
}

.case-item:hover .case-image img {
    transform: scale(1.1);
}

.case-item:hover .case-overlay {
    transform: translateY(0);
}

.case-overlay h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.case-overlay p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-view-case {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-view-case:hover {
    background: #fff;
    color: #223A5E;
}

/* 可持续发展部分 */
.sustainability-section {
    padding: 80px 0;
    background: #fff;
}

.sustainability-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.sustainability-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sustainability-item:hover {
    transform: translateY(-10px);
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: #223A5E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2.5rem;
}

.sustainability-item h3 {
    font-size: 1.3rem;
    color: #223A5E;
    margin-top: 0;
    margin-bottom: 15px;
}

.sustainability-item p {
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-link {
    display: inline-block;
    color: #e60012;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    align-self: center;
    margin-top: auto;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e60012;
    transition: width 0.3s;
}

.btn-link:hover::after {
    width: 100%;
}

/* 认证资质部分 */
.certifications-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    width: 100%;
}

.certification-item {
    flex: 0 0 calc(25% - 30px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.certification-item h3 {
    color: #223A5E;
    font-size: 1.3rem;
    margin-bottom: 10px;
    width: 100%;
}

.certification-item p {
    color: #666;
    margin-bottom: 15px;
    width: 100%;
}

.btn-download {
    display: inline-block;
    color: #e60012;
    text-decoration: none;
    border: 1px solid #e60012;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: auto;
    width: 80%;
}

.btn-download:hover {
    background: #e60012;
    color: #fff;
}

/* 关于我们部分 */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

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

.about-text h3 {
    color: #223A5E;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text h4 {
    color: #e60012;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    color: #444;
    line-height: 1.6;
}

/* 子区域标题样式 */
.section-subheader {
    text-align: left;
    margin: 60px 0 30px;
    width: 100%;
}

.section-subheader h3 {
    font-size: 1.8rem;
    color: #223A5E;
    margin-bottom: 15px;
}

.section-subheader p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.contact-info-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #e60012;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    color: #223A5E;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    color: #223A5E;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

/* 页脚 */
.footer {
    background: #223A5E;
    color: #fff;
    padding: 60px 0 30px;
}

.footer .container {
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #e60012;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #e60012;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c8000f;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #e60012;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e60012;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c8000f;
}

/* 查看全部按钮容器 */
.view-all-container {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

/* 产品标题部分的查看全部按钮 */
.section-header .view-all-btn {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
    display: inline-block;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
    }
    
    .about-image img {
        max-width: 80%;
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-banner {
        height: 100vh;
        min-height: 500px;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 100;
    }
    
    .mobile-menu-active .nav-list li {
        margin: 10px 0;
    }
    
    .language-selector-li {
        margin: 15px 0 5px;
    }
    
    .language-selector-li select {
        width: 100%;
        padding: 8px 12px;
    }
    
    .product-categories,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-banner {
        height: 100vh;
        min-height: 500px;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .product-categories,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .certification-item {
        margin-bottom: 30px;
    }
}

/* 确保about-section里的段落左对齐 */
.about-section .section-header p {
    margin: 0;
    text-align: left;
}

/* 认证资质和联系我们部分的标题左对齐 */
.about-section .cert-header,
.about-section .contact-header {
    text-align: left !important;
    margin-top: 70px;
    margin-bottom: 10px;
}

.about-section .cert-header h3,
.about-section .contact-header h3 {
    text-align: left !important;
    margin-bottom: 5px;
}

.about-section .cert-header p,
.about-section .contact-header p {
    text-align: left !important;
    margin-left: 0;
    margin-right: auto;
}

/* 调整认证资质和联系我们内容区域的上边距 */
.about-section .certifications-grid,
.about-section .contact-grid {
    margin-top: 15px;
}

/* 首页愿景大横幅 */
.vision-banner {
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 100%), url('../assets/hero-banner-minor.jpeg') center center/cover no-repeat;
    background-blend-mode: overlay;
    color: #fff;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    padding: 0 15px;
    overflow: hidden;
    box-sizing: border-box;
}
.vision-banner h2 {
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    z-index: 1;
    position: relative;
}
@media (max-width: 768px) {
    .vision-banner {
        height: 100vh;
        min-height: 500px;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 10px;
    }
    .vision-banner h2 {
        font-size: 1.2rem;
    }
}

/* 横幅间隔带 */
.banner-gap {
    width: 100%;
    height: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
    .banner-gap {
        height: 5px;
    }
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(34, 58, 94, 0.98);
    color: #fff;
    min-height: 64px;
    padding: 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    transition: transform 0.4s;
    transform: translateY(100%);
}
.cookie-consent.show {
    transform: translateY(0);
}
.cookie-consent .cookie-btn {
    margin-left: 24px;
    background: #e60012;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-consent .cookie-btn.reject {
    background: #888;
}
.cookie-consent .cookie-btn:hover {
    background: #c8000f;
}
.cookie-consent .cookie-btn.reject:hover {
    background: #444;
}
@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        font-size: 1rem;
        padding: 18px 8px;
        min-height: 80px;
    }
    .cookie-consent .cookie-btn {
        margin: 14px 0 0 0;
        width: 100%;
    }
} 