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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #c41e3a;
}

.breadcrumb span {
    color: #999;
    font-size: 0.9em;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c41e3a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.main-content {
    min-height: calc(100vh - 400px);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary {
    background-color: #fff;
    color: #667eea;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #667eea;
}

.btn-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.featured-products,
.knowledge-preview,
.about-preview,
.cases-preview {
    padding: 60px 0;
}

.featured-products h2,
.knowledge-preview h2,
.about-preview h2,
.cases-preview h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.products-grid,
.knowledge-grid,
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card,
.knowledge-card,
.case-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover,
.knowledge-card:hover,
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img,
.knowledge-card img,
.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.product-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: block;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3,
.knowledge-card h3,
.product-category {
    padding: 8px 20px 0;
    font-size: 0.9em;
    color: #666;
}

.product-category {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.product-category a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s;
}

.product-category a:hover {
    color: #8b0000;
    text-decoration: underline;
}

.product-card h3,
.knowledge-card h3 {
    padding: 10px 20px;
    font-size: 1.3em;
    color: #333;
}

.product-card h3 a,
.knowledge-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card h3 a:hover,
.knowledge-card h3 a:hover {
    color: #c41e3a;
    text-decoration: none;
}

.product-card p,
.knowledge-card p,
.case-card p {
    padding: 0 20px 15px;
    color: #666;
    line-height: 1.6;
}

.product-card .btn-link,
.knowledge-card .btn-link,
.case-card .btn-link {
    display: block;
    padding: 0 20px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cases-more {
    text-align: center;
    margin-top: 40px;
}

.product-categories,
.knowledge-categories,
.case-categories {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #c41e3a;
    background-color: transparent;
    color: #c41e3a;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1em;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #c41e3a;
    color: #fff;
}

.products-section {
    padding: 60px 0;
}

.product-detail {
    margin-top: 60px;
    margin-bottom: 60px;
}

.product-content {
    display: block;
}

.product-main-gallery {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: 40%;
    max-width: 500px;
}

.product-main-gallery img {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-thumbnails-column {
    margin-top: 10px;
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-thumbnails img {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 64px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 5px;
}

.product-thumbnails img:hover {
    transform: scale(1.05);
}

.product-description-content {
    /* 移除 overflow: hidden 以允许文本绕图 */
}

.product-gallery img {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.product-thumbnails img {
    width: 100%;
    height: auto;
    max-width: 100px;
    max-height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-thumbnails img:hover {
    transform: scale(1.05);
}

.product-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.product-specs {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.spec-item {
    margin-bottom: 10px;
    color: #555;
}

.product-description,
.planting-guide,
.application-scenes {
    padding: 60px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.related-products {
    padding: 60px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.related-products h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.product-description h2,
.planting-guide h2,
.application-scenes h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.product-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-indent: 0;
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-indent: 0;
}

.description-content img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block;
    margin: 15px 0;
}

.planting-guide .guide-content,
.application-scenes .guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.planting-guide h3,
.application-scenes h3 {
    font-size: 1.3em;
    margin: 30px 0 15px;
    color: #333;
}

.planting-guide p,
.application-scenes p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.planting-guide ul,
.application-scenes ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.planting-guide li,
.application-scenes li {
    padding: 8px 0;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.knowledge-article {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #999;
    font-size: 0.9em;
}

.article-category {
    background-color: #c41e3a;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
}

.article-body {
    color: #555;
    line-height: 1.8;
}

.article-body img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block;
    margin: 15px 0;
}

.article-body h3 {
    font-size: 1.5em;
    margin: 30px 0 15px;
    color: #333;
}

.article-body p {
    margin-bottom: 15px;
}

.article-tags {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.company-intro,
.development-history,
.planting-base,
.core-advantages,
.team-intro,
.certificates,
.cooperation-models {
    padding: 60px 0;
}

.company-intro h2,
.development-history h2,
.planting-base h2,
.core-advantages h2,
.team-intro h2,
.certificates h2,
.cooperation-models h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.timeline-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

.base-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.base-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.base-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.base-item h3 {
    padding: 15px 20px;
    font-size: 1.2em;
    color: #333;
}

.base-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #333;
}

.team-title {
    color: #c41e3a;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9em;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certificate-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certificate-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.certificate-item h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #333;
}

.certificate-item p {
    color: #666;
    font-size: 0.9em;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.model-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.model-card p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.model-card ul {
    list-style: none;
    padding-left: 0;
}

.model-card li {
    padding: 5px 0;
    opacity: 0.9;
}

.contact-info {
    padding: 60px 0;
}

.contact-info h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.form-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-tips {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-tips h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.form-tips ul {
    list-style: none;
    padding-left: 0;
}

.form-tips li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.form-tips li:last-child {
    border-bottom: none;
}

.form-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.form-submit {
    text-align: center;
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 40px;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
}

.map-overlay h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.map-overlay p {
    color: #666;
    line-height: 1.6;
}

.transport-info {
    max-width: 900px;
    margin: 0 auto;
}

.transport-info h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #333;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.transport-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.transport-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

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

.type-card ul {
    list-style: none;
    padding-left: 0;
}

.type-card li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9em;
}

.faq-contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.case-detail {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.case-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.case-thumbnails img {
    cursor: pointer;
    transition: transform 0.3s;
}

.case-thumbnails img:hover {
    transform: scale(1.05);
}

.case-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #999;
    font-size: 0.9em;
}

.case-category {
    background-color: #c41e3a;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
}

.case-description,
.case-details,
.case-result,
.case-feedback {
    margin-bottom: 30px;
}

.case-description h3,
.case-details h3,
.case-result h3,
.case-feedback h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.case-description p,
.case-result p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.case-details ul {
    list-style: none;
    padding-left: 0;
}

.case-details li {
    padding: 8px 0;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.case-details li:last-child {
    border-bottom: none;
}

.case-feedback p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.customer-name {
    font-style: italic;
    color: #999;
}

.more-cases {
    padding: 60px 0;
}

.more-cases h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.share-case {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.share-case h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.share-content {
    max-width: 900px;
    margin: 0 auto;
}

.share-content > p {
    text-align: center;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.share-requirements,
.share-contact {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.share-requirements h3,
.share-contact h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.share-requirements ul {
    list-style: none;
    padding-left: 0;
}

.share-requirements li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.share-requirements li:last-child {
    border-bottom: none;
}

.share-contact p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.share-contact .btn {
    display: inline-block;
    margin-top: 15px;
}

/* 首页种植指南样式 */
.planting-guide-home {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.planting-guide-home h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.planting-guide-home .guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.planting-guide-home .guide-content > p {
    text-align: center;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.guide-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guide-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #c41e3a;
}

.guide-item p {
    color: #666;
    line-height: 1.6;
}

.guide-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* 客户评价样式 */
.customer-testimonials {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.customer-testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4em;
    color: #c41e3a;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 20px;
    padding-left: 10px;
    position: relative;
}

.testimonial-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: #c41e3a;
    border-radius: 2px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-author h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #999;
    font-size: 0.9em;
    margin: 0;
}

/* 分页样式 */
.pagination-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    background-color: #f0f0f0;
    border-color: #c41e3a;
    color: #c41e3a;
}

.page-link.active {
    background-color: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}

.page-link.disabled {
    background-color: #f0f0f0;
    color: #999;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.page-link.disabled:hover {
    background-color: #f0f0f0;
    color: #999;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* 相关文章样式 */
.related-articles {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.related-articles h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-item a {
    text-decoration: none;
    color: #333;
}

.related-item h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.related-item a:hover h4 {
    color: #c41e3a;
}

.related-item p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

