/* Tab section */
.tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.tab-container>*+* {
    margin-left: 24px;
}

.tab-item {
    display: flex;
    align-items: center;
    height: 44px;
    font-size: 14px;
    line-height: 20px;
    cursor: default;
    padding: 0 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: var(--common_line_light_color);
}

.tab-item-icon {
    width: 28px;
    height: 28px;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.tab-item:hover .tab-item-icon {
    transform: scale(1.1);
}

.tab-item-active {
    font-weight: 500;
    background: var(--common_overlay_area_color);
}

/* Tab content */
.tab-content {
    position: relative;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    margin-top: 24px;
    background: radial-gradient(42% 54% at 46% 115%, #D0CBFF 0%, rgba(241, 242, 254, 0) 100%),
        radial-gradient(36% 46% at 83% -9%, #C6D5FF 0%, rgba(241, 242, 254, 0) 100%),
        radial-gradient(62% 76% at 26% 45%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(53% 53% at 68% 100%, #F2F7F7 0%, rgba(242, 245, 255, 0) 100%),
        radial-gradient(54% 54% at 13% -10%, #FEF2F2 0%, rgba(242, 245, 255, 0) 100%),
        radial-gradient(55% 141% at 100% 100%, #E4EBFF 0%, rgba(242, 245, 255, 0) 100%),
        linear-gradient(112deg, #E9E7FF 0%, #E4EBFF 100%), #FFFFFF;
    height: 480px;
    overflow: hidden;
    border-radius: 40px;
}

.tab-content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px;
    height: 480px;
    object-fit: cover;
}

.tab-content-active {
    display: flex;
}

.tab-content-left {
    position: relative;
    min-width: 350px;
    margin-right: 60px;
}

.tab-content-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}

.tab-content-feature-list {
    margin-top: 8px;
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.tab-content-feature-item {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px;
}

.tab-content-feature-item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #A1BDFF;
}

.tab-content-feature-item+.tab-content-feature-item {
    margin-top: 12px;
}

.tab-content-right {
    border-radius: 16px;
    overflow: hidden;
    box-sizing: content-box;
    flex: 0 0 auto;
    width: 585px;
    height: 370px;
}

.tab-content-right.border {
    border: 10px solid var(--common_white2_color);
    box-shadow: 0px 6.86px 31.99px 0px var(--common_black5_color);
}

.tab-content-right.video {
    border: 1px solid var(--common_line_light_color);
}

.tab-content-right img,
.tab-content-right video {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}