:root {
    /* 基础配色 */
    --ztys: #222;      /* 主色-深灰 */
    --fzys: #D4B16A;   /* 辅助色-金属金 */
    --zywz: #555;      /* 主要文字 */
    --cywz: #666;      /* 次要文字 */
    --qsyz: #999;      /* 浅色文字 */
    --jjyz: #B0B0B0;   /* 极浅文字 */
    --bqyz: #777;      /* 版权文字 */
    --bsbj: #fff;      /* 白色背景 */
    --qhbj: #F9F9F9;   /* 浅灰背景 */
    --xfbj: #F8F5EE;   /* 悬浮背景 */
    --gdbj: #fff;      /* 滚动后背景色 */
    --qsbk: #F1F1F1;   /* 浅色边框 */
    --fgxb: #333;      /* 分割线颜色 */
    /* 过渡动画 */
    --jcgd: all 0.3s ease;        /* 基础过渡 */
    --dhgd: all 0.4s ease;         /* 导航过渡 */
    --msgd: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* 慢速过渡（导航/弹窗） */
    /* 尺寸 */
    --qzkd: 1280px;            /* 内容区宽度（非头部宽度） */
    /* 阴影 */
    --xxyy: 0 2px 15px rgba(0, 0, 0, 0.03); /* 超小阴影 */
    --zxyy: 0 8px 25px rgba(0, 0, 0, 0.05); /* 中阴影 */
    --jsyy: 0 8px 24px rgba(212, 177, 106, 0.2); /* 金色阴影 */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
}
body {
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-width: var(--qzkd);
    color: var(--zywz);
    overflow-x: hidden;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--jcgd);
}
a:hover {
    color: var(--fzys);
}
ul, ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
button, input, textarea {
    outline: none;
    border: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--ztys);
    line-height: 1;
}
p {
    margin: 0;
}
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
body::-webkit-scrollbar-thumb {
    background-color: #cbcbcb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(144, 144, 144, 0.27);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
@font-face {
  font-family: 'iconfont';  /* Project id 4359648 */
  src: url('//at.alicdn.com/t/c/font_4359648_7yzw7zipcfg.woff2?t=1764913611711') format('woff2'),
       url('//at.alicdn.com/t/c/font_4359648_7yzw7zipcfg.woff?t=1764913611711') format('woff'),
       url('//at.alicdn.com/t/c/font_4359648_7yzw7zipcfg.ttf?t=1764913611711') format('truetype');
}
.icon {
    font-family: 'iconfont';
}
@font-face {
    font-family: 'ywxsj';
    src: url('/template/pc/skin/font/ywxsj.ttf') format('truetype'),
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'sinclair';
    src: url('/template/pc/skin/font/FS Sinclair Bold.otf') format('opentype'),
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rajdhani-Regular';
    src: url('/template/pc/skin/font/Rajdhani-Regular.otf') format('opentype'),
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'rajdhani-bold';
    src: url('/template/pc/skin/font/rajdhani-bold.otf') format('opentype'),
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rajdhani-SemiBold';
    src: url('/template/pc/skin/font/Rajdhani-SemiBold.ttf') format('opentype'),
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/*网站头部开始*/
.head {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: var(--jcgd);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head.scroll {
    height: 80px;
    background: var(--gdbj);
    box-shadow: var(--zxyy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.head_a {
    width: 100%;
    height: 100%;
    padding: 0 50px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.head_aa {
    height: 100%;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_aaa {
    height: 22px;
    transition: var(--jcgd);
    object-fit: cover;
    display: block;
}
.head_aab {
    display: none;
}
.head.scroll .head_aaa {
    display: none;
}
.head.scroll .head_aab {
    height: 22px;
    transition: var(--jcgd);
    object-fit: cover;
    display: block;
}
.head_ab {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}
.head_aba {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}
.head_abaa {
    height: 100%;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_abaaa {
    height: 100%;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    color: var(--bsbj);
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head.scroll .head_abaaa {
    color: var(--zywz);
}
.head_abaa.active .head_abaaa, .head_abaa .head_abaaa:hover {
    color: var(--fzys);
}
.head_abaab {
    width: 130px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bsbj);
    box-shadow: var(--xxyy);
    border-radius: 7px;
    padding: 12px 0;
    display: none;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.head_abaa:hover .head_abaab {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_abaaba {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_abaabaa {
    width: 100%;
    font-size: 14px;
    line-height: 1;
    color: var(--zywz);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
.head_abaabaa:hover {
    background-color: var(--xfbj);
    color: var(--fzys);
}
.head_abb {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}
.head_abba {
    height: 100%;
    margin: 0 9px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    color: var(--bsbj);
}
.head_abba:first-child {
    margin-left: 26.5px;
}
.head.scroll .head_abba {
    color: var(--zywz);
}
.head_abba:before {
    content: "\e63a";
}
.head_abbb {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
}
.head_abbba {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.head_abbbaa {
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    color: var(--bsbj);
}
.head_abbbaa.yy:before {
    content: "\eac6";
}
.head_abbbaa.ly:before {
    content: "\eac8";
}
.head_abbbaa.ss:before {
    content: "\eac5";
}
.head_abbbaa.dh:before {
    content: "\e972";
    font-weight: 900;
}
.head_abbbaa.jt:before {
    content: "\eac7";
    font-size: 10px;
    opacity: 0.7;
}
.head.scroll .head_abbbaa {
    color: var(--zywz);
}
.head_abbba:hover .head_abbbaa {
    color: var(--fzys);
}
.head_abbba:hover .head_abbbaa.jt {
    transform: rotate(180deg);
    transition: var(--jcgd);
}
.head_abbbb {
    width: 130px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bsbj);
    box-shadow: var(--xxyy);
    border-radius: 7px;
    padding: 12px 0;
    display: none;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}
.head_abbb.yy .head_abbbb {
    width: 150px;
}
.head_abbb:hover .head_abbbb {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_abbbba {
    width: 100%;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
    color: var(--zywz);
    padding: 12px 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_abbb.yy .head_abbbba {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
}
.head_abbbba:hover {
    background-color: var(--xfbj);
    color: var(--fzys);
}
.head_abbbbaa {
    width: 20px;
    height: 20px;
    object-fit: cover;
    display: block;
}
.head_sstc {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.head_sstc_a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ztys);
    opacity: 0.9;
}
.head_sstc_b {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 1;
    color: var(--bsbj);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--jcgd);
    position: absolute;
    z-index: 99999;
    top: 50px;
    right: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.head_sstc_b:hover {
    color: var(--ztys);
    background: var(--fzys);
    transform: rotate(90deg);
}
.head_sstc_ba {
    font-size: 14px;
    line-height: 1;
}
.head_sstc_ba:before {
    content: "\eac4";
}
.head_sstc_c {
    width: 880px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_sstc_ca {
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.head_sstc_caa {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    border-bottom: 2px solid var(--jjyz);
    height: 100%;
    font-size: 18px;
    line-height: 1;
    color: var(--bsbj);
    transition: var(--jcgd);
}
.head_sstc_caa:focus {
    border-bottom-color: var(--fzys);
    padding-left: 10px;
}
.head_sstc_caa::placeholder {
    color: var(--qsyz);
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
}
.head_sstc_cab {
    height: 60px;
    border: none;
    background: none;
    outline: none;
    color: var(--bsbj);
    font-size: 22px;
    line-height: 1;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
}
.head_sstc_cab:hover {
    color: var(--fzys);
    transform: scale(1.1);
}
.head_sstc_cab::before {
    content: "\eac5";
}
.head_qpdh {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--ztys);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateX(-100%);
    transition: var(--msgd);
    display: flex;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}
.head_qpdh.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.head_qpdh_a {
    width: 30%;
    height: 100%;
    background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
    color: var(--bsbj);
    transform: translateX(-50px);
    opacity: 0;
    transition: var(--dhgd);
    padding: 100px;
    position: relative;
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}
.head_qpdh_a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 177, 106, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}
.head_qpdh.show .head_qpdh_a {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}
.head_qpdh_aa {
    width: 100%;
    color: var(--bsbj);
    line-height: 1;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.head_qpdh.show .head_qpdh_aa {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}
.head_qpdh_aaa {
    width: 80px;
    height: 80px;
    background: rgba(212, 177, 106, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 177, 106, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.head_qpdh.show .head_qpdh_aaa {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}
.head_qpdh_aaaa {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--jcgd);
}
.head_qpdh_aaa:hover .head_qpdh_aaaa {
    transform: scale(1.05);
}
.head_qpdh_aab {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.head_qpdh_aaba {
    width: 255px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    text-align-last: justify;
    position: relative;
    gap: 15px;
    padding-bottom: 20px;
    transition: var(--jcgd);
}
.head_qpdh_aaba:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58px;
    height: 2.5px;
    background: linear-gradient(270deg, transparent, var(--fzys), #E6C68A);
    border-radius: 25px;
    opacity: 0.9;
    transition: var(--jcgd);
}
.head_qpdh_aaba:hover:after {
    width: 100%;
}
.head_qpdh_aabaa {
    width: 100%;
    font-size: 30px;
    line-height: 1;
    color: var(--bsbj);
    font-weight: 700;
    text-align-last: justify;
    transition: var(--jcgd);
}
.head_qpdh_aaba:hover .head_qpdh_aabaa {
    color: var(--fzys);
}
.head_qpdh_aabab {
    width: 100%;
    font-size: 13px;
    line-height: 1;
    color: #E6C68A;
    text-transform: uppercase;
    text-align-last: justify;
    transition: var(--jcgd);
}
.head_qpdh_aabb {
    width: 100%;
    font-size: 16px;
    color: #E6C68A;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.head_qpdh.show .head_qpdh_aabb {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}
.head_qpdh_aac {
    width: 100%;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--jjyz);
    line-height: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
}
.head_qpdh.show .head_qpdh_aac {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}
.head_qpdh_aaca {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
    color: var(--jjyz);
    transition: var(--jcgd);
}
.head_qpdh_aaca:hover {
    color: var(--fzys);
    transform: translateX(5px);
}
.head_qpdh_aacaa {
    color: #E6C68A;
    opacity: 0.8;
    transition: var(--jcgd);
}
.head_qpdh_aaca:hover .head_qpdh_aacaa {
    opacity: 1;
    transform: scale(1.1);
}
.head_qpdh_aacaa.dz:before {
    content: "\e8c4";
}
.head_qpdh_aacaa.dh:before {
    content: "\e917";
}
.head_qpdh_aacaa.yx:before {
    content: "\e652";
}
.head_qpdh_aacaa.sj:before {
    content: "\e9bc";
}
.head_qpdh_ab {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    width: 100%;
    z-index: 2;
}
.head_qpdh.show .head_qpdh_ab {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}
.head_qpdh_aba {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: var(--jcgd);
}
.head_qpdh_abaa {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--fzys);
    font-size: 22px;
    line-height: 1;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    box-shadow: var(--xxyy);
    border: 1px solid rgba(212, 177, 106, 0.2);
}
.head_qpdh_abaaa.gzh {
    font-size: 19px;
}
.head_qpdh_abaaa.gzh:before {
    content: "\e632";
}
.head_qpdh_abaaa.sph {
    font-size: 13px;
    font-weight: 900;
}
.head_qpdh_abaaa.sph:before {
    content: "\e91a";
}
.head_qpdh_abaaa.ksh {
    font-size: 17px;
}
.head_qpdh_abaaa.ksh:before {
    content: "\e8dc";
}
.head_qpdh_abaaa.dyh {
    font-size: 17px;
}
.head_qpdh_abaaa.dyh:before {
    content: "\e8db";
}
.head_qpdh_abaaa.tth {
    font-size: 17px;
}
.head_qpdh_abaaa.tth:before {
    content: "\e623";
}
.head_qpdh_abaaa.xhs {
    font-size: 28px;
}
.head_qpdh_abaaa.xhs:before {
    content: "\eac2";
}
.head_qpdh_aba:hover .head_qpdh_abaa {
    background: var(--fzys);
    color: var(--ztys);
    box-shadow: var(--jsyy);
    border-color: transparent;
    transform: scale(1.1);
}
.head_qpdh_abab {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 120px;
    height: 120px;
    background: var(--bsbj);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--zxyy);
    opacity: 0;
    visibility: hidden;
    transition: var(--jcgd);
    z-index: 99;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 177, 106, 0.1);
}
.head_qpdh_abab::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bsbj);
}
.head_qpdh_aba:hover .head_qpdh_abab {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.head_qpdh_ababa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: var(--jcgd);
}
.head_qpdh_abab:hover .head_qpdh_ababa {
    transform: scale(1.05);
}
.head_qpdh_b {
    flex: 1;
    height: 100%;
    background: linear-gradient(180deg, #222 0%, #2a2a2a 100%);
    transform: translateX(50px);
    opacity: 0;
    transition: var(--dhgd);
    transition-delay: 0.2s;
    padding: 100px;
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_qpdh.show .head_qpdh_b {
    transform: translateX(0);
    opacity: 1;
}
.head_qpdh_ba {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 1;
    color: var(--fzys);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--jcgd);
    position: absolute;
    z-index: 99999;
    top: 50px;
    right: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 177, 106, 0.2);
    cursor: pointer;
}
.head_qpdh_ba:hover {
    color: var(--ztys);
    background: var(--fzys);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 0 20px rgba(212, 177, 106, 0.3);
}
.head_qpdh_baa {
    font-size: 14px;
    line-height: 1;
    transition: var(--jcgd);
}
.head_qpdh_baa:before {
    content: "\eac4";
}
.head_qpdh_bb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    gap: 40px;
}
.head_qpdh_bba {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    transition-delay: 0.4s;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.head_qpdh.show .head_qpdh_bba {
    transform: translateY(0);
    opacity: 1;
}
.head_qpdh_bbaa {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 30px 0;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}
.head_qpdh_bbaa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fzys), transparent);
    opacity: 0.7;
    transition: var(--jcgd);
}
.head_qpdh.show .head_qpdh_bbaa {
  transform: translateY(0);
  opacity: 1;
}
.head_qpdh.show .head_qpdh_bbaa:nth-child(1) {
    transition-delay: 0.50s;
}
.head_qpdh.show .head_qpdh_bbaa:nth-child(2) {
    transition-delay: 0.55s;
}
.head_qpdh.show .head_qpdh_bbaa:nth-child(3) {
    transition-delay: 0.6s;
}
.head_qpdh.show .head_qpdh_bbaa:nth-child(4) {
    transition-delay: 0.65s;
}
.head_qpdh.show .head_qpdh_bbaa:nth-child(5) {
    transition-delay: 0.7s;
}
.head_qpdh_bbaa:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(212, 177, 106, 0.3);
    box-shadow: var(--zxyy);
    transition: var(--jcgd);
}
.head_qpdh_bbaa:hover::after {
    height: 3px;
    opacity: 1;
}
.head_qpdh_bbaaa {
    width: 56px;
    height: 56px;
    background: rgba(212, 177, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fzys);
    font-size: 24px;
    transition: var(--jcgd);
    border: 1px solid rgba(212, 177, 106, 0.3);
}
.head_qpdh_bbaaa.dw:before {
    content: "\e90f";
}
.head_qpdh_bbaaa.tw:before {
    content: "\ea7b";
}
.head_qpdh_bbaaa.gh:before {
    content: "\ea7a";
}
.head_qpdh_bbaaa.fl:before {
    content: "\ea7e";
}
.head_qpdh_bbaaa.hh:before {
    content: "\ea7c";
}
.head_qpdh_bbaa:hover .head_qpdh_bbaaa {
    background: var(--fzys);
    color: var(--ztys);
    transform: rotate(5deg) scale(1.1);
    transition: var(--jcgd);
}
.head_qpdh_bbaab {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: var(--bsbj);
    transition: var(--jcgd);
}
.head_qpdh_bbaa:hover .head_qpdh_bbaab { 
    color: var(--fzys);
    transform: scale(1.05);
    transition: var(--jcgd);
}
.head_qpdh_bbb {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    transition-delay: 0.8s;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.head_qpdh.show .head_qpdh_bbb {
    transform: translateY(0);
    opacity: 1;
}
.head_qpdh_bbba {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: var(--jcgd);
}
.head_qpdh_bbba:hover {
    transform: translateX(5px);
}
.head_qpdh_bbbaa {
    font-size: 16px;
    color: var(--fzys);
    line-height: 1;
    transition: var(--jcgd);
}
.head_qpdh_bbba:hover .head_qpdh_bbbaa {
    transform: scale(1.1);
}
.head_qpdh_bbbaa:before {
    content: "\e917";
}
.head_qpdh_bbbab {
    font-size: 16px;
    color: var(--jjyz);
    line-height: 1;
    font-weight: 600;
    transition: var(--jcgd);
}
.head_qpdh_bbba:hover .head_qpdh_bbbab {
    color: var(--bsbj);
}
.head_qpdh_bbbb {
    height: 24px;
    font-size: 35px;
    color: var(--fzys);
    font-weight: 700;
    line-height: 24px;
    font-family: 'rajdhani-bold';
    letter-spacing: 2px;
    margin-right: -2px;
    transition: var(--jcgd);
}
.head_qpdh_bbb:hover .head_qpdh_bbbb {
    text-shadow: 0 0 10px rgba(212, 177, 106, 0.5);
}
.head_qpdh_bbc {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    transition-delay: 0.9s;
}
.head_qpdh.show .head_qpdh_bbc {
    transform: translateY(0);
    opacity: 1;
}
.head_qpdh_bbca {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    border-radius: 12px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 25px;
    transition: var(--jcgd);
}
.head_qpdh.show .head_qpdh_bbca {
    transform: translateY(0);
    opacity: 1;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(1) {
    transition-delay: 1.00s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(2) {
    transition-delay: 1.05s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(3) {
    transition-delay: 1.10s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(4) {
    transition-delay: 1.15s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(5) {
    transition-delay: 1.20s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(6) {
    transition-delay: 1.25s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(7) {
    transition-delay: 1.30s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(8) {
    transition-delay: 1.35s;
}
.head_qpdh.show .head_qpdh_bbca:nth-child(9) {
    transition-delay: 1.40s;
}
.head_qpdh_bbca:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 177, 106, 0.3);
    box-shadow: var(--zxyy);
    transform: translateY(-5px) scale(1.02);
}
.head_qpdh_bbcaa {
    font-size: 18px;
    color: var(--bsbj);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    transition: var(--jcgd);
}
.head_qpdh_bbca:hover .head_qpdh_bbcaa {
    color: var(--fzys);
    letter-spacing: 2px;
}
.head_qpdh_bbcaa:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    border-radius: 25px;
    background: linear-gradient(90deg, transparent, var(--fzys), transparent);
    opacity: 0.7;
    transition: var(--jcgd);
}
.head_qpdh_bbca:hover .head_qpdh_bbcaa:after { 
    width: 36px;
    opacity: 1;
}
.head_qpdh_bbcab {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: var(--jcgd);
}
.head_qpdh_bbcaba {
    width: 100%;
    font-size: 15px;
    color: var(--jjyz);
    line-height: 1;
    transition: var(--jcgd);
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.head_qpdh_bbcaba:hover {
    color: var(--fzys);
    transform: translateX(3px);
}
.head_qpdh_bbd {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--jcgd);
    transition-delay: 1.5s;
    position: relative;
}
.head_qpdh.show .head_qpdh_bbd {
    transform: translateY(0);
    opacity: 1;
}
.head_qpdh_bbda {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.head_qpdh_bbdaa {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    transition: var(--jcgd);
}
.head_qpdh_bbdaa:hover {
    transform: translateX(3px);
}
.head_qpdh_bbdaaa {
    font-size: 14px;
    color: var(--jjyz);
    line-height: 1;
    transition: var(--jcgd);
}
.head_qpdh_bbdaa:hover .head_qpdh_bbdaaa {
    color: var(--bsbj);
}
.head_qpdh_bbdaab {
    font-size: 14px;
    line-height: 1;
    color: var(--jjyz);
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.head_qpdh_bbdaaba {
    font-size: 13px;
    line-height: 1;
    transition: var(--jcgd);
}
.head_qpdh_bbdaaba:hover {
    color: var(--fzys);
    transform: scale(1.05);
}
.head_qpdh_bbdaaba a {
    font-size: 13px;
    line-height: 1;
    color: var(--jjyz);
    transition: var(--jcgd);
}
.head_qpdh_bbdaaba a:hover { 
    color: var(--fzys);
    text-decoration: underline;
    transition: var(--jcgd);
}
.head_qpdh_bbdab {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: var(--jcgd);
}
.head_qpdh_bbdaba {
    font-size: 14px;
    color: var(--jjyz);
    line-height: 1;
    transition: var(--jcgd);
    gap: 5px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
}
.head_qpdh_bbdab:hover .head_qpdh_bbdaba {
    background: rgba(255, 255, 255, 0.05);
}
.head_qpdh_bbdabaa {
    transition: var(--jcgd);
}
.head_qpdh_bbdab:hover .head_qpdh_bbdabaa {
    transform: scale(1.1);
}
.head_qpdh_bbdabaa:before {
    content: "\ea80";
}
.head_qpdh_bbdabab {
    font-size: 8px;
    line-height: 1;
    color: var(--fzys);
    transition: var(--jcgd);
}
.head_qpdh_bbdab:hover .head_qpdh_bbdabab {
    transform: rotate(180deg) scale(1.2);
}
.head_qpdh_bbdabb {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    width: fit-content;
    min-width: 200px;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(212, 177, 106, 0.2);
    padding: 20px;
    box-shadow: var(--zxyy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--jcgd);
    z-index: 99;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.head_qpdh_bbdab:hover .head_qpdh_bbdabb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: var(--jcgd);
}
.head_qpdh_bbdabb::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(34, 34, 34, 0.95);
}
.head_qpdh_bbdabba {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    transition: var(--jcgd);
}
.head_qpdh_bbdabba:hover {
    transform: translateY(-3px);
}
.head_qpdh_bbdabbaa {
    font-size: 14px;
    line-height: 1;
    color: var(--fzys);
    font-weight: 600;
    padding-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    position: relative;
    transition: var(--jcgd);
    text-align: center;
}
.head_qpdh_bbdabbaa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fzys), transparent);
    opacity: 0.7;
    transition: var(--jcgd);
}
.head_qpdh_bbdabba:hover .head_qpdh_bbdabbaa::after {
    width: 80%;
    opacity: 1;
}
.head_qpdh_bbdabbab {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}
.head_qpdh_bbdabbaba {
    width: 100%;
    font-size: 13px;
    line-height: 1;
    color: var(--jjyz);
    transition: var(--jcgd);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 3px 8px;
    border-radius: 4px;
}
.head_qpdh_bbdabbaba:hover {
    color: var(--fzys);
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.03);
}
/*网站底部结束*/
/*网站底部开始*/
.foot {
    width: 100%;
    background: var(--ztys);
    color: var(--jjyz);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.foot_a {
    width: var(--qzkd);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.foot_aa {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--fgxb);
}
.foot_aaa {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.foot_aaaa {
    height: 22px;
    object-fit: cover;
    display: block;
}
.foot_aab {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.foot_aaba {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
}
.foot_aabaa {
    width: 40px;
    height: 40px;
    background: var(--fgxb);
    border-radius: 50%;
    color: var(--qsyz);
    font-size: 20px;
    line-height: 1;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.foot_aabaaa.gzh {
    font-size: 23px;
}
.foot_aabaaa.gzh:before {
    content: "\e632";
}
.foot_aabaaa.sph {
    font-size: 17px;
    font-weight: 900;
}
.foot_aabaaa.sph:before {
    content: "\e91a";
}
.foot_aabaaa.ksh {
    font-size: 21px;
}
.foot_aabaaa.ksh:before {
    content: "\e8dc";
}
.foot_aabaaa.dyh {
    font-size: 21px;
}
.foot_aabaaa.dyh:before {
    content: "\e8db";
}
.foot_aabaaa.tth {
    font-size: 21px;
}
.foot_aabaaa.tth:before {
    content: "\e623";
}
.foot_aabaaa.xhs {
    font-size: 28px;
}
.foot_aabaaa.xhs:before {
    content: "\eac2";
}
.foot_aaba:hover .foot_aabaa {
    background: var(--fzys);
    color: var(--ztys);
}
.foot_aabab {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: var(--bsbj);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--zxyy);
    opacity: 0;
    visibility: hidden;
    transition: var(--jcgd);
    z-index: 99;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.foot_aabab::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bsbj);
}
.foot_aababa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.foot_aaba:hover .foot_aabab {
    opacity: 1;
    visibility: visible;
}
.foot_ab {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
}
.foot_aba {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}
.foot_abaa {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}
.foot_abaaa {
    font-size: 18px;
    line-height: 1;
    color: var(--bsbj);
    font-weight: 600;
    display: block;
    position: relative;
    padding-bottom: 20px;
}
.foot_abaaa:after {
    content: "";
    width: 18px;
    height: 3px;
    border-radius: 25px;
    background: var(--fzys);
    display: block;
    position: absolute;
    bottom: 0;
}
.foot_abaab {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.foot_abaaba {
    font-size: 14px;
    line-height: 1;
    color: var(--qsyz);
    transition: var(--jcgd);
}
.foot_abaaba:hover {
    color: var(--fzys);
    padding-left: 5px;
}
.foot_abaac {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.foot_abaaca {
    font-size: 14px;
    line-height: 1;
    color: var(--qsyz);
    transition: var(--jcgd);
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.foot_abaacaa {
    color: var(--fzys);
    width: 16px;
    line-height: 1;
}
.foot_abaacaa.dz:before {
    content: "\e8c4";
}
.foot_abaacaa.dh:before {
    content: "\e917";
}
.foot_abaacaa.yx:before {
    content: "\e652";
}
.foot_abaacab {
    transition: var(--jcgd);
}
.foot_abaaca:hover .foot_abaacab {
    color: var(--fzys);
}
.foot_abab {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.foot_ababa {
    font-size: 14px;
    line-height: 1;
    color: var(--bsbj);
    font-weight: 500;
}
.foot_ababb {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.foot_ababba {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    background: var(--fgxb);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--bsbj);
    font-size: 14px;
    line-height: 1;
    transition: var(--jcgd);
}
.foot_ababba::placeholder {
    color: var(--qsyz);
}
.foot_ababba:focus {
    outline: none;
    border-color: var(--fzys);
    background: var(--ztys);
}
.foot_ababbb {
    width: 80px;
    height: 40px;
    background: var(--fzys);
    color: var(--ztys);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: var(--jcgd);
}
.foot_ababbb:hover {
    background: var(--bsbj);
    color: var(--fzys);
}
.foot_b {
    width: 100%;
    height: 60px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
}
.foot_ba {
    width: var(--qzkd);
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.foot_baa {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.foot_baaa, .foot_baaa a {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    color: var(--bqyz);
    line-height: 1;
}
.foot_baaa a:hover {
    color: var(--fzys);
}
.foot_bab {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.foot_baba {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    color: var(--bqyz);
    line-height: 1;
}
.foot_baba:hover {
    color: var(--fzys);
}
.foot_babb {
    font-size: 13px;
    color: var(--bqyz);
}
.foot_nrtc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--jcgd);
}
.foot_nrtc.show {
    opacity: 1;
    visibility: visible;
}
.foot_nrtc_a {
    width: 880px;
    height: 70vh;
    background: var(--ztys);
    border-radius: 15px;
    position: relative;
    border: 1px solid var(--fgxb);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.foot_nrtc_aa {
    width: 100%;
    height: 80px;
    padding: 0 35px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--fgxb);
    position: relative;
}
.foot_nrtc_aaa {
    font-size: 18px;
    line-height: 1;
    color: var(--bsbj);
    font-weight: 600;
}
.foot_nrtc_aab {
    width: 30px;
    height: 30px;
    color: var(--qsyz);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    transition: var(--jcgd);
    border-radius: 50%;
    background: var(--fgxb);
    display: flex;
    align-items: center;
    justify-content: center;
}
.foot_nrtc_aab:hover {
    background: var(--fzys);
    color: var(--ztys);
    transform: rotate(90deg);
}
.foot_nrtc_aaba:before {
    content: "\eac4";
}
.foot_nrtc_ab {
    flex: 1;
    font-size: 14px;
    color: var(--qsyz);
    text-align: justify;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 35px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 15px;
}
.foot_nrtc_ab::-webkit-scrollbar {
    display: none;
    width: 0;
}
.foot_nrtc_ab p {
    width: 100%;
    line-height: 24px;
    margin: -5px 0;
}
/*网站底部结束*/
/*子页大图开始*/
.zydt {
    width: 100%;
    height: 400px;
    background: #000 url(/uploads/allimg/20251205/1-251205225942425.jpg) center top no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
}
.zydt_a {
    width: var(--qzkd);
    height: 100%;
    display: flex;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: flex-end;
}
.zydt_aa {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 30px;
}
.zydt_aaa {
    height: 15px;
    font-size: 22px;
    line-height: 19px;
    font-family: 'sinclair';
    color: var(--bsbj);
    text-transform: uppercase;
}
.zydt_aab {
    position: relative;
}
.zydt_aab:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 6px;
    height: 16px;
    background: var(--fzys);
}
/*子页大图结束*/
/*子页导航开始*/
.zydh {
    width: 100%;
    height: 80px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 2px solid var(--qsbk);
}
.zydh_a {
    width: var(--qzkd);
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.zydh_a:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #e4dfda;
    position: absolute;
    bottom: -2px;
}
.zydh_aa {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
}
.zydh_aa a {
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: var(--bqyz);
    font-weight: 700;
    gap: 7px;
}
.zydh_aa a:first-child::before {
    content: "\e6ca";
    font-family: 'iconfont';
    font-weight: 500;
    color: var(--fzys);
}
.zydh_aa a:before {
    content: "\e631";
    font-family: 'iconfont';
    font-weight: 500;
}
.zydh_ab {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.zydh_aba {
    height: 100%;
    position: relative;
    padding: 0 12.5px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.zydh_aba:first-child {
    padding-left: 0;
}
.zydh_aba:nth-last-child(2) {
    padding-right: 0;
}
.zydh_abaa {
    height: 100%;
    font-size: 14px;
    color: var(--zywz);
    font-weight: 600;
    line-height: 1;
    transition: var(--jcgd);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.zydh_aba.active .zydh_abaa {
    color: var(--fzys);
}
.zydt_abb {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background-color: var(--fzys);
    border-radius: 1px;
    transition: var(--msgd);
    z-index: 2;
    pointer-events: none;
}
/*子页导航结束*/