/* 基础样式 */
body {
    width: auto;
    height: auto;
    font-size: 1rem;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
}

.flex-col-max-width {
    max-width: 870px; /* 设置最大宽度 */
    margin-left: auto; /* 将左边距自动调整，使内容居中 */
    margin-right: auto; /* 将右边距自动调整，使内容居中 */
}

@media (max-width: 1024px) {
    .flex-col-max-width {
        max-width: 100%; /* 在小屏幕下，使最大宽度为 100%，以适应屏幕宽度 */
        padding-left: 16px; /* 设置左内边距 */
        padding-right: 16px; /* 设置右内边距 */
    }
}


.card {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0 60px 60px 0;
    border: 1px solid rgba(209, 213, 219, 0.3);
    padding-right: 60px;
}

.box-shadow {
    box-shadow:0px 4px 24px 1px #ddd;
}

.PrimaryList {
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    display: flex;
}

.PrimaryLink {
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.DropDownMenu {
    display: none;
    width: auto;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    z-index: 2;
    white-space: nowrap;
}

.DropDownMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.DropDownMenu ul li {
    padding: 10px;
    cursor: pointer;
}

/* 鼠标悬停时显示下拉菜单 */
.primary1:hover .DropDownMenu {
    /* //display: block; */
}

.top_background-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.inner {
    align-items: center;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.jaLinkButton {
    display: inline-block;
    margin-top: 20px;
    /* 根据需要调整按钮的垂直间距 */
    text-decoration: none;
}

.jaLinkButtonTxt {
    display: inline-block;
    padding: 20px 40px;
    /* 调整按钮的内边距 */
    background-color: #c39e30;
    /* 按钮的背景颜色 */
    color: #ffffff;
    /* 按钮的文本颜色 */
    border: none;
    border-radius: 40px;
    /* 按钮的圆角半径 */
    cursor: pointer;
    transition: background-color 0.3s;
    /* 按钮背景颜色变化的过渡效果 */
}

.jaLinkButtonTxt:hover {
    background-color: #7d4803;
    /* 鼠标悬停时按钮的背景颜色 */
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #333
}

a:hover {
    color: #e1b648;
}


.mobMenuMainBtn {
    display: none;
}

.PrimaryList {
    display: flex;
}

.PrimaryLink svg,
.DropDownMenu svg {
    display: none;
}

.close {
    display: none;
}

.futrue {
    flex-wrap: wrap;
}

.futrue>div {
    width: 33.33%;
    text-align: center;
}


.fold .DropDownMenu {
    position: absolute;
    display: block;
    transition: 1s ease-in;
}

@media (max-width: 1024px) {
    .PrimaryList {
        /* 在屏幕宽度大于等于 1024px 时应用的样式 */
        position: absolute;
        left: 0;
        top: -105vh;
        width: 100vw;
        height: 100vh;
        background: #fff;
        padding: 1rem;
        padding-top: 5rem;

    }

    .PrimaryLink svg,
    .DropDownMenu svg {
        display: inline-block;
    }

    .show .PrimaryList,
    .show .close {
        display: block;
    }


    .show .PrimaryList {
        top: 0;
        transform: 1800ms;
    }

    .PrimaryLink {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .DropDownMenu {
        text-indent: 2rem;
    }

    .DropDownMenu li {
        display: flex;
        justify-content: space-between;
    }

    .fold .DropDownMenu {
        display: block;
        position: relative;
        box-shadow: none;
    }

    .close {
        position: absolute;
        right: 1.5rem;
        top: 1.2rem;
        z-index: 999;
    }

    .home {
        /* position:fixed; */
        z-index: 999;
    }

    .mobMenuMainBtn {
        display: block;
    }

    .hasChildLink .linkclose {
        display: none;
    }


    .fold .linkplus {
        display: none;
    }

    .fold .linkclose {
        display: block;

    }


    .norrContent {
        flex-direction: column;
    }

    .norrContent.last {
        flex-direction: column-reverse;
    }

    .futrue>div {
        width: 50%;
    }

    .links li {
        margin: 0;
    }

    .mob-h {
        height: 15rem;
    }
}