/* 关于我们页面样式 */
.about-container {
    padding-bottom: 60px;
}



/* 子导航样式 */
.about-subnav {
    background: #006ABB;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-subnav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-subnav li {
    margin: 0 15px;
}

.about-subnav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.about-subnav a.active,
.about-subnav a:hover {
    background: rgba(255,255,255,0.2);
}

.about-subnav a.active {
    font-weight: bold;
}

/* 公司名称 */
.company-name {
    text-align: center;
    margin: 40px 0;
}

.company-name h2 {
    font-size: 2.5rem;
    color: #006ABB;
    margin-bottom: 10px;
}

.company-name p {
    font-size: 1.2rem;
    color: #666;
}

/* 数据展示板块 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2rem;
    color: #006ABB;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* 公司介绍 */
.company-intro {
    margin: 60px 0;
    padding: 40px;
    background: #FFF;
    border-radius: 8px;
}

.company-intro h3 {
    font-size: 1.8rem;
    color: #006ABB;
    margin-bottom: 20px;
    text-align: center;
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.company-intro p img{ text-align:center !important;}

/* 公司视频 */
.company-video {
    margin: 60px 0;
}

/* 企业文化 */
.culture-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.culture-icon {
    font-size: 3rem;
    color: #006ABB;
    margin-bottom: 20px;
}

.culture-title {
    font-size: 1.5rem;
    color: #006ABB;
    margin-bottom: 15px;
}

.culture-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-card {
        padding: 20px;
    }
}

.company-video h3 {
    font-size: 1.8rem;
    color: #006ABB;
    margin-bottom: 20px;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-banner {
        height: 300px;
    }
    
    .about-subnav ul {
        flex-wrap: wrap;
    }
    
    /* 联系页面响应式 */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-banner h1 {
        font-size: 2rem;
    }
    
    .about-banner p {
        font-size: 1.2rem;
    }
    
    .company-name h2 {
        font-size: 2rem;
    }
    
    .about-subnav {
        padding: 10px 0;
    }
    
    .about-subnav li {
        margin: 0 8px;
    }
    
    .about-subnav a {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    /* 联系页面响应式 */
    .contact-main h1 {
        font-size: 2.2rem;
    }
    
    .info-item h3 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Pagination */
.pagination {
   	display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0;
    border-radius: 4px;
}


	
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
	
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
	
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }





/* 发展历程页面样式 */
.history-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.history-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.history-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.history-banner p {
    font-size: 1.5rem;
}

/* 时间轴导航 */
.timeline-container {
    background-color: #f5f5f5;
    padding: 30px 0;
}

.timeline-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-wrapper {
    width: 80%;
    overflow: hidden;
}

.timeline {
    display: flex;
    transition: transform 0.3s ease;
    width: max-content;
}

.timeline-item {
    flex: 0 0 120px;
    text-align: center;
    padding: 15px 10px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.timeline-item.active {
    color: #0066cc;
    font-weight: 600;
}

.timeline-item.active:after {
    width: 50px;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0066cc;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    color: #004d99;
}

/* 事件内容 */
.history-content {
    padding: 60px 0;
}

.event {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.event.active {
    display: block;
}

.event h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.event p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.event-image {
    margin-top: 30px;
	border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 102, 204, 0.4);
    background: white;
	width:500px;	
    justify-content: center;
    align-items: center;
	animation: rotate360 5s linear infinite;
	text-align:center;
}

.event-image img {	
    max-width: 100%;
    height: auto;
	left:60%;	
    border-radius: 50%;
	text-align:center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 荣誉资质 */
.honors-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.honors-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honors-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.honors-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.honors-banner p {
    font-size: 1.5rem;
}

.honors-content {
    padding: 60px 0;
}

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

.honors-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.honors-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.honors-image {
    height: 180px;
    overflow: hidden;
}

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

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

.honors-desc {
    padding: 15px;
}


.honors-desc p {
    font-size: 1rem;
    line-height: 1.5;
}

.honors-desc h3 {
    font-size: 1rem;
    color: #006ABB;
    margin-bottom: 10px;
}


.honors-desc h3 a{
   
    color: #006ABB;
	text-decoration:none;
   
}


.honors-desc p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .honors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .honors-banner h1 {
        font-size: 2.2rem;
    }
    
    .honors-banner p {
        font-size: 1.2rem;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
    }
    
    .honors-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .honors-banner {
        height: 200px;
    }
    
    .honors-banner h1 {
        font-size: 1.8rem;
    }
    
    .honors-banner p {
        font-size: 1rem;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .timeline-item {
        flex: 0 0 100px;
    }
}

@media (max-width: 768px) {
    .history-banner h1 {
        font-size: 2.2rem;
    }
    
    .history-banner p {
        font-size: 1.2rem;
    }
    
    .timeline-item {
        flex: 0 0 80px;
        font-size: 0.9rem;
    }
    
    .event h2 {
        font-size: 1.8rem;
    }
    
    .event p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .history-banner {
        height: 200px;
    }
    
    .history-banner h1 {
        font-size: 1.8rem;
    }
    
    .history-banner p {
        font-size: 1rem;
    }
    
    .timeline-wrapper {
        width: 70%;
    }
    
    .timeline-item {
        flex: 0 0 60px;
        font-size: 0.8rem;
        padding: 10px 5px;
    }
    
    .nav-arrow {
        padding: 5px 10px;
    }
    
    .history-content {
        padding: 40px 0;
    }
}

/* 移动端特定样式 */
@media (max-width: 480px) {
    .contact-main {
        padding: 40px 0;
    }
    
    .contact-section h1 {
        font-size: 1.8rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
    
    .map-container {
        height: 250px;
    }
}


/* 新版联系页面样式 */
.contact-banner {
  	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('../image/contactbanner.jpg') no-repeat center center;		
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
  
}

.contact-banner h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

.contact-banner p {
 font-size: 1.2rem;
    max-width: 60%;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s both;	
}

/* 24小时服务热线样式 */
.service-hotline {
    width: 60%;
    margin: 0 auto 30px;
    background: #006ABB;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hotline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
}

.hotline-content i {
    font-size: 1.5rem;
}



.contact-cards {
    padding: 60px 0;
    background: #f9f9f9;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
	width:80%;
}

@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #006ABB;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #006ABB;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info i {
    color: #006ABB;
    margin-right: 10px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: block;
    border: 1px solid #eee;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #006ABB;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #004d99;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-banner {
        padding: 60px 0;
    }
    
    .contact-banner h1 {
        font-size: 2rem;
    }
    
    .contact-banner p {
        font-size: 1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
	
	  .service-hotline {
        width: 90%;
        padding: 15px;
    }

    .hotline-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 1rem;
    }
}

/* 顶部24小时服务电话样式 */
.service-hotline-top {
    width: 60%;
    margin: 0 auto 30px;
    background: #006ABB;
    color: #FFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



@media (max-width: 768px) {
    .service-hotline-top,
    {
        width: 90%;
        padding: 15px;
    }
}
