html,
body,
div,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
a,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

a {
    color: #000;
}

h3 {
    font-weight: normal;
}


@font-face {
    font-family: "HY-Simp";
    src: url('../fonts/HY-Simp.woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SY-Song";
    src: url('../fonts/SY-Song.woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SY-Hei";
    src: url('../fonts/SY-Hei.woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CG-BT";
    src: url('../fonts/CG-BT.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --title-color: #0d564d;
    --des-color: #895a12;
}

.header-container {
    position: relative;
    font-family: 'HY-Simp';
}

.header {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: linear-gradient(to bottom, rgb(13, 86, 77), rgb(21, 103, 97))
}

.header>a {
    height: 50%;
}

.header>a>img {
    height: 100%;
}

.header .nav {
    width: 25px;
}

.header-list {
    position: absolute;
    width: 100%;
    top: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #e8ceab;
    display: none;
    z-index: 100;
}

.header-item {
    border-bottom: 1px solid #9c6223;
    /* padding: 5% 0; */
    margin: 0 5%;
    transition: all 0.5s;
}

.header-item>a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header-item a {
    font-size: 22px;
    padding-left: 10px;
    color: #6d4500;
    line-height: 2.5em;
}

.header-item li a {
    color: #704501;
    padding-left: 10px;
    font-size: 20px;
    line-height: 1.8em;
}

.item-more a.active {
    color: #115e58;
}

.item-more svg {
    width: 25px;
    height: 25px;
}

.item-more>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.item-more li.active {
    background-color: #eecfa3;
    color: #9e5b17;
}

.item-more ul {
    transition: all 0.5s;
    height: 0px;
    overflow: hidden;
    background-color: #eac99c;
    color: #6f4200;
}

.item-more ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.item-more svg {
    transform: rotate(180deg);
}

.header-item-code {
    display: flex;
    justify-content: space-around;
    justify-items: center;
    border: none;
    margin: 0 5%;
}

.header-item-code>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.header-item-code>div img {
    width: 65%;
}

.header-item-code>div span {
    padding: 5px 0;
    color: #6d4500;
    color: 16px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
    color: #dfbb88;
    font-family: 'HY-Simp';
    background: linear-gradient(to right, rgb(12, 88, 78), rgb(18, 99, 92), rgb(14, 90, 80));
}

.footer p {
    line-height: 1.5em;
    font-size: 20px;
}

.footer p:nth-of-type(2) {
    font-size: 32px;
}