.common_brand {
    background: #F6F5F8
}

.common_cut {
    position: relative;
    cursor: pointer;
    border-radius: 28px 28px 0 0
}

.common_cut:hover .show p, .common_cut:hover .show .iconfont {
    color: var(--color)
}

.common_cut.on .hide {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.common_cut .show {
    width: 160px;
    height: 56px;
    border-bottom: 1px solid #E4E3E6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
    position: relative;
    z-index: 3;
}

.common_cut .show p {
    font-weight: 500;
    font-size: 16px;
    color: #111111;
    transition: .6s ease
}

.common_cut .show .iconfont {
    font-size: 18px;
    color: #000;
    transition: .6s ease
}

.common_cut .hide {
    width: 100%;
    position: absolute;
    top: 112%;
    left: 0;
    padding: 15px 0;
    z-index: 2;
    border: 1px solid #E4E3E6;
    border-radius: 4px;
    background: #fff;
    transform: translateY(10px);
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;

    max-height: 400px;
    overflow-y: auto;
    box-sizing: border-box;

}

.common_cut .hide .list {
    font-size: 14px;
    line-height: 40px;
    color: #111;
    padding: 0 17px;
    transition: .3s ease
}

.common_cut .hide .list:hover {
    color: var(--color)
}

.investor1 {
    background: #F6F5F8;
    padding: 100px 0;
    position: relative
}

.investor1 .wrap {
    width: 1440px;
    margin: auto
}

.investor1 .wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

.investor1 .wrap .top .title {
    font-weight: bold;
    font-size: 36px;
    color: #111111
}

.investor1 .wrap .content {
    margin: 50px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px
}

.investor1 .wrap .content .item {
    width: 341px;
    height: 261px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E4E3E6;
    padding: 40px 29px;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden
}
.investor1 .wrap .content .item .time{
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin: 0 0 30px;
    transition: .6s ease;
    display: block;
}
.investor1 .wrap .content .item:hover .time{
    color: #fff;
}
.investor1 .wrap .content .item:hover:after {
    opacity: 1
}

.investor1 .wrap .content .item:hover .icon img:first-child {
    opacity: 0
}

.investor1 .wrap .content .item:hover .icon img:nth-child(2) {
    opacity: 1
}

.investor1 .wrap .content .item:hover .p1 {
    color: #fff
}

.investor1 .wrap .content .item:hover .end p, .investor1 .wrap .content .item:hover .end .iconfont {
    color: #fff
}

.investor1 .wrap .content .item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(235deg, #FCB59D, #E75624);
    z-index: -1;
    transition: .6s ease;
    opacity: 0
}

.investor1 .wrap .content .item .icon {
    width: 40px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 27px;
    position: relative
}

.investor1 .wrap .content .item .icon img {
    transition: .6s ease
}

.investor1 .wrap .content .item .icon img:nth-child(2) {
    opacity: 0;
    position: absolute
}

.investor1 .wrap .content .item .p1 {
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    padding: 0 0 50px;
    margin: 0 0 30px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    transition: .6s ease;

}

.investor1 .wrap .content .item .end {
    display: flex;
    align-items: center;
    gap: 7px;
}

.investor1 .wrap .content .item .end p {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    transition: .6s ease
}

.investor1 .wrap .content .item .end .iconfont {
    font-size: 18px;
    color: #EA5520;
    transition: .6s ease
}

.investor2 {
    background: #fff;
    padding: 105px 0
}

.investor2 .wrap {
    width: 1440px;
    margin: auto
}

.investor2 .wrap .title {
    font-weight: bold;
    font-size: 36px;
    color: #111111
}

.investor2 .wrap .content {
    margin: 50px 0 0 0
}

.investor2 .wrap .content .item {
    border-bottom: 1px solid #E3E4EB;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block
}

.investor2 .wrap .content .item:not(:last-child) {
    margin: 0 0 20px
}

.investor2 .wrap .content .item .num {
    font-family: "Helvetica", sans-serif;
    font-weight: bold;
    font-size: 240px;
    color: #FFFFFF;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 214px;
    transition: .6s ease
}

.investor2 .wrap .content .item .circle {
    position: absolute;
    right: 39px;
    top: 45px;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA5520;
    font-size: 20px;
    opacity: 0;
    transition: .6s ease
}

.investor2 .wrap .content .item.on .num {
    opacity: .1
}

.investor2 .wrap .content .item.on .circle {
    opacity: 1
}

.investor2 .wrap .content .item.on:after {
    opacity: 1
}

.investor2 .wrap .content .item.on .show {
    margin: 0 39px;
    color: #fff
}

.investor2 .wrap .content .item.on .show p:after {
    opacity: 1
}

.investor2 .wrap .content .item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(-90deg, #FCB59D, #E75624);
    box-shadow: 0px 10px 30px 0px rgba(58, 18, 4, 0.15);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: .6s ease
}

.investor2 .wrap .content .item .show {
    height: 72px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
    transition: .4s ease;
    position: relative;
    z-index: 1
}

.investor2 .wrap .content .item .show p {
    width: fit-content;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center
}

.investor2 .wrap .content .item .show p:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #fff;
    opacity: 0;
    transition: .6s ease;
    z-index: -1
}

.investor2 .wrap .content .item .hide {
    overflow: hidden;
    display: none
}

.investor2 .wrap .content .item .hide > div {
    margin: 20px 39px;
    transition: .6s ease
}

.investor2 .wrap .content .item .hide > div p {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px
}

.investor3 {
    padding: 76px 0 134px;
    position: relative
}

.investor3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E3E4EB
}

.investor3 .wrap {
    width: 1440px;
    margin: auto
}

.investor3 .wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

.investor3 .wrap .top .title {
    font-weight: 500;
    font-size: 36px;
    color: #111111
}

.investor3 .wrap .content {
    margin: 60px 0 0 0
}

.investor3 .wrap .content .item {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px 0 0;
    position: relative
}

.investor3 .wrap .content .item:last-child:after {
    display: none
}

.investor3 .wrap .content .item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #E3E4EB;
    transition: .3s ease
}

.investor3 .wrap .content .item:hover:after {
    background: var(--color)
}

.investor3 .wrap .content .item:hover .l p {
    color: var(--color)
}

.investor3 .wrap .content .item:hover .circle {
    opacity: 1
}

.investor3 .wrap .content .item .l {
    display: flex
}

.investor3 .wrap .content .item .l .time {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    width: 150px;
    position: relative
}

.investor3 .wrap .content .item .l .time:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 1px;
    height: 16px;
    background: #333333;
    opacity: 0.1
}

.investor3 .wrap .content .item .l p {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    transition: .6s ease
}

.investor3 .wrap .content .item .circle {
    width: 32px;
    height: 32px;
    background: #EA5520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s ease
}

.investor3 .wrap .content .item .circle .iconfont {
    font-size: 16px;
    color: #fff
}

.investor3 .wrap .content .item:first-child:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    background: #E3E4EB
}

.investor3 .wrap .more {
    width: 160px;
    height: 52px;
    background: rgba(234, 85, 32, 0);
    border-radius: 26px;
    border: 1px solid #546370;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 72px auto 0;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    transition: .6s ease
}

.investor3 .wrap .more:hover {
    background: var(--color);
    border: 1px solid var(--color);
    color: #fff
}

.investor4 {
    padding: 30px 0 140px
}

.investor4 .wrap {
    width: 1440px;
    margin: auto;
    display: flex;
    background: #F6F5F8;
    height: 420px
}

.investor4 .wrap .l {
    width: 700px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative
}

.investor4 .wrap .l:hover img {
    transform: scale(1.05)
}

.investor4 .wrap .l img {
    width: 100%;
    height: 100%;
    transition: 2s
}

.investor4 .wrap .r {
    width: 740px;
    height: 100%;
    padding: 80px 88px 52px 59px
}

.investor4 .wrap .r .p1 {
    font-weight: 500;
    font-size: 36px;
    color: #000000;
    margin: 0 0 40px
}

.investor4 .wrap .r .flex {
    display: flex;
    gap: 0 50px;
    margin: 0 0 30px
}

.investor4 .wrap .r .flex .list1 .iconfont {
    transform: scale(0.85)
}

.investor4 .wrap .r .flex .list {
    display: flex;
    align-items: center
}

.investor4 .wrap .r .flex .list .iconfont {
    color: #EA5520;
    font-size: 24px;
    margin: 0 20px 0 0
}

.investor4 .wrap .r .flex .list a {
    font-weight: 400;
    font-size: 20px;
    color: #333333
}

.investor4 .wrap .r .end {
    margin: 68px 0 0 0;
    display: flex;
}

.investor4 .wrap .r .end .more {
    width: 156px;
    height: 50px;
    background: #EA5520;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px
}

.investor4 .wrap .r .end .more p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF
}

.investor4 .wrap .r .end .more .iconfont {
    font-size: 16px;
    color: #fff
}

/**/
.new_section{
    padding: 120px 0;
}
.new_section .wrap{
    width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.new_section .wrap .item{
    width: 700px;
}
.new_section .wrap .item .img{
    width: 100%;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
}
.new_section .wrap .item .img:hover img{
    transform: scale(1.05);
}
.new_section .wrap .item .img img{
    width: 100%;
    height: 100%;
    transition: 1s;
}
.new_section .wrap .item .text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 21px;
    margin: 27px 0 0 0;
}
.new_section .wrap .item .text .p1{
    font-weight: normal;
    font-size: 24px;
    color: #111111;
}
.new_section .wrap .item .text .more{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.new_section .wrap .item .text .more p{
    font-weight: normal;
    font-size: 16px;
    color: #EA5520;
}
.new_section .wrap .item .text .more .iconfont{
    font-size: 26px;
    color: #EA5520;
}

/**/
@media screen and (max-width: 1919px) {
    .common_cut{
        border-radius: 1.4583333333vw 1.4583333333vw 0px 0px;
    }
    .common_cut .show{
        width: 8.3333333333vw;
        height: 2.9166666667vw;
        gap: 0px 0.5208333333vw;
    }
    .common_cut .show p{
        font-size: 0.8333333333vw;
    }
    .common_cut .show .iconfont{
        font-size: 0.9375vw;
    }
    .common_cut .hide{
        padding: 0.78125vw 0px;
        border-radius: 0.2083333333vw;
        transform: translateY(0.5208333333vw);
    }
    .common_cut .hide .list{
        font-size: 0.7291666667vw;
        line-height: 2.0833333333vw;
        padding: 0px 0.8854166667vw;
    }
    .investor1{
        padding: 5.2083333333vw 0px;
    }
    .investor1 .wrap{
        width: 75vw;
    }
    .investor1 .wrap .top .title{
        font-size: 1.875vw;
    }
    .investor1 .wrap .content{
        margin: 2.6041666667vw 0px 0px;
        gap: 1.3020833333vw;
    }
    .investor1 .wrap .content .item{
        width: 17.7604166667vw;
        height: 13.59375vw;
        border-radius: 0.625vw;
        padding: 2.0833333333vw 1.5104166667vw;
    }
    .investor1 .wrap .content .item .time{
        font-size: 0.8333333333vw;
        margin: 0px 0px 1.5625vw;
    }
    .investor1 .wrap .content .item .icon{
        width: 2.0833333333vw;
        height: 2.4479166667vw;
        margin: 0px 0px 1.40625vw;
    }
    .investor1 .wrap .content .item .p1{
        font-size: 1.0416666667vw;
        padding: 0px 0px 2.6041666667vw;
        margin: 0px 0px 1.5625vw;
    }
    .investor1 .wrap .content .item .end{
        gap: 0.3645833333vw;
    }
    .investor1 .wrap .content .item .end p{
        font-size: 0.7291666667vw;
    }
    .investor1 .wrap .content .item .end .iconfont{
        font-size: 0.9375vw;
    }
    .investor2{
        padding: 5.46875vw 0px;
    }
    .investor2 .wrap{
        width: 75vw;
    }
    .investor2 .wrap .title{
        font-size: 1.875vw;
    }
    .investor2 .wrap .content{
        margin: 2.6041666667vw 0px 0px;
    }
    .investor2 .wrap .content .item:not(:last-child){
        margin: 0px 0px 1.0416666667vw;
    }
    .investor2 .wrap .content .item .num{
        font-size: 12.5vw;
        right: 11.1458333333vw;
    }
    .investor2 .wrap .content .item .circle{
        right: 2.03125vw;
        top: 2.34375vw;
        width: 2.6041666667vw;
        height: 2.6041666667vw;
        font-size: 1.0416666667vw;
    }
    .investor2 .wrap .content .item.on .show{
        margin: 0px 2.03125vw;
    }
    .investor2 .wrap .content .item::after{
        box-shadow: rgba(58, 18, 4, 0.15) 0px 0.5208333333vw 1.5625vw 0px;
        border-radius: 0.625vw;
    }
    .investor2 .wrap .content .item .show{
        height: 3.75vw;
        font-size: 1.0416666667vw;
    }
    .investor2 .wrap .content .item .hide > div{
        margin: 1.0416666667vw 2.03125vw;
    }
    .investor2 .wrap .content .item .hide > div p{
        font-size: 0.7291666667vw;
        line-height: 1.5625vw;
    }
    .investor3{
        padding: 3.9583333333vw 0px 6.9791666667vw;
    }
    .investor3 .wrap{
        width: 75vw;
    }
    .investor3 .wrap .top .title{
        font-size: 1.875vw;
    }
    .investor3 .wrap .content{
        margin: 3.125vw 0px 0px;
    }
    .investor3 .wrap .content .item{
        height: 4.0625vw;
        padding: 0px 2.1875vw 0px 0px;
    }
    .investor3 .wrap .content .item .l .time{
        font-size: 0.8333333333vw;
        width: 7.8125vw;
    }
    .investor3 .wrap .content .item .l .time::after{
        right: 1.5625vw;
        height: 0.8333333333vw;
    }
    .investor3 .wrap .content .item .l p{
        font-size: 0.9375vw;
    }
    .investor3 .wrap .content .item .circle{
        width: 1.6666666667vw;
        height: 1.6666666667vw;
    }
    .investor3 .wrap .content .item .circle .iconfont{
        font-size: 0.8333333333vw;
    }
    .investor3 .wrap .more{
        width: 8.3333333333vw;
        height: 2.7083333333vw;
        border-radius: 1.3541666667vw;
        margin: 3.75vw auto 0px;
        font-size: 0.8333333333vw;
    }
    .investor4{
        padding: 1.5625vw 0px 7.2916666667vw;
    }
    .investor4 .wrap{
        width: 75vw;
        height: 21.875vw;
    }
    .investor4 .wrap .l{
        width: 36.4583333333vw;
        border-radius: 1.25vw;
    }
    .investor4 .wrap .r{
        width: 38.5416666667vw;
        padding: 4.1666666667vw 4.5833333333vw 2.7083333333vw 3.0729166667vw;
    }
    .investor4 .wrap .r .p1{
        font-size: 1.875vw;
        margin: 0px 0px 2.0833333333vw;
    }
    .investor4 .wrap .r .flex{
        gap: 0px 2.6041666667vw;
        margin: 0px 0px 1.5625vw;
    }
    .investor4 .wrap .r .flex .list .iconfont{
        font-size: 1.25vw;
        margin: 0px 1.0416666667vw 0px 0px;
    }
    .investor4 .wrap .r .flex .list a{
        font-size: 1.0416666667vw;
    }
    .investor4 .wrap .r .end{
        margin: 3.5416666667vw 0px 0px;
    }
    .investor4 .wrap .r .end .more{
        width: 8.125vw;
        height: 2.6041666667vw;
        border-radius: 1.3020833333vw;
        gap: 0px 0.2604166667vw;
    }
    .investor4 .wrap .r .end .more p{
        font-size: 0.8333333333vw;
    }
    .investor4 .wrap .r .end .more .iconfont{
        font-size: 0.8333333333vw;
    }
    .new_section{
        padding: 6.25vw 0px;
    }
    .new_section .wrap{
        width: 75vw;
    }
    .new_section .wrap .item{
        width: 36.4583333333vw;
    }
    .new_section .wrap .item .img{
        height: 23.9583333333vw;
        border-radius: 1.0416666667vw;
    }
    .new_section .wrap .item .text{
        padding: 0px 2.0833333333vw 0px 1.09375vw;
        margin: 1.40625vw 0px 0px;
    }
    .new_section .wrap .item .text .p1{
        font-size: 1.25vw;
    }
    .new_section .wrap .item .text .more{
        gap: 0.4166666667vw;
    }
    .new_section .wrap .item .text .more p{
        font-size: 0.8333333333vw;
    }
    .new_section .wrap .item .text .more .iconfont{
        font-size: 1.3541666667vw;
    }
}

@media screen and (max-width: 1024px) {
    .investor1 .wrap {
        width: 90%
    }

    .investor1 .wrap .top .title {
        font-size: 24px
    }

    .investor1 {
        padding: 50px 0 55px
    }

    .common_cut {
        border-radius: 25px
    }

    .common_cut .show {
        width: 140px;
        height: 45px;
        border-radius: 0;
        gap: 0 15px
    }

    .common_cut .hide {
        padding: 19px 5% 19px 5%
    }

    .common_cut .show p {
        font-size: 13px
    }

    .common_cut .show .iconfont {
        font-size: 18px
    }

    .common_cut .hide .list {
        font-size: 14px;
        line-height: 31px;
        padding: 0px 5%
    }

    .investor1 .wrap .content {
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 30px 0 0 0;
        gap: 15px 0
    }

    .investor1 .wrap .content .item {
        width: 48%;
        height: auto;
        padding: 30px 15px
    }

    .investor1 .wrap .content .item .icon {
        width: 30px;
        height: 30px;
        margin: 0 0 17px
    }

    .investor1 .wrap .content .item .p1 {
        font-size: 14px;
        margin: 0 0 15px
    }

    .investor1 .wrap .content .item .end {
        justify-content: unset
    }

    .investor1 .wrap .content .item .end p {
        font-size: 12px
    }

    .investor1 .wrap .content .item .end .iconfont {
        font-size: 14px;
        margin: 0 0 0 7px
    }

    .investor2 .wrap {
        width: 90%
    }

    .investor2 .wrap .title {
        font-size: 24px
    }

    .investor2 .wrap .content {
        margin: 25px 0 0 0
    }

    .investor2 .wrap .content .item .num {
        opacity: 0.1
    }

    .investor2 .wrap .content .item .circle {
        opacity: 1
    }

    .investor2 .wrap .content .item:after {
        opacity: 1
    }

    .investor2 .wrap .content .item .show {
        margin: 0 39px;
        color: #fff
    }

    .investor2 .wrap .content .item .show p:after {
        opacity: 1
    }

    .investor2 {
        padding: 40px 0
    }

    .investor2 .wrap .content .item {
        padding: 15px 0 25px;
        flex-direction: column;
        display: flex
    }

    .investor2 .wrap .content .item .num {
        font-size: 50px;
        right: 20px
    }

    .investor2 .wrap .content .item .show {
        padding: 0 5% !important;
        width: 100%;
        margin: 0 !important;
        height: auto !important;
        font-size: 16px
    }

    .investor2 .wrap .content .item .show p {
        padding: 15px 0;
        width: 100%
    }

    .investor2 .wrap .content .item .hide {
        display: block !important
    }

    .investor2 .wrap .content .item .hide > div {
        margin: 15px 5%
    }

    .investor2 .wrap .content .item .hide > div p {
        font-size: 12px;
        line-height: 25px
    }

    .investor2 .wrap .content .item .circle {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin: 0 0 0 5%
    }

    .investor2 .wrap .content .item:not(:last-child) {
        margin: 0px 0px 20px
    }

    .investor3 {
        padding: 40px 0 40px
    }

    .investor3 .wrap {
        width: 90%
    }

    .investor3 .wrap .top .title {
        font-size: 24px
    }

    .investor3 .wrap .content {
        margin: 25px 0 0 0
    }

    .investor3 .wrap .content .item {
        height: auto;
        padding: 25px 0
    }

    .investor3 .wrap .content .item .l .time {
        font-size: 12px;
        width: fit-content;
        margin: 0 0 10px
    }

    .investor3 .wrap .content .item .l .time::after {
        display: none
    }

    .investor3 .wrap .content .item .l p {
        font-size: 13px;
        line-height: 25px
    }

    .investor3 .wrap .content .item .l {
        flex-direction: column
    }

    .investor3 .wrap .more {
        width: 120px;
        height: 40px;
        font-size: 12px;
        border-radius: 25px
    }

    .investor4 {
        padding: 50px 0
    }

    .investor4 .wrap {
        width: 90%;
        height: auto;
        flex-direction: column
    }

    .investor4 .wrap .l {
        width: 100%
    }

    .investor4 .wrap .r {
        width: 100%;
        padding: 32px 5%
    }

    .investor4 .wrap .r .p1 {
        font-size: 22px;
        margin: 0 0 18px
    }

    .investor4 .wrap .r .flex {
        flex-direction: column
    }

    .investor4 .wrap .r .flex {
        gap: 20px 0;
        margin: 0 0 20px
    }

    .investor4 .wrap .r .flex .list .iconfont {
        font-size: 22px;
        margin: 0 7px 0 0
    }

    .investor4 .wrap .r .flex .list a {
        font-size: 13px
    }

    .investor4 .wrap .r .end {
        margin: 35px 0 0 0;
        justify-content: unset
    }

    .investor4 .wrap .r .end .more {
        width: 120px;
        height: 42px;
        border-radius: 25px;
        gap: 0 5px
    }

    .investor4 .wrap .r .end .more p {
        font-size: 13px
    }

    .investor4 .wrap .r .end .more .iconfont {
        font-size: 15px
    }

    /**/
    .investor1 .wrap .content .item .end{
        gap: 5px;
    }
    .investor1 .wrap .content .item .end .iconfont{
        margin: 0;
    }
    .investor1 .wrap .content .item .time{
        font-size: 13px;
        margin: 0 0 15px;
    }
    .common_banner .parallax{
        overflow: hidden;
    }
    .common_banner .common_bg{
        transform: scale(1);
    }
    .new_section{
        padding: 40px 0;
        position: relative;
        z-index: 5;
    }
    .new_section .wrap{
        width: 90%;
        flex-direction: column;
        gap: 40px;
    }
    .new_section .wrap .item{
        width: 100%;
    }
    .new_section .wrap .item .img{
        height: auto;
        border-radius: 15px;
    }
    .new_section .wrap .item .text{
        padding: 0 15px;
        margin: 15px 0 0 0;
    }
    .new_section .wrap .item .text .p1{
        font-size: 14px;
    }
    .new_section .wrap .item .text .more{
        gap: 10px;
    }
    .new_section .wrap .item .text .more p{
        font-size: 14px;
    }
    .new_section .wrap .item .text .more .iconfont{
        font-size: 22px;
    }
}
