﻿.carousel-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
    background-color: #F4F4F4;
    margin-bottom: 100px;
}

.carousel-container {
    display: inline-flex;
    align-items: center;
}

.carousel-container .left-arrow,
.carousel-container .right-arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.carousel-content {
    margin: 0 10px;
}

.carousel-window {
    position: relative;
    width: 1160px;
    height: 380px;
    overflow: hidden;
}

.carousel-items {
    position: absolute;
    display: flex;
}

.carousel-item {
    display: inline-flex;
    justify-content: space-between;
    width: 1100px;
    padding: 0 30px;
}

.carousel-item>img {
    width: 62%;
    height: 100%;
}

.carousel-item>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
    margin: 12px 0;
}

.carousel-item>div>div:first-child {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.carousel-item>div>div:nth-child(2) {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin: 12px 0;
}

.carousel-item.EDB>div>div:nth-child(2) {
    font-size: 14px;
    line-height: 22px;
}

.carousel-item>div>div:nth-child(3)>a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #333333;
    margin-right: 32px;
    cursor: pointer;
}

.carousel-item>div>div:nth-child(3)>a:hover {
    color: #DC3023;
}

.indicator-items {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.indicator-items>.indicator {
    width: 20px;
    height: 3px;
    margin: 0 8px;
    background-color: #999999;
    cursor: pointer;
}

.indicator-items>.indicator.selected {
    width: 40px;
    background-color: #333333;
}