.common_title {
    display: flex;
    align-items: center;
}

.common_title .drop {
    margin-right: 20px;
}

.common_title h3 {
    color: #333;
    font-size: 34px;
}

.section1 .wrap {
    padding: 60px 0;
    width: 1400px;
    margin: 0 auto;
}

.section1 .wrap .top {
    display: flex;
    justify-content: space-between;
}

.section1 .wrap .top .left {
    padding: 5px;
    flex: 1;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.section1 .wrap .top .left .img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1 .wrap .top .left .img img {
    width: 100%;
}

.section1 .wrap .top .left .text {
    justify-content: center;
    padding: 0 40px;
    height: 60px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.section1 .wrap .top .right {
    width: 700px;
    /* height: fit-content; */
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 60px;
    background: #FFFFFF;

    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.section1 .wrap .top .right .title {
    padding: 10px 30px;
    background-color: #F5F8FD;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section1 .wrap .top .right .title h3 {
    font-size: 20px;
    color: #333333;
}

.section1 .wrap .top .right .title a {
    color: #333333;
    font-weight: 700;
    transition: all 0.6s;
}

.section1 .wrap .top .right .title a:hover {
    color: #3055A5;
}

.section1 .wrap .top .right .title a span {
    font-size: 24px;
}

.section1 .wrap .top .right .scroll {
    height: 420px;
    overflow: scroll;
}

.section1 .wrap .top .right .scroll::-webkit-scrollbar {
    height: 0;
}

.section1 .wrap .top .right .list {
    padding: 10px 30px 20px;
}

.section1 .wrap .top .right .list .item {
    display: block;
    padding: 15px 0;
}

.section1 .wrap .top .right .list .item:hover h4 {
    color: #3055A5;
}

.section1 .wrap .top .right .list .item:not(:last-child) {
    border-bottom: 1px solid #E9E9E9;
}

.section1 .wrap .top .right .list .item h4 {
    transition: all 0.6s;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 2;
}

.section1 .wrap .top .right .list .item .flex {
    display: flex;
    justify-content: space-between;
}

.section1 .wrap .top .right .list .item .flex .type {
    width: fit-content;
    border-radius: 20px;
    background: linear-gradient(120deg, #3055A5, #3F80C5);
    padding: 3px 16px;
    color: #fff;
    font-size: 12px;
}

.section1 .wrap .top .right .list .item .flex .information {
    display: flex;
    gap: 30px;
}

.section1 .wrap .top .right .list .item .flex .information .trem {
    display: flex;
    color: #999999;
    font-size: 14px;
}

.section1 .wrap .top .right .list .item .flex .information .trem .icon {
    margin-right: 10px;
}

.section1 .wrap .bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-top: 33px;
}

.section1 .wrap .bottom .item {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: all .6s;
}

.section1 .wrap .bottom .item:hover {
    transform: scale(1.05);
}

.section1 .wrap .bottom .item img {
    transition: all 2s;
    width: 100%;
}

.section2 .wrap {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.section2 .wrap .main {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.section2 .wrap .main .item {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 680px;
    display: flex;
    transition: all .6s;
    background: #FFFFFF;
}

.section2 .wrap .main .item:hover {
    transform: scale(1.05);
}

.section2 .wrap .main .item .img {
    margin-right: 20px;
    overflow: hidden;
    border-radius: 10px;
    width: 240px;
    height: 160px;
}

.section2 .wrap .main .item .img img {
    width: 100%;
    transition: all 2s;
    height: 100%;
}

.section2 .wrap .main .item .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section2 .wrap .main .item .text h4 {
    color: #333333;
    font-size: 18px;
    margin-bottom: 40px;
    transition: all 0.6s;
}

.section2 .wrap .main .item .text .flex {
    display: flex;
    justify-content: space-between;
}

.section2 .wrap .main .item .text .flex .type {
    width: fit-content;
    border-radius: 20px;
    background: linear-gradient(120deg, #3055A5, #3F80C5);
    padding: 3px 16px;
    color: #fff;
    font-size: 12px;
}

.section2 .wrap .main .item .text .flex .information {
    display: flex;
    gap: 30px;
}

.section2 .wrap .main .item .text .flex .information .trem {
    display: flex;
    color: #999999;
    font-size: 14px;
}

.section2 .wrap .main .item .text .flex .information .trem .icon {
    margin-right: 10px;
}

/* .section2 .wrap .main .item:hover .img img {
  transform: scale(1.1);
} */
.section2 .wrap .main .item:hover .text h4 {
    color: #3055A5;
}

.section3 {
    position: relative;
}

.section3 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section3 .bg img {
    width: 100%;
    height: 100%;
}

.section3 .wrap {
    width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.section3 .wrap .main {
    display: flex;
    flex-wrap: wrap;
    margin-top: 38px;
    justify-content: space-between;
    gap: 40px 0;
}

.section3 .wrap .main .item {
    display: flex;
    align-items: center;
    padding: 30px 20px 30px 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    width: 320px;
    position: relative;
    cursor: pointer;
}

.section3 .wrap .main .item:nth-child(10n),
.section3 .wrap .main .item:nth-child(10n-9) {
    width: 680px;
}

.section3 .wrap .main .item .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section3 .wrap .main .item .img img {
    width: 100%;
    height: 100%;
}

.section3 .wrap .main .item .icon {
    margin-right: 30px;
    width: 80px;
    height: 80px;
}

.section3 .wrap .main .item .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.section3 .wrap .main .item .content .go {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.6s;
}

.section3 .wrap .main .item .content .go span {
    color: #3055A5;
    transition: all 0.6s;
}

.section3 .wrap .main .item .content .text h4 {
    color: #333333;
    font-size: 26px;
    transition: all 0.6s;
    margin-bottom: 10px;
}

.section3 .wrap .main .item .content .text p {
    color: #666;
    font-size: 16px;
}

.section3 .wrap .main .item:hover .content .text h4 {
    color: #3055A5;
}

.section3 .wrap .main .item:hover .content .go {
    background-color: #3055A5;
}

.section3 .wrap .main .item:hover .content .go span {
    color: #fff;
}

@media screen and (max-width: 1919px) {
    .common_title .drop {
        margin-right: 1.0416666667vw;
    }

    .common_title h3 {
        font-size: 1.7708333333vw;
    }

    .section1 .wrap {
        padding: 3.125vw 0px;
        width: 72.9166666667vw;
    }

    .section1 .wrap .top .left {
        padding: 0.2604166667vw;
        border-radius: 0.5208333333vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
        margin-right: 1.5625vw;
    }

    .section1 .wrap .top .left .img {
        border-radius: 0.5208333333vw;
    }

    .section1 .wrap .top .left .text {
        padding: 0px 2.0833333333vw;
        height: 3.125vw;
        font-size: 0.9375vw;
    }

    .section1 .wrap .top .right {
        width: 36.4583333333vw;
        border-radius: 0.5208333333vw;
        top: 3.125vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw 0px;
    }

    .section1 .wrap .top .right .title {
        padding: 0.5208333333vw 1.5625vw;
    }

    .section1 .wrap .top .right .title h3 {
        font-size: 1.0416666667vw;
    }

    .section1 .wrap .top .right .title a span {
        font-size: 1.25vw;
    }

    .section1 .wrap .top .right .scroll {
        height: 21.875vw;
    }

    .section1 .wrap .top .right .list {
        padding: 0.5208333333vw 1.5625vw 1.0416666667vw;
    }

    .section1 .wrap .top .right .list .item {
        padding: 0.78125vw 0px;
    }

    .section1 .wrap .top .right .list .item h4 {
        font-size: 0.9375vw;
        margin-bottom: 0.5208333333vw;
    }

    .section1 .wrap .top .right .list .item .flex .type {
        border-radius: 1.0416666667vw;
        padding: 0.15625vw 0.8333333333vw;
        font-size: 0.625vw;
    }

    .section1 .wrap .top .right .list .item .flex .information {
        gap: 1.5625vw;
    }

    .section1 .wrap .top .right .list .item .flex .information .trem {
        font-size: 0.7291666667vw;
    }

    .section1 .wrap .top .right .list .item .flex .information .trem .icon {
        margin-right: 0.5208333333vw;
    }

    .section1 .wrap .bottom {
        gap: 2.0833333333vw;
        margin-top: 1.71875vw;
    }

    .section1 .wrap .bottom .item {
        border-radius: 0.5208333333vw;
    }

    .section2 .wrap {
        width: 72.9166666667vw;
        padding-bottom: 3.125vw;
    }

    .section2 .wrap .main {
        margin-top: 2.0833333333vw;
        gap: 2.0833333333vw;
    }

    .section2 .wrap .main .item {
        padding: 1.0416666667vw;
        border-radius: 0.5208333333vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
        width: 35.4166666667vw;
    }

    .section2 .wrap .main .item .img {
        margin-right: 1.0416666667vw;
        border-radius: 0.5208333333vw;
        width: 12.5vw;
        height: 8.3333333333vw;
    }

    .section2 .wrap .main .item .text h4 {
        font-size: 0.9375vw;
        margin-bottom: 2.0833333333vw;
    }

    .section2 .wrap .main .item .text .flex .type {
        border-radius: 1.0416666667vw;
        padding: 0.15625vw 0.8333333333vw;
        font-size: 0.625vw;
    }

    .section2 .wrap .main .item .text .flex .information {
        gap: 1.5625vw;
    }

    .section2 .wrap .main .item .text .flex .information .trem {
        font-size: 0.7291666667vw;
    }

    .section2 .wrap .main .item .text .flex .information .trem .icon {
        margin-right: 0.5208333333vw;
    }

    .section3 .wrap {
        width: 72.9166666667vw;
        padding: 2.0833333333vw 0px;
    }

    .section3 .wrap .main {
        margin-top: 1.9791666667vw;
        gap: 2.0833333333vw 0px;
    }

    .section3 .wrap .main .item {
        padding: 1.5625vw 1.0416666667vw 1.5625vw 1.5625vw;
        border-radius: 0.5208333333vw;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0.5208333333vw;
        width: 16.6666666667vw;
    }

    .section3 .wrap .main .item:nth-child(10n), .section3 .wrap .main .item:nth-child(10n-9) {
        width: 35.4166666667vw;
    }

    .section3 .wrap .main .item .icon {
        margin-right: 1.5625vw;
        width: 4.1666666667vw;
        height: 4.1666666667vw;
    }

    .section3 .wrap .main .item .content .go {
        width: 1.5625vw;
        height: 1.5625vw;
    }

    .section3 .wrap .main .item .content .text h4 {
        font-size: 1.3541666667vw;
        margin-bottom: 0.5208333333vw;
    }

    .section3 .wrap .main .item .content .text p {
        font-size: 0.8333333333vw;
    }
}

@media screen and (max-width: 768px) {
    .section1 .wrap .top .right .list .item .flex .information .trem .icon, .section2 .wrap .main .item .text .flex .information .trem .icon {
        width: 0.72916666666667vw;
    }

    .section3 .wrap .main .item .content .go span {
        font-size: 0.833333333333vw;
    }

    .section1 .wrap {
        width: 90%;
        margin: 0 auto;
        padding: 30px 0 50px;
    }

    .section1 .wrap .top {
        display: block;
        width: 100%;
    }

    .section1 .wrap .top .left {
        margin: 0 0 20px;
        width: 100%;
    }

    .section1 .wrap .top .left .text {
        padding: 0 30px;
        height: 50px;
        font-size: 16px;
    }

    .section1 .wrap .top .right {
        width: 100%;
    }

    .section1 .wrap .top .right .title {
        padding: 15px 20px;
    }

    .section1 .wrap .top .right .title h3 {
        font-size: 20px;
    }

    .section1 .wrap .top .right .scroll {
        padding: 0;
        height: 360px;
    }

    .section1 .wrap .top .right .list {
        padding: 20px;
    }

    .section1 .wrap .top .right .list .item {
        padding: 20px 0;
    }

    .section1 .wrap .top .right .list .item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section1 .wrap .top .right .list .item .flex .type {
        font-size: 14px;
        padding: 5px 15px;
        border-radius: 20px;
    }

    .section1 .wrap .top .right .list .item .flex .information {
        gap: 15px;
    }

    .section1 .wrap .top .right .list .item .flex .information .trem {
        font-size: 14px;
    }

    .section1 .wrap .top .right .list .item .flex .information .trem .icon {
        width: 14px;
        margin-right: 4px;
    }

    .section1 .wrap .bottom {
        margin: 40px 0 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px 0;
    }

    .section2 .wrap {
        width: 90%;
        padding: 0 0 40px;
    }

    .common_title .drop {
        margin-right: 10px;
    }

    .common_title h3 {
        font-size: 20px;
    }

    .section2 .wrap .main {
        margin: 30px 0 0;
        gap: 30px 0;
    }

    .section2 .wrap .main .item {
        width: 100%;
        border-radius: 6px;
        display: block;
        padding: 20px;
    }

    .section2 .wrap .main .item .img {
        width: 100%;
        height: 51vw;
        margin: 0 0 20px;
    }

    .section2 .wrap .main .item .text h4 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .section2 .wrap .main .item .text .flex .type {
        font-size: 14px;
        padding: 5px 15px;
        border-radius: 20px;
    }

    .section2 .wrap .main .item .text .flex .information {
        gap: 15px;
    }

    .section2 .wrap .main .item .text .flex .information .trem {
        font-size: 14px;
        align-items: center;
    }

    .section2 .wrap .main .item .text .flex .information .trem .icon {
        width: 14px;
        margin-right: 4px;
    }

    .section2 .wrap .main .item .text .flex .information .trem .icon img {
        display: block;
    }

    .section3 .wrap {
        width: 90%;
        padding: 40px 0;
    }

    .section3 .wrap .main {
        margin: 30px 0 0;
        gap: 20px 0;
    }

    .section3 .wrap .main .item {
        width: 100% !important;
        border-radius: 6px;
        padding: 20px;
    }
    .section3 .wrap .main .item .icon {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    .section3 .wrap .main .item .content .text h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .section3 .wrap .main .item .content .text p {
        font-size: 14px;
    }
    .section3 .wrap .main .item .content .go {
        width: 30px;
        height: 30px;
    }
    .section3 .wrap .main .item .content .go span {
        font-size: 12px;
    }
}
