:root {
    --primary-color: #0a3d62;    
    --secondary-color: #3498db;     
    --tertiary-color: #1e375a;
    --accent-color: #f39c12;
    --light-bg: #f0f4f8;            
    --card-bg: white;              
    --text-color: #2c3e50;          
    --soft-border: #d6e4f0;        
    --shadow-elevation: 0 6px 18px rgba(10, 61, 98, 0.12); 
    --radius: 12px;             
    --nautical-blue: #1a5276;
    --ocean-blue: #2980b9;
    --navy-dark: #0c2461;
    --steel-gray: #7f8fa6;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--light-bg) 0%, #e3eaf3 100%);
    margin: 0;
    padding: 0;
    background-attachment: fixed;
}

.tag-page-container a {
    text-decoration: none;
    color: var(--ocean-blue);
    transition: all 0.3s ease;
    position: relative;
}
.tag-page-container a:hover {
    color: var(--nautical-blue);
    transform: translateY(-2px);
}
.tag-page-container a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.tag-page-container a:hover::after {
    width: 100%;
}

.tag-page-container {
    max-width: 1480px; 
    margin: 0 auto;
    padding: 25px 40px 70px 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%233498db" stroke-opacity="0.05" stroke-width="1"/></svg>');
    background-size: 300px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 35px;
    font-size: 0.95em;
    border-bottom: 1px solid var(--soft-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tag-hero-section {
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.tag-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--ocean-blue), var(--nautical-blue));
}

.tag-title {
    font-size: 4em; 
    font-weight: 800;
    color: var(--nautical-blue);
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}
.tag-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.tag-hero-section .hero-section-p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editor-content-1 {
    font-size: 17px;
    color: #34495e;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius);
    line-height: 1.9;
    border-left: 6px solid var(--accent-color);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--soft-border);
}

.content-matrix {
    display: grid;
    gap: 50px;
    grid-template-columns: 2fr 1fr; 
    margin: 40px 0;
}

.editor-module {
    font-size: 15px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #fafcff 100%);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 35px;
    box-shadow: var(--shadow-elevation);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--soft-border);
    position: relative;
    overflow: hidden;
}
.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--ocean-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.editor-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 61, 98, 0.18);
}
.editor-module:hover::before {
    opacity: 1;
}

.editor-module h2 {
    font-size: 2em;
    color: var(--nautical-blue);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}
.editor-module h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--ocean-blue);
}

.editor-module h3,
.editor-module h4 {
    color: var(--ocean-blue);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    position: relative;
}
.editor-module h3::after,
.editor-module h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.editor-module ul {
    list-style: none;
    padding-left: 0;
}

.editor-module li {
    padding: 8px 0;
    border-bottom: 1px solid var(--soft-border);
    position: relative;
    padding-left: 30px;
    line-height: 1.8;
    transition: background-color 0.2s ease;
}
.editor-module li:hover {
    background-color: rgba(52, 152, 219, 0.05);
    padding-left: 35px;
}
.editor-module li::before {
    content: '⚓';
    font-size: 16px;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.info-column1 table th,
.info-column1 table td {
    padding: 10px 15px;
    border: 1px solid var(--soft-border);
    width: 50%;
    text-align: left;
    transition: background-color 0.2s ease;
}
.info-column1 table th {
    background: linear-gradient(135deg, var(--nautical-blue) 0%, var(--ocean-blue) 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-column1 table tr:nth-child(even) {
    background-color: rgba(52, 152, 219, 0.03);
}
.info-column1 table tr:hover {
    background-color: rgba(52, 152, 219, 0.08);
}

.spec-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    margin-top: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.spec-table th,
.spec-table td {
    padding: 18px;
    text-align: left;
    font-size: 0.95em;
    border-bottom: 1px solid var(--soft-border);
    transition: background-color 0.2s ease;
}
.spec-table th {
    background: linear-gradient(135deg, var(--nautical-blue) 0%, var(--ocean-blue) 100%);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.spec-table tr:last-child td {
    border-bottom: none;
}
.spec-table tr:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.product-preview-section {
    padding-top: 50px;
    border-top: 2px solid var(--soft-border);
    margin-bottom: 50px;
    position: relative;
}
.product-preview-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.product-preview-section h2 {
    font-size: 2.5em;
    color: var(--nautical-blue);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.product-preview-section h2::after {
    content: '⛵';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.product-preview-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.preview-card {
    width: 320px;
    padding: 25px;
    background: linear-gradient(135deg, var(--card-bg) 0%, #f8fbff 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevation);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid var(--soft-border);
    position: relative;
    overflow: hidden;
}
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--ocean-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(10, 61, 98, 0.2);
}
.preview-card:hover::before {
    transform: scaleX(1);
}

.preview-card img {
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.preview-card:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.preview-card h3 {
    font-size: 1.3em;
    color: var(--nautical-blue);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.preview-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--nautical-blue) 100%);
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.preview-card a:hover {
    background: linear-gradient(135deg, var(--nautical-blue) 0%, var(--navy-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.3);
}

.editor-module1 h3,
.editor-module1 h4,
.editor-module-faq h4 {
    text-align: center;
    font-size: 28px;
    color: var(--nautical-blue);
    margin-bottom: 30px;
    padding-top: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.editor-module1 h3::after,
.editor-module1 h4::after,
.editor-module-faq h4::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--ocean-blue));
    margin: 12px auto 0;
    border-radius: 2px;
    position: relative;
}
.editor-module1 h3::after::before,
.editor-module1 h4::after::before,
.editor-module-faq h4::after::before {
    content: '⛵';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

.jinfeng-ul-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 35px;
}

.jinfeng-ul-1 li {
    flex: 1 1 auto; 
    min-width: min-content; 
    background: linear-gradient(135deg, var(--card-bg) 0%, #f8fbff 100%);
    border: 1px solid var(--soft-border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-elevation);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.jinfeng-ul-1 li::before {
    content: '⚓';
    font-size: 40px; 
    margin-right: 15px;
    color: var(--accent-color);
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.jinfeng-ul-1 li span {
    font-size: 19px;
    color: var(--nautical-blue);
    font-weight: 600;
    display: inline-block;
    margin-top: 35px;
    text-align: center;
}
.jinfeng-ul-1 li:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(10, 61, 98, 0.25);
    border-color: var(--ocean-blue);
}

.editor-module-service h3 {
    color: var(--nautical-blue);
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 700;
    text-align: left;
    position: relative;
}
.editor-module-service h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--ocean-blue);
}

.editor-module-faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 15px; 
    border: 1px solid var(--soft-border);
    border-radius: 10px;
    box-shadow: var(--shadow-elevation);
    max-width: 950px;
    margin: 35px auto;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    position: relative;
}
.editor-module-faq::before {
    content: '?';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--accent-color);
    opacity: 0.3;
}

.editor-module-faq h3 {
    color: var(--nautical-blue);
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
    font-weight: 700;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid var(--soft-border);
    border-radius: 8px;
    overflow: hidden; 
    background: white;
}

.editor-module-faq li {
    padding: 18px;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--soft-border);
}
.editor-module-faq li:last-child {
    border-bottom: none;
}

.editor-module-faq li:first-child {
    font-weight: 600;
    cursor: pointer; 
    background: linear-gradient(135deg, #f1f8ff 0%, #e3f2fd 100%);
    color: var(--nautical-blue);
    position: relative; 
    border-radius: 7px 7px 0 0;
}
.editor-module-faq li:first-child::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 1.4em;
    line-height: 1;
    top: 50%; 
    transform: translateY(-50%); 
    transition: transform 0.3s ease, content 0.3s ease;
    font-weight: bold;
    color: var(--accent-color);
}
.editor-module-faq li:first-child.expanded::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}
.editor-module-faq li:last-child {
    background: #fafdff;
    color: #555;
    max-height: 0; 
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
}
.editor-module-faq li:last-child.active {
    max-height: 500px; 
    padding: 18px;
    opacity: 1;
}

.more-info {
    background: linear-gradient(135deg, var(--card-bg) 0%, #f8fbff 100%);
    border-radius: 12px;  
    border: 1px solid var(--soft-border); 
    box-shadow: var(--shadow-elevation); 
    padding: 30px 35px; 
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.more-info::before {
    
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    opacity: 0.2;
}

.more-info h2 {
    color: var(--nautical-blue);
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.more-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.more-info p {
    color: var(--steel-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.more-info ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}

.more-info li {
    margin: 0;
    padding: 0;
    margin-right: 18px;
    margin-bottom: 12px;
}

.more-info a {
    display: block; 
    text-decoration: none; 
    color: var(--ocean-blue);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid var(--soft-border); 
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.more-info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.more-info a:hover::before {
    left: 100%;
}
.more-info a:hover {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--nautical-blue) 100%);
    border-color: var(--nautical-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 82, 118, 0.3);
}

@media (max-width: 1200px) {
    .tag-page-container {
        padding: 20px 25px 50px 25px;
    }
    .tag-title {
        font-size: 3.2em;
    }
}

@media (max-width: 900px) {
    .content-matrix {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .tag-title {
        font-size: 2.8em;
    }
    .editor-module {
        margin-bottom: 25px;
        padding: 20px;
    }
    .tag-page-container,
    header,
    .breadcrumb {
        padding-left: 20px;
        padding-right: 20px;
    }
    .product-preview-grid {
        gap: 25px;
    }
    .preview-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .jinfeng-ul-1 {
        flex-direction: column;
        gap: 20px;
    }
    .jinfeng-ul-1 li {
        width: 100%;
        min-width: unset;
        justify-content: center;
        padding: 25px 20px 40px 20px;
    }
    .tag-title {
        font-size: 2.4em;
    }
    .product-preview-grid {
        flex-direction: column;
        align-items: center;
    }
    .more-info ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tag-page-container {
        padding: 15px 15px 40px 15px;
    }
    .tag-title {
        font-size: 2em;
    }
    .editor-content-1 {
        padding: 20px;
        font-size: 16px;
    }
    .more-info {
        padding: 20px 20px;
    }
    .more-info a {
        margin-bottom: 8px;
        display: inline-block;
    }
}
