* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333333;
            background-color: #ffffff;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 8px;
        }
        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e9ecef;
            background-color: #ffffff;
            color: #666666;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .pagination-btn:hover {
            border-color: #007bff;
            color: #007bff;
        }
        .pagination-btn.active {
            background-color: #007bff;
            border-color: #007bff;
            color: #ffffff;
        }
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .pagination-dots {
            padding: 0 10px;
            color: #999999;
            font-size: 14px;
        }
        @media screen and (max-width: 768px) {
            .about-hero-area {
                height: 300px;
                background-image: url(img/news_mobile.jpg);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: cover;
            }
            .about-hero-content h1 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            .about-hero-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
            .news-area {
                padding: 40px 15px;
            }
            .news-item {
                flex-direction: column;
                padding: 20px 0;
            }
            .news-date {
                width: auto;
                text-align: left;
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid #eeeeee;
                padding-bottom: 15px;
                margin-bottom: 15px;
                display: flex;
                align-items: baseline;
                gap: 6px;
            }
            .news-date .day {
                font-size: 18px;
                font-weight: 600;
            }
            .news-date .month {
                font-size: 14px;
                margin-top: 0;
            }
            .news-date .year {
                font-size: 14px;
            }
            .news-date .date-separator {
                display: inline;
                color: #999999;
            }
            .news-content {
                padding-left: 0;
            }
            .news-content h3 {
                font-size: 16px;
            }
            .news-content p {
                font-size: 13px;
            }
            .pagination-btn {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }
        @media screen and (max-width: 480px) {
            .about-hero-content h1 {
                font-size: 22px;
            }
            .news-date .day {
                font-size: 32px;
            }
        }
    .fontcolor {
	color: #929292;
}

/* 搜索结果页独立样式 - sp- 前缀 */
.sp-page-area {
    width: 100%;
    padding: 60px 20px;
    background-color: #f8f9fa;
    min-height: 600px;
    box-sizing: border-box;
}

.sp-container {
    max-width: 1520px;
    margin: 0 auto;
    width: 100%;
}

.sp-box-wrapper {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sp-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.sp-input {
    flex: 1;
    padding: 12px 20px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sp-input:focus {
    border-color: #007bff;
}

.sp-btn {
    padding: 12px 30px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sp-btn:hover {
    background-color: #0056b3;
}

.sp-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666666;
}

.sp-keyword .sp-keyword-text {
    color: #007bff;
    font-weight: 600;
}

.sp-results {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sp-result-item {
    padding: 5px 20px;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.3s ease;
}

.sp-result-item:last-child {
    border-bottom: none;
}

.sp-result-item:hover {
    background-color: #f8f9fa;
}

.sp-result-title {
    margin:10px 0;
}

.sp-result-title a {
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sp-result-title a:hover {
    color: #007bff;
}

.sp-result-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.sp-result-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e7f3ff;
    color: #007bff;
    font-size: 12px;
    border-radius: 3px;
    max-width:72px;
}

.sp-result-date {
    font-size: 14px;
    color: #999999;
    line-height: 24px;
}

.sp-result-summary {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

.sp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 8px;
}

.sp-pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    color: #666666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.sp-pagination-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.sp-pagination-btn.sp-active {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .sp-page-area {
        padding: 40px 15px;
    }
    
    .sp-box-wrapper {
        padding: 20px 25px;
    }
    
    .sp-form {
        flex-direction: column;
    }
    
    .sp-btn {
        width: 100%;
    }
    
    .sp-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .sp-result-item {
        padding: 20px 25px;
    }
    
    .sp-result-title a {
        font-size: 16px;
    }
    
    .sp-result-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .sp-result-summary {
        font-size: 13px;
    }
}
.ph-search-area {
    background-position: center bottom;
    padding: 50px 20px 20px 20px;
    display: flex;
    justify-content: center;
    background-image: url('/plugins/img/products.jpg');
    background-size: cover;
    background-repeat: repeat;
    height: 320px;
}
.ph-search-container {
    max-width: 1500px;
    width: 100%;
    text-align: center;
}
.ph-search-title {
    font-size: 2em;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 600;
}
.ph-search-desc {
    font-size: 1em;
    color: #999999;
    margin-bottom: 35px;
    line-height: 1.6;
}
.ph-search-box-wrapper {
    display: flex;
    justify-content: center;
}
.ph-search-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
}
.ph-search-input {
    flex: 1;
    height: 52px;
    padding: 0 20px 0 50px;
    border: 1px solid #e8e8e8;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    outline: none;
    background-color: #ffffff;
    border-right: none;
}
.ph-search-btn {
    height: 52px;
    padding: 0 30px;
    border: 1px solid #007bff;
    border-radius: 0 8px 8px 0;
    background-color: #007bff;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}
.ph-search-btn:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}
.ph-search-input:focus {
    border-color: #007bff;
}
.ph-search-input::placeholder {
    color: #cccccc;
}
.ph-search-icon {
    position: absolute;
    left: 18px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 1.125em;
    color: #999999;
}

.ph-hot-search {
    margin-top: 18px;
}
.ph-hot-search-label {
    font-size: 1em;
    color: #999999;
    margin-right: 12px;
}
.ph-hot-search a {
    font-size: 1em;
    color: #666666;
    text-decoration: none;
    margin-right: 18px;
}
.ph-hot-search a:hover {
    color: #007bff;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .ph-search-area {
        max-height:300px;
        padding: 50px 15px;
    }
    .ph-search-title {
        font-size: 1.8em;
    }
}

/* 产品列表样式 - 一行三个 */
.sp-product-results {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.sp-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.sp-product-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-product-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.sp-product-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.sp-product-card-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.sp-product-card-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e7f3ff;
    color: #007bff;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .sp-product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 480px) {
    .sp-product-card {
        flex: 0 0 100%;
    }
}