header#desktop {
    width: 100%;
    height: 80px;
    overflow: hidden;
    background-color: white;
    display: block;
}
@media screen and (min-width: 1341px) {
    header#desktop > div {
        width: 1320px;
    }
}
@media screen and (max-width: 1340px) and (min-width: 1021px) {
    header#desktop > div {
        width: 1000px;
    }
}
@media screen and (max-width: 1020px) {
    header#desktop {
        display: none;
    }
}
header#desktop > div {
    height: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
header#desktop > div > nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
header#desktop > div > nav:nth-child(1) > a {
    display: block;
    height: 80px;
    padding: 2px 0px;
}
header#desktop > div > nav > div {
    height: 100%;
    overflow: hidden;
}
header#desktop > div > nav > div > a {
    display: block;
    height: 100%;
    line-height: 80px;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 0px 5px;
    font-weight: bold;
}
header#desktop > div > nav > nav {
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}
header#desktop > div > nav > nav > a {
    display: block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient(105deg, #312D8A 0%, #252263 100%);
    margin: 20px 20px 20px 0px;
    text-align: center;
}
header#phone {
    width: 100%;
    height: 160px;
    background-color: white;
    display: block;
}
@media screen and (min-width: 1020px) {
    header#phone {
        display: none;
    }
}
header#phone > div {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    background-color: white;
}
header#phone > div > nav#logo {
    height: 80px;
}
header#phone > div > nav#logo > a {
    display: block;
    height: 80px;
    padding: 2px 0px;
}
header#phone > div > nav#menu {
    width: 100px;
    height: 40px;
    margin: 15px 0px;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
}
header#phone > div > nav#menu > a {
    display: block;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient(105deg, #312D8A 0%, #252263 100%);
    text-align: center;
}
header#phone > nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F4F9;
}
header#phone > nav > div {
    padding: 20px 15px;
    height: 80px;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
header#phone > nav > div::-webkit-scrollbar {
    background-color: transparent;
    width: 0;
    height: 0;
    border: 0;
}
header#phone > nav > div::-webkit-scrollbar-corner {
    background-color: transparent;
}
header#phone > nav > div::-webkit-scrollbar-thumb {
    background-color: transparent;
}
header#phone > nav > div > div {
    height: 40px;
    background-color: white;
    border-radius: 25px;
}
header#phone > nav > div > div > a {
    display: block;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient(105deg, #312D8A 0%, #252263 100%);
    text-align: center;
}