@media (min-width:1201px){

    .header_right_pc{
        display: flex;
    }

    .header_right_pe{
        display: none;
    }

    .header_right_pe_selectBox{
        display: none;
    }

    .zhanwei{
        height: 5vw;
    }

    .header{
        width: 100%;
        height: 5vw;
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
    }

    .header_innerBox{
        width: 95%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_left img{
        width: 16vw;
        object-fit: contain;
    }

    .header_right{
        display: flex;
        justify-content: space-between;
    }

    .header_right_select{
        height: 5vw;
        line-height: 5vw;
        padding-left: 0.1vw;
        padding-right: 0.1vw;
        font-size: 1vw;
        margin-left: 1.5vw;
        margin-right: 1.5vw;
    }

    .language_box{
        margin-left: 2vw;
        margin-right: 2vw;
    }

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

    .language_box select{
        padding: 0.2vw;
        font-size: 0.8vw;
        font-weight: 900;
    }
}

@media (max-width:1200px){

    .header_right_pc{
        display: none;
    }

    .header_right_pe{
        display: flex;
    }

    .zhanwei{
        height: 16vw;
    }

    .header{
        width: 100%;
        height: 16vw;
        position: fixed;
        top: 0vw;
        left: 0;
        z-index: 1000;
        background-color: #fff;
    }

    .header_innerBox{
        width: 95%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_left img{
        width: 50vw;
        object-fit: contain;
    }

    .header_right_pe .icon{
        width: 8vw;
        height: 8vw;
    }

    .header_right_pe_selectBox{
        width: 0%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        overflow: hidden;
        transition: 0.2s;
        background-color: #f5f5f5;
        z-index: 1000;
    }

    .header_mask{
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .header_right_pe_selectBox_title{
        text-align: center;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }

    .header_right_pe_selectBox_title img{
        width: 90%;
        object-fit: contain;
    }

    .header_right_pe_selectBox_btn{
        width: 90%;
        height: 9vw;
        line-height: 9vw;
        text-align: center;
        color: #fff;
        margin: 0 auto;
        margin-bottom: 5vw;
        font-size: 3.5vw;
        background-color: #ec1d22;
        border-radius: 100vw;
    }

    .header_right_pe_selectBox>a{
        text-decoration: none;
    }

    .language_box{
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }

    .language_box select{
        height: 100%;
        padding: 1vw;
        font-size: 3vw;
        font-weight: 900;
    }

    .header_right_pe_selectBox_closeBtn{
        width: 0vw;
        height: 10vw;
        display: flex;
        align-items: center;
        color: #fff;
        position: fixed;
        top: 50%;
        right: 35%;
        transform: translateY(-50%,-50%);
        border-radius: 0 1vw  1vw 0vw;
        background-color: #ec1d22;
    }

    .header_right_pe_selectBox_closeBtn .icon{
        width: 5vw;
        height: 5vw;
    }
}

/* 通用 */
.header_right>a{
    text-decoration: none;
    color: black;
}