@charset "utf-8";
/* CSS Document */
:root {
    --main-color: #0056b3;
    --main-color-hover: #004494;
    --sub-color: #f8f9fa;
    --font-color: #333;
    --border-color: #e9ecef;
    --sub-bg-color: #f8f9fa;
}

/* ==========================================================================
   Global Styles (New Additions)
   ========================================================================== */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--font-color);
    line-height: 1.7;
}
/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 86, 179, 0.7), rgba(0, 86, 179, 0.7)), url('/template/en/images/5539.jpg') ;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-banner h1 {
    font-weight: 700;
    margin-bottom: 1rem;
        font-size: 30px;
    line-height: 1.6;
}

/* General h2 and p styling */
h2 {
    font-size: 32px; /* Changed from 2rem */
    line-height: 1.6;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px; /* Changed from 1.5rem */
}

p {
    margin-bottom: 16px; /* Changed from 1rem */
    font-size: 16px;
    line-height: 30px;
}

/* ==========================================================================
   Product Page Specific Styles (New Additions)
   ========================================================================== */

/* Content Wrapper for main sections */
.content-wrapper {
    padding: 60px 0;
}

.content-wrapper.bg-light {
    background-color: var(--sub-bg-color);
}

/* --- FAQ Section Styles (Adapted for your HTML) --- */
.product-faq .gs-ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Question <li> */
.product-faq .gs-ul li:first-child {
    background-color: var(--sub-bg-color);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-faq .gs-ul li:first-child:hover {
    background-color: #e2e6ea;
}

/* Add dropdown arrow using pseudo-element */
.product-faq .gs-ul li:first-child::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

/* Rotate arrow when answer is visible */
.product-faq .gs-ul.show-answer li:first-child::after {
    transform: rotate(180deg);
}

/* Answer <li> - Hidden by default */
.product-faq .gs-ul li:nth-child(2) {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    border-top: 1px solid var(--border-color);
}

/* Show answer when parent <ul> has .show-answer class */
.product-faq .gs-ul.show-answer li:nth-child(2) {
    padding: 20px;
    max-height: 500px; /* A sufficiently large value */
    opacity: 1;
}

/* --- CTA Section Styles (Enhanced Specificity) --- */
.cta-section {
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

/* High-specificity selector to override Bootstrap */
.cta-section .btn.btn-light {
    background-color: #ffffff;
    color: var(--main-color);
    font-size: 18px; /* Changed from 1.125rem */
    padding: 12px 30px;
    margin-top: 20px;
    border-color: #ffffff;
    transition: all 0.3s ease;
}

.cta-section .btn.btn-light:hover {
    background-color: var(--sub-bg-color);
    color: var(--main-color);
    border-color: var(--sub-bg-color);
}


/* ==========================================================================
   Existing Styles from main-info.css (Kept for compatibility)
   ========================================================================== */

/*--common--*/
.index-common-title {
    padding: 60px 0 30px;
    text-align: center;
}

.index-common-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 20px;
}

.index-common-title p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.index-common-more {
    text-align: center;
    padding-bottom: 60px;
}

.index-common-more a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--main-color);
    padding: 12px 40px;
    border-radius: 5px;
    transition: all 0.3s;
}

.index-common-more a:hover {
    background: var(--main-color-hover);
}

/*--banner--*/
.index-banner {
    position: relative;   
    height: 300px;     
    overflow: hidden;
}

.index-banner img {   
    width: 100%;
    height: 100%;    
    object-fit: cover;
    display: block;
}

.index-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.index-banner-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.index-banner-text p {
    font-size: 18px;
    margin-bottom: 40px;
}

.index-banner-text a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--main-color);
    padding: 12px 40px;
    border-radius: 5px;
    transition: all 0.3s;
}

.index-banner-text a:hover {
    background: var(--main-color-hover);
}


/*--product--*/
.index-product {
    padding: 60px 0;
}

.index-product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.index-product-item {
    width: 25%;
    padding: 0 15px 30px;
}

.index-product-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.index-product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.index-product-img {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.index-product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.index-product-box:hover .index-product-img img {
    transform: scale(1.1);
}

.index-product-name {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--font-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--info--*/
.index-info {
    background: var(--sub-bg-color);
    padding: 60px 0;
}

.index-info-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.index-info-item {
    width: 25%;
    padding: 0 15px;
}

.index-info-box {
    text-align: center;
}

.index-info-icon {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.index-info-box:hover .index-info-icon {
    background: var(--main-color-hover);
}

.index-info-icon img {
    width: 40px;
    height: 40px;
}

.index-info-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 10px;
}

.index-info-text {
    font-size: 14px;
    color: #666;
}

/*--about--*/
.index-about {
    padding: 60px 0;
}

.index-about-text {
    margin-bottom: 30px;
}

.index-about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 15px;
}

.index-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.index-about-img {
    margin-bottom: 30px;
}

.index-about-img img {
    width: 100%;
    display: block;
}

/*--contact--*/
.index-contact {
    background: var(--sub-bg-color);
    padding: 60px 0;
}

.index-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.index-contact-form .form-group {
    margin-bottom: 20px;
}

.index-contact-form .form-control {
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    color: var(--font-color);
    background: #fff;
}

.index-contact-form .form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.index-contact-form textarea.form-control {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.index-contact-form .btn {
    width: 100%;
    height: 50px;
    background: var(--main-color);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}

.index-contact-form .btn:hover {
    background: var(--main-color-hover);
}

/*--footer--*/
.index-footer {
    background: #222;
    padding: 40px 0 20px;
}

.index-footer-text {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.index-footer-link {
    text-align: center;
    margin-bottom: 20px;
}

.index-footer-link a {
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin: 0 10px;
    transition: all 0.3s;
}

.index-footer-link a:hover {
    color: var(--main-color);
}

.index-footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/*--inner--*/
.inner-banner {
    position: relative;
}

.inner-banner img {
    width: 100%;
    display: block;
}

.inner-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.inner-banner-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-banner-text p {
    font-size: 16px;
}

.inner-title {
    padding: 40px 0;
    text-align: center;
}

.inner-title h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 10px;
}

.inner-title p {
    font-size: 16px;
    color: #666;
}

.inner-text {
    padding-bottom: 40px;
}

.inner-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inner-text img {
    max-width: 100%;
    display: block;
    margin: 20px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--main-color);
    margin: 10px auto 0;
}

.gs-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.gs-table th {
    background-color: var(--main-color);
    color: white;
    font-weight: 600;
}

.gs-table th, .gs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gs-table tbody tr:nth-child(even) {
    background-color: var(--sub-bg-color);
}

.gs-p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 30px;
}

.gs-ul {
    list-style: none;
    padding-left: 0;
     font-size: 16px;
    line-height: 30px;
}

.gs-ul li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.gs-ul li:last-child {
    border-bottom: none;
}

.gs-ul strong {
    color: var(--main-color);
}

/* ==========================================================================
   Mobile Responsive Styles (New Additions)
   ========================================================================== */
@media (max-width: 991px) {
    .index-product-item {
        width: 50%;
    }
    .index-info-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .index-banner {
        height: 250px;
    }
    /* General mobile adjustments */
    h2 {
        font-size: 24px; /* Changed from 1.5rem */
    }
    
    .content-wrapper {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px; /* Changed from 1.75rem */
        margin-bottom: 30px;
    }

    /* Table mobile styles */
    .gs-table th, .gs-table td {
        padding: 10px;
        font-size: 14px;
        white-space: normal;
    }

    /* FAQ mobile styles */
    .product-faq .gs-ul li:first-child {
        padding: 15px;
        font-size: 15px;
    }
    .product-faq .gs-ul li:nth-child(2) {
        font-size: 14px;
    }
    .product-faq .gs-ul.show-answer li:nth-child(2) {
        padding: 15px;
    }

    /* CTA mobile styles */
    .cta-section .btn.btn-light {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
    }
    
    /* Existing mobile styles */
    .index-banner-text h1 {
        font-size: 30px;
    }
    .index-banner-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .index-banner-text a {
        padding: 10px 30px;
    }
    .index-common-title h2 {
        font-size: 28px;
    }
    .index-common-title p {
        font-size: 16px;
    }
    .index-product-item {
        width: 100%;
    }
    .index-info-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .index-about-text {
        margin-bottom: 20px;
    }
    .index-about-text h3 {
        font-size: 20px;
    }
    .index-about-text p {
        font-size: 15px;
    }
    .index-about-img {
        margin-bottom: 20px;
    }
    .inner-banner-text h1 {
        font-size: 28px;
    }
    .inner-title h2 {
        font-size: 24px;
    }
    .inner-text p {
        font-size: 15px;
    }
}
.product-description h4{
    font-size: 20px;
    line-height: 1.8;
}
/* ==========================================================================
   Recommend Products Section Styles
   ========================================================================== */

.productList {
    margin-top: 20px; /* 在标题和产品列表之间增加一些间距 */
}

.productList ul {
    list-style: none;
    padding: 0;
    margin: 0 -10px; /* 使用负外边距为列之间创建间距 */
    display: flex;
    flex-wrap: wrap; /* 允许项目换行 */
}

.productList li.column {
    padding: 10px; /* 每个产品项的内边距 */
    width: 25%; /* 桌面端每行显示4个 */
    box-sizing: border-box; /* 确保 padding 不会影响宽度计算 */
}

/* 将每个产品项设计成卡片样式 */
.productList li.column a {
    display: block;
    text-decoration: none;
    color: var(--font-color);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    font-size: 16px;
    line-height: 30px;
}

.productList li.column:hover a {
    transform: translateY(-5px); /* 悬停时轻微上浮 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.12); /* 悬停时加深阴影 */
}

.productList li.column img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1; /* 强制图片为1:1的正方形 */
    object-fit: cover; /* 保证图片不变形且填满容器 */
}

.productList li.column h4 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    color: var(--font-color);
}

/* 分页样式 */
.m-page {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.m-page a, .m-page span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background-color: var(--sub-bg-color);
    color: var(--font-color);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.m-page a:hover, .m-page span.current {
    background-color: var(--main-color);
    color: #fff;
}

/* ==========================================================================
   Recommend Products Mobile Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .productList li.column {
        width: 50%; 
    }
    .index-banner {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .productList li.column {
        width: 100%;
    }
}

.content-wrapper .sideRight{
    width: 100%;
}

/* ==========================================================================
   Related Articles Section Styles
   ========================================================================== */

.related-articles-list {
    list-style: none;
    padding: 0;
    margin: 0 -15px; /* 使用负外边距为列之间创建间距 */
    display: flex;
    flex-wrap: wrap; /* 允许项目换行 */
}

.related-articles-list li.column {
    padding: 15px; /* 每个文章项的内边距 */
    width: 25%; /* 桌面端每行显示4个 */
    box-sizing: border-box; /* 确保 padding 不会影响宽度计算 */
}

/* 将每个文章项设计成卡片样式 */
.related-articles-list li.column {
    background: #fff;
    border-radius: 8px;
    padding: 25px; /* 卡片内部的内边距 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* 使同一行的卡片高度一致 */
}

.related-articles-list li.column:hover {
    transform: translateY(-5px); /* 悬停时轻微上浮 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.12); /* 悬停时加深阴影 */
}

/* 文章标题样式 */
.related-articles-list li.column h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
}

.related-articles-list li.column h3 a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles-list li.column h3 a:hover {
    color: var(--main-color-hover);
}

/* 文章摘要样式 */
.related-articles-list li.column p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 2;
}


/* ==========================================================================
   Related Articles Mobile Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .related-articles-list li.column {
        width: 50%; /* 平板端每行显示2个 */
    }
}

@media (max-width: 575px) {
    .related-articles-list li.column {
        width: 100%; /* 手机端每行显示1个 */
    }
}
/* ==========================================================================
   Strength in Numbers Section Styles
   ========================================================================== */

.num1 {
    text-align: center;
    padding: 40px 0;
}

.number-Plus {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
}

.number-Plus li {
    flex: 1;
    min-width: 150px; /* 防止在窄屏幕上过度压缩 */
    padding: 20px 10px;
}

.number-Plus h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 10px 0;
    line-height: 1;
}

.number-Plus h2 em {
    font-style: normal;
}

.number-Plus h2 sub {
    font-size: 20px;
    color: #666;
    bottom: 0;
}

.number-Plus p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   Strength in Numbers Mobile Responsive Styles
   ========================================================================== */
@media (max-width: 767px) {
    .number-Plus {
        justify-content: space-between; /* 在移动端更好地分布 */
    }
    .number-Plus li {
        width: 48%; /* 在移动端每行显示两个 */
        margin-bottom: 20px;
    }
    .number-Plus h2 {
        font-size: 36px;
    }
    .number-Plus h2 sub {
        font-size: 16px;
    }
    .number-Plus p {
        font-size: 14px;
    }
}
/* ==========================================================================
   Tech Highlights List with External Icons
   ========================================================================== */

.tech-highlights-list {
    text-align: center;
    padding: 60px 0;
}

.tech-highlights-list .gs-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-highlights-list .gs-ul li {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.tech-highlights-list .gs-ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 图标样式 - 使用::before伪元素 */
.tech-highlights-list .gs-ul li::before {
    content: '';
    position: absolute;
    left: 43%;
    top: 15%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.tech-highlights-list .gs-ul li:hover::before {
    transform: translateY(-50%) scale(1.1);
}

/* 为每个li分配不同的图标 */
.tech-highlights-list .gs-ul li:nth-child(1)::before {
    background-image: url('/template/en/images/responsibility26.png');
}

.tech-highlights-list .gs-ul li:nth-child(2)::before {
    background-image: url('/template/en/images/responsibility30.png');
}

.tech-highlights-list .gs-ul li:nth-child(3)::before {
    background-image: url('/template/en/images/responsibility27.png');
}

.tech-highlights-list .gs-ul li:nth-child(4)::before {
    background-image: url('/template/en/images/responsibility28.png');
}

.tech-highlights-list .gs-ul li:nth-child(5)::before {
    background-image: url('/template/en/images/responsibility31.png');
}
.tech-highlights-list .gs-ul li:nth-child(6)::before {
    background-image: url('/template/en/images/responsibility32.png');
}

/* 文本内容样式 */
.tech-highlights-list .gs-ul li strong {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    line-height: 1.8;
    padding-top: 50px;
}

.tech-highlights-list .gs-ul li {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tech-highlights-list .gs-ul {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .tech-highlights-list .gs-ul li {
        padding: 25px 25px 25px 70px;
        min-height: 100px;
    }
    
    .tech-highlights-list .gs-ul li::before {
        width: 35px;
        height: 35px;
        left: 20px;
    }
    
    .tech-highlights-list .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .tech-highlights-list .gs-ul li {
        padding: 20px 20px 20px 60px;
        min-height: 90px;
    }
    
    .tech-highlights-list .gs-ul li::before {
        width: 30px;
        height: 30px;
        left: 15px;
    }
    
    .tech-highlights-list .gs-ul li strong {
        font-size: 16px;
    }
    
    .tech-highlights-list .gs-ul li {
        font-size: 14px;
    }
    
    .tech-highlights-list .section-title {
        font-size: 24px;
    }
}

/* 入场动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-highlights-list .gs-ul li {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.tech-highlights-list .gs-ul li:nth-child(1) { animation-delay: 0.1s; }
.tech-highlights-list .gs-ul li:nth-child(2) { animation-delay: 0.2s; }
.tech-highlights-list .gs-ul li:nth-child(3) { animation-delay: 0.3s; }
.tech-highlights-list .gs-ul li:nth-child(4) { animation-delay: 0.4s; }
.tech-highlights-list .gs-ul li:nth-child(5) { animation-delay: 0.5s; }

#index-body .homepage-3.tag{
    padding: 60px 0;
}