* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none; /*a标签下划线*/
}

a {
    color: black; /* 默认颜色 */
    text-decoration: none; /* 移除下划线 */
}

    a:visited {
        color: black; /* 访问后的颜色 */
    }

    a:active {
        color: black; /* 点击时的颜色 */
    }

html,
body {
    min-height: 100vh;
}

html {
    font-size: 100px;
}

ul {
    list-style-type: none;
}

.container {
    display: none;
}

.contianer {
    width: 100%;
    font-size: 0.16rem;
}

.titleBox {
    height: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 10%;
    font-size: 0.18rem;
    background-color: #193f83;
    color: #fff;
}

.titleBox_ad {
    display: none;
}

.titleBox > img {
    width: 2.32rem;
}

.titleBox a {
    text-decoration: none;
    color: inherit;
}

.title:not(:last-child) {
    margin-right: 0.1rem;
}

.topBanner {
    margin: 0 auto;
    background: url(./img/banner2.png) no-repeat;
    background-size: cover;
    padding-top: 0.72rem;
    position: relative;
}

.breadcrumbs {
    position: absolute;
    bottom: 0.1rem;
    left: 2.27rem;
    display: flex;
    align-items: center;
}

    .breadcrumbs > span {
        margin-left: 0.1rem;
        color: white;
    }

    .breadcrumbs a {
        text-decoration: none;
        color: inherit;
    }

    .breadcrumbs > img {
        width: 0.16rem;
    }

.choiceNavigation {
    height: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.18rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.297);
}

    .choiceNavigation > span {
        height: 0.6rem;
        line-height: 0.6rem;
        vertical-align: baseline;
        margin-right: 0.2rem;
    }

        .choiceNavigation > span:last-child {
            margin-right: 0;
        }

.checked {
    font-size: 0.21rem;
    border-bottom: 0.03rem solid #4b8deb;
}

    .checked::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 0.06rem solid transparent;
        border-right: 0.06rem solid transparent;
        border-bottom: 0.1rem solid #4b8deb; /* 蓝色三角形 */
        margin: -0.1rem auto 0;
    }

.content {
    min-height: 10.32rem;
    background-image: url(./img/bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding: 0.3rem 2.2rem 15%;
}

.titleBox_ad {
    width: 100%;
    height: 2.625rem;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    font-size: 0.9rem;
    background-color: #27509a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

    .titleBox_ad > img {
        width: 5.8rem;
        margin-left: 1rem;
    }

.titleBox_ad_right > span {
    color: #fff;
    margin-right: 1.4rem;
}

.titleBox_ad_right {
    display: flex;
    align-items: center;
    height: 100%;
}

.menuBox {
    width: 2.975rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.menu {
    width: 1.5rem;
}

.card {
    height: 2.5rem;
    padding: 0.15rem 0.25rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.301);
    display: flex;
    position: relative;
}

    .card::before {
        content: "";
        height: 100%;
        background: #c4dcff;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        /* 加上一个过渡效果，使之丝滑一些 */
        transition: width 0.5s;
        z-index: -1;
    }

    .card:hover::before {
        width: 100%;
    }

.card_img {
    width: 2.6rem;
    height: 100%;
    background-color: pink;
    margin-right: 0.4rem;
}

.textBox {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 0.05rem;
}

    .textBox > p:first-child {
        color: #76a6ee;
        font-size: 0.18rem;
        margin-bottom: 0.1rem;
    }

    .textBox > p:nth-child(2) {
        font-size: 0.2rem;
        margin-bottom: 0.15rem;
    }

    .textBox > p:last-child {
        line-height: 1.5;
        font-size: 0.17rem;
    }

.card:not(:first-child) {
    margin-top: 0.2rem;
}

.choiceNavigation_ad {
    width: 17.6rem;
    margin: 1.05rem auto;
    display: none;
}

.choiceNavigationBox_ad {
    width: 17.6rem;
    height: 2.1rem;
    background-color: #27509a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.7rem;
}

    .choiceNavigationBox_ad > span {
        font-size: 0.91rem;
        color: white;
    }

    .choiceNavigationBox_ad > img {
        width: 1.12rem;
    }

.choiceNavigationList_ad {
    width: 17.6rem;
    height: 0;
    background-color: #2b5aaf;
    color: #fff;
    font-size: 0.63rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.choiceNavigationList_start {
    animation: expandHeightStart 0.6s forwards;
}

.choiceNavigationList_conclusion {
    animation: expandHeightConclusion 0.6s forwards;
}
/* 菜单蒙版 */

.titleBox_ad_mask {
    display: flex;
    align-items: center;
    height: 100%;
}

.maskBox {
    width: 100%;
    height: 100vh;
    background-color: #27509a;
    position: fixed;
    left: 100vw;
    top: 0;
    z-index: 99;
}

.maskBox_start {
    animation: maskBoxStart 0.6s forwards;
}

.maskBox_conclusion {
    animation: maskBoxConclusion 0.6s forwards;
}

.choiceNavigation a {
    text-decoration: none;
    color: inherit;
}

.choiceNavigationList_ad a {
    text-decoration: none;
    color: inherit;
}

.maskListBox a {
    text-decoration: none;
    color: inherit;
}

/* 定义动画 */
@keyframes maskBoxStart {
    from {
        left: 100vw;
    }

    to {
        left: 0;
    }
}

/* 定义动画 */
@keyframes maskBoxConclusion {
    from {
        left: 0;
    }

    to {
        left: 100vw;
    }
}

.topTitle {
    width: 100%;
    height: 0.525rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    font-size: 0.2rem;
    background-color: #27509a;
    box-shadow: 0 0.1rem 0.1rem #00000030;
}

    .topTitle > img {
        width: 1.16rem;
        margin-left: 0.2rem;
    }

    .topTitle > span {
        color: #fff;
        margin-right: 0.28rem;
    }

.menuBox_x {
    width: 0.595rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

    .menuBox_x > img {
        width: 0.3rem;
    }

.maskListBox {
    min-height: calc(100vh - 2.625rem);
    padding: 0.3rem 0 0;
    width: 17.35rem;
    margin: 0 auto;
}

.maskLi {
    width: 100%;
    height: 0.92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 0.01rem solid #476aa9;
}

    .maskLi > .title {
        font-size: 0.28rem;
    }

.expand {
    width: 0.24rem;
    margin-right: 0.15rem;
}

.titleBox_ad_mask > span {
    color: #fff;
    margin-right: 0.28rem;
}

.select_li {
    color: white;
}
/* 定义动画 */
@keyframes expandHeightStart {
    from {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding: 0 0.7rem;
    }

    to {
        height: 10.55rem;
        padding: 0.7rem 0.7rem;
    }
}

/* 定义动画 */
@keyframes expandHeightConclusion {
    from {
        height: 10.55rem;
        padding: 0.7rem 0.7rem;
    }

    to {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

.cardBox {
    width: 14.48rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.289rem;
    margin: 0 auto;
}

.topBar {
    position: fixed;
    top: -0.6rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.6rem;
    /* height: 6rem; */
    display: flex;
    justify-content: space-between;
    background-color: #193f83;
    transition: top 0.5s ease;
    z-index: 999;
}

.bar-logo {
    width: 2rem;
    height: 0.4rem;
    line-height: 0.4rem;
    margin-left: 0.5rem;
    padding-top: 0.07rem;
}

.bar-button {
    height: 100%;
    margin-right: 0.5rem;
}

    .bar-button ul {
        width: 100%;
        height: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .bar-button li {
        height: 50%;
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 0.2rem;
    }

        .bar-button li::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: transparent;
            transition: background-color 0.3s ease, width 0.3s ease;
        }

        .bar-button li:hover::after {
            background-color: #fff;
            /* background-color: #ecf1f7; */
            width: 100%;
        }

        /* 给第一个 li 加上个边距使其不紧贴左侧 */
        .bar-button li:first-child {
            margin-left: 15px;
        }

        .bar-button li + li {
            margin-left: 20px;
        }

.titleBox_ad {
    display: none;
}

.titleBox > img {
    width: 2.32rem;
}

.titleBox a {
    text-decoration: none;
    color: inherit;
}

.title:not(:last-child) {
    margin-right: 0.1rem;
}

.topBanner {
    margin: 0 auto;
    background: url(./img/banner2.png) no-repeat;
    background-size: cover;
    padding-top: 0.92rem;
    position: relative;
}

/* 大隐藏bar盒子 */
.hide-detail {
    display: none;
    width: 100%;
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    position: absolute;
    top: 0.6rem;
    left: 0;
    background-color: #fff;
    opacity: 0; /* 初始透明度为0 */
    transition: opacity 0.5s ease; /* 设置透明度过渡效果，持续时间为0.5秒 */
}

/* -------------公用隐藏盒 */
.detail-item {
    width: 90%;
    height: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}

.items-title {
    box-sizing: border-box;
    padding: 0.3rem 0 0 0.3rem;
    font-size: 0.25rem;
    font-weight: 700;
    color: #084b9e;
}

.items-content {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 0.5rem;
    width: 68%;
    height: 100%;
}

.level2-title {
    position: relative;
    width: 1.7rem;
    height: 0.28rem;
    font-size: 0.14rem;
    margin-right: 0.2rem;
}

    .level2-title a {
        text-decoration: none;
    }

.level2-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.02rem;
    background: linear-gradient( to right, red 0%, red 20%, gray 20%, gray 100% ); /* 初始状态，左侧红色，右侧灰色 */
    transition: background 5s ease; /* 添加过渡效果 */
}

.level2-title:hover .level2-bar {
    background: linear-gradient(to right, red 0%, red 100%);
}

.level2-name {
    padding-bottom: 0.06rem;
    color: gray;
    transition: color 1s ease; /* 添加过渡效果 */
}

.level2-title:hover .level2-name {
    color: red; /* 鼠标悬停时，文字颜色变为红色 */
}

.items-picture {
    box-sizing: border-box;
    height: 100%;
    padding-top: 0.3rem;
    padding-right: 0.3rem;
}

    .items-picture img {
        width: 2.6rem;
        height: 1.2rem;
    }

.lookBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
/*pc端logo位置*/
.Kloge {
    height: 0.9rem;
    margin-left: 2rem;
    padding-top: 0.1rem;
}

.kright {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.trapezoid {
    display: flex;
    width: 6.3rem;
    align-items: center;
    padding-left: 0.4rem;
    height: 0.5rem;
    background-color: #084b9e;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);
}

.trap-text {
    font-size: 0.18rem;
    padding-left: 0.08rem;
    padding-right: 0.08rem;
    color: #fff;
}

    .trap-text:nth-child(1),
    .trap-text:nth-child(2) {
        border-right: 1px solid #fff;
    }

.lookbar-button {
    position: relative;
    top: 0;
    height: 0.45rem;
    margin-right: 0.5rem;
}

    .lookbar-button ul {
        width: 100%;
        height: 0.55rem;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .lookbar-button ul li a {
            text-decoration: none;
            /* color: inherit; 继承父元素的字体颜色 */
        }

        .lookbar-button ul li {
            height: 50%;
            width: 1rem;
            padding-bottom: 0.1rem;
            text-align: center;
            position: relative;
            font-size: 0.2rem;
            color: #fff;
        }

    .lookbar-button li::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: transparent;
        transition: background-color 0.3s ease, width 0.3s ease;
    }

    .lookbar-button li:hover::after {
        background-color: #fff;
        /* background-color: #ecf1f7; */
        width: 100%;
    }

    .lookbar-button li:first-child {
        /* 给第一个 li 加上个边距使其不紧贴左侧 */
        margin-left: 0;
    }

    .lookbar-button li + li {
        margin-left: 20px;
    }

.lookbar-button {
    margin-right: 0.5rem;
}

.lookbar-button {
    position: relative;
    top: 0;
    height: 0.45rem;
    margin-right: 0.5rem;
}

    .lookbar-button ul {
        width: 100%;
        height: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .lookbar-button ul li a {
            text-decoration: none;
            /* color: inherit; 继承父元素的字体颜色 */
        }

        .lookbar-button ul li {
            height: 50%;
            width: 1rem;
            padding-bottom: 0.1rem;
            text-align: center;
            position: relative;
            font-size: 0.2rem;
            color: #fff;
        }

    .lookbar-button li::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: transparent;
        transition: background-color 0.3s ease, width 0.3s ease;
    }

    .lookbar-button li:hover::after {
        background-color: #fff;
        /* background-color: #ecf1f7; */
        width: 100%;
    }

    .lookbar-button li:first-child {
        /* 给第一个 li 加上个边距使其不紧贴左侧 */
        margin-left: 0;
    }

    .lookbar-button li + li {
        margin-left: 20px;
    }

.lookbar-button {
    margin-right: 0.5rem;
}

/* 小隐藏bar盒子 */
.detail {
    display: none;
    width: 100%;
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    position: absolute;
    top: 100px;
    opacity: 0; /* 初始透明度为0 */
    transition: opacity 0.5s ease; /* 设置透明度过渡效果，持续时间为0.5秒 */
}

/* 定义动画 */
@keyframes expandHeightStart {
    from {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding: 0 0.7rem;
    }

    to {
        height: 10.55rem;
        padding: 0.7rem 0.7rem;
    }
}

/* 定义动画 */
@keyframes expandHeightConclusion {
    from {
        height: 10.55rem;
        padding: 0.7rem 0.7rem;
    }

    to {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

/* 菜单蒙版 */

.titleBox_ad_mask {
    display: flex;
    align-items: center;
    height: 100%;
}

.maskBox {
    width: 100%;
    height: 100vh;
    background-color: #27509a;
    position: fixed;
    left: 100vw;
    top: 0;
    z-index: 99;
}

.maskBox_start {
    animation: maskBoxStart 0.6s forwards;
}

.maskBox_conclusion {
    animation: maskBoxConclusion 0.6s forwards;
}

/* 定义动画 */
@keyframes maskBoxStart {
    from {
        left: 100vw;
    }

    to {
        left: 0;
    }
}

/* 定义动画 */
@keyframes maskBoxConclusion {
    from {
        left: 0;
    }

    to {
        left: 100vw;
    }
}

.topTitle {
    width: 100%;
    height: 0.525rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    font-size: 0.2rem;
    background-color: #27509a;
    box-shadow: 0 0.1rem 0.1rem #00000030;
}

    .topTitle > img {
        width: 1.16rem;
        margin-left: 0.2rem;
    }

    .topTitle > span {
        color: #fff;
        margin-right: 0.28rem;
    }

.menuBox_x {
    width: 0.595rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

    .menuBox_x > img {
        width: 0.3rem;
    }

.maskListBox {
    min-height: calc(100vh - 2.625rem);
    padding: 0.3rem 0 0;
    width: 17.35rem;
    margin: 0 auto;
}

.maskLi {
    width: 100%;
    height: 0.92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 0.01rem solid #476aa9;
}

    .maskLi > .title {
        font-size: 0.28rem;
    }

.expand {
    width: 0.24rem;
    margin-right: 0.15rem;
}

.titleBox_ad_mask > span {
    color: #fff;
    margin-right: 0.28rem;
}

.select_li {
    color: white;
}

.sorter {
    margin-top: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sorter img {
        width: 0.12rem;
        height: 0.12rem;
    }

    .sorter div {
        display: flex;
        align-items: center;
    }

    .sorter span {
        margin: 0 0.1rem;
    }

@media (max-width: 1024px) {
    .titleBox {
        display: none;
    }

    .titleBox_ad {
        display: flex;
    }

    .topBanner {
        margin-top: 0;
    }

    .breadcrumbs {
        display: none;
    }

    .choiceNavigation {
        display: none;
    }

    .choiceNavigation_ad {
        display: block;
    }

    .card {
        flex: 0 1 100%;
        border: none;
        box-shadow: none;
        /* 移除固定高度，让内容撑开高度 */
        /* height: 4.65rem; */
        height: 100%;
    }

    .card_img {
        width: 2.6rem;
        /* 设置高度为 auto 以适应父元素高度 */
        height: auto;
        background-color: pink;
        margin-right: 0.4rem;
    }

    .content {
        min-height: 21rem;
        background-image: url(./img/bg.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        padding: 0.3rem 0.67rem 15%;
    }

    .bgImgOne {
        height: 90%;
    }

    .bgImgTwo {
        height: 90%;
    }

    .bgImgThree {
        height: 90%;
    }

    .name {
        font-size: 0.84rem;
    }

    .introduce {
        font-size: 0.6rem;
    }

        .introduce > div:not(:first-child) {
            margin-top: 0.2rem;
        }

    .cardBox {
        width: 17.6rem;
    }

    .textBox > p:nth-child(2) {
        font-size: 0.6rem;
        margin-bottom: 0.15rem;
    }

    .textBox > p:first-child {
        color: #76a6ee;
        font-size: 0.63rem;
        margin-bottom: 0.1rem;
    }

    .textBox > p:last-child {
        line-height: 1.5;
        display: none;
        font-size: 0.6rem;
    }

    .card_img {
        display: none;
    }
    /* 蒙版 */
    .topTitle {
        width: 100%;
        height: 2.625rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        font-size: 0.9rem;
        background-color: #27509a;
        box-shadow: 0 0.5rem 0.5rem #00000030;
    }

        .topTitle > img {
            width: 5.8rem;
            margin-left: 1rem;
        }

        .topTitle > span {
            color: #fff;
            margin-right: 1.4rem;
        }

    .menuBox_x {
        width: 2.975rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        position: relative;
    }

        .menuBox_x > img {
            width: 1rem;
        }

    .maskListBox {
        min-height: calc(100vh - 2.625rem);
        padding: 1.5rem 0 0;
        width: 16.75rem;
        margin: 0 auto;
    }

    .maskLi {
        width: 100%;
        height: 2.3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 0.05rem solid #476aa9;
    }

        .maskLi > .title {
            font-size: 0.7rem;
        }

    .expand {
        width: 1.2rem;
        margin-right: 0.75rem;
    }

    .titleBox_ad_mask > span {
        color: #fff;
        margin-right: 1.4rem;
    }

    /* 手机版，右侧目录抽屉 */
    .drawer-content {
        z-index: 1000;
        position: fixed;
        top: 2.625rem;
        /* right: 0; */
        right: -105vw;
        width: 100%;
        height: 100vh;
        color: #fff;
        background-color: #094da6;
        z-index: 999;
        padding-top: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        box-sizing: border-box;
        transition: right 0.3s ease;
    }

        .drawer-content .drawer-title {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .drawer-content .drawer-text {
            font-size: 0.65rem;
            color: #fff;
            padding-left: 0.4rem;
            padding-right: 0.4rem;
        }

    .drawer-text:nth-child(1),
    .drawer-text:nth-child(2) {
        border-right: 1px solid #fff;
    }

    .drawer-content .drawer-list {
        width: 100%;
        overflow-y: scroll;
    }

    .drawer-list a {
        text-decoration: none;
        color: inherit;
    }

    .drawer-content .drawer-list .list-title {
        /* width: 100%; */
        height: 2.25rem;
        line-height: 2.25rem;
        font-size: 0.9rem;
        font-weight: 400;
        color: #fff;
        padding-left: 0.5rem;
        border-bottom: 0.025rem solid #d6d6d6;
    }

    .menu {
        list-style-type: none;
        padding: 0;
    }

        .menu li {
            padding: 0.25rem;
            cursor: pointer;
            position: relative;
        }

    .submenu {
        max-height: 0;
        overflow: hidden;
        padding-left: 1rem;
        transition: max-height 0.3s ease-out;
        position: relative;
        z-index: 9999;
        background-color: #2366be;
    }

    .open > .submenu {
        max-height: 10rem; /* 设置最大展开高度 */
    }

    .menu li:hover {
        background-color: #2366be;
    }

    .toggle-btn {
        margin-left: 0.5rem;
        cursor: pointer;
        font-weight: bold;
    }

    .drawer-content ul li {
        /* width: 100%; */
        height: 1.5rem;
        line-height: 1.5rem;
        font-size: 0.8rem;
        font-weight: 400;
        color: #eceaea;
        /* border-bottom: 1px solid #d6d6d6; */
        padding-left: 1.1rem;
    }

    .container {
        display: block;
    }

    .lookBar,
    .topBar {
        display: none;
    }

    .contianer {
        padding-top: 2.625rem;
    }

    .sorter {
        font-size: 0.6rem;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .sorter img {
            width: 0.6rem;
            height: 0.6rem;
        }

        .sorter span {
            margin: 0 0.5rem;
        }
}
