.ind_header {
    display: flex;
    flex-direction: column;
    height: 5rem;
    background-image: url("../../image/header_bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    position: fixed !important;
    width: 100%;
    z-index: 999;
}
.ind_header .header_switch {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
}
.ind_header .header_switch > a {
    display: flex;
    width: 20%;
}
.ind_header .header_switch > a:first-child {
    border: 1px solid var(--themeBorderColor);
    border-radius: var(--themeBorderRadius) 0 0 var(--themeBorderRadius);
    background-color: white;
}
.ind_header .header_switch > a:last-child {
    border: 1px solid var(--themeBorderColor);
    border-radius: 0 var(--themeBorderRadius) var(--themeBorderRadius) 0;
}
.ind_header .header_switch > a:last-child > span {
    color: white;
}
.ind_header .header_switch > a > span {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
}
.ind_header .header_search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.ind_header .header_search > a {
    display: flex;
    width: 85%;
}
.ind_header .header_search > a > span {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 1.8rem;
    border: 1px solid var(--themeBorderColor);
    border-radius: 2rem;
    color: var(--themeTextGay);
    background-color: white;
    font-size: 0.8rem;
    width: 100%;
    padding: 0 1rem;
}
.ind_header .header_search > a > span > i {
    font-style: normal;
    transition: all 0.5s linear;
    width: 100%;
}
