html,body{width:100%;overflow-x:hidden;}
.banner {
    width: 100%;
}

.about-container {
    --color: #89211c;
}

.about-container * {
    box-sizing: border-box;
}

.section {
    padding: 56px 16px;
    width: 75%;
    margin: 0 auto;
}
.section-wenhua{
    padding: 10px 16px;
    width: 75%;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    color: var(--color);
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--color);
}

.card {
    display: flex;
    margin-top: 22px;
    position: relative;
}

.card-bg {
    position: absolute;
    bottom: 0;
    left: -61px;
    width: 200px;
    height: 100%;
    background-color: #f7f8f8;
    z-index: -1;
}

.card-img img{
    width: 510px;
    height: 340px;
    flex-shrink: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}


.card-body {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 38px 44px;
    background-color: #f7f8f8;
    height: 100%;
    position: relative;
}

.card-number-box {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.card-number {
    width: 180px;
    height: 330px;
    object-fit: contain;
    position: absolute;
    top: 70%;
    right: -50px;
    transform: translate(-50%, -50%);
}


.card-tag-box {
    display: flex;
}

.card-tag {
    font-size: 16px;
    color: #333;
    border-radius: 12px;
    margin-right: 82px;
    text-align: center;
}


.card-tag-icon {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}


.card-tag-content {
    display: flex;
    align-items: flex-end;
}

.card-tag-deep {
    font-size: 36px;
    color: #deb054;
    font-weight: 700;
}

.card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    text-align: justify;
}

.card-btn {
    z-index: 1;
}

.card-btn .btn,
.card-btn .btn:focus-visible {
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #d7b263;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
}
.card-btn .btn{
   border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #d7b263;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;

}

.card-btn:hover .btn {
    cursor: pointer;
}

.branch-box {
    position: relative;
}

.branch-img img {
    width: 100%;
    object-fit: cover;
}

.branch-name {
    position: absolute;
    top: 25%;
    left: 18%;
    font-size: 42px;
    color: var(--color);
    font-weight: 700;
}

.branch-btn {
    position: absolute;
    top: 60%;
    left: 18%;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 15px;
    color: #fff;
    background-color: #d7b263;
    cursor: pointer;
}

.branch-btn img {
    width: 20px;
    height: 7px;
    object-fit: contain;
    margin-left: 15px;
}

.culture-card {
    height: 900px;
    background: url('/uiFramework/commonResource/image/2025122611223380715.png') center;
    background-size: cover;
    background-repeat: no-repeat;
}

.culture-card-item {
    margin: 40px 0;
}

.culture-card-item-title {
    font-size: 24px;
    color: var(--color);
    font-weight: 700;
    margin-bottom: 22px;
}

.culture-card-item-content {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    text-align: justify;
}

.timeline-container {
    position: relative;
    user-select: none;
    text-align: center;
}

.timeline-bg {
    width: 1200px;
    object-fit: cover;
    text-align: center;
}

/* 控制按钮 */
.controls {
    position: absolute;
    top: 30px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 34px;
    z-index: 1;
}

.controls-btn {
    font-size: 22px;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #d7b263;
    transition: all 0.2s;
    font-family: monospace;
    font-weight: bold;
    user-select: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.controls-btn:hover:not(:disabled) {
    background-color: #d7b263;
    color: #fff;
}

.controls-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* 背景弧线 SVG */
.timeline {
    position: relative;
}

.timeline-curve-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.curve-path {
    fill: none;
    stroke: #d7b263;
    stroke-width: 1;
}











/* 时间点容器 */
.timeline-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 单个时间点 */
.timeline-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
    z-index: 1;
    width: 0;
    height: 0;
    visibility: hidden;
}

/* 只显示三个点：当前点、前一个点、后一个点 */
.timeline-item.visible {
    visibility: visible;
}


/* 圆点 */
.dot {
    position: absolute;
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    z-index: 2;
    border: 1px solid #f7f4f4;
    box-shadow: 0 0 2px 2px #efefef85;
    transform: translate(0, -50%);
}

/* 选中状态的圆点 */
.timeline-item.active .dot {
    width: 30px;
    height: 30px;
    background-color: #d7b263;
    border: 2px solid #fff;
    transform: translate(0, -50%) scale(1.5);
    box-shadow: 0 0 5px 1px #d7b2639d;
}

/* 文本内容 */
.content {
    position: absolute;
    text-align: center;
    transition: all 0.3s ease;
    transform-origin: top center;
    padding: 70px 10px 0;
    width: 300px;
}

.content-wrap {
    text-align: left;
    display: inline-block;
}


.timeline-item.active .content {
    transform: scale(1.1);
}

.year {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: var(--color);
    display: block;
    bottom: 35px;
    text-wrap: nowrap;
}

.desc {
    max-width: 400px;
    font-size: 14px;
    color: #000;
    line-height: 2;
    position: relative;
}

.desc::after {
    content: ' ';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 5px;
    height: 5px;
    background-color: #d7b263;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/*投资者关系  复制自首页 新闻中心  */
.newsCon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.newsCon .top {
    margin-bottom: 0;
}

.newsCon .right {}

.newsCon .right span.item {
    font-size: 0.28rem;
    margin-right: 0.5rem;
    position: relative;
    cursor: pointer;
    color: #9fa0a0;
}

.newsCon .right span.item:last-child {
    margin-right: 0;
}

.newsCon .right span.item::after {
    content: '';
    display: inline-block;
    width: 0;
    position: absolute;
    bottom: -0.14rem;
    left: 50%;
    height: 1px;
    background: var(--color);
    transition: all 0.6s ease;
}

.newsCon .right span.item:hover::after {
    width: 100%;
    left: 0;
}

.newsCon .right span.item.active {
    font-weight: bold;
    color: var(--color);
}

.newsCon .right span.item.active::after {
    width: 100%;
    left: 0;
}

.xwzxBg {
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;

}

/*新闻-swiper */
.xwzxBottom {
    display: flex;
    justify-content: space-between;
}

.xwzxLeft {
    width: 55%;
}

.newsSwiper {
    position: relative;
}

.newsSwiper .swiper-slide {}

.newsSwiper .swiper-slide .itemBox {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.itemImg {}

.newsSwiper .swiper-slide .itemBox .itemImg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.newsSwiper .swiper-slide .itemBox .itemRight {
    margin-left: 0.3rem;
}

.newsSwiper .swiper-slide .itemBox .itemRight>a {
    font-size: 0.24rem;
    color: #fff;
    font-weight: bold;
}

.newsSwiper .swiper-slide .itemBox .itemRight>a.more {
    font-size: 0.22rem;
    font-weight: normal;
}

.newsSwiper .swiper-slide .itemBox .itemRight p.sum {
    font-size: 0.22rem;
    color: #fff;
    margin: 0.3rem 0 0.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 1rem;
}

.newsSwiper .newsPrev {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 1px solid #ddd;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: url();
    bottom: 0.4rem;
    top: unset;
    right: 1.2rem;
    left: unset
}

.newsSwiper .newsNext {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 1px solid #ddd;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    bottom: 0.4rem;
    top: unset;
    right: 0.4rem;
    background: url();
}

.newsSwiper .newsPrev::after {
    content: '→';
    font-size: 0.22rem;
    color: #d7b263;

    font-weight: bold;
    height: 0.5rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    line-height: 0.5rem;
    transform: rotate(180deg);
}



.newsSwiper .newsNext::after {
    content: '→';
    font-size: 0.22rem;
    color: #d7b263;


    font-weight: bold;
    height: 0.5rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    line-height: 0.5rem;
}


/*新闻list*/
.xwzxRight {
    width: 41%;
}

.newsList {}

.newsList ul {}

.newsList ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    border-bottom: 1px dashed #dddede;
    padding-bottom: 0.27rem;
}

.newsList ul li:last-child {
    margin-bottom: 0;
}

.newsList ul li a {
    font-size: 0.22rem;
    color: #000;
}

.newsList ul li span.date {
    color: #717071;
    font-size: 0.22rem;
}

.newsList ul li:hover a,
.newsList ul li:hover span.date {
    color: var(--color);
    font-weight: bold;
}

.swiper {
    overflow: hidden;
}

.tzzjs{
    width: 32%;
    position: absolute;
    right: 10%;
    top: 55%;

}
.tzjfw{
  font-size:18px;
  text-align:center;
}
.tzjfw-con{
  font-size:14px;
  line-height:30px;
}