@charset "utf-8";
/* CSS Document */

  /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
        }

        .jy-home-container {
            max-width: 1200px;
            margin: 0 auto;position: relative;
           
        }


.ss {
    position: absolute;
    top: 0;
    right: 0;
}


		 
/* 搜索框样式 */
.jy-home-search-container {
    display: inline-block;
    margin-left: 30px;
}

.jy-home-search-form {
       position: relative;
    display: flex;
    align-items: center;
    background: rgb(203 203 203 / 0%);
    border-radius: 25px;
    padding: 2px 15px;
    transition: all 0.3s 
ease;
    border: 1px solid rgb(0 0 0);
}

.jy-home-search-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #333333;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.jy-home-search-input {
    background: transparent;
    border: none;
    color: #333333;
    padding: 8px 15px 8px 5px;
    font-size: 0.9rem;
    width: 180px;
    outline: none;
}

.jy-home-search-input::placeholder {
    color: #333333;
}

.jy-home-search-btn {
    background: transparent;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.jy-home-search-btn:hover {
    color: #4CAF50;
}

/* 移动端搜索框样式 */
@media (max-width: 768px) {
    .jy-home-search-container {
        margin: 15px 0;
        width: 100%;
        order: 3;
    }
    
    .jy-home-search-form {
        width: 100%;
        margin: 0 auto;
    }
    
    .jy-home-search-input {
        width: 100%;
        flex: 1;
    }
    
    /* 在移动端菜单中添加搜索框 */
    .jy-home-nav-menu .jy-home-search-container {
        margin: 20px 0 10px;
    }
}



        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .jy-home-section {
            padding: 80px 0;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: left;
        }

        p {
            margin-bottom: 15px;
        }

        .jy-home-section-intro {
                text-align: left;
    margin: 0 0 40px;
    color: #444444;
    font-size: 20px;
    line-height: 30px;
        }

        /* 导航栏样式 */
        .jy-home-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 33px 0;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            transform: translateY(0);
        }

        .jy-home-header.scrolled {
            padding: 28px 0;
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .jy-home-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .jy-home-logo {
            height: 40px;
        }

        .jy-home-logo img {
            height: 100%;
            width: auto;
        }

        .jy-home-language-switcher {
            position: absolute;
            top: -20px;
            right: 0;
            display: flex;
        }

        .jy-home-language-switcher a {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 0px 6px;
            margin-left: 8px;
            border-radius: 3px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.9rem;
            display: inline-block;
        }

        .jy-home-language-switcher a:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .jy-home-nav-menu {
            display: flex;    position: relative;
    top: 18px;
        }

        .jy-home-nav-menu > li {
            margin-left: 26px;
            position: relative;
        }

        .jy-home-nav-menu > li > a {
            color: white;
            font-weight: 400;
            transition: color 0.3s;
            font-size: 14px;
            display: inline-block;
            padding: 5px 0;
            position: relative;    text-transform: uppercase;
        }

        .jy-home-nav-menu > li > a:hover {
            color: #d5933f;
        }


.gl{color: #d5933f!important;}



        /* 二级菜单样式 */
        .jy-home-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 5px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .jy-home-nav-menu > li:hover .jy-home-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .jy-home-submenu li {
            padding: 0;
        }

        .jy-home-submenu a {
            color: white;
            display: block;
            padding: 8px 20px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .jy-home-submenu a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #4CAF50;
            padding-left: 25px;
        }

        /* 移动端二级菜单箭头 */
        .jy-home-menu-arrow {
            display: none;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .jy-home-submenu-active .jy-home-menu-arrow {
            transform: rotate(180deg);
        }

        .jy-home-mobile-toggle {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 2;
        }

        /* 移动端菜单关闭按钮 - 默认隐藏 */
        .jy-home-close-menu {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* 移动端菜单遮罩层 */
        .jy-home-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* 轮播图样式 */
        .jy-home-slider {
            position: relative;
            height: 1000px;
            overflow: hidden;
            margin-top: 0;
        }

        .jy-home-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }

        .jy-home-slide.active {
            opacity: 1;
        }

        .jy-home-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            color: white;
            padding: 30px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
        }

        .jy-home-slide-title {
            font-size: 2.5rem;
            margin-bottom: 10px;    text-align: center;
        }

        .jy-home-slide-desc {
            font-size: 1.2rem;
            max-width: 800px;    margin: 0 auto;
        }

        .jy-home-slider-indicators {
            position: absolute;
            bottom: 76px;
            left: 50px;
            display: flex;
            z-index: 10;
        }

        .jy-home-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin-right: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .jy-home-indicator.active {
            background: white;
        }

        /* 产品分类样式 */
        .jy-home-products {
            background: #f9f9f9;
        }

        .jy-home-product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .jy-home-product-card {
               background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #DDDDDD;
        }

        .jy-home-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .jy-home-product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .jy-home-product-content {
            padding: 20px;
            text-align: center;
        }

        .jy-home-product-title {
            font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
        }

        /* 全屏图片样式 */
        .jy-home-fullscreen-image {
            height: 500px;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .jy-home-fullscreen-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .jy-home-fullscreen-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;    text-align: left;
        }

        .jy-home-fullscreen-title {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .jy-home-fullscreen-desc {
            font-size: 1.2rem;
        }


.jy-home-container h2 {
       margin-bottom: 6px;
    font-weight: 500;
    font-size: 28px;
}



        /* 新闻模块样式 */
        .jy-home-news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .jy-home-news-card {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .jy-home-news-img {
            width: 40%;
            background-size: cover;
            background-position: center;
        }

        .jy-home-news-content {
            padding: 20px;
            width: 60%;
        }

        .jy-home-news-date {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .jy-home-news-title {
                font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 500;
        }

        .jy-home-news-excerpt {
            color: #666;
            margin-bottom: 15px;
        }

        .jy-home-read-more {
            color: #4CAF50;
            font-weight: 500;
            display: inline-block;
        }

        /* 页脚样式 */
        .jy-home-footer {
            background: #222;
            color: #ddd;
            padding: 60px 0 20px;
        }

        .jy-home-footer-container {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .jy-home-footer-logo {
            height: 40px;
            margin-bottom: 15px;
        }

        .jy-home-footer-logo img {
            height: 100%;
            width: auto;
        }

        .jy-home-footer-about {
            margin-bottom: 20px;
            max-width: 300px;
        }

        .jy-home-footer-links h3, .jy-home-footer-contact h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .jy-home-footer-links ul li {
            margin-bottom: 6px;
        }

        .jy-home-footer-links a {
            display: inline-block;
            padding: 3px 0;
            transition: color 0.3s;
        }

        .jy-home-footer-links a:hover {
            color: #4CAF50;
        }

        .jy-home-footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .jy-home-footer-contact i {
            margin-right: 10px;
            color: #dddddd;
        }

        .jy-home-social-icons {
            display: flex;
            margin-top: 20px;
        }

        .jy-home-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s;
        }

        .jy-home-social-icons a:hover {
            background: #4CAF50;
        }

        .jy-home-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .jy-home-product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .jy-home-news-grid {
                grid-template-columns: 1fr;
            }
            
            .jy-home-footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .jy-home-footer-about {
                grid-column: 1 / span 2;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .jy-home-mobile-toggle {
                display: block;
            }
            
            .jy-home-nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 80px 30px 30px;
                transition: right 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
            }
            
            .jy-home-nav-menu.active {
                right: 0;
            }
            
            .jy-home-nav-menu > li {
                margin: 0 0 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 15px;
                position: relative;
            }
            
            .jy-home-nav-menu > li:last-child {
                border-bottom: none;
            }
            
            .jy-home-nav-menu > li > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                padding: 10px 0;
            }
            
            /* 移动端二级菜单 */
            .jy-home-submenu {
                position: static;
                width: 100%;
                background: transparent;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
                margin-top: 10px;
            }
            
            .jy-home-submenu-active .jy-home-submenu {
                max-height: 300px;
            }
            
            .jy-home-submenu li {
                padding: 0;
            }
            
            .jy-home-submenu a {
                padding: 8px 15px 8px 25px;
                border-left: 2px solid rgba(255, 255, 255, 0.2);
            }
            
            .jy-home-submenu a:hover {
                padding-left: 30px;
                background: rgba(255, 255, 255, 0.05);
            }
            
            /* 移动端二级菜单箭头 */
            .jy-home-menu-arrow {
                display: inline-block;
            }
            
            .jy-home-language-switcher {
                position: static;
                margin-bottom: 25px;
                justify-content: center;
                top: auto;
                right: auto;
            }
            
            .jy-home-slide-title {
                font-size: 2rem;
            }
            
            .jy-home-slide-desc {
                font-size: 1rem;
            }
            
            .jy-home-product-grid {
                grid-template-columns: 1fr;
            }
            
            .jy-home-news-card {
                flex-direction: column;
            }
            

            .jy-home-news-img, .jy-home-news-content {
                width: 100%;
            }
            
            .jy-home-news-img {
                height: 200px;
            }
            
            .jy-home-fullscreen-title {
                font-size: 2.5rem;
            }
            
            .jy-home-slider-indicators {
                left: 30px;
                bottom: 100px;
            }
            
            /* 移动端菜单关闭按钮 - 只在移动端显示 */
            .jy-home-close-menu {
                display: block;
            }
            
            /* 移动端菜单遮罩层 */
            .jy-home-menu-overlay.active {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .jy-home-footer-container {
                grid-template-columns: 1fr;
            }
            
            .jy-home-footer-about {
                grid-column: 1;
            }
            
            .jy-home-fullscreen-title {
                font-size: 2rem;
            }
            
            .jy-home-slider-indicators {
                left: 20px;
                bottom: 90px;
            }
        }



 .jy-lx-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .jy-lx-header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 160px 0px 60px 0px;
           
        }
        
        .jy-lx-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .jy-lx-header p {
            font-size: 1.2rem;
           
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .jy-lx-contact-section {
            padding: 80px 0;
        }
        
        .jy-lx-contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        
        .jy-lx-contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .jy-lx-contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .jy-lx-info-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .jy-lx-info-card:hover {
            transform: translateY(-5px);
        }
        
        .jy-lx-info-card i {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 20px;
        }
        
        .jy-lx-info-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .jy-lx-info-card p {
            color: #666;
            margin-bottom: 5px;
        }
        
        .jy-lx-form-group {
            margin-bottom: 25px;
        }
        
        .jy-lx-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .jy-lx-input, .jy-lx-textarea, .jy-lx-select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .jy-lx-input:focus, .jy-lx-textarea:focus, .jy-lx-select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        .jy-lx-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .jy-lx-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .jy-lx-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .jy-lx-map-placeholder {
            background: #e9ecef;
            height: 300px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .jy-lx-social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .jy-lx-social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .jy-lx-social-links a:hover {
            background: #2980b9;
            transform: translateY(-3px);
        }
        
        .jy-lx-footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
        }
        
        @media (max-width: 768px) {
            .jy-lx-contact-wrapper {
                flex-direction: column;
            }
            
            .jy-lx-header h1 {
                font-size: 2.2rem;
            }
            
            .jy-lx-contact-form, .jy-lx-info-card {
                padding: 25px;
            }
        }

 
        .jy-about-container {
            max-width: 1200px;
            margin: 0 auto;
           
        }
        
        /* Header styles */
        .jy-about-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 160px 0px 60px 0px;
            text-align: center;
        }
        
        .jy-about-header-content {
          
            margin: 0 auto;
        }
        
        .jy-about-title {
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .jy-about-intro {
            font-size: 1.2rem;
            text-align: left;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        /* Services section */
        .jy-about-services {
            padding: 80px 0;
        }
        
        .jy-about-service-item {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }
        
        .jy-about-service-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .jy-about-service-text {
            flex: 1;
            min-width: 300px;
           
        }
        
        .jy-about-service-image {
            flex: 1;
            min-width: 300px;    padding: 20px 0px 0px 50px;
           
        }


 .jy-about-service-image-1 {
            flex: 1;
            min-width: 300px;    padding: 0px 100px 0px 0px;
           
        }



 
        .jy-about-service-image-1 img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .jy-about-service-image-1 img:hover {
            transform: translateY(-5px);
        }
        







        
        .jy-about-service-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .jy-about-service-image img:hover {
            transform: translateY(-5px);
        }
        
        .jy-about-service-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #1e3c72;
            display: flex;
            align-items: center;    line-height: 1.4;
        }
        
        .jy-about-service-title i {
            margin-right: 15px;
            color: #2a5298;
            font-size: 1.8rem;
        }
        
        .jy-about-service-desc {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .jy-about-service-features {
            list-style: none;
        }
        
        .jy-about-service-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .jy-about-service-features li i {
            position: absolute;
            left: 0;
            color: #2a5298;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        /* Values section */
        .jy-about-values {
            background-color: #fbfbfb;
            padding: 60px 0;
         
         
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .jy-about-values-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 40px;
            color: #1e3c72;
        }
        
        .jy-about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .jy-about-value-item {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease;
        }
        
        .jy-about-value-item:hover {
            transform: translateY(-10px);
        }
        
        .jy-about-value-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #2a5298;
            background: #f0f4ff;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .jy-about-value-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1e3c72;
        }
        
        /* Team section */
        .jy-about-team {
            padding: 60px 0;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .jy-about-team-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 40px;
            color: #1e3c72;
        }
        
        .jy-about-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .jy-about-team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .jy-about-team-member:hover {
            transform: translateY(-10px);
        }
        
        .jy-about-team-img {
            height: 200px;
            background-color: #2a5298;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        
        .jy-about-team-info {
            padding: 20px;
            text-align: center;
        }
        
        .jy-about-team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: #1e3c72;
        }
        
        .jy-about-team-role {
            color: #6c757d;
            margin-bottom: 15px;
        }
        
        .jy-about-team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .jy-about-team-social a {
            color: #2a5298;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .jy-about-team-social a:hover {
            color: #1e3c72;
        }
        
        /* Footer */
        .jy-about-footer {
            background-color: #1e3c72;
            color: white;
            padding: 40px 0;
        }
        
        .jy-about-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .jy-about-footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .jy-about-footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .jy-about-footer-links {
            list-style: none;
        }
        
        .jy-about-footer-links li {
            margin-bottom: 10px;
        }
        
        .jy-about-footer-links a {
            color: #e9ecef;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .jy-about-footer-links a i {
            margin-right: 10px;
            width: 20px;
        }
        
        .jy-about-footer-links a:hover {
            color: white;
        }
        
        .jy-about-footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .jy-about-title {
                font-size: 2.2rem;
                text-align: center;
            }
            
            .jy-about-intro {
                text-align: center;
            }
            
            .jy-about-service-item, .jy-about-service-item:nth-child(even) {
                flex-direction: column;
            }
            
            .jy-about-service-text, .jy-about-service-image {
                min-width: 100%;
            }
            
            .jy-about-services {
                padding: 50px 0;
            }
            
            .jy-about-service-item {
                margin-bottom: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .jy-about-header {
                padding: 50px 0;
            }
            
            .jy-about-title {
                font-size: 1.8rem;
            }
            
            .jy-about-service-title {
                font-size: 1.6rem;
            }
            
            .jy-about-intro, .jy-about-service-desc {
                font-size: 1rem;
            }
        }


 .jy-products-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 180px 0px 80px 0px;
        }
        
        /* 顶部区域样式 */
        .jy-products-header-section {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            background: white;
               border-bottom: 1px solid #c3c3c3;
            overflow: hidden;
           
        }
        
        .jy-products-text-content {
            flex: 0 0 60%;
            padding: 0px 40px 0px 0px;
        }




.jy-products-text-content-22 {
            flex: 0 0 90%;
            padding: 0px 40px 0px 0px;
        }


.ssan{
    border: 0;
    padding: 6px 10px;
    border-radius: 5px;
    background-color: #000000;
    color: #ffffff;
}



.jy-products-text-content-22 h1 {
            font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
        }

   .jy-products-image-content-22 {
            flex: 0 0 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
           
        }


        
        .jy-products-image-content {
            flex: 0 0 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
           
        }
        
        .jy-products-image-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .jy-products-h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .jy-products-description {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        /* 产品列表样式 */
        .jy-products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .jy-products-card {
            background: white;
          
            overflow: hidden;
         
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .jy-products-card:hover {
            transform: translateY(-5px);
           
        }
        
        .jy-products-content {
            display: flex;
            padding: 20px;
        }
        
        .jy-products-image {
            flex: 0 0 40%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-right: 22px;
        }
        
        .jy-products-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .jy-products-info {
            flex: 0 0 60%;
        }
        
        .jy-products-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #e3a457;
    line-height: 1.3;
        }
        
        .jy-products-specs {
            margin-bottom: 20px;
        }
        
        .jy-products-spec-item {
            margin-bottom: 2px;
            color: #555;
        }
        
        .jy-products-download-section {
            display: flex;
            align-items: flex-start;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .jy-products-download-image {
            flex: 0 0 80px;
            margin-right: 15px;
        }
        
        .jy-products-download-image img {
            width: 100%;
            height: auto;
            border-radius: 5px;    box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 5px;    border: 1px solid #c7c7c7;
        }
        
        .jy-products-download-links {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .jy-products-download-link {
            display: flex;
            align-items: center;
               text-decoration: underline;
    color: #444444;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
        
        .jy-products-download-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .jy-products-pdf-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .jy-products-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .jy-products-header-section {
                flex-direction: column;
            }
            
            .jy-products-text-content, .jy-products-image-content {
                flex: 0 0 100%;
            }
            
            .jy-products-content {
                flex-direction: column;
            }
            
            .jy-products-image {
                padding-right: 0;
                margin-bottom: 15px;
            }
            
            .jy-products-download-section {
                flex-direction: column;
            }
            
            .jy-products-download-image {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100px;
            }
        }



 .jy-xwxq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* 导航栏样式 */
        .jy-xwxq-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            transform: translateY(0);
        }

        .jy-xwxq-header.scrolled {
            padding: 10px 0;
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .jy-xwxq-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .jy-xwxq-logo {
            height: 40px;
        }

        .jy-xwxq-logo img {
            height: 100%;
            width: auto;
        }

        .jy-xwxq-language-switcher {
            position: absolute;
            top: -10px;
            right: 0;
            display: flex;
        }

        .jy-xwxq-language-switcher a {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 5px 12px;
            margin-left: 8px;
            border-radius: 3px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.9rem;
            display: inline-block;
        }

        .jy-xwxq-language-switcher a:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .jy-xwxq-nav-menu {
            display: flex;
        }

        .jy-xwxq-nav-menu > li {
            margin-left: 30px;
            position: relative;
        }

        .jy-xwxq-nav-menu > li > a {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
            display: inline-block;
            padding: 5px 0;
            position: relative;
        }

        .jy-xwxq-nav-menu > li > a:hover {
            color: #4CAF50;
        }

        .jy-xwxq-mobile-toggle {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* 新闻详情内容样式 */
        .jy-xwxq-news-detail {
            padding: 140px 0 80px;
            background: white;
        }

        .jy-xwxq-news-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .jy-xwxq-news-title {
               font-size: 26px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 500;
        }

        .jy-xwxq-news-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #666;
            font-size: 0.95rem;
        }

        .jy-xwxq-news-date, .jy-xwxq-news-category, .jy-xwxq-news-author {
            margin: 0 15px;
            display: flex;
            align-items: center;
        }

        .jy-xwxq-news-meta i {
            margin-right: 5px;
            color: #4CAF50;
        }

        .jy-xwxq-news-content {
          
            margin: 0 auto;
        }

        .jy-xwxq-news-image {
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .jy-xwxq-news-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .jy-xwxq-news-text p {
            margin-bottom: 25px;
        }

        .jy-xwxq-news-text h3 {
            font-size: 1.5rem;
            margin: 35px 0 20px;
            color: #333;
            border-left: 4px solid #4CAF50;
            padding-left: 15px;
        }

        .jy-xwxq-news-text blockquote {
            background: #f8f9fa;
            border-left: 4px solid #4CAF50;
            padding: 20px 25px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
        }

        .jy-xwxq-news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .jy-xwxq-news-prev, .jy-xwxq-news-next {
            flex: 1;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .jy-xwxq-news-prev:hover, .jy-xwxq-news-next:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .jy-xwxq-news-prev {
            margin-right: 15px;
            text-align: left;
        }

        .jy-xwxq-news-next {
            margin-left: 15px;
            text-align: right;
        }

        .jy-xwxq-nav-label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }

        .jy-xwxq-nav-title {
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
            display: block;
        }

        .jy-xwxq-news-prev .jy-xwxq-nav-title, .jy-xwxq-news-next .jy-xwxq-nav-title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .jy-xwxq-news-prev i {
            margin-right: 8px;
        }

        .jy-xwxq-news-next i {
            margin-left: 8px;
        }

        /* 页脚样式 */
        .jy-xwxq-footer {
            background: #222;
            color: #ddd;
            padding: 60px 0 20px;
        }

        .jy-xwxq-footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .jy-xwxq-footer-logo {
            height: 40px;
            margin-bottom: 15px;
        }

        .jy-xwxq-footer-logo img {
            height: 100%;
            width: auto;
        }

        .jy-xwxq-footer-about {
            margin-bottom: 20px;
            max-width: 300px;
        }

        .jy-xwxq-footer-links h3, .jy-xwxq-footer-contact h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .jy-xwxq-footer-links ul li {
            margin-bottom: 10px;
        }

        .jy-xwxq-footer-links a {
            display: inline-block;
            padding: 3px 0;
            transition: color 0.3s;
        }

        .jy-xwxq-footer-links a:hover {
            color: #4CAF50;
        }

        .jy-xwxq-footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .jy-xwxq-footer-contact i {
            margin-right: 10px;
            color: #4CAF50;
        }

        .jy-xwxq-social-icons {
            display: flex;
            margin-top: 20px;
        }

        .jy-xwxq-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background 0.3s;
        }

        .jy-xwxq-social-icons a:hover {
            background: #4CAF50;
        }

        .jy-xwxq-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .jy-xwxq-mobile-toggle {
                display: block;
            }
            
            .jy-xwxq-nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 80px 30px 30px;
                transition: right 0.3s ease;
                z-index: 1000;
            }
            
            .jy-xwxq-nav-menu.active {
                right: 0;
            }
            
            .jy-xwxq-nav-menu > li {
                margin: 0 0 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 15px;
            }
            
            .jy-xwxq-language-switcher {
                position: static;
                margin-bottom: 25px;
                justify-content: center;
                top: auto;
                right: auto;
            }
            
            .jy-xwxq-news-detail {
                padding: 120px 0 60px;
            }
            
            .jy-xwxq-news-title {
                font-size: 2rem;
            }
            
            .jy-xwxq-news-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .jy-xwxq-news-image {
                height: 250px;
            }
            
            .jy-xwxq-news-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .jy-xwxq-news-prev, .jy-xwxq-news-next {
                margin: 0;
            }
            
            .jy-xwxq-footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .jy-xwxq-footer-about {
                max-width: none;
            }
        }

        @media (max-width: 576px) {
            .jy-xwxq-news-title {
                font-size: 1.7rem;
            }
            
            .jy-xwxq-news-text {
                font-size: 1rem;
            }
        }


.mgd {
    text-align: center;
    border: 1px solid #000000;
    width: 100px;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 5px;
    font-size: 16px;
    color: #444444;
    line-height: 30px;
}

        .xm-newss-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;margin-top: 40px;
        }
        
        /* Header styles */
        .xm-newss-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .xm-newss-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .xm-newss-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* News list styles */
        .xm-newss-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .xm-newss-item {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .xm-newss-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        
        .xm-newss-image {
            flex: 0 0 300px;
            overflow: hidden;
        }
        
        .xm-newss-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .xm-newss-item:hover .xm-newss-image img {
            transform: scale(1.05);
        }
        
        .xm-newss-content {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .xm-newss-content-header {
            margin-bottom: 15px;
        }
        
        .xm-newss-category {
            display: inline-block;
            background: #e9f0ff;
            color: #2a5298;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .xm-newss-item-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #1e3c72;
            line-height: 1.3;
        }
        
        .xm-newss-excerpt {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .xm-newss-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .xm-newss-date {
            color: #6c757d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .xm-newss-date i {
            margin-right: 5px;
        }
        
        .xm-newss-btn {
            background: #2a5298;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .xm-newss-btn:hover {
            background: #1e3c72;
        }
        
        /* Pagination */
        .xm-newss-pagination {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .xm-newss-pagination-list {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        
        .xm-newss-pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .xm-newss-pagination-item.active {
            background: #2a5298;
            color: white;
        }
        
        .xm-newss-pagination-item:not(.active):hover {
            background: #e9ecef;
        }
        
        .xm-newss-pagination-item a {
            text-decoration: none;
            color: inherit;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Sidebar */
        .xm-newss-layout {
            display: flex;
            gap: 40px;
        }
        
        .xm-newss-main {
            flex: 1;
        }
        
        .xm-newss-sidebar {
            flex: 0 0 300px;
        }
        
        .xm-newss-sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .xm-newss-sidebar-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #1e3c72;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .xm-newss-categories {
            list-style: none;
        }
        
        .xm-newss-categories li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .xm-newss-categories li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .xm-newss-categories a {
            text-decoration: none;
            color: #555;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s ease;
        }
        
        .xm-newss-categories a:hover {
            color: #2a5298;
        }
        
        .xm-newss-categories span {
            background: #f8f9fa;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
        
        .xm-newss-popular-list {
            list-style: none;
        }
        
        .xm-newss-popular-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .xm-newss-popular-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .xm-newss-popular-img {
            flex: 0 0 70px;
            height: 70px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .xm-newss-popular-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .xm-newss-popular-content {
            flex: 1;
        }
        
        .xm-newss-popular-title {
            font-size: 0.95rem;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .xm-newss-popular-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .xm-newss-popular-title a:hover {
            color: #2a5298;
        }
        
        .xm-newss-popular-date {
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        /* Footer */
        .xm-newss-footer {
            background-color: #1e3c72;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .xm-newss-layout {
                flex-direction: column;
            }
            
            .xm-newss-sidebar {
                flex: 1;
            }
        }
        
        @media (max-width: 768px) {
            .xm-newss-item {
                flex-direction: column;
            }
            
            .xm-newss-image {
                flex: 1;
                height: 200px;
            }
            
            .xm-newss-header {
                padding: 40px 0;
            }
            
            .xm-newss-title {
                font-size: 2rem;
            }
            
            .xm-newss-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .xm-newss-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .xm-newss-btn {
                align-self: stretch;
                text-align: center;
            }
            
            .xm-newss-pagination-list {
                flex-wrap: wrap;
                justify-content: center;
            }
        }



.pagination {
    padding-left: 0;
    list-style: none;
}
	
	.pagination li a {
    height: 48px;
   
    text-align: center;
    line-height: 48px;
   
    display: inline-block;
    color: #475467;
    background-color: transparent;
    border: 1px solid #EAECF0;
    font-weight: 400;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;    padding: 0 16px;
}
	
	 .pagination li {
    display: inline-block;
    margin-right: 6px;
}
	
	
	.pagination .active {
    background-color: #0074c2;
    color: #ffffff;
}


	.pagination .active a {
  
    color: #ffffff!important;
}


	
	.pagination li:hover {
    background-color: #0074c2;
  
}
		.pagination li:hover a {
  
    color: #ffffff;
}