/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo img {height:55px;}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
}

.logo-au {
    color: #e63946;
}

.logo-veo {
    color: #f4a81d;
}

.main-nav ul {
    display: flex;
    gap: 10px;
}

.main-nav a {
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f4a81d;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    background: #fff;
    border: none;
    padding: 10px 20px;
    color: #333;
    width: 160px;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background: #e63946;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 25px 25px 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-style: italic;
}

.hero-content h1 .highlight-red {
    color: #e63946;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    background: #d4784a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #c56a3f;
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-prev {
    left: 15px;
}

.hero-next {
    right: 15px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* The following properties were malformed and seem to belong to .icon-circle */
.icon-circle {
    align-items: center;
    justify-content: center;
    background: rgba(0, 50, 100, 0.3);
    transition: all 0.3s;
}

.icon-circle:hover {
    border-color: #00c8ff;
    background: rgba(0, 100, 150, 0.5);
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.icon-item span {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.banner-overlay-logo {
    position: absolute;
    bottom: 20px;
    left: 40px;
}

.banner-overlay-logo img {
    height: 80px;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.about-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.about-header .highlight-red {
    color: #e63946;
    font-weight: 700;
}

.about-header .subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.about-content {
    max-width: 1050px;
    margin: 0 auto 40px;
    text-align: left;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #CC0000;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.view-more-btn a {
    display: inline-block;
    background: #e63946;
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    transition: background 0.3s;
}

.view-more-btn a:hover {
    background: #d62839;
}

/* Product Section */
.product-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.section-title .highlight-red {
    color: #e63946;
    font-weight: 600;
}

.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 4px;
}

.tab-dropdown {
    position: relative;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
	background-color: #fff;
	border-right: 1px solid #f5f5f5;
}
.tab-btn:last-child {border-right: 0px;}

.tab-btn svg {
    transition: transform 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #b22234;
}

.tab-dropdown:hover .tab-btn svg,
.tab-dropdown.open .tab-btn svg {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #c9515c;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}

.tab-dropdown:hover .dropdown-menu,
.tab-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #333;
}

.product-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-btn.page-num {
    padding: 8px 14px;
    min-width: 36px;
}

.page-btn:hover {
    border-color: #b22234;
    color: #b22234;
}

.page-btn.active {
    background: #b22234;
    color: #fff;
    border-color: #b22234;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: #fff;
}

.partner-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.partner-title .highlight-red {
    color: #e63946;
    font-weight: 600;
}

.partner-title .highlight-gold {
    color: #d4a843;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo {
    flex: 1;
    max-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* News Center Section */
.news-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.news-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.news-title .highlight-red {
    color: #e63946;
    font-weight: 600;
}

.news-title .highlight-gold {
    color: #d4a843;
    font-weight: 600;
}

.news-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.news-left {
    flex: 0 0 55%;
    max-width: 55%;
}

.news-right {
    flex: 1;
}

/* Video Player */
.video-player {
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover svg circle {
    fill: rgba(0,0,0,0.5);
}

.play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper video::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.3s;
}

.video-wrapper:hover video::-webkit-media-controls {
    opacity: 1;
}

/* News Carousel */
.news-carousel {
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: translateY(-3px);
}

.carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid #eee;
}

.carousel-item p {
    padding: 12px;
    font-size: 13px;
    color: #333;
    text-align: center;
}

.carousel-arrow {
    position: absolute;
    top: 75px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-arrow:hover {
    background: #fff;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* News Tabs */
.news-tabs {
    display: flex;
    margin-bottom: 20px;
}

.news-tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px 4px 0 0;
}

.news-tab-btn.active {
    background: #b22234;
    color: #fff;
}

.news-tab-btn:not(.active):hover {
    background: #e0e0e0;
}

/* News Content */
.news-content {
    border-top: 3px solid #b22234;
}

.news-tab-content {
    display: none;
}

.news-tab-content.active {
    display: block;
}

/* News Item */
.news-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.news-item:hover {
    background: #fafafa;
}

.news-thumb {
    flex: 0 0 140px;
    height: 90px;
    overflow: hidden;
    border-radius: 4px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.news-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-date {
    font-size: 12px;
    color: #999;
}

.news-views {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-views svg {
    vertical-align: middle;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #ffffff;
}

.solutions-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.solutions-title .highlight-red {
    color: #e63946;
    font-weight: 600;
}

.solutions-title .highlight-gold {
    color: #d4a843;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.solution-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.solution-item:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #ccc;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e63946;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li:not(:has(a)) {
    color: #aaa;
    font-size: 13px;
}

.footer-bottom {
    background: #15152a;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links span {
    color: #888;
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.sidebar-btn {
    width: 45px;
    height: 45px;
    background: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.sidebar-btn:hover {
    background: #d62839;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-icons {
        right: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .banner-icons {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        transform: none;
        margin-top: 20px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        width: 40%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .partner-logo {
        flex: 0 0 auto;
        width: 120px;
        max-width: 120px;
    }

    .news-container {
        flex-direction: column;
    }
    
    .news-left {
        flex: 1;
        max-width: 100%;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .news-thumb {
        flex: 0 0 100px;
        height: 70px;
    }
    
    .news-info h4 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .search-box {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        width: 100%;
    }
}


/* Contact Banner */
.contact-banner {
    position: relative;
    height: 293px;
    margin-top: 70px;
    overflow: hidden;
}

.contact-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.contact-banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

.banner-title-cn {
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.banner-title-en {
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
}
/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #b22234;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: #b22234;
    font-size: 13px;
}
/* Responsive */
@media (max-width: 768px) {
    .contact-banner-content {
        padding-left: 30px;
    }
    
    .banner-title-cn {
        font-size: 32px;
    }
    
    .banner-title-en {
        font-size: 24px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.news-pagination .page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-pagination .page-btn.page-num {
    padding: 8px 14px;
    min-width: 36px;
}

.news-pagination .page-btn:hover {
    border-color: #b22234;
    color: #b22234;
}

.news-pagination .page-btn.active {
    background: #b22234;
    color: #fff;
    border-color: #b22234;
}
  /* Hamburger button - hidden on desktop */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1010;
        }
        .hamburger-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }
        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile dropdown menu */
        .mobile-dropdown {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 999;
            padding: 10px 0;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        .mobile-dropdown.open {
            display: block;
        }
        .mobile-dropdown ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mobile-dropdown li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-dropdown a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 15px 25px;
            font-size: 15px;
            transition: background 0.3s;
        }
        .mobile-dropdown a:hover,
        .mobile-dropdown a.active {
            color: #f4a81d;
            background: rgba(255,255,255,0.05);
        }

        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
            .main-nav {
                display: none !important;
            }
            .header-right .search-box {
                display: none !important;
            }
            .header-container {
                padding: 0 15px !important;
            }
        }