/* 顶部信息栏样式 */
        .top-bar {
            background-color: #333;
            color: white;
            padding: 8px 20px;
            font-size: 14px;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .top-content {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info span {
            margin-right: 20px;
        }

        .contact-info i {
            margin-right: 5px;
        }

        /* 右侧内容样式 */
        .right-content {
            display: flex;
            gap: 20px;
        }

        /* 语言选择样式 */
        .language-selector {
            cursor: pointer;
        }
		/*CSS菜单样式和特效*/
		* {
		    margin: 0;
		    padding: 0;
		    box-sizing: border-box;
		}
		
		body {
		    padding-top: 80px; /* 为固定导航栏留出空间 */
		}
		
		.container {
		    position: fixed;
		    top: 0;
		    width: 100%;
		    display: flex;
		    justify-content: space-between;
		    align-items: center;
		    padding: 15px 50px;
		    background-color: #e3f2fd;
		    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		    z-index: 1000;
		}
		
		/* Logo链接特效 */
		.logo-link {
		    display: block;
		    width: 200px;
		    height: 50px;
		    transition: transform 0.3s ease;
		}
		
		.logo-link:hover {
		    transform: scale(1.05) rotate(-2deg);
		}
		
		.logo {
		    width: 120%;
		    height: 120%;
		    /*background-color: #1976D2;*/
		    /* 替换为实际logo图片：background: url(logo.png) no-repeat center/contain; */
		    transition: all 0.3s ease;
			overflow: hidden;
			margin-left: 150px;
		}
		
		.logo1 {
		    width: 100%;
		    height: 100%;
		    /*background-color: #1976D2;*/
		    /* 替换为实际logo图片：background: url(logo.png) no-repeat center/contain; */
		    transition: all 0.3s ease;
			overflow: hidden;
		}
		
		.logo img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		
		/* 导航菜单特效 */
		.nav-menu {
		    display: flex;
		    gap: 40px;
		    list-style: none;
		}
		
		.nav-menu a {
		    position: relative;
		    color: #1565C0;
		    text-decoration: none;
		    font-family: 'Microsoft YaHei', sans-serif;
		    font-size: 16px;
		    font-weight: 500;
		    padding: 8px 12px;
		    border-radius: 4px;
		    transition: all 0.3s ease;
		}
		
		/* 悬浮下划线动画 */
		.nav-menu a::after {
		    content: '';
		    position: absolute;
		    width: 0;
		    height: 2px;
		    bottom: 0;
		    left: 50%;
		    background: #42a5f5;
		    transition: all 0.3s ease;
		}
		
		.nav-menu a:hover::after {
		    width: 100%;
		    left: 0;
		}
		
		/* 悬浮效果 */
		.nav-menu a:hover {
		    color: #1e88e5;
		    transform: translateY(-2px);
		    text-shadow: 0 2px 5px rgba(66,165,245,0.3);
		}
		
		/* 当前页面效果 */
		.nav-menu a.active {
		    color: white;
		    background: linear-gradient(135deg, #42a5f5, #1976D2);
		    box-shadow: 0 3px 8px rgba(25,118,210,0.2);
		}
		
		/* 点击水波纹效果 */
		.nav-menu a:active {
		    transform: scale(0.95);
		}
		
		/* 基础样式 */
		.box {
		    width: 100%;
		    padding: 20px;
		    margin: 10px 0;
		    border: 1px solid #ddd;
		}
		.shenti{
			width: 100%;
			height: 2000px;
		}
		.container{
			margin-top: 30px;
		}
		/*轮播图样式*/
		.slider-container {
		    width: 100%;
		    height: 650px;
		    overflow: hidden;
		    position: relative;
		}
		
		.slider-track {
		    display: flex;
		    width: 300%;
		    height: 100%;
		    transition: transform 0.8s ease-in-out;
		}
		
		.slide {
		    flex: 0 0 33.3333%; /* 确保每张幻灯片占容器宽度的1/3 */
		    height: 100%;
		}
		
		.slide img {
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
			filter: brightness(0.8);
			}
			
.containerl{
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
	height: 450px;
	/*background-color: #f9fafb;*/
	margin-top: 30px;
}
.left-section1{
	float: left;
	width: 60%;
	height: 450px;
	/*background-color: #42a5f5;*/
	/*border-radius: 8px;/* 可选圆角 */
	margin-right: 30px;
	margin-top: 10px;
}
.gengduo1{
	float: right;
}
.right-section1 {
            width: 40%px; /* 固定宽度 */
            height: 450px; /* 指定高度 */
            border-radius: 8px; /* 可选圆角 */
            overflow: hidden; /* 防止图片溢出 */
			background-color: #e3f2fd;
			}
.right-section1 p{
				text-indent:36px
			}
.right-section1 img{
			    width: 100%;
			    height: 100%;
			    object-fit: cover;
}
			/*业务部分*/
.business-sectiony {
            padding: 80px 20px;
            /*background-color: #f9fafb;*/
        }

        .containery {
            max-width: 1200px;/*这部分是分布网页大小的*/
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            text-align: center;
			margin-top: 30px;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icony {
            font-size: 48px;
            color: #2b6cb0;
            margin-bottom: 25px;
        }

        h3 {
            color: #1a365d;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-descriptiony {
            color: #718096;
            font-size: 16px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
			/*.top-bar{
				display: none;
			}*/
			.contact-info{
				display: none;
			}
            .containery {
                grid-template-columns: 1fr;
            }
            
            .service-cardy {
                margin-bottom: 30px;
				transition: transform 0.5s ease;
            }
        }
		/*代理船/航*/
		.clients-section {
		    max-width: 1200px;/*这部分是分布网页大小的*/
		    margin: 40px auto;
		    padding: 0 20px;
		}
		
		.clients-grid {
		    display: grid;
		    grid-template-columns: repeat(5, 1fr);
		    gap: 30px;
		    padding: 20px 0;
		}
		
		.client-logo {
		    background: #f5f5f5;
		    border-radius: 8px;
		    height: 100px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    transition: all 0.3s ease;
		    position: relative;
		    overflow: hidden;
		}
		.client-logo img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		.client-logo::after {
/*content: "";*/
		    color: #999;
		    font-size: 16px;
		    font-family: Arial, sans-serif;
		}
		
		.client-logo:hover {
		    transform: translateY(-5px);
		    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
		}
		
		/* 响应式设计 */
		@media (max-width: 1024px) {
		    .clients-grid {
		        grid-template-columns: repeat(4, 1fr);
		    }
		}
		
		@media (max-width: 768px) {
		    .clients-grid {
		        grid-template-columns: repeat(3, 1fr);
		        gap: 20px;
		    }
		}
		
		@media (max-width: 480px) {
		    .clients-grid {
		        grid-template-columns: repeat(2, 1fr);
		        gap: 15px;
		    }
		    
		    .client-logo {
		        height: 80px;
				overflow: hidden;
		    }
		}
		h5{
            color: #1a365d;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
			text-align: center;
			margin-top: 30px;
        }
		a{
			margin: 0;
		}
		.ywfw{
            color: #1a365d;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
			text-align: center;
			margin-top: 10px;
        }
		.anlizhan{
			color: #1a365d;
			            font-size: 24px;
			            margin-bottom: 15px;
			            font-weight: 600;
						text-align: center;
						margin-top: 10px;
						margin: 0;
		}
		.anlizhangshi{
			max-width: 1200px;
			height: 500px;
			/*background-color: #1976D2;*/
			margin: 40px auto;
			padding: 0 0px;
			border-radius: 8px; /* 可选圆角 */
			overflow: hidden;
		}
		.anlizhangshi img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		/*底部部分*/
		.footer {
		    background-color: #333;
		    color: white;
		    padding: 40px 20px;
		    display: flex;
		    justify-content: space-between;
		    flex-wrap: wrap;
			max-width: 1200px;
			margin: auto;
		}
		
		.footer-section {
		    width: 30%;
		    min-width: 300px;
		    /*margin: 10px 0;*/
		}
		
		/*.logo {
		    width: 200px;
		    margin-bottom: 80px;
			margin-left: 10px;
		}*/
		
		.contact-info p {
		    margin: 8px 0;
		    font-size: 14px;
		}
		
		.menu-list {
		    list-style: none;
		    padding: 0;
			margin-top: 70px;
		}
		
		.menu-list li {
		    margin: 0;
		}
		
		.menu-list a {
		    color: white;
		    text-decoration: none;
		}
		
		.contact-form input,
		.contact-form textarea {
		    width: 100%;
		    padding: 8px;
		    margin: 5px 0;
		    border: 1px solid #ddd;
		    border-radius: 4px;
		}
		
		.submit-btn {
		    background-color: #4CAF50;
		    color: white;
		    padding: 10px 20px;
		    border: none;
		    border-radius: 4px;
		    cursor: pointer;
		}
		
		.submit-btn:hover {
		    background-color: #45a049;
		}
		.dibu{
			background-color: #333;
			width: 100%;
			height: 400px;
			margin: 0;
		}
		h6{
		font-size: 20px;	
		}
		/*关于我们样式guanyuwomen*/
		.gywm{
			/*background-color: #f5f5f5;*/
			margin: auto;
			max-width: 1200px;
			height: 900px;
		}
		.ENgywm{
						/*background-color: #f5f5f5;*/
						margin: auto;
						max-width: 1200px;
						height: 900px;
		}
		.gywmdatu{
			width: 100%;
			height: 600px;
			/*background-color: #4CAF50;*/
			flex: 0 0 33.3333%; /* 确保每张幻灯片占容器宽度的1/3 */
			height: 100%;
		}
		/*业务主页部分,ywzhuye*/
		.ywzhuyedatu{
		width: 100%;
		height: 500px;
		/*background-color: #42a5f5;*/
		overflow: hidden;
		position: relative;
		}
		.ywzhuyedatu img{
			width: 100%;
			height: 100%;
			object-fit: cover;
			filter: brightness(0.8);
		}
		.ywzhuye{
			/*background-color: #f5f5f5;*/
			margin: auto;
			max-width: 1200px;
			height: 1400px;
		}
		@media (max-width: 768px) {
					.ywzhuyedatu{
					width: 100%;
					height: 250px;
					/*background-color: #42a5f5;*/
					overflow: hidden;
					position: relative;
					
					}
					.ywzhuyedatu img{
						width: 100%;
						height: 100%;
						object-fit: cover;
						filter: brightness(0.8);
					}
					.ywzhuye{
						/*background-color: #f5f5f5;*/
						margin: auto;
						max-width: 100%;
						height: 1000px;
					}
				    }
		/*联系我们主页,lianxiwomen*/
		.lianxiwomendatu{
		width: 100%;
		height: 500px;
		/*background-color: #e3f2fd;	*/
		}
		.lianxiwomen{
		/*background-color: #ddd;*/
		margin: auto;
		max-width: 1200px;
		height: 1000px;	
		}
/*主页轮播图,透明图*/
        .info-overlay {
            position: absolute;
            top: 400px;
            left: 200px;
            /*background: rgba(100, 0, 0, 0.1);*/
			/*opacity: 0.9;*/
			background-color: transparent;
            padding: 20px;
            border-radius: 8px;
            z-index: 2;
            /*backdrop-filter: blur(5px);*/
            max-width: 300px;
        }

        .info-overlay h2 {
            color: white;
            margin: 0 0 10px 0;
        }

        .info-overlay p {
            color: white;
            margin: 0;
            line-height: 1.5;
        }
.footer-section{
	width: 50px;
	height: 60px;
	margin: 0;
	
}
.footer-section img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #999;
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }
			.logo {
			    width: 100%;
			    height: 100%;
				
			    /*background-color: #1976D2;*/
			    /* 替换为实际logo图片：background: url(logo.png) no-repeat center/contain; */
			    transition: all 0.3s ease;
				/*overflow: hidden;*/
				margin-left: -40px;
				margin-top: 1px;
			
			}
			.slider-container {
			    width: 100%;
			    height: 300px;
			    overflow: hidden;
			    position: relative;
			}
			.slider-track {
					    display: flex;
					    width: 300%;
					    height: 100%;
					    transition: transform 0.8s ease-in-out;
					}
					
					.slide {
					    flex: 0 0 33.3333%; /* 确保每张幻灯片占容器宽度的1/3 */
					    height: 100%;
					}
					
					.slide img {
					    width: 100%;
					    height: 100%;
					    object-fit: cover;
						filter: brightness(0.8);
						}
						.containerl{
							margin: 0 auto;
							max-width: 900px;
							width: 100%;
							height: 750px;
							/*background-color: #f9fafb;*/
							margin-top: 30px;
						}
						.left-section1{
							float: left;
							width: 100%;
							height: 500px;
							max-width: 90%;
							/*background-color: #42a5f5;*/
							/*border-radius: 8px;/* 可选圆角 */
							margin-right: 30px;
							margin-top: 10px;
							margin-left: 5%;
							margin-right: 5%;
						}
						.gengduo1{
							float: right;
							/*background-color: #1565C0;*/
						}
						.right-section1 {
						            width: 90%; /* 固定宽度 */
						            height: 200px; /* 指定高度 */
						            border-radius: 8px; /* 可选圆角 */
						            overflow: hidden; /* 防止图片溢出 */
									background-color: #e3f2fd;
									margin-left: 5%;
									}
						.right-section1 p{
										text-indent:36px
									}
						.right-section1 img{
									    width: 100%;
									    height: 100%;
									    object-fit: cover;
										
						}
						
						.clients-section {
								    max-width: 100%;/*这部分是分布网页大小的*/
								    margin: 40px auto;
								    padding: 0 20px;
								}
								
								.clients-grid {
								    display: grid;
								    grid-template-columns: repeat(5, 1fr);
								    gap: 30px;
								    padding: 20px 0;
								}
								
								.client-logo {
								    background: #f5f5f5;
								    border-radius: 8px;
								    height: 50px;
								    display: flex;
								    align-items: center;
								    justify-content: center;
								    transition: all 0.3s ease;
								    position: relative;
								    overflow: hidden;
								}
								.client-logo img{
									width: 100%;
									height: 100%;
									object-fit: cover;
								}
								.client-logo::after {
						/*content: "";*/
								    color: #999;
								    font-size: 16px;
								    font-family: Arial, sans-serif;
								}
								
								.client-logo:hover {
								    transform: translateY(-5px);
								    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
								}
								
								/* 响应式设计 */
								@media (max-width: 1024px) {
								    .clients-grid {
								        grid-template-columns: repeat(4, 1fr);
								    }
								}
								
								@media (max-width: 768px) {
								    .clients-grid {
								        grid-template-columns: repeat(3, 1fr);
								        gap: 20px;
								    }
								}
								
								@media (max-width: 480px) {
								    .clients-grid {
								        grid-template-columns: repeat(2, 1fr);
								        gap: 15px;
								    }
								    
								    .client-logo {
								        height: 80px;
										overflow: hidden;
								    }
								}
								h5{
						            color: #1a365d;
						            font-size: 24px;
						            margin-bottom: 15px;
						            font-weight: 600;
									text-align: center;
									margin-top: 30px;
						        }
								a{
									margin: 0;
								}
								.ywfw{
						            color: #1a365d;
						            font-size: 24px;
						            margin-bottom: 15px;
						            font-weight: 600;
									text-align: center;
									margin-top: 10px;
						        }
						.anlizhan{
							color: #1a365d;
							            font-size: 24px;
							            margin-bottom: 15px;
							            font-weight: 600;
										text-align: center;
										margin-top: 10px;
										margin: 0;
						}
						.anlizhangshi{
							max-width: 90%;
							height: 200px;
							/*background-color: #1976D2;*/
							margin: 40px auto;
							padding: 0 0px;
							border-radius: 8px; /* 可选圆角 */
							overflow: hidden;
						}
						.anlizhangshi img{
							width: 100%;
							height: 100%;
							object-fit: cover;
						}
						/*底部部分*/
								.footer {
								    background-color: #333;
								    color: white;
								    padding: 40px 20px;
								    display: flex;
								    justify-content: space-between;
								    flex-wrap: wrap;
									max-width: 100%;
									margin: auto;
									height: 350px;
								}
								
								.footer-section {
								    width: 100%;
								    /*min-width: 100%;*/
								    /*margin: 10px 0;*/
								}
								
								.logo1 {
								    display: none;
								}
								.menu-list{
									display: none;
								}
								
								.contact-info p {
								    margin: 8px 0;
								    font-size: 14px;
								}
								
								.menu-list {
								    list-style: none;
								    padding: 0;
									margin-top: 70px;
								}
								
								.menu-list li {
								    margin: 0;
								}
								
								.menu-list a {
								    color: white;
								    text-decoration: none;
								}
								
								.contact-form input,
								.contact-form textarea {
								    width: 100%;
								    padding: 8px;
								    margin: 5px 0;
								    border: 1px solid #ddd;
								    border-radius: 4px;
								}
								
								.submit-btn {
								    background-color: #4CAF50;
								    color: white;
								    padding: 10px 20px;
								    border: none;
								    border-radius: 4px;
								    cursor: pointer;
								}
								
								.submit-btn:hover {
								    background-color: #45a049;
								}
								.dibu{
									background-color: #333;
									width: 100%;
									height: 500px;
									margin: 0;
								}
								h6{
								font-size: 20px;	
								}
								.language-selector{
									display: none;
								}
        }
		
		/*语言*/
		.right-sections a{
			color: aliceblue;
			text-decoration: none;
		}
		@media (max-width: 768px) {
			.right-sections a{
				color: aliceblue;
				text-decoration: none;
				margin-left: 50px;
			}
		}