/* main.css */

/* 在 main.css 中更新 hero-section 样式 */
.hero-section {
    background: url('../img/banner.svg') no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    border: none;
}

.btn.primary {
    background-color: dodgerblue;
    color: white;
}

.btn.primary1 {
    background-color: dodgerblue;
    color: white;
}

.btn.primary1:hover {
    background-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.btn.primary:hover {
    background-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn.tertiary {
    background-color: dodgerblue;
    color: white;
    padding: 10px 25px;
}

.btn.tertiary:hover {
    background-color: #1E90FF;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 关于我们区域 */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 服务区域 */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 50px;
}

.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 40px;
    max-height: 40px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: dodgerblue;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

/* 案例展示区域 */
.cases-section {
    padding: 80px 0;
    background-color: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
    background: white;
}

.case-info h3 {
    color: #333;
    margin-bottom: 10px;
}

.case-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-info a {
    color: dodgerblue;
    font-weight: bold;
}

.case-info a:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

/* 新闻动态区域 */
.news-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: dodgerblue;
    font-weight: bold;
    margin: 10px 0;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-content a {
    color: dodgerblue;
    font-weight: bold;
}

.news-content a:hover {
    text-decoration: underline;
}

/* 合作伙伴区域 */
.partners-section {
    padding: 80px 0;
    background-color: white;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-logos img {
    max-width: 150px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    
    .btn.secondary {
        margin-left: auto;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cases-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        flex-direction: column;
    }
}

/* about.html 页面样式 */

/* 面包屑导航 */
.breadcrumb {
    padding: 20px 0;
    background-color: #f0f0f0;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: dodgerblue;
}

.breadcrumb span {
    color: #999;
}

/* 页面标题 */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin: 40px 0;
}

/* 公司简介 */
.about-intro {
    padding: 40px 0;
}

.about-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 发展历程 */
.history-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: dodgerblue;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: dodgerblue;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    top: 0;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 企业文化 */
.culture-section {
    padding: 80px 0;
    background-color: white;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.culture-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.culture-item:hover {
    background-color: #f0f8ff;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.1);
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.culture-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

/* 团队介绍 */
.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.member-avatar {
    padding: 30px 30px 0;
}

.member-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid dodgerblue;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.member-position {
    color: dodgerblue;
    font-weight: bold;
    margin-bottom: 15px;
}

.member-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* 联系我们 */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: dodgerblue;
    margin-top: 5px;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 产业布局 */
.industry-layout {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.industry-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.industry-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.industry-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* history.html 页面样式 */

/* 发展历程时间轴 */
.history-timeline {
    padding: 80px 0;
    background-color: white;
}

.history-timeline .timeline {
    max-width: 1000px;
}

.history-timeline .timeline-item {
    margin-bottom: 60px;
}

.history-timeline .timeline-date {
    background-color: dodgerblue;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.history-timeline .timeline-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.history-timeline .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.2);
}

.history-timeline .timeline-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.history-timeline .timeline-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.milestone-tag {
    display: inline-block;
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* 重要里程碑 */
.milestones-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.milestone-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.milestone-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.milestone-card p {
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

/* 未来展望 */
.future-section {
    padding: 80px 0;
    background-color: white;
}

.future-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.future-text {
    flex: 1;
}

.future-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.future-text ul {
    list-style-type: none;
    padding-left: 0;
}

.future-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.future-text ul li:before {
    content: '✓';
    color: dodgerblue;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.future-image {
    flex: 1;
}

.future-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 管理信息 */
.executives-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.executive-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.executive-avatar {
    flex: 0 0 120px;
    padding: 20px;
}

.executive-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid dodgerblue;
}

.executive-info {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.executive-info h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.executive-position {
    color: dodgerblue;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

/* 青少年创业标识 */
.youth-entrepreneurship {
    background-color: rgba(30, 144, 255, 0.15);
    border-left: 4px solid dodgerblue;
    padding: 20px 25px;
    margin: 25px 0;
    font-weight: bold;
    color: #333;
    border-radius: 0 8px 8px 0;
    font-size: 17px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.1);
}
/* 董事会介绍 */
.board-intro {
    padding: 80px 0;
    background-color: white;
}

.board-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.board-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.board-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.board-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 管理理念 */
.management-philosophy {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.philosophy-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.philosophy-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

/* 高管团队详情描述 */
.executive-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 10px;
}

/* 图标样式优化 */
.philosophy-icon i {
    font-size: 32px;
    color: dodgerblue;
}

/* 确保图标在所有设备上正确显示 */
[class^="ri-"], [class*=" ri-"] {
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* honor.html 页面样式 */

/* 子公司营业执照 */
.licenses-section {
    padding: 80px 0;
    background-color: white;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.license-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.license-image {
    padding: 20px;
    text-align: center;
}

.license-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: white;
}

.license-info {
    padding: 20px;
    text-align: center;
}

.license-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.license-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

/* 美术作品登记证书 */
.certificates-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.certificates-content {
    display: flex;
    justify-content: center;
}

.certificate-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 800px;
    width: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.certificate-image {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
}

.certificate-image img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: white;
}

.certificate-info {
    padding: 30px;
}

.certificate-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.certificate-info p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.certificate-desc {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* 合作伙伴认证 */
.partnerships-section {
    padding: 80px 0;
    background-color: white;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partnership-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.partnership-logo {
    margin-bottom: 20px;
}

.partnership-logo img {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
}

.partnership-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.partnership-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

/* culture.html 页面样式 */

/* 企业愿景 */
.vision-section {
    padding: 80px 0;
    background-color: white;
}

.vision-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.vision-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.vision-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vision-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 核心价值观 */
.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.value-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* 企业使命 */
.mission-section {
    padding: 80px 0;
    background-color: white;
}

.mission-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.mission-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 行为准则 */
.principles-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.principles-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.principle-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.principle-number {
    font-size: 24px;
    font-weight: bold;
    color: dodgerblue;
    min-width: 50px;
}

.principle-text h3 {
    color: #333;
    margin-bottom: 10px;
}

.principle-text p {
    color: #666;
    line-height: 1.6;
}

/* 青年创业文化 */
.youth-culture-section {
    padding: 80px 0;
    background-color: white;
}

.youth-culture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.youth-culture-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.youth-culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.youth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.youth-culture-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.youth-culture-item p {
    color: #666;
    line-height: 1.6;
}

.youth-entrepreneurship-note {
    background-color: rgba(30, 144, 255, 0.15);
    border-left: 4px solid dodgerblue;
    padding: 20px 25px;
    font-weight: bold;
    color: #333;
    border-radius: 0 8px 8px 0;
    font-size: 17px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.1);
    text-align: center;
}

.youth-entrepreneurship-note p {
    margin: 0;
}

/* product.html 页面样式 */

/* 产品分类导航 */
.product-categories {
    padding: 20px 0 40px;
    background-color: white;
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-item {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #666;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-item:hover,
.category-item.active {
    background-color: dodgerblue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

/* 产品展示区域 */
.products-section {
    padding: 40px 0 80px;
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.btn.tertiary {
    display: inline-block;
    padding: 10px 25px;
    background-color: dodgerblue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.tertiary:hover {
    background-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* 产品优势 */
.product-advantages {
    padding: 80px 0;
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.advantage-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* product/01.html 页面样式 (网站建设) */

/* 产品介绍 */
.product-intro {
    padding: 80px 0;
    background-color: white;
}

.product-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.product-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.feature-item i {
    color: dodgerblue;
    font-size: 20px;
    margin-right: 10px;
}

.product-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 服务类型 */
.service-types {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.type-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.type-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
}

.type-features li:before {
    content: '✓';
    color: dodgerblue;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* 建站流程 */
.building-process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: dodgerblue;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* 技术优势 */
.tech-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* CTA区域 */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, dodgerblue, #1E90FF);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn.primary {
    background-color: dodgerblue;
    color: white;
    position: relative;
    top: 10px;
}

.btn.primary:hover {
    background-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary2 {
    background-color: white;
    color: dodgerblue;
    position: relative;
}

.btn.primary2:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary2 {
    width: 30%;
    padding: 15px;
    font-size: 16px;
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* product/02.html 页面样式 (云服务) */

/* 产品介绍 */
.cloud-intro {
    padding: 80px 0;
    background-color: white;
}

.cloud-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.cloud-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cloud-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cloud-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 服务类型 */
.cloud-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: '✓';
    color: dodgerblue;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* 技术优势 */
.cloud-advantages {
    padding: 80px 0;
    background-color: white;
}

/* 应用场景 */
.cloud-scenarios {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.scenario-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.scenario-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.scenario-item p {
    color: #666;
    line-height: 1.6;
}

/* 价格方案 */
.pricing-section {
    padding: 80px 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.pricing-card.popular {
    background-color: white;
    border: 2px solid dodgerblue;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: dodgerblue;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: dodgerblue;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    display: block;
    margin: 20px auto;
    width: 80%;
}

/* news.html 页面样式 (新闻中心) */

/* 新闻分类导航 */
.news-categories {
    padding: 20px 0 40px;
    background-color: white;
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-item {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #666;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-item:hover,
.category-item.active {
    background-color: dodgerblue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

/* 新闻列表 */
.news-list-section {
    padding: 40px 0 80px;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.news-date {
    color: dodgerblue;
    font-weight: bold;
    font-size: 0.9rem;
}

.news-category {
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.news-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn.tertiary {
    display: inline-block;
    padding: 10px 25px;
    background-color: dodgerblue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.tertiary:hover {
    background-color: #1E90FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: dodgerblue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

/* 热门新闻 */
.hot-news-section {
    padding: 80px 0;
    background-color: white;
}

.hot-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hot-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.hot-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
    background-color: white;
}

.hot-news-image {
    flex: 0 0 100px;
    border-radius: 4px;
    overflow: hidden;
}

.hot-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-news-content {
    flex: 1;
}

.hot-news-title {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.hot-news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.read-more {
    color: dodgerblue;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* 订阅资讯 */
.subscribe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, dodgerblue, #1E90FF);
    color: white;
}

.subscribe-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.subscribe-text h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.subscribe-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    flex: 0 0 400px;
}

.subscribe-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.btn.primary {
    background-color: white;
    color: dodgerblue;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.btn.primary:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 百度地图样式 */
.baidu-map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#baidu-map {
    width: 100%;
    height: 100%;
}

/* new01.html 页面样式 (新闻详情) */

/* 新闻详情 */
.news-detail-section {
    padding: 40px 0 80px;
    background-color: #f9f9f9;
}

.news-detail-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.news-header {
    margin-bottom: 30px;
    text-align: center;
}

.news-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #999;
    font-size: 0.9rem;
}

.news-meta i {
    margin-right: 5px;
}

.news-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.news-body h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.news-body h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.news-body p {
    margin-bottom: 20px;
}

.news-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-body ul li {
    margin-bottom: 10px;
}

.news-body blockquote {
    border-left: 4px solid dodgerblue;
    padding: 20px;
    background-color: #f9f9f9;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

.news-body blockquote p {
    margin: 0;
    color: #555;
}

.news-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-tags .tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.news-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.news-navigation a {
    color: dodgerblue;
    text-decoration: none;
}

.news-navigation a:hover {
    text-decoration: underline;
}

/* 侧边栏 */
.news-sidebar {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.hot-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hot-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hot-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hot-news-image {
    flex: 0 0 80px;
    border-radius: 4px;
    overflow: hidden;
}

.hot-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-news-content {
    flex: 1;
}

.hot-news-title {
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.4;
}

.hot-news-title a {
    color: #333;
    text-decoration: none;
}

.hot-news-title a:hover {
    color: dodgerblue;
}

.hot-news-date {
    color: #999;
    font-size: 0.85rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover,
.category-list a.active {
    color: dodgerblue;
}

.category-list span {
    color: #999;
}

.contact-info {
    color: #666;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 10px;
    color: dodgerblue;
}

/* 相关新闻 */
.related-news-section {
    padding: 80px 0;
    background-color: white;
}

/* new02.html 页面样式 (文化产业公司成立) */

/* 新闻详情包装器 */
.news-detail-wrapper {
    display: flex;
    gap: 30px;
}

/* 新闻详情内容 */
.news-detail-content {
    flex: 2;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.news-header {
    margin-bottom: 30px;
    text-align: center;
}

.news-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #999;
    font-size: 0.9rem;
}

.news-meta i {
    margin-right: 5px;
}

.news-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.news-body h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.news-body h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.news-body p {
    margin-bottom: 20px;
}

.news-body ul,
.news-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-body ul li,
.news-body ol li {
    margin-bottom: 10px;
}

.news-body ol li {
    list-style-type: decimal;
}

.news-body strong {
    color: #333;
    font-weight: bold;
}

.news-body blockquote {
    border-left: 4px solid dodgerblue;
    padding: 20px;
    background-color: #f9f9f9;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

.news-body blockquote p {
    margin: 0;
    color: #555;
}

.news-tags {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-tags .tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.news-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.news-navigation a {
    color: dodgerblue;
    text-decoration: none;
}

.news-navigation a:hover {
    text-decoration: underline;
}

/* 侧边栏 */
.news-sidebar {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.hot-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hot-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hot-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hot-news-image {
    flex: 0 0 80px;
    border-radius: 4px;
    overflow: hidden;
}

.hot-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-news-content {
    flex: 1;
}

.hot-news-title {
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.4;
}

.hot-news-title a {
    color: #333;
    text-decoration: none;
}

.hot-news-title a:hover {
    color: dodgerblue;
}

.hot-news-date {
    color: #999;
    font-size: 0.85rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover,
.category-list a.active {
    color: dodgerblue;
}

.category-list span {
    color: #999;
}

.contact-info {
    color: #666;
    line-height: 1.8;
}

.contact-info i {
    margin-right: 10px;
    color: dodgerblue;
}

/* 相关新闻 */
.related-news-section {
    padding: 80px 0;
    background-color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-detail-wrapper {
        flex-direction: column;
    }
    
    .news-detail-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.6rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-sidebar {
        margin-top: 40px;
        padding: 20px;
    }
    
    .hot-news-item {
        flex-direction: column;
    }
    
    .hot-news-image {
        flex: 0 0 120px;
        width: 100%;
    }
    
    .news-body h2 {
        font-size: 1.3rem;
    }
    
    .news-body h3 {
        font-size: 1.1rem;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-detail-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.6rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-sidebar {
        margin-top: 40px;
        padding: 20px;
    }
    
    .hot-news-item {
        flex-direction: column;
    }
    
    .hot-news-image {
        flex: 0 0 120px;
        width: 100%;
    }
    
    .news-body h2 {
        font-size: 1.3rem;
    }
    
    .news-body h3 {
        font-size: 1.1rem;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .baidu-map-container {
        height: 300px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-categories {
        padding: 20px 0;
    }
    
    .categories-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-item {
        width: 80%;
        text-align: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hot-news-grid {
        grid-template-columns: 1fr;
    }
    
    .hot-news-item {
        flex-direction: column;
    }
    
    .hot-news-image {
        flex: 0 0 150px;
        width: 100%;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-form {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .subscribe-input {
        padding: 12px 15px;
    }
    
    .btn.primary {
        padding: 12px 25px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cloud-intro-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .popular-tag {
        right: -25px;
        padding: 3px 25px;
        font-size: 10px;
    }
}

/* contact.html 页面样式 */

/* 联系信息 */
.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info-content {
    display: flex;
    gap: 50px;
}

.contact-details {
    flex: 1;
}

.contact-details h2,
.contact-map h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: dodgerblue;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.qrcode img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-top: 10px;
    border: 1px solid #eee;
    padding: 5px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 在线留言 */
.message-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.message-content {
    display: flex;
    gap: 50px;
}

.message-form {
    flex: 2;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group.full-width {
    flex: 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.required {
    color: #ff4d4f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: dodgerblue;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn.primary {
    width: 50%;
    padding: 15px;
    font-size: 16px;
}

.message-note {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.message-note h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.message-note p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* product/03.html 页面样式 (企业服务) */

/* 服务介绍 */
.enterprise-intro {
    padding: 80px 0;
    background-color: white;
}

.enterprise-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.enterprise-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.enterprise-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.enterprise-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 服务项目 */
.enterprise-services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: '✓';
    color: dodgerblue;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.service-features li.disabled {
    color: #ccc;
}

.service-features li.disabled:before {
    color: #ccc;
}

/* 服务流程 */
.service-process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: dodgerblue;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* 服务优势 */
.enterprise-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 套餐价格 */
.pricing-section {
    padding: 80px 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.pricing-card.popular {
    background-color: white;
    border: 2px solid dodgerblue;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: dodgerblue;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.pricing-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: dodgerblue;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li.disabled {
    color: #ccc;
}

.pricing-card .btn {
    display: block;
    margin: 20px auto;
    width: 80%;
}

/* product/04.html 页面样式 (软件产品) */

/* 产品介绍 */
.software-intro {
    padding: 80px 0;
    background-color: white;
}

.software-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.software-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.software-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.software-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 产品展示 */
.software-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.product-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 拟态导航详细介绍 */
.morphism-nav-section {
    padding: 80px 0;
    background-color: white;
}

.morphism-nav-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.morphism-nav-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.product-source {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.product-source span {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(30, 144, 255, 0.1);
    color: dodgerblue;
    border-radius: 20px;
    font-size: 0.85rem;
}

.product-source a {
    color: dodgerblue;
    text-decoration: none;
}

.product-source a:hover {
    text-decoration: underline;
}

.morphism-nav-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.morphism-nav-text h3 {
    color: #333;
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.features-list-alt {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list-alt li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.features-list-alt li i {
    color: dodgerblue;
    margin-top: 3px;
}

.application-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.scenario-item {
    text-align: center;
    padding: 20px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
    background-color: white;
}

.scenario-item i {
    font-size: 24px;
    color: dodgerblue;
    margin-bottom: 10px;
}

.scenario-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.scenario-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(30, 144, 255, 0.05));
    border-left: 4px solid dodgerblue;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.cta-box h3 {
    color: #333;
    margin-bottom: 15px;
}

.cta-box p {
    color: #666;
    margin-bottom: 20px;
}

.morphism-nav-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 技术优势 */
.software-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* 服务支持 */
.support-section {
    padding: 80px 0;
    background-color: white;
}

.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.support-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
    background-color: white;
}

.support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: dodgerblue;
}

.support-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.support-item p {
    color: #666;
    line-height: 1.6;
}

/* 语言切换器样式 */
.language-selector {
    position: relative;
}

.language-selector > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-submenu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-submenu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-submenu a:hover {
    background-color: #f0f8ff;
    color: dodgerblue;
}

/* other.html 页面样式 (产业布局) */

/* 产业布局介绍 */
.industry-intro {
    padding: 80px 0;
    background-color: white;
}

.industry-intro-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.industry-intro-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.industry-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 产业板块 */
.industry-sectors {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sector-item {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.15);
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: dodgerblue;
}

.sector-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.sector-item p {
    color: #666;
    line-height: 1.6;
}

/* 子公司展示 */
.subsidiaries-section {
    padding: 80px 0;
    background-color: white;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.subsidiary-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.subsidiary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
    background-color: white;
}

.subsidiary-header {
    padding: 30px;
    background-color: dodgerblue;
    color: white;
    text-align: center;
}

.subsidiary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.subsidiary-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.subsidiary-content {
    padding: 30px;
}

.subsidiary-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.subsidiary-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: bold;
    color: #333;
    min-width: 80px;
    font-size: 0.9rem;
}

.info-value {
    color: #666;
    font-size: 0.9rem;
}

/* 发展战略 */
.development-strategy {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.strategy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-item {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

.strategy-number {
    font-size: 24px;
    font-weight: bold;
    color: dodgerblue;
    min-width: 50px;
}

.strategy-text h3 {
    color: #333;
    margin-bottom: 10px;
}

.strategy-text p {
    color: #666;
    line-height: 1.6;
}

/* 未来展望 */
.future-outlook {
    padding: 80px 0;
    background-color: white;
}

.outlook-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.outlook-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.outsider-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.outlook-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .industry-intro-content {
        flex-direction: column;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .subsidiaries-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
    }
    
    .strategy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .outlook-content {
        flex-direction: column;
    }
    
    .subsidiary-header h3 {
        font-size: 1.1rem;
    }
}

/* 移动端适配 */
@media (max-width: 1024px) {
    .language-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        display: none;
    }
    
    .language-submenu.active {
        display: block;
    }
    
    .language-submenu a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .language-submenu a:hover {
        background-color: #e6f7ff;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .software-intro-content {
        flex-direction: column;
    }
    
    .morphism-nav-content {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .application-scenarios {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .product-source {
        flex-direction: column;
        gap: 10px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .enterprise-intro-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .popular-tag {
        right: -25px;
        padding: 3px 25px;
        font-size: 10px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-info-content {
        flex-direction: column;
    }
    
    .message-content {
        flex-direction: column;
    }
    
    .message-form {
        padding: 20px;
    }
    
    .message-note {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .qrcode img {
        width: 100px;
        height: 100px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-intro-content {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        margin: 10px 0;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .categories-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-item {
        width: 80%;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 20px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .principles-content {
        grid-template-columns: 1fr;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .youth-culture-content {
        grid-template-columns: 1fr;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .licenses-grid {
        grid-template-columns: 1fr;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-content {
        flex-direction: column;
    }
    
    .certificate-image img {
        height: 200px;
    }
    
    .license-image img {
        height: 150px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .executive-card {
        flex-direction: column;
        text-align: center;
    }
    
    .executive-avatar {
        flex: 0 0 auto;
        padding: 30px 20px 0;
    }
    
    .executive-info {
        padding: 20px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .history-timeline .timeline::before {
        left: 30px;
    }
    
    .history-timeline .timeline-item {
        padding-left: 70px !important;
        text-align: left !important;
        padding-right: 0 !important;
    }
    
    .history-timeline .timeline-date {
        left: 30px;
        transform: translateX(0);
    }
    
    .future-content {
        flex-direction: column;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}


/* 响应式设计 */
@media (max-width: 768px) {
    .board-intro-content {
        flex-direction: column;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .executives-grid {
        grid-template-columns: 1fr;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 20px 0;
    }
    
    .about-intro-content {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-right: 0 !important;
        padding-left: 70px !important;
        text-align: left !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(0);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .culture-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}