.container {
    width: 1280px !important;
}

/* 公司简介部分 */
.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 24px;
    color: #000;
    font-weight: 700;
}

.section-subtitle {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

.company-intro {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.company-text {
    width: calc(50% - 40px);
    padding-right: 40px;
}

.company-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.company-image {
    width: 50%;
}

.company-image img {
    width: 100%;

}

/* 发展历程部分 */
.history-section {
    background-color: #fff;
    padding: 80px 0;
}


.history-tabs {
    margin-bottom: 40px;
}

.history-tab {
    padding: 8px 20px;
    margin: 0 10px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-tab.active {
    background: #ff0031;
    color: #fff;
    border-color: #ff0031;
}



.history-timeline {
    position: relative;
    padding: 10px 0 70px;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    background-color: #ff0031;
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 12px solid #ff0031;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.history-item {
    position: relative;
    z-index: 2;
    padding: 10px 40px 46px 40px;
    opacity: .7;
    transition: transform .25s ease, opacity .25s ease;
}

.history-item.is-active {
    opacity: 1;
}

.history-dot {
    width: 18px;
    height: 18px;
    background-color: #ff0031;
    border: 6px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    z-index: 2;
}

.history-year {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 26px;
    text-align: center;
    line-height: 1;
    transition: all .25s ease;
}

.history-content {
    padding: 0 15px;
    transition: transform .25s ease;
    overflow: hidden;
    /* 确保伪元素不会溢出到slide外部 */
}

.history-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.history-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.history-content ul li {
    text-align: justify;
    position: relative;
    padding-left: 12px;
}

.swiper-wrapper {
    align-items: flex-end !important;
}

.history-content ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff0031;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

/* 新的按钮样式 - 类似index.htm，但位置在左右两侧 */
.history-swiper {
    position: relative;
    /* 让轮播容器成为定位参考 */
}

.history-swiper-button-prev,
.history-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.history-swiper-button-prev {
    left: 10px;
}

.history-swiper-button-next {
    right: 10px;
}


.history-swiper-button-prev:after,
.history-swiper-button-next:after {
    content: none;
}

/* 保留旧的按钮样式作为备用 */
.history-prev,
.history-next {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    z-index: 10;
    cursor: pointer;
}

/* 高亮项（红色大年份、整体上移） */
.history-item.is-active .history-year {
    color: #ff0031;
    font-size: 62px;
    font-weight: 800;
}

/* 激活状态下"年"字保持原色和24px字体 */
.history-item.is-active .history-year .year-text {
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}


.history-item.is-active .history-content {
    transform: translateY(-12px);
}

.history-item.is-active .history-dot {
    width: 18px;
    height: 18px;
}

.history-prev {
    left: 10px;
}

.history-next {
    right: 10px;
}

/* 历程轮播容器与过滤隐藏 */
.history-swiper {
    padding: 0 50px 20px;
}

.history-swiper .swiper-slide.is-hidden {
    display: none !important;
}

/* 自定义底部装饰线（非分页器） */
.history-deco-line {
    position: relative;
    height: 3px;
    margin-top: 8px;
    background: linear-gradient(90deg, #ff0031 0%, #ff6aa0 40%, #b38bff 70%, rgba(0, 0, 0, .06) 100%);
}

.history-deco-line .deco-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border: 6px solid #ff0031;
    border-radius: 50%;
}

.history-deco-line .dot-1 {
    left: 18%;
}

.history-deco-line .dot-2 {
    left: 50%;
}

.history-deco-line .dot-3 {
    left: 82%;
}

/* 创始人部分 */
.founder-section {
    background-color: #f5f5f7;
}

.founder-profile {
    margin-top: 40px;
}

.founder-image {
    width: 50%;
}

.founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-info {
    width: 47%;
    padding-left: 40px;
}

.founder-name {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.founder-desc p {
    font-size: 16px;
    line-height: 2;
    color: #000;
    letter-spacing: 1px;
}

/* 合作伙伴部分 */


.partners-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}


/* 荣誉资质部分 */
.honors-section {
    background-color: #f5f5f7;
    padding: 80px 0;
}

.honor-tabs {
    margin-bottom: 40px;
}

.honor-tab {
    padding: 8px 16px;
    margin: 0 10px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.honor-tab.active {
    background: #ff0031;
    color: #fff;
    border-color: #ff0031;
}

.honor-content {
    position: relative;
}

.honor-group {
    display: none;
}

.honor-group.active {
    display: block;
}

.honor-swiper {
    position: relative;
    overflow: hidden;
    /* 隐藏超出区域的内容 */
}

/* 荣誉资质轮播控制条容器（位于轮播下方） */
.honor-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

/* 荣誉资质轮播导航按钮 */
.honor-swiper-button-prev,
.honor-swiper-button-next {
    width: 30px;
    height: 30px;
    background: #e6e3f0;
  color: #605E65;
    border-radius: 50%;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    margin-top: 0;
    position: static;
}

.honor-swiper-button-prev:hover,
.honor-swiper-button-next:hover {
    background: #E0DDE9;
    transform: scale(1.1);
}

.honor-swiper-button-prev:after,
.honor-swiper-button-next:after {
    content: none;
}

.honor-controls .iconfont {
    font-size: 16px;
    line-height: 1;
}

.honor-item {
    padding: 10px;
}

.honor-card {
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.honor-card.is-active {
    opacity: 1;
    transform: scale(1.2);
}

.honor-card.is-active .honor-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    /* z-index: -1; */
}


.honor-image {
    padding-bottom: 20px;
    padding-top: 20px;
    height: auto;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.honor-image img {
    width: auto;
    height: auto;
    object-fit: contain;
}


.honor-info {
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.honor-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
    line-height: 1.5;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-card.is-active .honor-info h4 {
    color: #ff0031;
}