@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/*未优化样式表*/
/* 基础样式 */
html {
    overflow-y: scroll;
    height: 100%;
}
body {
	background-color: #f5f5f5;
}
.body_bg,
.mobile-menu-open {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.mask_bg {
    background: url('../images/mask_bg.jpg') no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

/* 菜单通用样式 */
.menu_big,
.menu_small {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.menu_big ul,
.menu_small ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_big a,
.menu_small a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu_big a:hover,
.menu_small a:hover {
    color: #102B62;
}

/* 主菜单样式 */
.menu_big {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}

.menu_big ul {
    display: flex;
}

.menu_big ul li {
    flex: 1 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.menu_big a {
    padding: 8px 15px;
}

.menu_big li a.active {
    color: #102B62 !important;
}

/* 箭头动画效果 */
.bi-chevron-down {
    transition: transform 0.3s ease;
}

.bi-chevron-up {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    color: #FF7300;
}

/* 子菜单容器 */
.menu_small {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.menu_small .submenu {
    width: 100%;
}

.menu_small .bg {
    z-index: 999;
    background: #fff;
    padding: 50px 0;
}

.menu_small .submenu>a {
    display: none;
}

/* 子菜单布局 */
.menu_small ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.menu_small li {
    margin-bottom: 0;
}

.menu_small ul ul {
    display: block;
}

.menu_small a {
    padding: 5px 15px;
}

.menu_small ul li a {
    font-weight: bold;
    font-size: larger;
    display: inline-block;
}

.menu_small ul li a i {
    color: #FF7300;
}

.menu_small ul li span {
    display: inline-block;
    width: 5px;
    height: 15px;
    background: #de2910;
    margin-right: 10px;
    border-radius: 3px;
}

.menu_small ul li ul li a {
    font-weight: normal;
    font-size: medium;
}


/* 移动端菜单按钮 */
.menu_big .mobile_btn {
    display: none;
    background: #102B62;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
    height: 40px;
    width: 40px;
}

.menu_big .mobile_btn i {
    transition: transform 0.3s ease;
    font-size: 2rem;
}

.menu_big .mobile_btn.active {
    color: white;
    background: rgba(16, 43, 98, 0.8);
}

.menu_big .mobile_btn.active i {
    transform: rotate(90deg);
}

.menu_big .mobile_btn:not(.active) i {
    transform: rotate(0deg);
}


.language-switcher div {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-switcher div:hover {
    opacity: 0.8;
}

.region-selector .dropdown-toggle {
    background: transparent;
    border: none;
}

.le_contact {
    text-align: center;
    padding: 1rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(16, 43, 98, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.le_contact .thisbox {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.le_contact .thistext {
    font-size: 1.25rem;
    color: #102B62;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.le_contact .thisbtn {
    background: linear-gradient(145deg, #102B62 0%, #1a4a9e 70%, #2a5bc5 100%);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 -2px 0 rgba(0, 0, 0, 0.2) inset;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.le_contact .thisbtn:hover {
    background: linear-gradient(145deg, #1a4a9e 0%, #102B62 70%, #0a1f4d 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 -2px 0 rgba(0, 0, 0, 0.2) inset;
    animation: pulse 1.5s infinite;
}

.le_contact .thisbtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.15),
            transparent);
    transform: skewX(-15deg);
}

.le_contact .thisbtn:hover::before {
    left: 120%;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.le_contact .thisbtn i {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.le_contact .thisbtn:hover i {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.9);
}

/*未优化结束*/
/* 设置根元素字体大小 */
* {
    font-size: 1rem;
    scroll-behavior: smooth;
    line-height: 1.8rem;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d6efd;
}

:root {
    --primary-color: #102B62;
    --primary-color-rgb: 16, 43, 98;
    --secondary-color: #0d6efd;
    --transition-speed: 0.3s;
    --section-padding: 4rem 0;
    --section-margin: 2rem 0;
}



.le_topbar {
    background-color: #102B62;
    padding: 10px 0;

}

.le_topbar .dropdown-toggle {
    color: white !important;
    font-size: 0.9rem;
    padding: 0.3125rem 0.9375rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1) !important;
}

.le_topbar .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

.le_topbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
    z-index: 99999;
}

.le_topbar .dropdown-item {
    padding: 8px 15px;
    transition: all 0.2s ease;
}

.le_topbar .dropdown-item:hover {
    background: rgba(16, 43, 98, 0.1);
    padding-left: 20px;
}

/* 导航栏样式 */
.le_navbar {
    background-color: rgba(245, 245, 245, 0.95);
    transition: all 0.3s ease;
    margin: 0;

    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.le_navbar .row {
    display: flex;
    align-items: center;
    height: 100%;
}

.le_navbar .col-md-2,
.le_navbar .col-md-10 {
    display: flex;
    align-items: center;
}

.le_navbar .search {
    display: flex;
    align-items: center;
    height: 100%;
}

.le_navbar .search {
    position: relative;
}

.le_navbar .search .input {
    border-radius: 20px;
    padding-right: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.le_navbar .search .input:focus {
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
}

.le_navbar .search .button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(to right, #102B62, #0b5ed7);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.le_navbar .search .button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.4);
}

.le_navbar .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.le_navbar .menu {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 999;
    width: 100%;
    ;
}

.le_navbar .menu>ul {
    display: flex;

    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-around;
    width: 100%;
    margin: 0;
    padding: 0;

}

.le_navbar .menu>ul>li {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
    margin: 0 5px;

    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: transparent;
}

.le_navbar .menu>ul>li:hover {
    background: #102B62;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



.le_navbar .menu>ul>li:hover a {
    color: white !important;
}

.le_navbar .menu>ul>li>a {
    position: relative;

    font-size: 1.2em;
    padding: 10px 0px;
    padding-right: 20px;
}

.le_navbar .menu>ul>li>a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 0.8em;
    line-height: 2rem;
}

.le_navbar .menu>ul>li:has(> ul)>a:after {
    content: '\25BC';
}

.le_navbar .menu ul li:hover>ul a {
    color: white !important;
}

.le_navbar .menu ul li:hover>ul li:hover a {
    color: white !important;
}

.le_navbar .menu ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    background-color: #102B62;
    color: white;
    transform: translateY(5px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.le_navbar .menu ul ul li:has(> ul)>a:after {
    content: '\25B6';
    right: 10px;
    position: absolute;
}

.le_navbar .menu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(-10px);
    z-index: 1000;
    line-height: 1.6;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    border-top: 3px solid #0d6efd;
}

.le_navbar .menu ul ul li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.2s ease;
}

.le_navbar .menu ul ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.le_navbar .menu ul ul li:last-child {
    border-bottom: none;
}

.le_navbar .menu ul ul ul {
    left: 100%;
    top: 0;
}


.le_banner {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('../images/banner4.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.le_banner .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.le_banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.le_banner .slide.active {
    opacity: 1;
}

.le_banner .controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.le_banner .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.le_banner .control.active {
    background: white;
    transform: scale(1.2);
}

.le_hero {
    margin: 6rem 0;
    width: 100%;
    color: white;
    background: linear-gradient(to right, rgba(128, 128, 128, 0.8), rgba(128, 128, 128, 0));
    padding: 3rem;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
    transform: translateY(0);
}

.le_hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.le_hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: left;
}

.le_hero h2 {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.le_honor {
    padding: 3.125rem 0;
    background-color: white;
    text-align: center;
    position: relative;
    z-index: 10;
    border-radius: 10px;
}

.le_honor h3 {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
    min-height: 2.4em;
    color: #102B62;
    ;
}

.le_honor .item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    ;
}

.le_honor .item img {
    width: 120px;
    margin: auto;
    display: block;
}

.le_honor .item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(212, 197, 197, 0.8), rgba(0, 0, 0, 0));
}

.le_honor .item:nth-child(3)::after {
    display: none;
}

.le_honor .item:hover {
    transform: translateY(-5px);

}

.le_honor .item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    /* 保持其他原有样式不变 */
}

.le_services {
    padding: 3rem 0;
}

.le_services h3 {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 6px solid #102B62;
    display: inline-block;
    font-weight: bold;
    color: #102B62;
}

.le_services .item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    background: white;
    margin-bottom: 1rem;
    transform: scale(0.98);
}

.le_services .item:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.le_services .item img {
    width: 100%;
}


.le_services.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.le_services h4 {
    padding: 1rem;
    font-size: 1.2em;
    font-weight: bold;
}

.le_about {
    background-image: url('../images/index_about.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3.125rem 0;
}

.le_about h2 {
    margin: 1rem 0;
    padding: 10px 0;

    display: inline-block;
    font-weight: bold;
}

.le_about p {
    margin-bottom: 1rem;
}

.le_about a {
    background: linear-gradient(135deg, #102B62 0%, #0d6efd 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(16, 43, 98, 0.2);
    border: none;
}

.le_about a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.5);
    background: linear-gradient(135deg, #0d6efd 0%, #102B62 100%);
}

.le_news {
    padding: 3rem 0;
}

.le_news h3 {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 6px solid #102B62;
    display: inline-block;
    font-weight: bold;
    color: #102B62;
}

.le_news .item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    background: white;
    margin-bottom: 1rem;
    transform: perspective(500px) rotateX(0deg);
}

.le_news .item:hover {
    transform: perspective(500px) rotateX(5deg) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.le_news .item img {
    width: 100%;

    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.le_news .item .text {
    padding: 1rem;
}




.le_news .item p {
    color: #666;
    border-bottom: 1px solid #BA8F65;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.le_news .item p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.le_news .item:hover p::after {
    width: 100%;
}

.le_news .item p::before {
    content: "\F4C5";
    font-family: "bootstrap-icons";
    margin-right: 8px;
    color: var(--primary-color);
}

.le_news .item h4 {
    color: #333;
    font-size: inherit;
    font-weight: normal;
    min-height: 2.8em;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.le_footer {
    background: url('../images/index_foot.jpg') no-repeat center center;
    background-size: cover;
    color: white;

    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.le_footer .mask {

    padding: 2.5rem 0;

}

.le_footer .logo {
    height: 60px;
    float: left;
}

.le_footer .container>.row:first-child {
    justify-content: flex-end;
    text-align: right;
}

.le_footer .row1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    padding: 1.5rem 0;
}

.le_footer .row2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    padding: 1.5rem 0;
}


.le_footer a {
    color: white !important;
    text-decoration: none;
}

.le_footer h5 {
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
}

.le_footer ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
}

/* Cookie Consent Styles */
.le_cookie {

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    display: none;
}


.le_cookie a {
    color: #fff;
    text-decoration: underline;
}

.le_cookie .button {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.le_cookie .button button {
    border-radius: 20px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.le_cookie .button .accept {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    border: 1px solid white;
    ;
}

.le_cookie .button .decline {
    background: transparent;
    border: 1px solid white;
    color: white !important;
}

.le_cookie .button button:hover {
    transform: translateY(-2px);
    transition: all var(--transition-speed) ease;
}

.le_cookie .button .accept:hover,
.le_cookie .button .bdecline:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.le_cookie .button .accept {
    transition: all 0.3s ease;
}

.le_cookie .button .bdecline {
    transition: all 0.3s ease;
}
.le_whatsapp{
    position: fixed;left:20px; bottom: 20px;
    z-index: 9999;
}
.le_whatsapp img{ width:64px}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 内页选项卡，停用了
.pagetab {
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagetab a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.pagetab a:hover {
    background: #e9e9e9;
    border-color: #ccc;
}

.pagetab a.hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
*/

.le_page_position {
    background-color: #ECECEC;
    padding: 10px;
}
.le_page_position a{ margin:0 10px;}
.le_page_banner {
    background-position: center;
    background-size: cover;
    height: 350px;

}

.le_page_banner .container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.le_page_banner .box {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.le_page_banner .box .text {
    position: absolute;
    left: 0px;
    bottom: 20px;
    z-index: 3;
}

.le_page_banner .text {
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    background: linear-gradient(to right, rgba(129, 130, 131, 0.8), rgba(0, 86, 179, 0));
    padding: 20px 80px 20px 20px;
    border-radius:0 5px 5px 0;
   
}
.le_page_imgtext {
    overflow: hidden;
}
.le_page_imgtext .row {
    display: flex;
    margin-bottom: 30px;
    background-color: #F3F3F3;
    align-items: center;
}
.le_page_imgtext .row:nth-last-child(1){
    margin-bottom: 0;
}
.le_page_imgtext .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.le_page_imgtext .row .col-md-6:first-child {
    position: relative;
}

.le_page_imgtext .row:nth-child(2n-1) .col-md-6:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, #F3F3F3 0%, #F3F3F3 10%, transparent 100%);
    z-index: 1;
}

.le_page_imgtext .row:nth-child(2n) .col-md-6:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, #F3F3F3 0%, #F3F3F3 10%, transparent 100%);
    z-index: 1;
}


.le_page_imgtext .row .col-md-6:first-child img {
    position: relative;
    z-index: 0;
}
.le_page_imgtext .row  a {
	background:#013A91;
	color:#fff;
	padding:0.25rem 1rem;
	border-radius:0.5rem;
	margin:0.25rem 0;
	display: inline-block;
}

@media (max-width: 768px) {

    .le_navbar .col-md-2, .le_navbar .col-md-10 {
        display: block;
    }
  
    .menu_big a {
        padding: 5px;
        ;
    }

    /* 移动端菜单样式 */
    .menu_big ul {
        display: none;
        position: fixed;
        width: 100%;
        z-index: 9999;
        background: #fff;
        left: 0;
        top: 80px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        transition: all 0.3s ease;
        transform: translateY(-20px);
        opacity: 0;
    }

    .menu_big ul.show {
        transform: translateY(0);
        opacity: 1;
    }

    .menu_big ul li {
        display: block;
        width: 100%;
        text-align: left;
    }
  
    .menu_big .mobile_btn {
        display: block;
    }

    .menu_small .bg {
        padding: 10px 0;
    }

    /* 移动端子菜单样式 */
    .menu_small .submenu>a.submenu_big {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        color: #102B62;
        position: relative;
        z-index: 1;
    }

    .menu_small ul {
        grid-template-columns: 1fr;
        display: none;
    }

    .submenu ul.submenu_small {
        display: none;
        padding-left: 15px;
        background: rgba(16, 43, 98, 0.05);
        position: relative;
        z-index: 0;
    }

    .submenu ul.submenu_small span {
        display: inline-block;
        width: 5px;
        height: 15px;
        background: #de2910;
        margin-right: 10px;
        border-radius: 3px;
    }

    .submenu ul li a {
        padding: 5px 0;
        color: #333;
        font-size: inherit;
    }

    .submenu ul ul {
        padding: 0;
        background: none;
    }

    /* 移动端箭头图标 */
    .submenu_big i {
        margin-left: 5px;
        transition: transform 0.3s ease;
        font-size: 1.2rem;
    }

    .submenu_big.active i {
        transform: rotate(180deg);
    }
    .le_news .col-md-4:nth-child(3){
    display: none;
}
.le_news .col-md-4:nth-child(4){
    display: none;
}
.le_news .col-md-4:nth-child(5){
    display: none;
}
.le_whatsapp{ display:block;}
}
@media (max-width: 992px) {
    .le_navbar .logo {
        height: 50px;
    }

    .le_navbar .col-md-2 {
        justify-content: space-between;
    }

    .navbar-toggler {
        display: block !important;
        background-color: #102B62;
        border: none;
        border-radius: 4px;
        padding: 10px;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
        margin-left: auto;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        transition: all 0.3s ease;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 4L26 26M4 26L26 4'/%3e%3c/svg%3e");
    }

    .navbar-toggler:hover {
        transform: scale(1.05);
    }

    .navbar-toggler:active {
        transform: scale(0.95);
    }

    .menu.collapse:not(.show) {
        display: none;
    }

    .menu.collapse.show {
        display: none;
    }

    .le_navbar .menu {
        display: none;

    }

    .le_navbar .search {
        display: none !important;
    }

    .le_honor .item {
        margin-bottom: 20px;
        height: auto;
    }
.le_news .col-md-4:nth-child(3){
    display: none;
}
.le_news .col-md-4:nth-child(4){
    display: none;
}
.le_news .col-md-4:nth-child(5){
    display: none;
}
    .le_cookie {
        display: none;
    }

    .le_footer .row1 .col-md-9 {
        text-align: left;
    }

    .le_footer .row2 .col {
        flex: auto;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #102B62;
        z-index: 1000;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .mobile-menu-list,
    .mobile-submenu,
    .mobile-submenu-2 {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list>li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-submenu {
        padding-left: 15px;
    }

    .mobile-submenu-2 {
        padding-left: 30px;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        display: block;
        padding: 5px 0;
        position: relative;
    }

    .mobile-menu a.has-submenu:after {
        content: '+';
        position: absolute;
        right: 0;
    }

    .mobile-menu a.has-submenu.active:after {
        content: '-';
    }

    .mobile-submenu li,
    .mobile-submenu-2 li {
        padding: 8px 0;
    }

    .mobile-submenu,
    .mobile-submenu-2 {
        display: none;
    }

    .mobile-submenu.show,
    .mobile-submenu-2.show {
        display: block;
    }

    .mobile-menu a.active {
        color: #fff;
        font-weight: bold;
    }
}