:root {
    font-size: 16px;
    --wmc: clamp(240px, 90%, 1400px);
    --c: #0c3078;
    --cc: #fe4e00;
    --ccc: #054E9C;
    --nav: 100px;
    --wmc-width: 90%;
    --wmc-max-width: 1440px;
    --ptb: clamp(60px, 4vw, 4rem);
    --sub-ptb: clamp(20px, 4vw, 80px);
    --1: clamp(calc(1 * 5px), 1vw, 1rem);
    --2: clamp(calc(2 * 5px), 2vw, 2rem);
    --3: clamp(calc(3 * 5px), 3vw, 3rem);
    --4: clamp(calc(4 * 5px), 4vw, 4rem);
    --5: clamp(calc(5 * 5px), 5vw, 5rem);
    --6: clamp(calc(6 * 5px), 6vw, 6rem);
    --7: clamp(calc(7 * 5px), 7vw, 7rem);
    --8: clamp(calc(8 * 5px), 8vw, 8rem);
    --shadow: 0 0 15px #1111;
}

::-webkit-scrollbar {
    width: 6px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

* {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    opacity: 0;
    font-size: 16px;
    line-height: 1.7;
}

body.wd-show {
    opacity: 1;
}

.wmc, [wmc] {
    width: var(--wmc-width) !important;
    max-width: var(--wmc-max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wmc {
    width: var(--wmc);
    margin-left: auto;
    margin-right: auto;
}

.grid-auto-1fr {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-gap: 15px;
}

.grid-auto-auto-1fr-auto {
    display: grid !important;
    grid-template-columns: auto auto 1fr auto;
    grid-gap: 15px;
}

.flex {
    display: flex;
}

.flex-1 > * {
    flex: 1;
}

.text-align-center {
    text-align: center;
}

.grid-auto-1fr-auto {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-gap: 15px;
}

.s .s-text-align-right {
    text-align: right
}

.grid-auto-1fr {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-gap: 15px;
}

.gap-5 {
    gap: 5px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-30 {
    padding-top: 20px;
}

.pb-30 {
    padding-bottom: 20px;
}

.hide {
    display: none !important;
}

.grid-1fr-1fr {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

[class*='grid-'] > * {
    overflow: hidden;
}

[class*='a-grid-'] > * {
    overflow: hidden;
}

.s-gap-3vw {
    gap: 3vw;
}

.ptb {
    padding-top: 70px;
    padding-bottom: 70px;
}

.a .a-grid-1fr {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 11px;
}

.a .a-grid-2fr {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.index-title-1 {
    font-size: 32px;
    font-weight: bolder;
    position:relative;
    padding-bottom:10px;
    margin-bottom:15px;
}
.index-title-1.align-left {
    text-align:left;
}
.index-title-1.text-align-center {
    text-align: center;
}
@keyframes index-title-animation {
    0% {
        transform:scale(1, 1);
    }
    100% {
        transform:scale(0.4, 1);
    }
}
.index-title-1:before {
    content: "";
    display: block;
    width: 1.5em;
    height: 5px;
    background-color: var(--c);
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-1em ;
    border-radius:50vw;
    animation:index-title-animation 2s linear infinite alternate;
    transform-origin:left;
}
.s .index-title-1.align-left:before {
    left:0;
    margin-left:0;
}
.index-title-1:after {
    content: "";
    display: block;
    width: 1.5em;
    height: 5px;
    background-color: var(--cc);
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-0.3em;
    border-radius:50vw;
    animation:index-title-animation 2s linear infinite alternate-reverse;
    transform-origin:right;
}
.s .index-title-1.align-left:after {
    left:0;
    margin-left:calc(0.8em + 0px);
}
.title-mb {
    margin-bottom: 40px;
}

.grid-1fr-1fr-1fr-1fr {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
}

.gap-25 {
    gap: 25px;
}

.a .a-grid-15 {
    gap: 15px;
}

.img-full img {
    width: 100%;
}

.hove-scale {
    overflow: hidden;
}

.hove-scale img {
    transition: 1s;
}

.hove-scale:hover img {
    transform: scale(1.05);
}

.hover-mc {
    transition: .5s;
}

.hover-mc:hover {
    color: var(--c) !important;
}

.index-more {
    display: block;
    width: max-content;
    padding: 11px 50px;
    background-color: var(--c);
    color: #fff;
    font-size: 14px;
    border-radius: 50vw;
}

.index-more.margin-center {
    margin-left: auto;
    margin-right: auto;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.grid-1fr-auto {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-gap: 15px;
}

.pb-0 {
    padding-bottom: 0;
}

.s .s-grid-align-center {
    align-items: center;
}

.wd-scroll-container {
    width: 100000vw;
    position: relative;
    will-change: transform;
}

.wd-scroll-wrapper {
    display: flex;
    width: max-content;
}

.wd-overflow-hidden {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.pagination {
    margin-top: var(--4);
    display: flex;
    justify-content: center;
}

.page-num, .page-link {
    position: relative;
    display: block;
    padding: 0.3rem 0.45rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-num-current {
    z-index: 1;
    color: #fff;
    background-color: var(--c);
    border-color: var(--c);
}

.page-link:hover {
    z-index: 2;
    color: var(--c);
    text-decoration: none;
}

.page-num:not(:disabled):not(.page-num-current):hover {
    color: var(--c);
    background: #dee2e6;
    border-color: #dee2e6;
}

.wd-hover-scale {
    overflow: hidden;
}

.wd-hover-scale img {
    transition: 1s;
}

.wd-hover-scale:hover img {
    transform: scale(1.05);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

[class*="grid-"] > div {
    overflow: hidden;
}

.wd-bg-fff {
    background-color: #fff;
}

img {
    width: 100%;
}

.wd-svgs {
    display: none;
}

.wd-sub-content {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.wd-button {
    background-color: var(--c) !important;
    border-color: var(--c) !important;
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    padding: 10px 30px !important;
    transition: 0.5s !important;
    border-radius: 0 !important;
    color: #fff;
    font-size: 14px;
}

.wd-button svg {
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 5px;
    transition: 1s;
}

.wd-button svg path {
    fill: #fff;
}

.wd-summary {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.wd-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.wd-sub [ptb] {
    padding-top: calc(var(--ptb)) !important;
    padding-bottom: calc(var(--ptb)) !important;
}

.wd-sub-content-title {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddda;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.wd-sub-content-title:after {
    content: "";
    display: block;
    width: 1em;
    height: 3px;
    background-color: var(--c);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.wd-sub-content p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.wd-sub-banner {
    height: auto;
    aspect-ratio: 1920/500;
    background: var(--bg) center center / cover;
}

.wd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.a .wd-grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
}

.wd-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.a .wd-grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
}

.img img {
    width: 100%;
}

.wd-hide {
    display: none !important;
}

.wd-fs-18 {
    font-size: 18px;
}

.wd-index-title-icon {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
    gap: 30px;
}

.wd-index-title-icon img {
    width: max-content;
}

.wd-index-title-icon:before {
    content: "";
    display: block;
    width: 15%;
    background: var(--c);
    height: 1px;
}

.wd-index-title-icon.wd-fff:before {
    background-color: #fff;
}

.wd-index-title-icon:after {
    content: "";
    display: block;
    width: 15%;
    background: var(--c);
    height: 1px;
}

.wd-index-title-icon.wd-fff:after {
    background-color: #fff;
}

video {
    width: 100%;
}

.wd-video-container {
    position: relative;
}

.wd-video-container .wd-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.wd-video-container .wd-play-button svg {
    width: 70px;
    height: 70px;
    transition: 1s;
}

.wd-video-container .wd-play-button:hover svg {
    transform: rotate(360deg);
}

.wd-video-container .wd-play-button svg path {
    fill: #fff;
}

.wd-video-container .wd-poster {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
}

.wd-gap-0 {
    gap: 0 !important;
}

.wd-align-items-center {
    align-items: center;
}

.wd-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.wd-img {
    display: flex;
}

.wd-img a {
    display: flex;
    width: 100%;
}

.grid-auto1fr {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.mcc {
    color: var(--cc);
}

.wd-tab {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: var(--3);
}

.wd-tab a {
    display: block;
    border-radius: 50vw;
    background-color: #f1f1f1;
    padding: 14px 55px;
    transition: .5s;
    color: #333;
}

.wd-tab a:is(.wd-current, :hover) {
    background-color: var(--c);
    color: #fff;
}

[wa-tab-content] {
    display: none;
}

[wa-tab-content].wd-current {
    display: block;
}

.wd-border-ddd {
    border: 1px solid #ddd;
}

.my-map {
    margin: 0 auto;
    width: 100%;
    height: 500px;
}

.amap-container {
    height: 100%;
}

button[type="submit"] {
    cursor: pointer;
}

.text-center {
    text-align: center;
}

.wd-sub-cate-bread {
    background: #efeff6;
    padding: 15px;
}

[wa-pop] {
    cursor: pointer;
}

[wa-pop] * {
    cursor: pointer;
}

.wd-pop-info {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    text-align: center;
}

.wd-pop-info * {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    text-align: center;
}

.wd-pop-info p {
    margin-top: 10px;
}

.wd-pop-info.wd-show {
    opacity: 1;
    visibility: visible;
}

.wd-pop-info .wd-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
}

.wd-pop-info .wd-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: scale-down;
}

.wd-pop-info .wd-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: 1s;
}

.wd-pop-info .wd-close svg {
    margin: 0;
    width: 20px;
    height: 20px;
}

.wd-pop-info .wd-close path {
    fill: #fff;
}

.wd-pop-info .wd-container > img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.wd-object-fit-scale-down {
    object-fit: scale-down !important;
}

.wd-list-20250616003541 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.a .wd-list-20250616003541 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
}

.wd-list-20250616003541 .title {
    padding: 10px;
    font-size: 18px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#map-container {
    height: 500px;
}

.a .grid-mo-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
}

.list-title-1 {
    font-size:16px;
    color:#333;
}
.index-title-en {
    display:block;
    text-align:center;
    font-size:16px;
    color:#555;
}
.index-title-en.align-left {
    text-align:left;
}