.cc-culture-part {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.cc-culture-part div {
    font-size: 20px;
    margin: 0 40px;
}

.cc-culture-part div:hover {
    color: #4B65B7;
    cursor: pointer;
}

.cc-img-layout {
    display: flex;
    width: 100%;
}

.cc-main-img {
    width: 100%;
    border-radius: 0 80px 0 80px;
    margin-left: 110px;
    overflow: hidden;
}

.cc-main-img img {
    transition: all 0.5s ease 0s;
}

.cc-main-img img:hover {
    transform: scale(1.1);
}

.cc-second-img {
    display: flex;
    width: 100%;
}

.cc-second-img div {
    /* background-image: url(images/宜职院.png);
    background-repeat: no-repeat; */
    width: 25%;
    height: 180px;
    border-radius: 0 0 60px 60px;
    /* background-size: cover; */
    overflow: hidden;
}

.cc-second-img div img {
    width: 100%;
    /* 设置图片宽度为100% */
    height: 100%;
    /* 设置图片高度为100% */
    object-fit: cover;
    /* 保持宽高比，填满容器 */
    transition: all 0.5s ease 0s;
}

.cc-second-img div img:hover {
    transform: scale(1.1);
}