/* CSS Document */
@charset "utf-8";

*:focus {
    outline: none;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

* {
    /* touch-action: pan-y; */
    margin: 0;
    padding: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fiedldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
/* strong, */
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul,
li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

input,
select,
textarea,
button {
    vertical-align: middle;
    border: none;
    -webkit-appearance: none !important;
    outline: 0;
}

a,
a:link {
    text-decoration: none;
    outline: none;
}

.hide {
    display: none;
}

.op {
    opacity: 0;
}

.fix {
    position: fixed;
}

/* @font-face {    font-family: "SourceHanSerifCN";    src: url("../images/SourceHanSerifCN-Bold.ttf");} */
@font-face {
    font-family: SOURCEHANSANSCN-NORMAL;
    src: url(../images/SOURCEHANSANSCN-NORMAL.OTF);
}

@font-face {
    font-family: SOURCEHANSANSCN-MEDIUM;
    src: url(../images/SOURCEHANSANSCN-MEDIUM.OTF);
}

body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 24px;
    position: relative;
    overflow-y: auto;
    /* font-family: "SOURCEHANSANSCN-NORMAL"; */
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SOURCEHANSANSCN-NORMAL , PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
}

/* 头部区域 */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    height: 100px;
    transition: top 0.3s ease-in-out; /* 添加过渡效果，让显示/隐藏更平滑 */
    /* overflow: hidden; */
}

/* 导航栏隐藏时的状态 */
header.hidden {
    top: -100px; /* 向上移动，使其滑出视口 */
}

.header.on {
    background-color: rgba(0, 0, 0, 0.5);
}

header::after {
    display: inline-block;
    content: "";
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    right: 30px;
    top: 28px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 35px;
    height: 2px;
    background-color: white;
    display: block;
    /* border-radius: 5px; */
    margin: 10px 0px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    transform-origin: left;
}

.mobile-menu-toggle.on span:nth-child(1) {
    transform: rotate(45deg);
    /* top: 10px; */
}

.mobile-menu-toggle.on span:nth-child(2) {
    width: 0px;
}

.mobile-menu-toggle.on span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-menu {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    float: right;
    right: 100px;
    width: calc(100% - 360px);
    max-width: 1120px;
    z-index: 2;
    position: relative;
}

.logo {
    margin-left: 62px;
    margin-top: 18px;
    width: 126px;
    height: 55px;
    background: url(../images/混沌logo2.png) center center no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 99;
}

.logo-slogan {
    margin-top: 29px;
    margin-left: 10px;
    width: 206px;
    height: 37px;
    display: inline-block;
    background: url(../images/logo-slogan.png) center center no-repeat;
    background-size: contain;
    position: relative;
}

.inner-page-dl {
    width: 2.06rem;
    height: 0.56rem;
    background: url(../images/inner-page-dl.png) center center no-repeat;
    background-size: contain;
    display: none;
    vertical-align: top;
}

.nav-item {
    /* width: 160px; */
    font-size: 18px;
    line-height: 100px;
    min-height: 100px;
    position: relative;
    text-align: center;
    cursor: pointer;
    color: #8f8b7d;
    height: 100px;
}

.nav-item.on>a,
.nav-item:hover>a {
    color: #d9d2bc;
}

.nav-item.on>a::after,
.nav-item:hover>a::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background: url(../images/nav-line.png) center center no-repeat;
    background-size: 627px 2px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-item:nth-child(4).on,
.nav-item:nth-child(5).on,
.nav-item:nth-child(4):hover,
.nav-item:nth-child(5):hover {
    color: #d9d2bc;
}

.nav-item>a {
    display: block;
    color: #8f8b7d;
}

.nav-item span,
.nav-item>a span {
    display: inline-block;
    width: 27px;
    height: 26px;
    /* background: url(../images/nav-icon.png) 0px 0px no-repeat; */
    margin-right: 5px;
    vertical-align: top;
    margin-top: 40px;
}

.nav-item:nth-child(2)>a span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -162px 0px no-repeat; */
}

.nav-item:nth-child(3)>a span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -318px 0px no-repeat; */
}

.nav-item:nth-child(4)>a span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -480px 0px no-repeat; */
}

.nav-item:nth-child(5)>span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -639px 0px no-repeat; */
    margin-right: 0px;
    margin-left: -4px;
}

.nav-item:nth-child(6)>span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -798px 0px no-repeat; */
    margin-left: -5px;
}

.nav-item:nth-child(7)>a span {
    display: inline-block;
    /* background: url(../images/nav-icon.png) -954px 0px no-repeat; */
}

.nav-item:after {
    display: inline-block;
    content: "|";
    color: #8f8b7d;
    position: absolute;
    right: -3px;
    top: 0;
    opacity: 0.5;
}

.nav-item:last-child::after {
    content: "";
}

.dropdown-bg {
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    transition: 0.5s;
    background: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.7) 100%);
}

.dropdown-bg.show {
    height: 360px;
}

.dropdown-nav a {
    color: #b3af9f;
    display: block;
    line-height: 40px;
    font-size: 18px;
    padding-left: 32px;
}

.dropdown-nav a:hover {
    color: #d9d2bc;
}

.dropdown-nav {
    transition: 0.5s;
    height: 0px;
    overflow: hidden;
    opacity: 0;
}

.dropdown-nav.show {
    height: 200px;
    /* height: 160px; */
    opacity: 1;
}

.follow-bg {
    width: 100%;
    height: 0px;
    background: url(../images/header-contact-bg.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: -0px;
    transition: 0.5s;
    text-align: center;
    opacity: 0;
    overflow: hidden;
}

.follow-bg.show {
    height: 189px;
    opacity: 1;
    bottom: -189px;
    z-index: 10;
}

.follow-list {
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.follow-list li {
    display: inline-block;
    position: relative;
    width: 134px;
    height: 104px;
}

.follow-list li::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 100px;
    background-color: #9d7f47;
    position: absolute;
    right: 0px;
}

.follow-list li a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) 0px 0px no-repeat;
    position: absolute;
    transition: 0.3s;
    left: 50%;
    top: 0px;
    margin-left: -42px;
}

.follow-list li a:hover {
    top: -15px;
}

.follow-list li:nth-child(2) a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) -132px 0px no-repeat;
}

.follow-list li:nth-child(3) a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) -268px 0px no-repeat;
}

.follow-list li:nth-child(4) a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) -402px 0px no-repeat;
}

.follow-list li:nth-child(5) a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) -536px 0px no-repeat;
}

.follow-list li:nth-child(6) a {
    display: inline-block;
    width: 84px;
    height: 104px;
    background: url(../images/header-link.png) -670px 0px no-repeat;
}

.follow-bg img {
    margin-left: 10px;
    vertical-align: top;
    margin-top: 20px;
}

/* 底部区域 */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.copyright {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
}

.copyright p {
    opacity: 0.3;
}

.copyright a {
    color: #f6f4f1;
}

.footer-right {
    float: right;
    text-align: right;
}

.limit {
    display: inline-block;
    width: 60px;
    vertical-align: top;
    margin-bottom: 10px;
}

.limit img {
    width: 100%;
}

.kv-share {
    position: fixed;
    right: 60px;
    top: 50%;
    width: 35px;
    margin-top: -100px;
    /* height: 20px;    background: url(../images/share.png) center center no-repeat;    background-size: contain;    cursor: pointer; */
}

.club-alert {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20;
    display: none;
}

.club-close {
    width: 34px;
    height: 34px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    background: url(../images/close.png) center center no-repeat;
    z-index: 2;
}

.club-close:hover {
    background: url(../images/close-hl.png) center center no-repeat;
}

.club {
    height: auto;
    max-width: 80%;
    position: absolute;
    left: 0px;
    top: 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

@media screen and (max-width: 1500px) {
    .kv-share {
        right: 10px;
    }

    .to-top {
        right: 5px !important;
    }
}

.kv-share li {
    width: 35px;
    height: 30px;
    position: relative;
    margin-bottom: 15px;
}

.kv-share li:nth-child(2) img {
    position: absolute;
    right: 0px;
    top: -70px;
    display: none;
    transition: 0.3s;
}

.kv-share li:nth-child(2):hover img {
    display: block;
    right: 20px;
}

.kv-share li a {
    display: inline-block;
    width: 35px;
    height: 30px;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: 0.3s;
}

.kv-share li:hover a {
    left: -10px;
}

.kv-share li:nth-child(1) a {
    background: url(../images/right-share-icon.png) 0px 0px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(2) a {
    background: url(../images/right-share-icon.png) 0px -45px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(3) a {
    background: url(../images/right-share-icon.png) 0px -90px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(4) a {
    background: url(../images/right-share-icon.png) 0px -135px no-repeat;
    background-size: 30px 161px;
}

.kv-share.black li:nth-child(1) a {
    background: url(../images/right-share-icon-black.png) 0px 0px no-repeat;
    background-size: 30px 161px;
}

.kv-share.black li:nth-child(2) a {
    background: url(../images/right-share-icon-black.png) 0px -45px no-repeat;
    background-size: 30px 161px;
}

.kv-share.black li:nth-child(3) a {
    background: url(../images/right-share-icon-black.png) 0px -90px no-repeat;
    background-size: 30px 161px;
}

.kv-share.black li:nth-child(4) a {
    background: url(../images/right-share-icon-black.png) 0px -135px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(1):hover a {
    background: url(../images/right-share-icon-hl.png) 0px 0px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(2):hover a {
    background: url(../images/right-share-icon-hl.png) 0px -45px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(3):hover a {
    background: url(../images/right-share-icon-hl.png) 0px -90px no-repeat;
    background-size: 30px 161px;
}

.kv-share li:nth-child(4):hover a {
    background: url(../images/right-share-icon-hl.png) 0px -135px no-repeat;
    background-size: 30px 161px;
}

.left-dl-box.show {
    left: 45px;
}

.left-dl-box {
    left: -145px;
    position: fixed;
    z-index: 10;
    top: 50%;
    width: 100%;
    width: 143px;
    transition: 0.3s;
    z-index: 20;
}

.left-code {
    margin-bottom: 2px;
}
.web-dl,
.and-dl,
.ios-dl {
    width: 143px;
    height: 44px;
    background: url(../images/ios-dl.png) center center no-repeat;
    background-size: contain;
    display: block;
    margin-bottom: 6px;
}

.ios-dl:hover {
    background: url(../images/ios-dl-hl.png) center center no-repeat;
    background-size: contain;
}

.and-dl {
    background: url(../images/and-dl.png) center center no-repeat;
    background-size: contain;
}

.and-dl:hover {
    background: url(../images/and-dl-hl.png) center center no-repeat;
    background-size: contain;
}

.web-dl {
    height: 65px;
    background: url(../images/web-dl.png) center center no-repeat;
    background-size: contain;
}

.web-dl:hover {
    background: url(../images/web-dl-hl.png) center center no-repeat;
    background-size: contain;
}

.left-dl-show-btn {
    width: 32px;
    height: 32px;
    background: url(../images/left-code-close.png);
    position: absolute;
    top: 87px;
    right: -31px;
    transition: 0.2s;
    cursor: pointer;
    z-index: 1;
    transition: 0.6s;
    display: block;
    right: -31px;
}

.left-dl-show-btn.turn {
    transform: rotate(180deg);
}

.left-news-swiper {
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    color: #fffcf2;
    margin-bottom: 5px;
    /* text-shadow: 0px 0px 4px #000000; */
}

.left-news-swiper.on {
    color: black;
}

.to-top {
    position: fixed;
    right: 55px;
    top: 50%;
    width: 35px;
    text-align: center;
    width: 52px;
    margin-top: 100px;
    transition: 0.3s;
    display: none;
}

.to-top.on {
    display: block;
}

.to-top:hover {
    margin-top: 90px;
}

.top {
    width: 52px;
    height: 52px;
    background: url(../images/top.png) center center no-repeat;
    background-size: contain;
    cursor: pointer;
    margin: 0 auto;
}

.to-top:hover .top {
    background: url(../images/top-hl.png) center center no-repeat;
    background-size: contain;
}


.sl_pop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

/* 添加 on 类时显示 */
.sl_pop.on {
    display: block;
}

.sl_pop .sl_close {
    width: 52px;
    height: 52px;
    background: url(../images/close_l.png) no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 425px;
    margin-top: -255px;
}

.sl_pop .sl_close:hover {
    background: url(../images/close_l-hl.png) no-repeat center center;
}

.sl_pop .sl_box {
    width: 871px;
    height: 521px;
    background: url(../images/sl_popBg.png) no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
    padding: 75px 10px 0;
}

.sl_pop .sl_box .sl_cont {
    width: 100%;
    height: 380px;
    box-sizing: border-box;
    padding: 0 35px;
    overflow-y: auto;
}

.sl_pop .sl_box .sl_cont h1 {
    text-align: center;
    font-size: 30px;
    color: #7b6148;
    font-weight: bold;
}

.sl_pop .sl_box .sl_cont p:first-child {
    margin-top: 0;
}

.sl_pop .sl_box .sl_cont p {
    color: #7b6148;
    font-size: 15px;
    margin-top: 10px;
    line-height: 28px;
    text-indent: 2em;
}


@media screen and (min-width: 1530px) and (max-width: 1630px) {
    .logo-slogan {
        zoom: 0.85;
        margin-top: 40px;
        margin-left: 0px;
    }

    .logo {
        margin-left: 25px;
    }

    .nav-menu {
        width: calc(100% - 410px);
    }
}

@media screen and (max-width: 1530px) {
    .logo-slogan {
        display: none !important;
    }

    .logo {
        margin-left: 62px;
    }
}

@media screen and (min-width: 820px) and (max-width: 1080px) {
    .copyright {
        max-width: calc(100% - 60px);
    }
}

@media screen and (max-width: 820px) {
    .copyright {
        font-size: 12px !important;
        max-width: calc(100% - 80px);
    }
}

@media screen and (max-width: 1300px) {
    .header .nav-menu {
        height: 0px;
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.8);
        max-width: none;
        transition: 0.5s;
        display: block;
        white-space: wrap;
    }

    .header .nav-menu .nav-item:nth-child(4):hover {
        height: 300px;
        /* display: inline-block; */
    }

    .huojiang {
        z-index: 10 !important;
    }

    .header .nav-menu.on {
        height: 100%;
        padding-top: 100px;
        /* z-index: 10; */
    }

    .header .mobile-menu-toggle {
        display: inline-block;
        z-index: 100;
    }

    .video-btn {
        right: 77px !important;
    }

    .header .follow-bg {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
    }

    .header .follow-list {
        width: calc(100% - 150px);
    }

    .header .follow-list li {
        width: 15%;
    }

    .nav-item:after {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .left-dl-box {
        display: none;
    }

    .header .follow-list li {
        width: 0.84rem;
        height: 1.04rem;
    }

    .header .follow-list li a {
        width: 0.84rem;
        height: 1.04rem;
        background-size: 7.77rem 1.04rem;
        margin-left: -0.42rem;
    }

    .follow-list li:nth-child(2) a {
        display: inline-block;
        width: 0.84rem;
        height: 1.04rem;
        background: url(../images/header-link.png) -1.32rem 0px no-repeat;
        background-size: 7.77rem 1.04rem;
    }

    .follow-list li:nth-child(3) a {
        display: inline-block;
        width: 0.84rem;
        height: 1.04rem;
        background: url(../images/header-link.png) -2.68rem 0px no-repeat;
        background-size: 7.77rem 1.04rem;
    }

    .follow-list li:nth-child(4) a {
        display: inline-block;
        width: 0.84rem;
        height: 1.04rem;
        background: url(../images/header-link.png) -4.02rem 0px no-repeat;
        background-size: 7.77rem 1.04rem;
    }

    .follow-list li:nth-child(5) a {
        display: inline-block;
        width: 0.84rem;
        height: 1.04rem;
        background: url(../images/header-link.png) -5.36rem 0px no-repeat;
        background-size: 7.77rem 1.04rem;
    }

    .follow-list li:nth-child(6) a {
        display: inline-block;
        width: 0.84rem;
        height: 1.04rem;
        background: url(../images/header-link.png) -6.7rem 0px no-repeat;
        background-size: 7.77rem 1.04rem;
    }

    .follow-list li::after {
        display: none;
    }

    .follow-bg img {
        width: 0.84rem;
        margin-left: 0.1rem;
        margin-top: 0.3rem;
    }

    .header .follow-list {
        width: calc(100% - 1.4rem);
        margin-top: 0.2rem;
    }

    .follow-bg.show {
        height: 1.89rem;
    }

    .header-content .logo {
        width: 3.08rem;
        height: 0.84rem;
        background: url(../images/混沌logo2.png) center center no-repeat;
        background-size: contain;
        margin-left: 0.38rem;
        margin-top: 0.1rem;
    }

    .header {
        height: 1rem;
        background-color: rgba(36, 36, 39, 0.6);
    }

    header::after {
        height: 0.6rem;
        bottom: -0.6rem;
    }

    .mobile-menu-toggle {
        right: 0.3rem;
        top: 0.25rem;
    }

    .mobile-menu-toggle span {
        width: 0.4rem;
        height: 0.04rem;
        margin: 0.1rem 0rem;
    }

    .nav-item {
        line-height: 1.1rem;
        min-height: 1.1rem;
        height: 1.1rem;
        overflow: hidden;
    }

    .nav-item span,
    .nav-item>a span {
        margin-top: 0.35rem;
    }

    .nav-item.on>a,
    .nav-item:hover>a {
        border-bottom: 0px;
    }

    .nav-item.on>a:after,
    .nav-item:hover>a:after {
        height: 0.02rem;
        width: 100%;
        background: url(../images/nav-line.png) center center no-repeat;
        background-size: 6.27rem 0.02rem;
    }

    .nav-item.on>a:after,
    .nav-item:hover>a:after {
        width: 6.27rem;
    }

    .header .nav-menu .nav-item:nth-child(4):hover {
        height: calc(160px + 1.1rem);
    }

    footer {
        display: none;
    }

    .kv-share.on {
        display: grid;
    }

    .kv-share {
        /* display: none; */
        width: 4.2rem;
        left: 50%;
        left: 50%;
        margin-left: -2.1rem;
        top: auto;
        bottom: 1rem;
        z-index: 9;
        display: none;
        grid-template-columns: repeat(4, 1fr);
    }

    .kv-share li {
        width: 100%;
    }

    .kv-share li a {
        margin-left: 0.2rem;
    }

    .kv-share li:nth-child(1) a {
        background: url(../images/right-share-icon_227e75c024024985b6ee4c19d647aa4d.png) 0px 0px no-repeat;
        background-size: 30px 161px;
    }

    .kv-share li:nth-child(2) a {
        background: url(../images/right-share-icon_227e75c024024985b6ee4c19d647aa4d.png) 0px -45px no-repeat;
        background-size: 30px 161px;
    }

    .kv-share li:nth-child(3) a {
        background: url(../images/right-share-icon_227e75c024024985b6ee4c19d647aa4d.png) 0px -90px no-repeat;
        background-size: 30px 161px;
    }

    .kv-share li:nth-child(4) a {
        background: url(../images/right-share-icon_227e75c024024985b6ee4c19d647aa4d.png) 0px -135px no-repeat;
        background-size: 30px 161px;
    }

    .kv-share li:nth-child(2) img {
        right: -60px !important;
        top: -150px;
    }

    .kv-share li:hover a {
        left: 0rem !important;
    }

    .header .inner-page-dl {
        top: 0.23rem;
        right: 1rem;
        display: inline-block;
        position: absolute;
    }

    .to-top {
        display: none !important;
    }
}