.page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 74px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    overflow: hidden;
}

.page-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.mixkit.co/videos/preview/mixkit-abstract-digital-grid-over-blue-background-4311-large.mp4') center center / cover no-repeat;
    opacity: 0.15;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-banner-content p {
    font-size: 18px;
    opacity: 0.95;
}

.page-content {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #066b77;
    margin: 15px auto 0;
}

.page-content > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(6, 107, 119, 0.15);
}

.core-values {
    background: #f8fafb;
    padding: 80px 0;
    margin: 0 -50px 80px;
    padding-left: 50px;
    padding-right: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 107, 119, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(6, 107, 119, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
    border-radius: 16px;
    color: #066b77;
}

.value-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.company-stats {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.08) 0%, rgba(6, 107, 119, 0.02) 100%);
    border-radius: 16px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #066b77;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 24px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.company-timeline {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #066b77, rgba(6, 107, 119, 0.2));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.timeline-year {
    width: 80px;
    font-size: 24px;
    font-weight: 700;
    color: #066b77;
    text-align: right;
    flex-shrink: 0;
}

.timeline-content {
    padding-left: 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #066b77;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #066b77;
}

.timeline-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.company-culture {
    margin-bottom: 80px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.culture-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.culture-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

.service-detail {
    margin-top: 60px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid rgba(6, 107, 119, 0.1);
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
    border-radius: 24px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-list-item {
    background: #f8fafb;
    padding: 20px;
    border-radius: 12px;
}

.detail-list-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-list-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.service-process {
    margin-top: 80px;
    background: #f8fafb;
    padding: 80px 0;
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.process-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.cases-intro {
    margin-bottom: 50px;
}

.cases-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: #f5f5f5;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #066b77;
    color: #fff;
}

.cases-list {
    margin-bottom: 80px;
}

.case-list-item {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 107, 119, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.case-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(6, 107, 119, 0.12);
}

.case-list-image {
    width: 400px;
    height: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.case-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-list-item:hover .case-list-image img {
    transform: scale(1.1);
}

.case-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: rgba(6, 107, 119, 0.9);
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
}

.case-list-content {
    padding: 30px 30px 30px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-list-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-list-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-list-results {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: #066b77;
}

.case-list-tags {
    display: flex;
    gap: 10px;
}

.case-list-tags span {
    padding: 5px 14px;
    background: rgba(6, 107, 119, 0.08);
    color: #066b77;
    font-size: 13px;
    border-radius: 15px;
}

.cases-summary {
    margin-top: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: #f8fafb;
    padding: 30px;
    border-radius: 16px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.author-company {
    font-size: 13px;
    color: #999;
}

.news-intro {
    margin-bottom: 50px;
}

.news-list-container {
    min-height: 400px;
}

.news-featured {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.03) 0%, rgba(6, 107, 119, 0.08) 100%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(6, 107, 119, 0.08);
    transition: all 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 107, 119, 0.12);
}

.news-featured-image {
    width: 500px;
    height: 320px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 500;
}

.news-featured-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-featured-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.news-read-more {
    color: #066b77;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.news-article-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(6, 107, 119, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 107, 119, 0.08);
}

.news-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 107, 119, 0.12);
    border-color: rgba(6, 107, 119, 0.15);
}

.news-article-date {
    width: 90px;
    flex-shrink: 0;
    font-size: 13px;
    color: #999;
    padding-top: 3px;
    font-weight: 500;
}

.news-article-content h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.news-article-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-article-content a {
    font-size: 14px;
    color: #066b77;
    text-decoration: none;
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 107, 119, 0.2);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 107, 119, 0.3);
}

.load-more-btn:active {
    transform: translateY(0);
}

.no-more-news {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 10px;
    margin: 0;
}

/* 新闻列表页面样式 */
.news-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(6, 107, 119, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 107, 119, 0.08);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 107, 119, 0.15);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 500;
}

.news-card-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 42px;
}

.news-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 48px;
}

.news-card-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 107, 119, 0.3);
}

/* 分页样式 */
.pagination-container {
    text-align: center;
    margin-top: 30px;
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(6, 107, 119, 0.08);
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #666;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(6, 107, 119, 0.1);
    color: #066b77;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-grid-section {
    margin-top: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.news-grid-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(6, 107, 119, 0.06);
    transition: all 0.3s ease;
}

.news-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 107, 119, 0.1);
}

.news-grid-image {
    height: 160px;
    overflow: hidden;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-grid-item:hover .news-grid-image img {
    transform: scale(1.1);
}

.news-grid-content {
    padding: 20px;
}

.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 107, 119, 0.08);
    color: #066b77;
    font-size: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.news-grid-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.news-grid-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsletter-section {
    margin-top: 80px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    border-radius: 20px;
    padding: 50px;
}

.newsletter-content {
    text-align: center;
    color: #fff;
}

.newsletter-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
}

.newsletter-form button {
    padding: 14px 30px;
    background: #fff;
    color: #066b77;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-intro {
    margin-bottom: 60px;
}

.contact-main {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #f8fafb;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
    border-radius: 12px;
}

.contact-info-card h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-value {
    font-size: 18px;
    color: #066b77;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-desc {
    font-size: 13px;
    color: #999;
}

.contact-map {
    height: 250px;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

.map-placeholder span {
    font-size: 13px;
    margin-top: 5px;
}

.contact-form-section {
    flex: 1.2;
}

.contact-form-box {
    background: #f8fafb;
    padding: 40px;
    border-radius: 20px;
}

.contact-form-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form-box > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(6, 107, 119, 0.15);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #066b77;
    box-shadow: 0 0 0 3px rgba(6, 107, 119, 0.1);
}

.contact-features {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #f8fafb;
    border-radius: 16px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #066b77;
}

.feature-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-qa {
    margin-bottom: 80px;
}

.qa-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qa-item {
    background: #f8fafb;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.qa-item h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.qa-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #066b77;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-detail-item {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
    
    .case-list-item {
        flex-direction: column;
    }
    
    .case-list-image {
        width: 100%;
        height: 220px;
    }
    
    .case-list-content {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-list {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .news-featured {
        flex-direction: column;
    }
    
    .news-featured-image {
        width: 100%;
        height: 250px;
    }
    
    .news-featured-content {
        padding: 25px;
    }
    
    .news-article-list {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 280px;
    }
    
    .page-banner-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-article-list {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
}

/* GEO Page Styles */
.geo-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(6, 107, 119, 0.08);
}

.geo-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
    color: #066b77;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.geo-text .highlight {
    color: #066b77;
    font-weight: 600;
}

.geo-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.geo-highlight-box {
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    padding: 25px 30px;
    border-radius: 16px;
    margin-top: 30px;
}

.geo-highlight-box p {
    color: #fff !important;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

.geo-image {
    position: relative;
}

.geo-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 107, 119, 0.15);
}

.geo-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.geo-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.image-overlay p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-desc {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

.geo-benefits {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 107, 119, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.benefit-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-arrow {
    opacity: 0.6;
    transform: translateX(5px);
}

.geo-working {
    margin-bottom: 80px;
    padding: 60px;
    background: #f8fafb;
    border-radius: 24px;
}

.working-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.working-step {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(6, 107, 119, 0.08);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
    border-radius: 16px;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(6, 107, 119, 0.3);
}

.working-step h3 {
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.working-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.working-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.geo-compare {
    margin-bottom: 80px;
}

.compare-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.compare-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(6, 107, 119, 0.1);
    transition: all 0.3s ease;
}

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

.compare-card-header {
    padding: 35px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.traditional-card .compare-card-header {
    background: #f8fafb;
}

.geo-card .compare-card-header {
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.08) 0%, rgba(6, 107, 119, 0.03) 100%);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.traditional-icon {
    background: #f0f0f0;
}

.geo-icon {
    background: linear-gradient(135deg, rgba(6, 107, 119, 0.1) 0%, rgba(6, 107, 119, 0.05) 100%);
}

.compare-card-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-label {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

.traditional-card .card-label {
    background: #eee;
    color: #666;
}

.geo-card .card-label {
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
}

.compare-card-body {
    padding: 25px 35px;
}

.compare-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.compare-feature:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.feature-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.feature-value.highlight {
    color: #066b77;
    font-weight: 600;
}

.compare-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
}

.compare-arrow span {
    font-size: 14px;
    color: #066b77;
    font-weight: 600;
}

.geo-scenarios {
    margin-bottom: 80px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.scenario-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(6, 107, 119, 0.08);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 107, 119, 0.12);
}

.scenario-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.scenario-content h3 {
    font-size: 17px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.scenario-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

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

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
    .geo-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .working-steps {
        flex-direction: column;
        gap: 40px;
    }

    .working-step {
        max-width: 100%;
    }

    .compare-container {
        flex-direction: column;
    }

    .compare-card {
        max-width: 100%;
    }

    .geo-working {
        padding: 40px 20px;
    }

    .overlay-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 新闻详情页面样式 */
.news-detail-page {
    padding: 60px 0;
    min-height: 60vh;
}

.news-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-detail-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.news-detail-header .news-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-detail-header h1 {
    font-size: 28px;
    color: #0B1C34;
    margin: 15px 0;
    line-height: 1.4;
}

.news-detail-header .news-date {
    color: #888;
    font-size: 14px;
}

.news-detail-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #066b77;
}

.news-detail-summary strong {
    color: #066b77;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.news-detail-content p {
    margin-bottom: 16px;
}

/* 富文本内容样式支持 */
.news-detail-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #066b77;
}

.news-detail-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin: 20px 0 10px;
}

.news-detail-content strong {
    font-weight: 600;
    color: #333;
}

.news-detail-content em,
.news-detail-content i {
    font-style: italic;
}

.news-detail-content u {
    text-decoration: underline;
}

.news-detail-content strike,
.news-detail-content s {
    text-decoration: line-through;
    color: #999;
}

.news-detail-content ul {
    list-style-type: disc;
    padding-left: 24px;
    margin: 12px 0;
}

.news-detail-content ol {
    list-style-type: decimal;
    padding-left: 24px;
    margin: 12px 0;
}

.news-detail-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.news-detail-content a {
    color: #066b77;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.news-detail-content a:hover {
    color: #0894a5;
    border-bottom-color: #0894a5;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.news-detail-content blockquote {
    border-left: 4px solid #066b77;
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(6, 107, 119, 0.05);
    font-style: italic;
    color: #666;
}

.news-detail-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 24px 0;
}

.news-detail-actions {
    max-width: 900px;
    margin: 30px auto 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f0f0f0;
    color: #666;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #e0e0e0;
    color: #333;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .news-detail {
        padding: 25px 20px;
    }
    
    .news-detail-header h1 {
        font-size: 22px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
}

/* 新闻阅读按钮样式 */
.news-read-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #066b77 0%, #0894a5 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
}

.news-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 107, 119, 0.3);
}

.news-read-more-btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.news-read-more-btn-small:hover {
    background: #e0e0e0;
    color: #333;
}