/* 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: linear-gradient(134deg, #e3edff 0%, #ffffff 100%);
  box-shadow: 0px 6px 20px 0px rgba(4, 90, 254, 0.25);
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #045afe;
    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;
}