@charset "UTF-8";
/*
Theme Name: WXP-hskj
Theme URI: https://www.mapull.com
Author: wxp
Description: 开发属于自己的 wordpress 主题，零基础也能自定义 wordpress 主题
Version: 1.0
 */
/* 全局样式重置，去除浏览器默认边距和填充 */
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: "HarmonyOS_Sans_Black";
    src: url("/wp-content/uploads/fonts/HarmonyOS/HarmonyOS_Sans/HarmonyOS_Sans_Black.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HarmonyOS_Sans_Bold";
    src: url("/wp-content/uploads/fonts/HarmonyOS/HarmonyOS_Sans/HarmonyOS_Sans_Bold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HarmonyOS_Sans_Light";
    src: url("/wp-content/uploads/fonts/HarmonyOS/HarmonyOS_Sans/HarmonyOS_Sans_Light.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HarmonyOS_Sans_Medium";
    src: url("/wp-content/uploads/fonts/HarmonyOS/HarmonyOS_Sans/HarmonyOS_Sans_Medium.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HarmonyOS_Sans_Regular";
    src: url("/wp-content/uploads/fonts/HarmonyOS/HarmonyOS_Sans/HarmonyOS_Sans_Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Alimama_ShuHeiTi_Bold";
    src: url("/wp-content/uploads/fonts/AlimamaShuHeiTi/AlimamaShuHeiTi-Bold/AlimamaShuHeiTi-Bold.woff2") format("woff2"), url("/wp-content/uploads/fonts/AlimamaShuHeiTi/AlimamaShuHeiTi-Bold/AlimamaShuHeiTi-Bold.woff") format("woff"), url("/wp-content/uploads/fonts/AlimamaShuHeiTi/AlimamaShuHeiTi-Bold/AlimamaShuHeiTi-Bold.otf") format("otf"), url("/wp-content/uploads/fonts/AlimamaShuHeiTi/AlimamaShuHeiTi-Bold/AlimamaShuHeiTi-Bold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DIN_Alternate_Bold";
    src: url("/wp-content/uploads/fonts/DIN/DIN Alternate Bold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DIN_Condensed_Bold";
    src: url("/wp-content/uploads/fonts/DIN/DIN Condensed Bold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration:none;
color:#333;
}
.header {
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
  position: sticky;
  top: 0;
  left: 0;
}
.header.sticky {
  background: rgba(0, 0, 0, 0.6);
}
.header.sticky .custom-menu-text{
  color:#fff;
}
.small-nav {
    display: none;
}
.small-nav-bg {
    display: none;
}
/* 导航栏基本样式 */
.navbar {
    position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*height: calc(6 * var(--font-size));*/
    height:calc(5 * var(--font-size));
  margin: 0 auto;
}

/* logo样式 */
.logo {
    display: flex;
    align-items: center;
    width: calc(14.25 * var(--font-size));
    height: calc(5 * var(--font-size));
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 导航链接列表样式 */
.nav-links {
    display: flex;
    list-style-type: none;
    padding-right: calc(1.25 * var(--font-size));
    /*width: 50%;*/
    justify-content: flex-start;
    align-items: center;
    /*height: 90%;*/
    height:calc(5 * var(--font-size));
}
.nav-links li {
    /*width: 30%;*/
    border-radius: 0px 0px 8px 8px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #FFF;
    /* 你可以修改为你想要的文字颜色 */
    font-family: "HarmonyOS_Sans_Bold", sans-serif;
    font-size: calc(1 * var(--font-size));
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease;
    padding: 0 calc(1 * var(--font-size));
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.nav-links .custom-menu-text {
    text-decoration: none;
    color: #FFF;
    /* 你可以修改为你想要的文字颜色 */
    font-family: "HarmonyOS_Sans_Bold", sans-serif;
    font-size: calc(1 * var(--font-size));
    padding-bottom: calc(0.6 * var(--font-size));
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease;
    margin-bottom: 14px;
    padding-left: calc(0.5 * var(--font-size));
    padding-right: calc(0.5 * var(--font-size));
}
.nav-links .custom-menu-text:hover {
    color: #63E0FF;
    /* 鼠标悬停时文字颜色变化，可按需调整 */
    border-bottom-color: #63E0FF;
}
.wrap-footer {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.wrap-footer .img-bg {
    width: 100%;
}
.wrap-footer-content {
    width: 100%;
}
.wrap-footer-content .f-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.wrap-footer-content .footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1% 0;
}
.footer-middle-content-item-location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: calc(0.75 * var(--font-size));
}
.footer-middle-content-item-location img {
    width: calc(1.5 * var(--font-size));
    height: calc(1.5 * var(--font-size));
    float: left;
    margin-right: calc(0.75 * var(--font-size));
}
.footer-middle-content-item-location .txt {
    font-family: "HarmonyOS_Sans_Medium", sans-serif;
    font-weight: 500;
    font-size: calc(1.125 * var(--font-size));
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.wrap-footer-content .footer-middle .footer-middle-content-item {
    font-family: "HarmonyOS_Sans_Regular", sans-serif;
    font-weight: 400;
    font-size: calc(0.75 * var(--font-size));
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: calc(0.75 * var(--font-size));
}
.footer-bottom {
    width: 100%;
    height: 30px;
    /*margin-top: 15.94%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer-bottom .footer-bottom-content .txt {
    height: calc(0.875 * var(--font-size));
    font-family: "HarmonyOS_Sans_Light", sans-serif;
    font-weight: 300;
    font-size: calc(0.75 * var(--font-size));
    color: rgba(255, 255, 255, 0.6);
    line-height: calc(0.875 * var(--font-size));
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.footer-bottom .footer-bottom-content .txt:nth-child(1) {
    margin-right: 40px;
    cursor: pointer;
}
.footer-bottom .footer-bottom-content .txt a {
    height: calc(0.875 * var(--font-size));
    font-family: "HarmonyOS_Sans_Light", sans-serif;
    text-decoration: none;
    font-size: calc(0.75 * var(--font-size));
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}
.footer-bottom .footer-bottom-content .txt a:hover {
    color: #FFFFFF;
}
.footer-middle-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-middle-image .footer-middle-image-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer-middle-image .footer-middle-image-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-left: calc(0.75 * var(--font-size));
}
.footer-middle-image .footer-middle-image-left img {
    width: calc(6.75 * var(--font-size));
    height: calc(6.75 * var(--font-size));
}
.footer-middle-image .footer-middle-image-left .txt {
    height: calc(0.75 * var(--font-size));
    font-family: "HarmonyOS_Sans_Bold", sans-serif;
    font-weight: 300;
    font-size: calc(0.625 * var(--font-size));
    color: #FFFFFF;
    line-height: calc(0.75 * var(--font-size));
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: calc(0.75 * var(--font-size));
}
.footer-middle-image .footer-middle-image-right .txt1 {
    height: calc(1.25 * var(--font-size));
    font-family: "HarmonyOS_Sans_Bold", sans-serif;
    font-weight: bold;
    font-size: calc(1.125 * var(--font-size));
    color: #FFFFFF;
    line-height: calc(1.25 * var(--font-size));
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.footer-middle-image .footer-middle-image-right .txt2 {
    width: calc(4 * var(--font-size));
    height: calc(2.375 * var(--font-size));
    font-family: "HarmonyOS_Sans_Regular", sans-serif;
    font-weight: 400;
    font-size: calc(0.75 * var(--font-size));
    color: #FFFFFF;
    line-height: calc(1.25 * var(--font-size));
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(1 * var(--font-size));
}
.body-container {
    margin-top: -96px;
    position: relative;
    width: 99.99%;
}
.wrap-body {
    width: 100%;
}
.clear-fix {
    clear: both;
}
.current_page_item a {
    background: #63E0FF;
    border-radius: 0px 0px 8px 8px;
}
.current_page_item .custom-menu-text {
    color: #FFFFFF !important;
    border-bottom-color: #FFFFFF !important;
}
.nav-links li:hover a {
    background: #63E0FF;
    border-radius: 0px 0px 8px 8px;
}
.nav-links li:hover a .custom-menu-text {
    color: #FFFFFF !important;
    border-bottom-color: #FFFFFF !important;
}
.box-title-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 6%;
}
.box-title-group .box-title {
    font-family: "HarmonyOS_Sans_Black", sans-serif;
    font-weight: 900;
    font-size: calc(2 * var(--font-size));
    color: #161524;
    line-height: calc(2 * var(--font-size));
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.box-title-group .box-line {
    width: calc(8.375 * var(--font-size));
    height: calc(0.1875 * var(--font-size));
    position: relative;
    margin: 1% 0;
}
.box-title-group .box-line .line-show {
    width: calc(4.375 * var(--font-size));
    height: 100%;
    background: #1167FE;
    border-radius: calc(0.1875 * var(--font-size));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box-title-group .box-line .line {
    width: 100%;
    height: 0.5px;
    background: #cfcfe5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box-title-group .box-sub-title {
    font-family: "HarmonyOS_Sans_Regular", sans-serif;
    font-weight: 400;
    font-size: var(--font-size);
    color: #161524;
    line-height: calc(1 * var(--font-size));
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.div-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.div-show {
    display: block;
    opacity: 1;
}
.box-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-column {
    flex-direction: column;
}
.new-a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
}
/* 隐藏垂直滚动条 */
::-webkit-scrollbar {
    width: 0;
}
/* 隐藏水平滚动条 */
::-webkit-scrollbar-horizontal {
    height: 0;
}
@media screen and (min-width: 2048px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 1rem;
    }
    .common-width-1408px {
        width: 1640px;
    }
}
@media screen and (max-width: 2048px) and (min-width: 1920px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 1rem;
    }
    .common-width-1408px {
        width: 1440px;
    }
}
@media screen and (max-width: 1920px) and (min-width: 1600px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 0.9rem;
    }
    .common-width-1408px {
        width: 1440px;
    }
}
@media screen and (max-width: 1600px) and (min-width: 1410px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 0.9rem;
    }
    .common-width-1408px {
        width: 1380px;
    }
}
@media screen and (max-width: 1410px) and (min-width: 1280px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 0.8rem;
    }
    .common-width-1408px {
        width: 1080px;
    }
}
@media screen and (max-width: 1279px) {
    :root {
        --green-color: #F9FBFF;
        --font-size: 0.8rem;
    }
    .common-width-1408px {
        width: 90%;
    }
}
@media screen and (max-width: 800px) {
    .header.sticky,.header .navbar{
        height: calc(2.85 * var(--font-size)) !important;
    }
    .common-width-1408px {
        width: 100%;
    }
    .banner {
        height: 200px;
    }
    .banner .common-width-1408px {
        width: 90% !important;
    }
    .banner img {
        height: 100%;
    }
    .banner .banner-title-div {
        top: 55.83% !important;
    }
    .box-line {
        margin: calc(1 * var(--font-size)) 0 !important;
    }
    .header .small-nav {
        display: block !important;
        margin-right: calc(1.25 * var(--font-size));
    }
    .header .small-nav .small-nav-bg {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    .header .logo {
        width: calc(8.1125 * var(--font-size)) !important;
        height: calc(2.85 * var(--font-size)) !important;
    }
    .header .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        padding-right: 0 !important;
        width: 100% !important;
        background: #FFF;
        z-index: 100;
        height: auto !important;
    }
    .header .nav-links .custom-menu-text {
        color: #000 !important;
    }
    .header .nav-links .current_page_item a {
        border-radius: 0 !important;
    }
    .header .nav-links li {
        width: 100%;
        margin: auto !important;
        text-align: center;
        height: 40px;
        line-height: 40px;
    }
    .header .nav-links li a {
        display: block;
        line-height: 40px;
        border-bottom: none !important;
        color: #000 !important;
    }
    footer .wrap-footer {
        /*height: 500px;*/
    }
    footer .wrap-footer .footer-middle {
        width: 70% !important;
        flex-direction: column;
        justify-content: space-around !important;
        align-items: flex-start !important;
        height: 92% !important;
    }
    footer .wrap-footer .footer-middle .footer-middle-content .footer-middle-image-left {
        align-items: flex-start !important;
    }
    footer .wrap-footer .footer-bottom {
        top: 92% !important;
        height: 8% !important;
    }
    :root {
        --font-size: 0.8rem;
    }
    .fontSize1 {
        font-size: calc(1.5 * var(--font-size)) !important;
        line-height: calc(2 * var(--font-size)) !important;
        height: auto !important;
    }
    .fontSize2 {
        font-size: calc(1.2 * var(--font-size)) !important;
        line-height: calc(1.5 * var(--font-size)) !important;
        height: auto !important;
        margin-top: calc(1 * var(--font-size)) !important;
    }
    .fontSize3 {
        font-size: calc(0.8 * var(--font-size)) !important;
    }
    .about-div {
        margin-top: 0 !important;
    }
}
