/* .sec1 {
    background: #F5F2F2
} */

body {
    background: #F5F2F2
}

.sec1 .wrap {
    width: 1440px;
    margin: 0 auto;
    padding: 100px 0 70px;
    display: flex;
    flex-wrap: wrap
}

.sec1 .wrap .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 460px;
    height: 93px;
    background: #FFFFFF;
    padding: 0 27px 0 30px;
    margin-bottom: 30px
}

.sec1 .wrap .item:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #C8161D, #EBA011);
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.6s
}

.sec1 .wrap .item:after {
    content: "";
    width: 4px;
    height: 100%;
    background: #C8161D;
    position: absolute;
    top: 0;
    left: 0
}

.sec1 .wrap .item:not(:nth-child(3n)) {
    margin-right: 30px
}

.sec1 .wrap .item p {
    font-weight: 400;
    font-size: 22px;
    color: #800000;
    position: relative;
    z-index: 10;
    transition: 0.6s
}

.sec1 .wrap .item .iconfont {
    position: relative;
    width: 39px;
    height: 39px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #800000
}

.sec1 .wrap .item .iconfont .cir {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.3;
    animation: 3s scale linear infinite
}

.sec1 .wrap .item .iconfont .cir:nth-child(2) {
    animation-delay: 0.5s
}

.sec1 .wrap .item .iconfont .cir:nth-child(3) {
    animation-delay: 1s
}

.sec1 .wrap .item .iconfont .cir:nth-child(4) {
    animation-delay: 1.5s
}

.sec1 .wrap .item .iconfont .cir:nth-child(5) {
    animation-delay: 2s
}

.sec1 .wrap .item .iconfont .cir:nth-child(6) {
    animation-delay: 2.5s
}

.sec1 .wrap .item:hover:after {
    opacity: 0
}

.sec1 .wrap .item:hover:before {
    transform: scaleX(1)
}

.sec1 .wrap .item:hover p {
    color: #FFFFFF
}

@keyframes scale {
    100% {
        transform: scale(4);
        opacity: 0
    }
}

@media screen and (max-width: 1920px) {
    .sec1 .wrap {
        width: 75vw;
        padding: 5.20833333vw 0 3.64583333vw;
      }
      .sec1 .wrap .item {
        width: 23.95833333vw;
        height: 4.84375vw;
        padding: 0 1.40625vw 0 1.5625vw;
        margin-bottom: 1.5625vw;
      }
      .sec1 .wrap .item:after {
        width: 0.20833333vw;
      }
      .sec1 .wrap .item:not(:nth-child(3n)) {
        margin-right: 1.5625vw;
      }
      .sec1 .wrap .item p {
        font-size: 1.14583333vw;
      }
      .sec1 .wrap .item .iconfont {
        width: 2.03125vw;
        height: 2.03125vw;
        font-size: 0.9375vw;
      }
      
}
@media screen and (max-width: 1024px) {
    .sec1 .wrap{
        width: 90%;
        justify-content: space-between;   
    }
    .sec1 .wrap .item {
        width: 49%;
    }
    .sec1 .wrap .item:not(:nth-child(3n)){
        margin-right: 0;
    }

    .sec1 .wrap .item{
        margin-bottom: 20px;
        height: 60px;
        padding: 0 20px;
    }
    .sec1 .wrap .item p {
        font-size: 14px;
    }
    .sec1 .wrap .item .iconfont{
        font-size: 12px;
        width: 20px;
        height: 20px;
    }
    .sec1 .wrap .item:after {
        width: 3px;
    }
}

@media screen and (max-width: 540px) {
    .sec1 .wrap .item {
        width: 100%;
        height: 50px;
    }
    .sec1 .wrap{
        padding: 40px 0;
    }
}
