* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.browser--unsupport {
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.browser__header {
    align-self: stretch;
    height: 61.8vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, rgba(9, 90, 255, 0.3), rgba(0, 216, 255, 0.5));
}

.browser__header > .browser__header__logo {
    width: 20rem;
    aspect-ratio: 5/3;
    min-height: 8rem;
    object-fit: cover;
}


.browser__header > .browser__header__tips {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1446a5;
}

.browser__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 0%;
    gap: 3.17rem;
}

.browser__list ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.browser__list li + li {
    margin-left: 3.17rem;
}

.browser__item {
    display: flex;
    flex-direction: column;
    color: #333333;
    align-items: center;
    text-decoration: none;
}

.browser__item > img {
    width: 5.25rem;
    height: 5.25rem;
    margin-bottom: 0.96rem;
}


.browser__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #999999;
    font-size: 0.83rem;
    margin-bottom: 2rem;
}

.browser__footer > div > span {
    color: #3571eb;
}

