body {
    scrollbar-width: thin;
    /* For Firefox: Use thin scrollbar */
    scrollbar-color: #014983 #f0f0f0;
    /* For Firefox: Customize scrollbar colors */
    margin: 0;
    font-family: sans-serif;


}
select{
    display: none;!important;
}
a {
    color: #2f363c;
}

.wrapper-wide {

    position: relative;
    padding: 25px;
    background-color: #f7f7f7;
}

.wrapper-wide .bread_crumb {

    color: #555555;
    font-size: clamp(16px, 2vw, 24px);
}


img[src=""],
img:not([src]) {
    opacity: 0;

}

.lazy-load {
}

a {
    text-decoration: none
}

.topImg {
    width: 100%;

}

.topHeight {
    margin-top: 100px;
}

.topImg img {
    height: auto;
    width: 100%;
    object-fit: cover;

}

.navbar {
    color: #23292e;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.95);

}

.navbar-header {
    display: flex;
    height: 5em;
    justify-content: right;
    align-items: center;
    margin: 10px 20px;
}

.navbar-logo {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.navbar-logo img {
    height: 40px;
    width: auto;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    position: relative;
    margin: 0 15px;
    cursor: pointer;
}

.menu a {
    text-decoration: none;
    color: #23292e;
    font-size: 16px;

}

.menu > li > a {
    color: #23292e;
    transition: color 0.3s;
    font-weight: 700;
}

.menu > li > a:hover {
    color: #014983;
}

.language-switch {
    position: relative;
    display: flex;
    align-items: center;
}

.language-icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid #ccc;
}

.language-icon:hover {
    transform: scale(1.1);
}

.language-dropdown {
    display: block; /* 确保元素始终存在以使 transition 生效 */
    position: absolute;
    top: 100%;
    right: -10px;

    padding: 10px;
    line-height: 25px;
    border-radius: 5px;
    opacity: 0;

    height: 0;
    transform: translateY(-20%);

    pointer-events: none; /* 默认不可点击 */
    transition: opacity 0.1s ease, height 0.5s ease, transform 0.5s ease;
}

.language-dropdown.show {
    opacity: 1;
    height: auto;
    transform: translateY(0);
    pointer-events: auto; /* 显示时可点击 */
}

.language-dropdown a {
    border-top: 1px solid #ccc;
}

.hidden-menu {
    display: grid;
    flex-wrap: wrap;
    top: 0;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: white;
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 9;
    transform: translateY(-70px);
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-bottom: 1px #ccc ;
    transition: transform 0.3s ease-out, opacity 0.1s ease-in;
}

.hidden-menu img {
    max-height: 150px;
}


.hidden-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);

}

.hidden-menu a {
    visibility: hidden;
    color: #004F91;
    padding: 10px;
    font-size: 1em;
    font-weight: 600;
    transform: translateY(-20px);
    transition: transform 0.3s ease-out
}

.hidden-menu a.show {
    transform: translateY(0);
    visibility: visible;

}

.hidden-menu a:hover {

    transform: scale(1.02);


}


.submenu {
    display: none !important;
}


@media (max-width: 1330px) {
    .menu > li > a {
        color: #23292e;
        transition: color 0.3s;
        font-weight: 400;
        font-size: 16px;
    }

    .menu > li {
        position: relative;
        margin: 0 10px;
        cursor: pointer;
    }

    .navbar-logo img {
        height: 40px;
        width: 40px;
        object-fit: cover;

        object-position: left;
    }
}

.right-btn {
    padding: 4px;
    border-radius: 50%;
    border: 1px solid #004f91;
    color: #004f91;
    background-color: #fff;
    font-weight: bold;

}

@media (max-width: 1024px) {
    .navbar-header {
        justify-content: center;
        padding: 0 !important;
    }

    .navbar-logo img {
        height: 40px;
        width: auto;
        object-fit: cover;

        object-position: left;
    }


    .Active {

        box-shadow: 4px 4px 4px rgb(22, 183, 119, 0.6);
    }

    .menu,
    .language-switch {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;

        top: 50%;
        transform: translateY(-50%);
        background: #014983;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 8px 15px;
        cursor: pointer;
        right: 10px;
        z-index: 1001;
    }

    .menu-toggle:focus {
        outline: none;
    }


    .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu.show {
        display: block;
    }

    .mobile-menu .menu,
    .mobile-menu .language-switch {
        display: block;
        margin-bottom: 20px;
        gap: 1em;
    }

    .mobile-menu .language-switch a {

        margin-right: 20px;

    }

    .mobile-menu .menu li {
        margin: 2em 0;
    }

    .mobile-menu .menu li a {
        font-size: 18px;
    }

    .mobile-menu .submenu {
        display: none;
        /* Hide submenus by default */
        padding-left: 20px;
        /* Indent submenus */
        margin-top: 10px;
        /* Add spacing below parent menu item */
    }

    .mobile-menu .menu li.open > .submenu {
        display: block;
        /* Show submenu when parent is open */
    }

    .mobile-menu .menu li > a.toggle-submenu {
        display: inline-block;
        margin-left: 10px;
        font-size: 16px;
        cursor: pointer;
        color: #014983;
    }
}

.sub li {
    margin-left: 2em !important;
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
        /* Hide mobile menu on larger screens */
    }

    .menu-toggle {
        display: none !important;
        /* Hide menu toggle button on larger screens */
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vw / 1920 * 800);
    max-height: 800px;
    overflow: hidden;
    top: 100px;
    background-color: #fff; /* 背景色 */
    margin-bottom: 100px;
    opacity: 0;
}


.slide {
    position: absolute;
    width: 100%;
    height: 100%;

    left: 0;

    animation: slideremove 1s ease-in-out forwards;

}

.slide.active {

    animation: slideActive 1s ease-in-out forwards;

}

:root {
    --random:100%


}

.y_left_loading {

    animation: YActive 1s ease-in-out forwards;

}
.x_left_loading {

    animation: XActive 1s ease-in-out forwards;
}

@keyframes YActive {
    from {
        opacity: 0;
        transform: translateY(var(--random));
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes XActive {
    from {
        opacity: 0;
        transform: translateX(var(--random));
    }

    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateX(0);
    }
}


@keyframes slideremove {
    from {
        transform: translateY(0);

    }

    to {

        filter: blur(10px);
        transform: translateY(100%);
    }
}


@keyframes slideActive {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        z-index: 1;
        filter: blur(0px);
        transform: translateY(0);


    }
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填充容器 */

}


.tabs {
    display: flex;
    justify-content: center;

    border-bottom: 2px solid #ddd;
}

.tab-button {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #f1f1f1;
}

.tab-button.active {
    background-color: #fff;
    border-bottom: 1px solid #16b777;
    color: #16b777;
    font-weight: bold;
}

.tab-content {
    padding: 20px;
    background-color: #fff;

    border-radius: 5px;
}

.slide-content {
    position: absolute;
    /*bottom: -20%; !* 初始位置在图片下方 *!*/
    /*left: 30%;*/
    transform: translateX(-50%);
    text-align: left;
    color: white;

    opacity: 0; /* 初始透明度为 0 */
    transition: bottom 1.5s ease, opacity 0.5s ease; /* 修复过渡效果 */
}

.slide.active .slide-content {
    bottom: 10%; /* 最终位置 */
    left: 55%; /* 最终位置 */
    width: 100vw;
    opacity: 1; /* 显示文字 */
    padding: 20px;
}

.slide-content h3 {
    font-size: 3em;
    margin: 10px;
}

.slide-content p {
    font-size: 1em;
    border-right: 1px solid #FFF;

}


.text-button-container {
    display: flex;
    align-items: center;
    gap: 20px; /* 控制间距 */
}

.text-button-container p {
    margin: 0; /* 移除默认外边距 */
    max-width: 30%;
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 10px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #014983;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: black;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.products {


    margin-bottom: 2rem;


}

.products .product-content {
    background-color: #ecf0f9;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}
.dshow {

    display: none
}
.product-images .card .front {


    background-size: auto 100%;
    background-attachment: initial;
    background-position: center center;
    background-repeat: no-repeat;
    max-height: 250px;
    max-width: 250px;
    transition: background-image 0.3s ease;

}

.picture {
    position: relative;
    overflow: hidden;
    background-size: 100%;
    background-position: center;
    transition: background-size 0.3s ease;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    height: 250px;
    width: 250px;
    border-radius: 3px;
    background-color: rgb(0, 79, 145, 0.3);
}

.heading {

    text-align: center;
    margin: 1rem 0;
    font-weight: 500;
    font-size: 1.618rem;
    text-transform: uppercase;
    letter-spacing: 0.1ch;
    line-height: 1;
    padding: 2em 0;

    position: relative;
}

.products .right {
    text-align: center !important;
}

.products .card {
    color: inherit;
    cursor: pointer;
    width: calc(25% - 40px);
    background: linear-gradient(to bottom, #797a7b, #e0e2e7);
    height: 400px;
    min-height: 400px;
    min-width: 300px;
    perspective: 1000px;
    border-radius: 3px;
    position: relative;

}

.products .card p {
    margin: 10px;


}


.maps {

    width: 100%;
    height: calc(100vh - 200px);
}

.gm-style-iw-d {

    overflow: hidden !important;
}


@media screen and (max-width: 640px) {
    .products .card {
        width: 100%;
    }

}

.products .front, .products .back {
    display: flex;
    color: #fff;
    text-align: left;
    justify-content: left;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;

    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: ease-in-out 500ms;

}

.products .front {


    font-size: 1.618rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;

    background-size: auto 90%;
    background-attachment: initial;
    background-position: center center;
    background-repeat: no-repeat;
}

.products .front p {
    position: fixed;
    margin: 10px;
    bottom: 10px;
}

.products .front:before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
linear-gradient(to bottom, #797a7b, #e0e2e7) opacity: 0.25;
    z-index: -1;
}

.products .card:hover .front {
    transform: rotateY(180deg);
}

.products .card:nth-child(even):hover .front {
    transform: rotateY(-180deg);
}

.products .back {

    transform: rotateY(-180deg);

}

.products .back .button {
    background: #ccc
}

.products .back .button:before {
    box-shadow: 0 0 10px 10px rgba(26, 87, 230, 0.25);
    background-color: rgba(26, 87, 230, 0.25);
}

.products .card:hover .back {
    transform: rotateY(0deg);
}


.products .button {
    transform: translateZ(40px);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-weight: bold;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 4px;
    font: inherit;
    border: none;
    position: relative;
    transform-style: preserve-3d;
    transition: 300ms ease;
}

.products .button:before {
    transition: 300ms ease;
    position: absolute;
    display: block;
    content: "";
    transform: translateZ(-40px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    border-radius: 100px;
    left: 10px;
    top: 16px;
}

.products .button:hover {
    transform: translateZ(55px);
}

.products .button:hover:before {
    transform: translateZ(-55px);
}

.products .button:active {
    transform: translateZ(20px);
}

.products .button:active:before {
    transform: translateZ(-20px);
    top: 12px;
}

.back .p {

    margin: 10px;

}

.back .button {

    margin: 10px;

}

.title_button {
    color: #23292e;
    background-color: #fff;

    font-size: 18px;
    border-radius: 5px !important;
    text-align: center;
    padding: 10px;

}

.hide {
    display: none;
}


.a_button {

    color: #808080;
    background-color: #00000000;
    border: 1px solid #999999;
    font-size: 18px;
    border-radius: 10px !important;
    text-align: center;
    padding: 15px 53px;
}

.a_button:hover {
    color: #fff;
    background-Color: #00b95e;

}

.hero {

    margin: 0;


    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.mains {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-overview {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.product-overview .top-images {
    flex-direction: column;
    gap: 20px;
    width: 50%;
    text-align: center;

    border-radius: 5px;

}

.product-overview .image-container {
    /*background: linear-gradient(to bottom, #797a7b, #e0e2e7);*/
    /* 添加背景色 */


    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中，可选 */
    height: 600px;
    width: 100%
}

.product-overview .image-containers {
    background: linear-gradient(to bottom, #797a7b, #e0e2e7);

    /* 添加背景色 */
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中，可选 */

    height: 300px;
    width: 100%
}

.product-overview .image-containers img {
    height: 80%;

    width: auto;

}

.product-overview .image-containers img:hover {

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.product-overview .image-container img {
    height: 80%;
    width: auto;

    cursor: pointer;
}

/*.product-overview .image-container img:hover {*/

/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
/*}*/

.image-popup {
    position: absolute;
    visibility: hidden;

    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中，可选 */
    background: #fff;
    /* 背景透明 */

    border: 1px solid #ccc;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);


    z-index: 1000;
}

.image-popup.show {
    visibility: visible;
    animation: popupActive 0.2s ease-out forwards;

}

@keyframes popupActive {
    from {

        opacity: 0;
        scale: 0.1;
        left: 0;

    }

    to {
        scale: 1;
        opacity: 1;

    }
}

@keyframes popupRemove {
    from {
        scale: 1;
        opacity: 1;
    }

    to {
        scale: 0.1;
        left: 0;
        opacity: 0;

    }
}


.image-popup img {
    height: 80%;
    display: block;
}

.product-overview .bottom-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.product-overview .bottom-images img {
    display: block;
    margin: 0 auto;
    height: 80%;
    width: auto;
}

.product-overview .product-details {
    width: 50%;
}

.product-details h1 {
    margin: 20px 0;
}

.product-details p {
    margin: 10px 0;
}

.features {
    margin-bottom: 40px;
}

.features h2 {
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.feature-item img {
    width: auto;
    height: 100px;
    margin-bottom: 10px;
}

.specifications {
    margin-bottom: 40px;
}

.specifications h2 {
    margin-bottom: 20px;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
}

.specifications table th,
.specifications table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}


.color-selector {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #a39d9d;
    cursor: pointer;

    transition: box-shadow 0.3s ease;
}


.color-option.selected {
    border-color: rgba(22, 183, 119, 0.8);
    box-shadow: 0 0 10px rgba(22, 183, 119, 0.8);
}

.color-name {
    margin-top: 10px;
    font-weight: bold;
}

.shaft-selector {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.radio-group {
    display: flex;
    gap: 20px; /* 控制单选框之间的间距 */
    align-items: center;
    padding: 10px 0;
}

.radio-group input[type="radio"] {
    display: none; /* 隐藏默认单选框 */
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

.search-box {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-box img {

    height: 100%;
    object-fit: contain;
    position: absolute;

}

.search-box .hideainput {
    position: relative;
    z-index: 1;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    width: 100vw;
    max-width: 840px;
    top: -50px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-right: 46px;
    /* 为图标留出空间 */
    outline: none;
    /* 移除默认聚焦样式 */

}

.search-box .hideainput:focus {
    border-bottom: 2px solid #007BFF;
    /* 聚焦时加粗下划线 */
}

.search-box .search-title {
    position: absolute;
    font-size: 3em;
    top: 12%;
    z-index: 1000;
    font-weight: 600;
}

.search-box .input-icon {
    position: relative;

    left: 800px;
    height: 40px;


    font-size: 20px;
    color: #ccc;
    pointer-events: none;
    top: -50px;
}


.search-box .input-icon img {

    z-index: 999;

}
@media (max-width: 600px) {

.picture {
  
    height: unset;
    width: 80vw;
   
}
}

@media (max-width: 1024px) {


 

    .search-box {
        min-height: 400px;

    }

    .mains {
        padding: 10px;

    }

    .search-box .hideainput {
        max-width: 540px;
    }

    .search-box .input-icon {

        left: 500px;


    }

    .search-box .search-title {

        font-size: 2em;

    }
}

.shaft-option {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shaft-option:hover {
    box-shadow: 0 0 10px rgba(22, 183, 119, 0.8);
}

.shaft-option.selected {
    border-color: rgba(22, 183, 119, 0.8);
    box-shadow: 0 0 10px rgba(22, 183, 119, 0.8);
}
.dshow {

    display: none!important;
}

.is_num{

    font-weight: 700;
    font-size: 2em!important;

}

@media (max-width: 768px) {

    .product-overview {
        display: block !important;
    }

    .product-image{
        display: block;
    }


    .dshow {

        display: block;
    }

    .features-grid {

        display: block;
    }

    .product-overview .top-images {
        width: 100%;
    }

    .product-overview .product-details {
        width: 100%;
    }

    .slide-content {
        display: none;
    }
}

.about-section {

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Apply 2-column grid layout */
    gap: 20px;
    align-items: center;


    padding: 60px 20px;
    text-align: left;
    height: 150px; /* 添加固定高度 */
}


.about-section h2 {
    font-size: clamp(20px, 3vw, 30px); /* 调整字体大小 */

}

.about-sections {


    align-items: center;


    padding: 20px;
    text-align: left;

}

.about-sections p {
    font-size: clamp(16px, 2vw, 24px);


    line-height: 40px;
}

.about-text, .about-stats {

    box-sizing: border-box; /* 包括内边距在宽度计算内 */
}

.stats {
    display: grid; /* 修改为网格布局 */
    grid-template-columns: repeat(3, 1fr); /* Apply 2-column grid layout */
    gap: 20px;
}

.stat-item {
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 居中对齐 */
    text-align: center; /* 文本居中 */
    padding: 10px;
    border: none; /* 移除边框 */
}

.stat-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px; /* 图标与文字间距 */
    transform: scale(1); /* 图标放大 */
    transfron: 0.3s; /* 添加过渡效果 */
}

.stat-item img:hover {
    transform: scale(1.2); /* 图标放大 */
    transfron: 0.3s; /* 添加过渡效果 */
}

.stat-item p {
    font-size: clamp(14px, 2vw, 20px);
    text-align: left;
    margin-bottom: 10px; /* 文字与图标间距 */
}


.more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-button:hover {
    background-color: #fff;
    color: #002b4f;
}

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr; /* Single column layout */
        height: auto; /* Remove fixed height */
    }

}

.container-us {

    margin: 0 auto;
    padding: 20px;
}


.container-us .breadcrumb {
    font-size: clamp(20px, 3vw, 30px);;
    margin-bottom: 20px;
    color: #666;
}

.container-us .breadcrumb a {
    text-decoration: none;
    color: #004883;
}

.container-us .breadcrumb a:hover {
    text-decoration: underline;
}

.container-us .sections {
    margin-bottom: 40px;
}

.container-us .icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.container-us .sections h3 {
    margin: 10px;
    font-size: clamp(20px, 3vw, 30px);
    color: #333;
}

.container-us .sections .icon-text span {
    margin: 10px;
    color: #666;
    font-size: clamp(14px, 3vw, 20px);
    line-height: 40px;
    white-space: nowrap;
}

.container-us .sections p {
    margin: 10px;
    color: #666;
    font-size: clamp(14px, 3vw, 20px);
    line-height: 40px;

}


.container-us .icon-text img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}


.container-us .form-container {
    margin-top: 20px;
}

.container-us .form-container form {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    /* 自适应列，最小宽度300px */
    gap: 20px;
    /* 表单项间距 */
}

.container-us .form-container form input,
.container-us .form-container form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(16px, 3vw, 22px);
    width: 100%;
    /* 确保宽度占满可用空间 */
    box-sizing: border-box;
    /* 包括内边距和边框 */
}

.container-us .form-container form textarea {
    grid-column: span 2;
    /* 跨两列 */
    resize: none;
    height: 100px;
}

.container-us .form-container form .captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container-us .form-container form .captcha img {
    height: 40px;
    min-width: 200px;
}

.container-us .form-container form button {
    grid-column: span 2;
    /* 跨两列 */
    padding: 10px;
    background-color: #004883;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: clamp(18px, 3vw, 24px);
    cursor: pointer;
}

.container-us .divider {
    border-bottom: 1px solid #ccc;
    /* 下边框为1px黑色实线 */

}

.form-container form button:hover {
    background-color: #004883;
}

@media (max-width: 1024px) {
    .news_detail .top_detail {
        display: block;
    !important;
    }

    .form-container form {
        display: block !important;
    }

    .form-container form input,
    .form-container form textarea {

        margin-bottom: 10px;
    }

    .icon-text img {
        display: none;
    }
}

.paginate {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

}

.paginate li {
    display: inline-block;

    color: #fff;
    background-color: #2f363c;
    border-radius: 4px;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
}

.paginate li a {

    color: #fff;
    padding: 8px 12px;
    line-height: 34px;

}

.paginate li:hover {
    background-color: #0056b3;
}

.paginate .active {
    font-weight: 500;
    padding: 8px 12px;
    margin: 10px;
    background-color: #16b777;
    pointer-events: none;
}

.paginate .disabled {
    padding: 8px 12px;
    margin: 10px;
    background-color: #e2e2e2 !important;
    pointer-events: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* 默认隐藏 */
}

.loading-overlay.active {
    display: flex; /* 显示 loading */
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container-us {

    margin: 0 auto;
    padding: 20px;
}


.container-us .breadcrumb {
    font-size: clamp(20px, 3vw, 30px);;
    margin-bottom: 20px;
    color: #666;
}

.container-us .breadcrumb a {
    text-decoration: none;
    color: #004883;
}

.container-us .breadcrumb a:hover {
    text-decoration: underline;
}

.container-us .sections {
    margin-bottom: 40px;
}

.container-us .icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.container-us .sections h3 {
    margin: 10px;
    font-size: clamp(20px, 3vw, 30px);
    color: #333;
}

.container-us .sections .icon-text span {
    margin: 10px;
    color: #666;
    font-size: clamp(14px, 3vw, 20px);
    line-height: 40px;
    white-space: nowrap;
}

.container-us .sections p {
    margin: 10px;
    color: #666;
    font-size: clamp(14px, 3vw, 20px);
    line-height: 40px;

}


.container-us .icon-text img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}


.container-us .form-container {
    margin-top: 20px;
}

.container-us .form-container form {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    /* 自适应列，最小宽度300px */
    gap: 20px;
    /* 表单项间距 */
}

.container-us .form-container form input,
.container-us .form-container form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(16px, 3vw, 22px);
    width: 100%;
    /* 确保宽度占满可用空间 */
    box-sizing: border-box;
    /* 包括内边距和边框 */
}

.container-us .form-container form textarea {
    grid-column: span 2;
    /* 跨两列 */
    resize: none;
    height: 100px;
}

.container-us .form-container form .captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.container-us .form-container form .captcha img {
    height: 40px;
    min-width: 200px;
}

.container-us .form-container form button {
    grid-column: span 2;
    /* 跨两列 */
    padding: 10px;
    background-color: #004883;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: clamp(18px, 3vw, 24px);
    cursor: pointer;
}

.container-us .divider {
    border-bottom: 1px solid #ccc;
    /* 下边框为1px黑色实线 */

}