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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
        sans-serif;
}

/* 去除ul, li默认属性 */
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    padding: 15px 0;
    margin-right: 50px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

nav {
    flex: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-item.has-dropdown > .nav-link::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s;
}

.nav-item.has-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

/* 一级下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.dropdown-link:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.dropdown-item.has-submenu > .dropdown-link::after {
    content: "›";
    font-size: 18px;
    font-weight: bold;
}

/* 二级下拉菜单 */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-left: 5px;
}

.dropdown-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.submenu-link:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
        sans-serif;
}

/* 去除ul, li默认属性 */
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer {
    background-color: #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    padding: 40px 0 20px;
}

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

/* 分类导航区域 */
.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: #0066cc;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link,
.filing-info span a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    transition:
        color 0.3s,
        transform 0.2s;
    position: relative;
}

.footer-link:hover,
.filing-info span a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.footer-link::before,
.filing-info span a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s;
}

.footer-link:hover::before,
.filing-info span a:hover::before {
    width: 10px;
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 30px 0;
}

/* 底部信息区域 */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.company-info {
    color: #666;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.filing-info {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
}

.filing-info span {
    display: inline-block;
    margin: 0 8px;
}

.filing-info span a {
    margin-left: 10px;
}
.separator {
    color: #ccc;
    margin: 0 5px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .footer-column {
        min-width: auto;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-link {
        font-size: 13px;
    }

    .company-name {
        font-size: 14px;
    }

    .filing-info {
        font-size: 12px;
    }

    .filing-info span {
        display: block;
        margin: 5px 0;
    }

    .separator {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-nav {
        gap: 25px;
    }

    .company-name {
        font-size: 13px;
    }

    .filing-info {
        font-size: 11px;
    }
}

/* ========== Hero Slider Styles ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    background-color: #ffffff;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.slide-content {
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

.slide h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #0066cc;
    font-weight: 700;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
    background-color: #0052a3;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: #0066cc;
    transform: scale(1.2);
    border-color: #0066cc;
}

/* ========== Section Title Styles ========== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========== Products Grid Styles ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.product-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: #e6f2ff;
    color: #0066cc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

.product-btn {
    background-color: #f0f7ff;
    color: #0066cc;
    border: 1px solid #0066cc;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-btn:hover {
    background-color: #0066cc;
    color: white;
}

/* ========== Solutions Grid Styles ========== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.solution-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

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

.solution-features {
    list-style: none;
}

.solution-features li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.solution-features li i {
    color: #0066cc;
    margin-right: 10px;
    margin-top: 5px;
}

.my-fa-check::after {
    content: "✓";
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 992px) {
    .slide {
        padding: 0 40px;
    }

    .slide h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide {
        padding: 0 30px;
    }

    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .products-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 450px;
    }

    .slide {
        padding: 0 20px;
    }

    .slide h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* 主容器 */
.support-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 标题 */
.support-box > div:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* 表单容器 */
.support-form {
    width: 100%;
}

.support-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 标签容器 */
.support-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 标签文字 */
.support-form label span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* 输入框 */
.support-form input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.support-form input:focus {
    background-color: #fff;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.support-form input:hover {
    border-color: #1890ff;
}

/* 提交按钮 */
.support-form button {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #1890ff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.support-form button:hover {
    background-color: #096dd9;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
    transform: translateY(-1px);
}

.support-form button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(24, 144, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .support-box {
        margin: 20px;
        padding: 30px 20px;
    }

    .support-box > div:first-child {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .support-form input {
        padding: 10px 14px;
    }

    .support-form button {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .support-box {
        margin: 15px;
        padding: 25px 15px;
    }

    .support-box > div:first-child {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .support-form form {
        gap: 15px;
    }

    .support-form label span {
        font-size: 13px;
    }

    .support-form input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .support-form button {
        padding: 10px 18px;
        font-size: 14px;
    }
}
/* 商品详情主容器 */
.goods-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 150px;
    background-color: #f5f5f5;
}

.goods-detail-container {
    background-color: #fff;
}

/* 商品标题 */
.goods-detail h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    background-color: #fff;
    padding: 20px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
}

/* 商品简介 */
.product-summary {
    background-color: #fff;
    padding: 20px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
}

.product-summary p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 商品图片 */
.product-image {
    background-color: #fff;
    padding: 20px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 商品详情区域 */
.product-details {
    background-color: #fff;
    padding: 25px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
}

.product-details > h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-bottom: 15px;
}

/* 标签切换按钮 */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
}

.tab-button {
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px 4px 0 0;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -1px;
}

.tab-button:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}

.tab-button.active {
    background-color: #fff;
    color: #1890ff;
    font-weight: 600;
    border-bottom: 2px solid #1890ff;
}

/* 标签内容 */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 产品特点内容 */
.tab-content article h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid #1890ff;
}

.tab-content article h3:first-child {
    margin-top: 0;
}

.tab-content article p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    padding-left: 16px;
}

/* 产品参数表格 */
.tab-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tab-content table thead {
    background-color: #1890ff;
}

.tab-content table thead th {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.tab-content table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.3s ease;
}

.tab-content table tbody tr:hover {
    background-color: #f5f5f5;
}

.tab-content table tbody tr:last-child {
    border-bottom: none;
}

.tab-content table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tab-content table tbody td:first-child {
    font-weight: 600;
    color: #333;
    width: 180px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .goods-detail {
        padding: 25px 100px;
    }
}

@media (max-width: 768px) {
    .goods-detail {
        padding: 20px;
    }

    .goods-detail h1 {
        font-size: 24px;
        padding: 15px;
    }

    .product-summary {
        padding: 15px;
    }

    .product-summary p {
        font-size: 14px;
    }

    .product-image {
        padding: 15px;
    }

    .product-details {
        padding: 20px;
    }

    .product-details > h2 {
        font-size: 20px;
    }

    .tabs {
        flex-direction: column;
        gap: 5px;
        border-bottom: none;
    }

    .tab-button {
        border-radius: 4px;
        bottom: 0;
    }

    .tab-button.active {
        border-bottom: none;
        border-left: 4px solid #1890ff;
    }

    .tab-content article h3 {
        font-size: 16px;
    }

    .tab-content article p {
        font-size: 13px;
    }

    .tab-content table {
        font-size: 13px;
    }

    .tab-content table thead th {
        padding: 12px;
        font-size: 14px;
    }

    .tab-content table tbody td {
        padding: 12px;
        font-size: 13px;
    }

    .tab-content table tbody td:first-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .goods-detail {
        padding: 15px;
    }

    .goods-detail h1 {
        font-size: 20px;
        padding: 12px;
    }

    .product-summary {
        padding: 12px;
    }

    .product-summary p {
        font-size: 13px;
    }

    .product-image {
        padding: 12px;
    }

    .product-details {
        padding: 15px;
    }

    .product-details > h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tab-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab-content article h3 {
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .tab-content article p {
        font-size: 12px;
        padding-left: 12px;
    }

    .tab-content table {
        display: block;
        overflow-x: auto;
    }

    .tab-content table thead th {
        padding: 10px;
        font-size: 13px;
    }

    .tab-content table tbody td {
        padding: 10px;
        font-size: 12px;
    }

    .tab-content table tbody td:first-child {
        width: 100px;
    }
}

/* Container for the about content */
.about {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Space between sections */
.about > section {
    margin-bottom: 40px;
}

/* Headings */
.about h1 {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 20px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 8px;
}

.about h2 {
    font-size: 26px;
    color: #004c99;
    margin-top: 30px;
    margin-bottom: 16px;
}

.about h3 {
    font-size: 22px;
    color: #003366;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* Paragraphs */
.about p {
    margin: 12px 0;
    text-align: justify;
}

/* Lists */
.about ul {
    margin-left: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.about li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.about li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
}

/* Strong text */
.about strong {
    color: #004c99;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .about {
        padding: 0 15px;
    }

    .about h1 {
        font-size: 28px;
    }

    .about h2 {
        font-size: 22px;
    }

    .about h3 {
        font-size: 20px;
    }
}
/* 商品列表主题样式 - Theme 1 */

/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 商品筛选区域 */
.goods-list-filter {
    background-color: #fff;
    padding: 20px 150px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.goods-list-filter-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    list-style: none;
}

.goods-list-filter-item:last-of-type {
    margin-bottom: 0;
}

.goods-list-filter-item-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    min-width: 120px;
    padding-top: 8px;
    flex-shrink: 0;
}

.goods-list-filter-item-content {
    flex: 1;
    list-style: none;
}

.goods-list-filter-item-content-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.goods-list-filter-item-content-item-name {
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}
.goods-list-filter-item-content-item-name a {
    color: #666;
    text-decoration: none;
    padding: 6px 16px;
    display: block;
}

.goods-list-filter-item-content-item-name:hover {
    background-color: #1890ff;
    color: #fff;
}

.goods-list-filter-item-content-item-name.active {
    background-color: #1890ff;
    color: #fff;
}

.goods-list-filter-item-content-item-name.active a,
.goods-list-filter-item-content-item-name:hover a {
    color: #fff;
}

/* 分隔线 */
.goods-list-filter-line {
    display: block;
    height: 1px;
    background-color: #e8e8e8;
    margin: 15px 0;
}

/* "全部"链接样式 */
a.goods-list-filter-item {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

a.goods-list-filter-item:hover {
    background-color: #1890ff;
    color: #fff;
}

/* 商品列表区域 */
.goods-list {
    padding: 0 150px;
}

.goods-list > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    list-style: none;
}

.goods-list > ul > li {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.goods-list > ul > li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 商品封面图 */
.goods-cover {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

/* 商品信息区域 */
.goods-name {
    padding: 15px 15px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goods-sub-name {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 查看详情链接 */
.goods-list > ul > li > a {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #1890ff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.goods-list > ul > li > a:hover {
    background-color: #096dd9;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .goods-list > ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .goods-list-filter {
        padding: 15px 20px;
    }

    .goods-list-filter-item {
        flex-direction: column;
    }

    .goods-list-filter-item-title {
        margin-bottom: 10px;
        padding-top: 0;
    }

    .goods-list > ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .goods-cover {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .goods-list > ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .goods-cover {
        height: 150px;
    }

    .goods-name {
        font-size: 14px;
        padding: 10px 10px 6px;
    }

    .goods-sub-name {
        font-size: 12px;
        padding: 0 10px 10px;
    }
}
/* purchase.css - Styles for the purchase page */

/* Page container */
.purchase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section title */
.purchase h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Contact list styling */
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Individual contact item */
.contact-item {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    width: 400px;
}

/* Paragraphs inside a contact item */
.contact-item p {
    margin: 6px 0;
    line-height: 1.6;
    color: #555;
    font-size: 0.96rem;
}

/* Labels (strong) */
.contact-item p strong {
    display: inline-block;
    width: 90px; /* align values */
    font-weight: 600;
    color: #222;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .purchase {
        padding: 30px 15px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-item p strong {
        width: 80px;
    }
}

.contact-us {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    z-index: 1000;
}

.contact-us-btn1 {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.contact-us-btn1:hover {
    background-color: #0056b3;
}

.contact-us-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.contact-us-btn2-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us-btn2 {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #ddd;
}

.contact-us-btn2:hover {
    background-color: #e9ecef;
}

/* Contact Form Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-us-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-us-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.contact-us-form-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

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

.form-group button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #3b82f6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-group button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-group button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-form {
        margin: 20px;
        padding: 24px;
    }

    .contact-us-form-title {
        font-size: 28px;
    }

    .contact-us-form-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-us-form {
        margin: 10px;
        padding: 20px;
    }

    .contact-us-form-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .form-group button {
        padding: 12px 20px;
    }
}
/* 商品轮播图容器 */
.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 8px;
}

/* 左右切换按钮 */
.product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.product-slider:hover .product-slider-btn {
    opacity: 1;
    visibility: visible;
}

.product-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.product-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.product-slider-prev {
    left: 20px;
}

.product-slider-next {
    right: 20px;
}

/* 商品图片卡片 */
.product-image-card {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.product-image-card.active {
    display: block;
}

/* 淡入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-image-card img {
    width: auto;
    height: 450px;
    display: block;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.product-image-card img:hover {
    transform: scale(1.02);
}

/* 轮播图控制器 */
.product-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 0;
}

/* 轮播图圆点 */
.product-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-slider-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.product-slider-dot.active {
    background: #2563eb;
    width: 32px;
    border-radius: 6px;
    border-color: #2563eb;
}

/*页面提交提示*/

.commit-message-container {
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

/* 标题样式 */
.commit-message-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commit-message-container p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* 图标基础样式 */
.success-icon,
.error-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
}

/* 成功图标 */
.success-icon {
    background: #48bb78;
}

.success-icon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 22px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* 失败图标 */
.error-icon {
    background: #f56565;
}

.error-icon::before,
.error-icon::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 18px;
    width: 4px;
    height: 28px;
    background: #ffffff;
    border-radius: 2px;
}

.error-icon::before {
    transform: rotate(45deg);
}

.error-icon::after {
    transform: rotate(-45deg);
}

/* 返回首页链接 */
.commit-message-container a {
    display: inline-block;
    padding: 12px 32px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.commit-message-container a:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 响应式设计 */
@media (max-width: 600px) {
    .commit-message-container {
        padding: 36px 24px;
    }

    .commit-message-title {
        font-size: 24px;
    }

    .commit-message-container p {
        font-size: 14px;
    }
}

/*页面提交提示*/

.commit-message-container {
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

/* 标题样式 */
.commit-message-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commit-message-container p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* 图标基础样式 */
.success-icon,
.error-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
}

/* 成功图标 */
.success-icon {
    background: #48bb78;
}

.success-icon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 22px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* 失败图标 */
.error-icon {
    background: #f56565;
}

.error-icon::before,
.error-icon::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 18px;
    width: 4px;
    height: 28px;
    background: #ffffff;
    border-radius: 2px;
}

.error-icon::before {
    transform: rotate(45deg);
}

.error-icon::after {
    transform: rotate(-45deg);
}

/* 返回首页链接 */
.commit-message-container a {
    display: inline-block;
    padding: 12px 32px;
    background-color: rgb(24, 144, 255);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.commit-message-container a:hover {
    background-color: rgb(9, 109, 217);
    box-shadow: rgba(24, 144, 255, 0.3) 0px 4px 12px;
    transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 600px) {
    .commit-message-container {
        padding: 36px 24px;
    }

    .commit-message-title {
        font-size: 24px;
    }

    .commit-message-container p {
        font-size: 14px;
    }
}

/*保修查询*/
.support-detail-content {
    margin: 0 200px;
}
@media (max-width: 600px) {
    .support-detail-content {
        margin: 0;
    }
}
.support-detail-baseinfo {
    padding: 30px 20px;
}
.support-detail-model-name {
    color: #2c3e50;
    font-weight: 600;
}

.support-detail-model-warrantyperiod {
    color: #7f8c8d;
    font-size: 0.9em;
}
