.tpl-nav-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tpl-box{
    display: flex;
    justify-content: space-between;
    width: clamp(950px, 80vw, 1450px);
    margin: auto;
    background-image: url(../../newIndex/img/mainHeadBg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    align-items: center;
    height: 75px;
}
.tpl-logo img{
    width: 350px;
}

.tpl-search{
    display: flex;
    align-items: center;
    gap:0;
}
.tpl-searchInput{
    width: 180px;
    height: 30px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border: 0.5px solid #D2D2D2;
    text-indent: 8px;
    font-size: 12px;
}

.tpl-searchBtn{
    font-size: 12px;
    padding: 0 8px;
    color: #fff;
    text-align: center;
    height: 30px;
    background: #0061DC;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border: 0.5px solid #D2D2D2;
}

.tpl-nav{
    width: 100%;
    height: 48px;
    /*background: #0061DC;*/
    background: rgba(43, 82, 255, 1);
}

.tpl-menu{
    width: clamp(950px, 80vw, 1450px);
    margin: auto;
    display: flex;
    height: 100%;
}
.tpl-item{
    flex: 1;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}
.tpl-item:hover{
    background: #0050b3;
    color: #fff;
}
.tpl-item-select{
    background: #0050b3;
    color: #fff;
}
