

/* 关于公司banner样式 */
.about-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-banner-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-banner-subtitle {
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 公司概况部分 */
.company-overview {
  padding: 80px 100px;
  background-color: #fff;
}

.section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff8500;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}

.overview-text {
  width: 100%;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.video-container {
  width: 100%;
  margin: 0 auto;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.thumbnail-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.video-thumbnail:hover .thumbnail-img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 133, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.play-icon svg {
  width: 30px;
  height: 30px;
}

/* 公司数据部分 */
.company-stats {
}

.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px 15px;
  width: 16.66%;
}

.stat-number {
  font-size: 46px;
  color: #ff8500;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}

.unit {
  font-size: 24px;
  font-weight: 500;
}

.stat-label {
  font-size: 16px;
  color: #666;
}

/* 企业文化部分 */
.enterprise-culture {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  background-color: #f9f9f9;
  background-image: url(../images/aa8e8-nxsry.jpg);
  background-size:100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 40px;
}

.culture-content {
  position: relative;
  width: 60%;
  margin-left: auto;
  padding: 80px 60px;
  z-index: 2;
}

.culture-content .section-title {
  text-align: left;
  left: 0;
  transform: none;
  margin-bottom: 50px;
}

.culture-content .section-title::after {
  left: 0;
  transform: none;
}
.culture-text{
      max-height: 340px;
    overflow-y: auto;
}
.culture-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* 发展历史部分 */
.development-history {
  padding: 80px 0;
  background-color: #fff;
}

.history-content {
  display: flex;
  margin-top: 40px;
  gap: 60px;
}

.history-image {
  flex: 1;
  max-width: 45%;
}

.history-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.timeline-wrapper {
  padding-right: 20px;
  padding-bottom: 20px;
}

/* 隐藏默认滚动条 */
.timeline-wrapper::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
  background-color: #ff8500;
  border-radius: 3px;
}

.timeline {
  position: relative;
  padding-left: 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 85px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ddd;
  z-index: 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  min-height: 30px;
}

.timeline-item:last-child {
  padding-bottom: 20px;
}

.year {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  width: 70px;
  text-align: right;
  padding-right: 30px;
  flex-shrink: 0;
}

.timeline-info {
  padding-left: 30px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  flex: 1;
  text-align: left;
  position: relative;
}
.timeline-info::after{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background-color: #ff8500;
    border-radius: 50%;
    content: "";
    z-index: 1;
}
.timeline-info::before{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(-50%,-50%);
    width: 15px;
    height: 15px;
    background-color: rgba(255,133,0,0.3);
    border-radius: 50%;
    content: "";
    z-index: 1;
}

/* 荣誉资质部分 */
.honorary-qualifications {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.honorary-qualifications .description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.certificates-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.certificate-item {
  width: calc(25% - 30px);
  padding: 10px;
}

.certificate-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.certificate-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.certificate-wrapper:hover .certificate-img {
  transform: scale(1.05);
}

/* 视频弹窗样式 */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1100;
}

.video-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}

.modal-close svg {
  width: 100%;
  height: 100%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 比例 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.honorary-title{
    left: 0;
}

/* 响应式样式 - 大屏幕 */
@media screen and (min-width: 1400px) {
  .video-thumbnail {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
  
  .play-icon {
    width: 70px;
    height: 70px;
  }
  
  .play-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .timeline-wrapper {
    height: 450px;
  }
  
  .timeline::before {
    left: 95px;
    width: 2px;
  }
  
  .year {
    font-size: 28px;
    width: 80px;
    padding-right: 40px;
  }
  
  .timeline-info {
    font-size: 18px;
    padding-left: 35px;
  }
  
  .timeline-info::after {
    width: 12px;
    height: 12px;
  }
  
  .timeline-info::before {
    width: 18px;
    height: 18px;
  }
  
  .certificate-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .modal-content {
    max-width: 1100px;
  }
  
  .modal-close {
    top: -50px;
    width: 35px;
    height: 35px;
  }
  
  .video-wrapper {
    border-radius: 12px;
  }
}

/* 响应式样式 - 中等屏幕 */
@media screen and (max-width: 1200px) {
  .timeline::before{
    width: 0;
  }
  .enterprise-culture{
    background-size: auto;
  }
  .timeline{
    padding: 0;
  }
  .video-thumbnail {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .play-icon {
    width: 55px;
    height: 55px;
  }
  
  .play-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .timeline-wrapper {
    height: 380px;
  }
  
  .year {
    font-size: 22px;
  }
  
  .timeline-info {
    font-size: 15px;
  }
  
  .modal-content {
    max-width: 800px;
  }
}

/* 响应式样式 - 平板大屏 */
@media screen and (max-width: 992px) {
  .honorary-qualifications{
    padding-top: 20px;
  }
  .honorary-title{
    width: 100%;
    text-align: center;
    transform: translateX(0); 
  }
  .stat-item {
    width: 33.33%;
  }
  .development-history{
    padding: 20px 0;
  }
  .enterprise-culture {
    flex-direction: column;
    background-size: auto;
    background-position: right top;
    min-height: 300px;
  }
  
  .culture-content {
    width: 100%;
    padding: 40px 30px;
  }

  .history-content {
    flex-direction: column;
    gap: 40px;
  }

  .history-image {
    max-width: 100%;
  }
  
  .video-thumbnail {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .play-icon {
    width: 50px;
    height: 50px;
    top: -50px;
  }
  
  .play-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .timeline-wrapper {
    height: 350px;
    padding: 0;
  }
  
  .timeline::before {
    left: 75px;
    width: 0;
  }
  
  .year {
    width: 60px;
    font-size: 20px;
    padding-right: 25px;
  }
  
  .timeline-info {
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.7;
  }
  
  .timeline-info::after {
    left: 2.8% !important;
    width: 9px;
    height: 9px;
  }
  
  .timeline-info::before {
    left: 2.8% !important;
    width: 14px;
    height: 14px;
  }
  
  .certificate-item {
    width: calc(50% - 30px);
  }
  
  .modal-content {
    width: 85%;
    max-width: 700px;
  }
  
  .modal-close {
    top: -35px;
    width: 28px;
    height: 28px;
  }
}

/* 响应式样式 - 平板 */
@media screen and (max-width: 768px) {
  .about-banner {
    height: 350px;
  }

  .about-banner-title {
    font-size: 36px;
  }

  .about-banner-subtitle {
    font-size: 16px;
  }
  
  .company-overview {
    padding:20px;
  }
  
  .video-thumbnail {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
  }
  
  .play-icon {
    width: 45px;
    height: 45px;
    top: -45px;
  }
  
  .play-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .timeline-wrapper {
    height: 320px;
  }
  
  .timeline-wrapper::-webkit-scrollbar {
    width: 4px;
  }
  
  .timeline::before {
    left: 65px;
  }
  
  .timeline-item {
    padding-bottom: 40px;
  }
  
  .year {
    width: 50px;
    font-size: 18px;
    padding-right: 20px;
  }
  
  .timeline-info {
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .timeline-info::after {
    left: 3px;
    width: 8px;
    height: 8px;
  }
  
  .timeline-info::before {
    left: 3px;
    width: 12px;
    height: 12px;
  }
  
  .modal-content {
    width: 90%;
    max-width: 600px;
  }
  
  .modal-close {
    top: -30px;
    width: 25px;
    height: 25px;
  }
  
  .video-wrapper {
    border-radius: 6px;
  }
}

/* 响应式样式 - 手机 */
@media screen and (max-width: 576px) {
  .about-banner {
    height: 250px;
  }

  .about-banner-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .about-banner-subtitle {
    font-size: 14px;
  }
  
  .stat-item {
    width: 50%;
  }
  
  .video-thumbnail {
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
  }
  
  .play-icon {
    width: 40px;
    height: 40px;
    top: -40px;
  }
  
  .play-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .timeline-wrapper {
    height: 300px;
  }
  
  .timeline::before {
    left: 55px;
  }
  
  .timeline-item {
    padding-bottom: 30px;
  }
  
  .year {
    width: 40px;
    font-size: 16px;
    padding-right: 18px;
  }
  
  .timeline-info {
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .timeline-info::after {
    left: 2px;
    width: 7px;
    height: 7px;
  }
  
  .timeline-info::before {
    left: 2px;
    width: 11px;
    height: 11px;
  }
  
  .certificate-item {
    width: 100%;
    max-width: 320px;
    padding: 8px;
  }
  
  .certificate-wrapper {
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-close {
    top: -25px;
    width: 22px;
    height: 22px;
  }
  
  .video-wrapper {
    border-radius: 5px;
  }
}

/* 响应式样式 - 小手机 */
@media screen and (max-width: 375px) {
  .play-icon {
    width: 36px;
    height: 36px;
    top: -36px;
  }
  
  .play-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .timeline-wrapper {
    height: 280px;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .timeline::before {
    left: 45px;
  }
  
  .timeline-item {
    padding-bottom: 25px;
  }
  
  .year {
    width: 35px;
    font-size: 14px;
    padding-right: 15px;
  }
  
  .timeline-info {
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.4;
  }
  
  .timeline-info::after {
    left: 1px;
    width: 6px;
    height: 6px;
  }
  
  .timeline-info::before {
    left: 1px;
    width: 10px;
    height: 10px;
  }
  
  .certificate-item {
    max-width: 280px;
    padding: 6px;
  }
  
  .modal-close {
    top: -22px;
    width: 20px;
    height: 20px;
  }
} 

/* 关注领域样式 */
.focus-areas {
  padding-bottom: 60px;
  background-color: #fff;
}

.focus-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.focus-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 如果最后一个元素是奇数项，让它居中显示 */
.focus-item:nth-child(odd):last-child {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 133, 0, 0.1);
}

.focus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 133, 0, 0.15);
  border-color: rgba(255, 133, 0, 0.3);
}

.focus-image {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.focus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.focus-item:hover .focus-img {
  transform: scale(1.05);
}

.focus-content {
  flex: 1;
  padding-left: 10px;
}

.focus-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  position: relative;
}

.focus-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff8500, #ffb347);
  border-radius: 2px;
}

.focus-description {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 133, 0, 0.8), rgba(255, 133, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantages-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantages-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.advantages-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 133, 0, 0.8), rgba(255, 133, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantages-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantages-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.advantages-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
/* 工厂介绍样式 */
.factory-introduction {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.factory-content {
  max-width: 1200px;
  margin: 0 auto;
}

.factory-text {
  margin-bottom: 50px;
}

.factory-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.company-info {
  margin-top: 30px;
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.company-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.company-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.factory-gallery {
  margin-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* 响应式样式 - 关注领域和工厂介绍 */
@media screen and (max-width: 992px) {
  .focus-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .focus-item:nth-child(odd):last-child {
    grid-column: 1;
    max-width: none;
    margin: 0;
  }

  .focus-item {
    gap: 25px;
    padding: 25px;
  }

  .focus-image {
    width: 150px;
    height: 110px;
  }

  .focus-title {
    font-size: 20px;
  }

  .focus-description {
    font-size: 14px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }
  
  .advantages-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .focus-areas {
    padding: 40px 0;
  }

  .focus-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .focus-image {
    width: 100%;
    max-width: 250px;
    height: 160px;
    margin: 0 auto;
  }

  .focus-content {
    padding-left: 0;
  }

  .focus-title {
    font-size: 18px;
  }

  .focus-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .focus-description {
    font-size: 14px;
    -webkit-line-clamp: none;
    line-clamp: none;
    display: block;
  }
  
  
  .factory-introduction {
    padding: 40px 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-img {
    height: 180px;
  }
}

@media screen and (max-width: 576px) {
  .focus-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .focus-item {
    padding: 15px;
    gap: 12px;
  }

  .focus-image {
    height: 140px;
    max-width: 200px;
  }

  .focus-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .focus-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .advantages-text h3 {
    font-size: 20px;
  }
  
  .advantages-text p {
    font-size: 14px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .image-overlay h3 {
    font-size: 20px;
  }
  
  .factory-text p {
    font-size: 14px;
  }
  
  .company-info {
    padding: 20px;
  }
  
  .company-info h3 {
    font-size: 18px;
  }
  
  .gallery-img {
    height: 160px;
  }
} 
/* 新版我们的优势背景与排版 */
.new-advantages-bg {
  position: relative;
  background: url('../images/2025050615055214749e.jpg') center center/cover no-repeat;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
}
.advantages-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 60, 100, 0.38);
  z-index: 1;
}
.advantages-inner.flex-advantage-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
}
.advantages-left {
  max-width: 400px;
  color: #fff;
}
.advantage-main-title {
  font-size: 48px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: relative;
}
.advantage-main-title::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 68px;
  height: 5px;
  background: #FFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.advantage-main-desc {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.advantages-right {
  flex:1;
  padding-left: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 60px;
}
.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 24px 12px 18px 12px;
}
.advantage-svg {
  margin-bottom: 12px;
}
.advantage-svg svg {
  display: block;
  width: 80px;
  height: 80px;
}
.advantage-num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.advantage-unit {
  font-size: 16px;
  font-weight: 400;
  margin-left: 2px;
  color: #fff;
}
.advantage-desc {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.advantages-title {
  text-align: center;
  color: #ff8500;
  font-size: 32px;
  font-weight: 700;
  margin: 60px 0 0 0;
  letter-spacing: 2px;
}
@media (max-width: 1100px) {
  .advantages-inner.flex-advantage-layout {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 0 16px 0;
  }
  .advantages-left {
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 24px;
    text-align: center;
  }
  .advantages-right {
    padding-right: 0;
    gap: 18px;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .advantages-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .advantage-item {
    min-width: 100px;
    max-width: 100%;
    padding: 16px 6px 12px 6px;
  }
  .advantages-title {
    font-size: 22px;
    margin-top: 30px;
  }
  .advantage-main-title {
    font-size: 22px;
  }
} 
/* 企业文化新版块样式 */
.corporate-culture-section {
  margin-top: 80px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.corporate-culture-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 1;
}

.culture-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.culture-animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 800px;
  width: 100%;
}

.culture-svg {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}



/* SVG动画样式 */
.center-circle {
  transform-origin: center;
}

.value-circle {
  transform-origin: center;
  transition: all 0.3s ease;
}

.connection-line {
  transition: all 0.3s ease;
}

/* 响应式样式 */
@media screen and (max-width: 992px) {
  .culture-animation-container {
    min-height: 700px;
  }
  
  .culture-svg {
    width: 700px;
    height: 700px;
  }
}

@media screen and (max-width: 768px) {
  .corporate-culture-section {
    margin-top: 40px;
    padding: 40px 0;
  }
  
  .culture-content-wrapper {
    padding: 20px 15px;
  }
  
  .culture-animation-container {
    min-height: 600px;
  }
  
  .culture-svg {
    width: 600px;
    height: 600px;
  }
}

@media screen and (max-width: 576px) {
  .culture-animation-container {
    min-height: 500px;
  }
  
  .culture-svg {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 480px) {
  .culture-animation-container {
    min-height: 450px;
  }
  
  .culture-svg {
    width: 450px;
    height: 450px;
  }
} 