/* 子页面专用样式 */

/* 子页面英雄区域 */
.subpage-hero {
    height: 60vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1480&q=80') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    text-align: center;
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.subpage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subpage-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    background-color: #f5f5f5;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* 解决方案详情 */
.solution-detail {
    padding: 60px 0;
}

.solution-overview {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.overview-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.feature-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

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

.image-caption {
    padding: 10px;
    background-color: #f5f5f5;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 方案优势 */
.solution-benefits {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.solution-benefits h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* 系统架构 */
.solution-architecture {
    margin: 60px 0;
}

.solution-architecture h2 {
    text-align: center;
    margin-bottom: 40px;
}

.architecture-content {
    display: flex;
    gap: 50px;
}

.architecture-image {
    flex: 1;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}

.architecture-image img {
    max-width: 100%;
    height: auto;
}

.architecture-description {
    flex: 1;
}

.architecture-description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.architecture-description ol {
    padding-left: 20px;
}

.architecture-description li {
    margin-bottom: 20px;
}

.architecture-description strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.architecture-description p {
    color: var(--text-light);
    margin-top: 5px;
}

/* 成功案例 */
.solution-cases {
    margin: 60px 0;
}

.solution-cases h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.case-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

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

.case-info {
    padding: 20px;
    background-color: white;
}

.case-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.case-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 核心技术 */
.solution-technology {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.solution-technology h2 {
    text-align: center;
    margin-bottom: 40px;
}

.tech-highlights {
    max-width: 800px;
    margin: 0 auto;
}

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

.tech-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.tech-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* 实施流程 */
.solution-process {
    margin: 60px 0;
}

.solution-process h2 {
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::before {
    counter-increment: step-counter;
    content: counter(step-counter);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* CTA区域 */
.solution-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.containernews {
    background-color: #f5f7fa;
    max-width: 1200px;
    margin-top: 100px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding: 0 20px;
}
/* 面包屑导航 */
.breadcrumb {
    margin: 120px 0;
    padding: 15px 0;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 新闻详情主体 */
.news-detail {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    overflow: hidden;
}

.news-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.news-category {
    display: inline-block;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
}

.news-meta {
    display: flex;
    color: #666;
    font-size: 14px;
    gap: 20px;
}

.news-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.news-content {
    padding: 40px;
}

.news-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.news-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #1a73e8;
}

.news-content blockquote {
    border-left: 4px solid #1a73e8;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.news-content ul, .news-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.news-content li {
    margin-bottom: 8px;
}

.news-footer {
    padding: 20px 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-tag {
    background: #f1f3f4;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.news-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

/* 相关新闻 */
.related-news {
    margin: 50px 0;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a73e8;
    display: inline-block;
}

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

.related-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

.related-item:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 15px;
}

.related-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    color: #999;
    font-size: 12px;
}