.home_title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    p {
        font-family: Source_Han_Regular;
        font-weight: 400;
        font-size: calc(8px + 0.5rem);
        color: #054191;
        line-height: calc(10px + 1.5rem);

    }

    div {
        width: calc(20px + 4rem);
        height: calc(2px + 0.25rem);
        background: #007DBD;
        border-radius: calc(2px + 0.1rem);
        margin-top: calc(3px + 0.5rem);
    }
}

.home_more {
    width: calc(80px + 5rem);
    height: calc(14px + 2rem);
    background: #054191;
    border-radius: calc(29px + 5rem);

    a {
        width: 100%;
        height: 100%;
        font-family: Source_Han_normal;
        font-weight: 350;
        font-size: calc(8px + 0.5rem);
        color: #FFFFFF;
        line-height: calc(10px + 1.5rem);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(5px + 0.5rem);

        img {
            width: calc(10px + 0.5rem);
        }

    }
}

.two_banner_box {
    width: 100%;
    height: calc(60px + 15rem);
    position: relative;
}

.two_banner_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_banner_box .two_banner_text {
    max-width: 1600px;
    width: 85%;
    height: max-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.two_banner_box .two_banner_text .p1 {
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(6px + 0.5rem);
    color: #FFFFFF;
    line-height: calc(10px + 1.5rem);

}

.two_banner_box .two_banner_text div {
    width: calc(20px + 4rem);
    height: calc(2px + 0.25rem);
    background: #FFFFFF;
    border-radius: calc(2px + 0.1rem);
    margin-top: calc(4px + 0.5rem);
}

.two_banner_box .two_banner_text .p2 {
    font-family: Source_Han_Bold;
    font-weight: 700;
    font-size: calc(10px + 1rem);
    color: #FFFFFF;
    line-height: calc(20px + 2rem);
    letter-spacing: 1px;
    text-shadow: 0px calc(2px + 0.1rem) calc(5px + 0.25rem) rgba(0, 0, 0, 0.3);
    margin-top: calc(6px + 0.5rem);

}

.navigation_box {
    width: 100%;
    background: rgba(237, 237, 237, 0.4);
}

.navigation_box .navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: calc(11px + 3rem);
    background: rgba(237, 237, 237, 0.4);
}

.navigation_item {
    height: calc(20px + 3rem);
}

.navigation_item a {
    height: 100%;

}

.navigation_item a p {
    height: 100%;
    font-family: Source_Han_normal;
    font-weight: 350;
    font-size: calc(8px + 0.5rem);
    color: #3D3D3D;
    text-align: center;
    display: flex;
    align-items: center;
}
.navigation_item_act a p{
    color: #054191;
    border-bottom: calc(0px + 0.1rem) #054191 solid;
}

@media (max-width: 1100px){
    .home_title {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    
        p {
            font-family: Source_Han_Regular;
            font-weight: 400;
            font-size: calc(14px + 1rem);
            color: #054191;
            line-height: calc(10px + 1.5rem);
    
        }
    
        div {
            width: calc(20px + 8rem);
            height: calc(2px + 0.25rem);
            background: #007DBD;
            border-radius: calc(2px + 0.1rem);
            margin-top: calc(3px + 0.5rem) !important;
        }
    }
    .home_more {
        width: calc(70px + 12rem);
        height: calc(20px + 2rem);
       
    }
    .home_more a{
        font-size: calc(10px + 1rem);
    }
    .two_banner_box .two_banner_text .p1{
        font-size: calc(10px + 1rem);
    }
    .two_banner_box .two_banner_text .p2{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .navigation_box{
        padding: 0 7.5%;
        overflow: scroll;
    }
    .navigation_box .navigation{
        width: max-content;
    }
    .navigation_item{
        width: max-content;
        height: calc(36px + 3rem);
    }
    .navigation_item a p{
        font-size: calc(10px + 1rem);
    }
}