.two_banner {
    width: 100%;
    height: calc(120px + 20rem);
    position: relative;
}

.two_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_banner_text {
    max-width: 1440px;
    width: 85%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(3px + 0.25rem);
}

.two_banner_text .p1 {
    font-family: pingfang_medium;
    font-weight: 500;
    font-size: calc(4px + 2rem);
    color: #FFFFFF;
    line-height: calc(2px + 3rem);
}

.two_banner_text .p2 {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(4px + 1rem);
    color: #FFFFFF;
    line-height: calc(3px + 1.5rem);
}

.position_box {
    width: 100%;
    background: #FFFFFF;
    padding: calc(9px + 1rem) 0;
    box-shadow: 0px calc(2px + 0.1rem) calc(2px + 0.1rem) 0px rgba(219, 219, 219, 0.3);
}

.position {
    max-width: 1440px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.25rem);
}

.position p img {
    width: calc(9px + 0.5rem);
    margin-right: calc(3px + 0.5rem);
}

.position p {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #777777;
    line-height: calc(5px + 1rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (max-width: 1100px) {
    .two_banner_text .p1{
        font-size: calc(16px + 1rem);
    }
    .two_banner_text .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
        margin-top: calc(1px + 1rem);
    }
    .two_banner {
       
        height: calc(90px + 5rem);
       
    }
    .position p{
        font-size: calc(10px + 1rem);
    }
    .position p img {
        width: calc(12px + 0.5rem);
    
    }
}