/* 产品矩阵部分 */
.container {
    /* padding: 0 !important; */
}
.product-matrix-section {
    padding: 1.6rem 0.16rem 2.8rem;
    background: #fff;
}

.product-tabs {
    display: flex;
    justify-content: space-between;
    margin: 0 1.6rem;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 0 !important;
    overflow-x: initial !important;
}

.tab-item {
    font-size: 1.75rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-item:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff9f43;
    transition: width 0.3s ease;
}

.tab-item.active {
    color: #ff9f43;
}

.tab-item.active:after {
    width: 100%;
}

.product-content {
    position: relative;
    overflow: hidden;
    margin: 0 1.6rem;
}

.tab-content {
    position: relative;
    width: 100%;
    opacity: 0;
    height: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
}

.tc-lsit1, .tc-lsit2, .tc-lsit3 {
    min-height: 300px;
}

.tc-list1 li {
    display: flex;
    align-items: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid #EBEBEB;
}

.tcl-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 1.6rem;
    height: 9rem;
}

.tcl-left p {
    font-size: 1.75rem;
    color: #333;
    font-weight: 500;
}

.tcl-left span {
    font-size: 1.5rem;
    color: #999;
}

.tc-list1 li img {
    width: 12rem;
    min-width: 12rem;
    height: 9rem;
    object-fit: cover;
}

.tc-lsit2 {
    padding-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
}

.tc-lsit2 a {
    width: calc(50% - 0.6rem);
    border: 1px solid #F1F1F2;
    margin-bottom: 1.6rem;
}
.tc-lsit2 a:nth-of-type(odd) {
    margin-right: 1.2rem;
}
.tc-lsit2 li img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}
.tc-lsit2 li p {
    font-size: 1.75rem;
    color: #333;
    font-weight: 500;
    padding: 1.6rem 1rem 1.6rem;
}

.tc-list3 {
    padding-top: 1.6rem;
}

.tc-list3 li {
    margin-bottom: 1.6rem;
    border-radius: 2px;
    border: 1px solid #F1F1F2;
    padding: 1.4rem;
}

.tc-list3 li h5 {
    font-size: 1.75rem;
    color: #333;
    font-weight: 500;
}

.tc-list3 li p {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #666;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}
.pagination .page {
    margin: 0 0.3rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    cursor: pointer;
    color: #333;
    user-select: none;
    transition: background-color 0.3s;
}
.pagination .page:hover {
    background-color: #f0f0f0;
}
.pagination .page.active {
    background-color: #ff9f43;
    color: #fff;
    border-color: #ff9f43;
}

