.section {
    position: relative;
    overflow: unset !important;
}

.section .wrap {
    max-width: 70%;
    margin: auto;
    padding-top: 30px;
}

.section .r {
    position: absolute;
    right: 0;
    top: -92px;
}

/**/
.section .content .images {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.section .content .images .list {
    text-align: center;
    cursor: pointer;
}

.section .content .images .list:not(:last-child) {
    margin: 0 142px 0 0;
}

.section .content .images .list .circle {
    width: 115px;
    height: 115px;
    background: #F4FAFC;
    border: 1px solid #E0F0F7;
    box-shadow: 5px 2px 9px 12px rgba(237, 246, 250, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    position: relative;
}

.section .content .images .list .circle .rote {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: 2s rota infinite linear;
    animation-play-state: paused;
}

.section .content .images .list .text {
    font-size: 16px;
    color: #666;
    position: relative;
    width: fit-content;
    margin: auto;
    overflow: hidden;
}

.section .content .images .list .text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #131313;
    opacity: 0.8;
}

.section .content .images .list:hover .text:after {
    animation: 0.6s line forwards;
}

.section .content .images .list:hover .circle .rote{
    animation-play-state: unset;
}

@keyframes line {
    0% {
      transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.section .content .introduction {
    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-align: center;
    margin: 0 0 60px 0;
}

.section .content .picture {
    width: 988px;
    height: 459px;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
}

.section .content .picture img {
    width: 100%;
    height: 100%;
    transition: 3s;
}

.section .content .picture:hover img {
    transform: scale(1.1);
}