@charset "utf-8";
/* CSS Document */

  :root {
            --primary-color: #0270df;
            --secondary-color: #063A8E;
            --dark-bg: #063A8E;
            --text-dark: #333333;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }
        
        /* 第一行 - 导航栏 */
        .navbar {
            padding: 15px 0;
            
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 50px;
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: bold;
        }
        
        .navbar-nav .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .language-switch a {
            margin-left: 10px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: bold;
        }
        
        .language-switch a.active {
            color: var(--primary-color);
        }
        
       
        
        /* 第三行 - 产品展示 */
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .section-title p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .title-line {
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 0 auto 30px;
        }
        
        .category-scroll {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .category-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .category-item {
            flex: 0 0 200px;
            margin: 0 15px;
            text-align: center;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .category-item.active {
            border-color: var(--primary-color);
            background-color: rgba(2, 112, 223, 0.05);
        }
        
        .scroll-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            border: none;
        }
        
        .scroll-control.prev {
            left: 0;
        }
        
        .scroll-control.next {
            right: 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .product-item {
            border: 2px solid var(--primary-color);
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .product-item:hover {
            border-color: var(--secondary-color);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-item:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-name {
            padding: 15px;
            text-align: center;
            background-color: #f8f9fa;
            font-weight: bold;
            color: var(--text-dark);
        }
        
        /* 第四行 - 服务流程 */
         .service-process {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* 标题部分 */
        .process-title {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 40px;
            position: relative;
        }
        
        /* 分割线 */
        .divider {
            position: relative;
            height: 1px;
            background: linear-gradient(to right, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
            margin: 40px 0;
        }
        
        .divider::before {
            content: "";
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background-color: #3498db;
            border-radius: 3px;
        }
        
        /* 流程步骤 */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
        }
        
        .step-item {
            flex: 0 0 calc(14.28% - 10px);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }
        
        .step-icon i {
            font-size: 32px;
            color: #3498db;
        }
        
        .step-text {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }
        
        /* 箭头连接线 */
        .step-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 40px;
            right: -40px;
            width: 40px;
            height: 2px;
            background-color: #3498db;
            z-index: 1;
        }
        
        .step-item:not(:last-child)::before {
            content: "";
            position: absolute;
            top: 37px;
            right: -44px;
            width: 0;
            height: 0;
            border-left: 8px solid #3498db;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            z-index: 1;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .step-item {
                flex: 0 0 calc(25% - 10px);
            }
            
            .step-item:nth-child(4)::after,
            .step-item:nth-child(4)::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .step-item {
                flex: 0 0 calc(33.33% - 10px);
            }
            
            .step-item:nth-child(3)::after,
            .step-item:nth-child(3)::before,
            .step-item:nth-child(6)::after,
            .step-item:nth-child(6)::before {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .step-item {
                flex: 0 0 calc(50% - 10px);
            }
            
            .step-item:nth-child(2n)::after,
            .step-item:nth-child(2n)::before {
                display: none;
            }
            
            .step-item:nth-child(7)::after,
            .step-item:nth-child(7)::before {
                display: none;
            }
        }
        
        /* 第五行 - 澳门新葡平台网址7906 */
        .about-section {
            padding: 80px 0;
            position: relative;
            background-image: url('../images/a.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
        }
        
        .about-content {
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            background-color: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 5px;
            color: var(--text-dark);
        }
        
        .about-text h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .btn-more {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn-more:hover {
            background-color: var(--secondary-color);
        }
        
        .about-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .about-img {
            height: 200px;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 第六行 - 资质荣誉 */
        .certificates {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
        }
        
        .certificates .section-title h2 {
            color: white;
        }
        
        .certificates .title-line {
            background-color: white;
        }
        
        .certificate-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .certificate-item {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .certificate-img {
            height: 200px;
        }
        
        .certificate-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
      
        
        /* 第八行 - 新闻资讯 */
        .news-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .news-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .news-line {
            flex: 1;
            height: 1px;
            background-color: #e0e0e0;
        }
        
        .news-title {
            margin: 0 20px;
            font-size: 36px;
            color: var(--text-dark);
        }
        
        .news-container {
            position: relative;
            overflow: hidden;
        }
        
        .news-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .news-item {
            flex: 0 0 33.333%;
            padding: 0 15px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
        }
        
        .news-img {
            height: 200px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-content h4 {
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .news-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .news-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            border: none;
        }
        
        .news-control.prev {
            left: 0;
        }
        
        .news-control.next {
            right: 0;
        }
        
        /* 第九行 - 底部 */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-title {
            color: var(--text-dark);
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .copyright {
            background-color: var(--dark-bg);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .certificate-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .news-item {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
            
            .process-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-line {
                display: none;
            }
            
            .about-images {
                grid-template-columns: 1fr;
                margin-top: 30px;
            }
            
            .news-item {
                flex: 0 0 100%;
            }
            
            .footer .row > div {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .certificate-grid {
                grid-template-columns: 1fr;
            }
        }