
			
			@media (max-width: 1030px) {
			    body {
			        padding-top: 50px;
			    }
				.owl-nav{
					display: none;
				}
				.navBtn{
				    display: none;
				}
			}
			
			
			/* owlCarousel 导航箭头样式 */
			.owl-nav {
				position: absolute;
				top: 30%;
				width: 100%;
				transform: translateY(-50%);
				z-index: 10;
			}
			
			.owl-nav button {
				position: absolute;
				width: 40px;
				height: 40px;
				background: rgba(255, 255, 255, 0.8) !important;
				border-radius: 50% !important;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 20px;
				color: #333;
				box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
				transition: all 0.3s ease;
			}
			
			.owl-nav button:hover {
				background: rgba(255, 255, 255, 1) !important;
				transform: scale(1.1);
			}
			
			.owl-nav .owl-prev {
				position:absolute;
				left: -40px;
			}
			
			.owl-nav .owl-next {
				position:absolute;
				right: -40px;
			}
			
			/* 自定义箭头样式 */
			.owl-nav-prev, .owl-nav-next {
				font-family:'宋体';
				display: block;
				width: 100%;
				height: 100%;
				line-height: 40px;
				text-align: center;
				font-size:20px;
			}
			
			/* 产业布局导航按钮样式 */
			.navBtn {
				margin-top: 20px;
			}
			
			.navBtn button {
				font-family:'宋体';
				width: 50px;
				height: 50px;
				background: #bca480;
				border: 2px solid #bca480;
				border-radius: 50%;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				font-size: 20px;
				color: #FFF;
				cursor: pointer;
				transition: all 0.3s ease;
				margin-right: 10px;
			}
			
			.navBtn button:hover {
				transform: scale(1.1);
			}
			
			.navBtn .next-btn {
				margin-right: 0;
			}

