




  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            text-decoration: none;
        }
        :root {
            --orange: #ff7800;
            --white: #ffffff;
            --text-gray: #333333;
        }
        body {
            height: 2000px; /* 滚动测试高度 */
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 导航容器基础 */
        .header-nav {
            width: 100%;
            height: 70px;
            background-color: var(--orange);
            color: var(--white);
            position: relative;
            z-index: 999;
            transition: all 0.3s ease;
        }
        /* 滚动固定类 */
        .header-nav.fixed {
            position: fixed;
            top: 0;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-nav.fixed .nav-link,
        .header-nav.fixed .drop-title {
            color: var(--orange);
        }
        .header-nav.fixed .logo-text {
            color: var(--orange);
        }

        .nav-wrap {
            max-width: 1400px;
            height: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo区域 */
        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-img,.logo-img2 {
          
       width:100%
          
        }
		
		.logo-box{width:40%}
        .logo-text {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            transition: color 0.3s;
        }

        /* PC端菜单 */
        .pc-menu {
            display: flex;
            height: 100%;
        }
        .menu-item {
            height: 100%;
            padding: 0 18px;
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .nav-link, .drop-title {
            font-size: 16px;
            color: var(--white);
            transition: color 0.3s;
        }
        .menu-item:hover .nav-link,
        .menu-item:hover .drop-title {
            opacity: 0.8;
        }

        /* PC下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 160px;
            background: #fff;
            box-shadow: 0 3px 12px rgba(0,0,0,0.12);
            border-radius: 4px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
        }
        .menu-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .drop-item {
            padding: 12px 18px;
        }
        .drop-link {
            color: var(--orange);
            font-size: 15px;
            display: block;
        }
        .drop-item:hover {
            background-color: #fff3e6;
        }

        /* 移动端汉堡按钮 */
        .hamburger {
            display: none;
            width: 36px;
            height: 36px;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
        }
        .hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .header-nav.fixed .hamburger span {
            background: var(--orange);
        }

        /* 移动端侧边菜单 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            transition: right 0.3s ease;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-inner {
            width: 75%;
            height: 100%;
            background: #fff;
            margin-left: auto;
            padding-top: 80px;
            padding-left: 30px;
        }
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: var(--orange);
            cursor: pointer;
        }
        .mobile-list li {
            margin: 20px 0;
        }
        .mobile-list a {
            color: var(--orange);
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* 移动端子菜单默认隐藏 */
        .mobile-drop {
            display: none;
            margin-left: 15px;
            margin-top: 8px;
        }
        /* 父级激活时显示子菜单 */
        .mobile-parent.active .mobile-drop {
            display: block;
        }
        /* 下拉箭头旋转动画 */
        .arrow {
            transition: transform 0.25s;
        }
        .mobile-parent.active .arrow {
            transform: rotate(180deg);
        }

        /* 媒体查询 手机端适配 */
        @media screen and (max-width: 768px) {
            .pc-menu { 
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-nav {
                height: 60px;
            }
			
			
			.logo-box{width:80%}




 

}






/*主页开始*/






     .blank20{width:100%;height:20px; clear:both;}

        /* 幻灯片容器 - 高度完全自适应 */
        .slideshow-container {
            position: relative;
            width: 100%;
          
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* 幻灯片项 - 核心优化：所有幻灯片都保留在容器中 */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0; /* 默认透明 */
            transition: opacity 1s ease-in-out; /* 平滑淡入淡出 */
            z-index: 1; /* 默认层级 */
        }

        /* 激活的幻灯片 - 仅修改透明度和层级 */
        .slide.active {
            opacity: 1; /* 完全不透明 */
            z-index: 2; /* 激活的幻灯片在最上层 */
            position: relative; /* 让容器高度由激活的幻灯片决定 */
        }

        /* 幻灯片图片 - 保证不变形 */
        .slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* 幻灯片文本 */
        .slide .text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 18px;
            text-align: center;
        }

        /* 切换按钮 */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.2);
            z-index: 10;
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* 指示器 */
        .dots-container {
            text-align: center;
            padding: 10px;
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 10;
        }

        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active-dot, .dot:hover {
            background-color: #717171;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .prev, .next {
                font-size: 14px;
                padding: 10px;
            }
            .slide .text {
                font-size: 14px;
                padding: 10px;
            }
			
			.logo-img img,.logo-img2 img{height:30px;}
        }
		
		
		
		
		
		
		  .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        .wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        /* 左侧文字区域 */
        .text-box h1 {
            font-size: 26px;
            font-weight: normal;
            margin-bottom: 20px;
        }
        .split-line {
            width: 60px;
            height: 4px;
            background: #f26522;
            margin-bottom: 25px;
        }
        .text-content p {
            font-size: 16px;
            margin-bottom: 16px;
            text-align: justify;
			line-height:30px;
        }
        .tip-text {
            font-size: 26px;
            color: #f26522;
            font-weight: 500;
            margin-top: 30px;
        }
        /* 右侧图片区域 */
        .img-box {
            width: 100%;
        }
        .img-box img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
        /* 移动端适配 */
        @media (max-width: 992px) {
            .wrap {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .text-box h1 {
                font-size: 28px;
            }
            .text-content p {
                font-size: 18px;
            }
            .tip-text {
                font-size: 22px;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 12px;
            }
            .text-box h1 {
                font-size: 24px;
            }
            .text-content p {
                font-size: 16px;
            }
            .tip-text {
                font-size: 19px;
            }
        }
		
		
		
		   .btn-wrap {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        .btn {
            padding: 16px 60px;
            background-color: #ff7800;
            color: #fff;
            border: none;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background-color 0.3s ease;
        }
        .btn:hover {
            background-color: #e06a00;
        }
        .btn::after {
            content: "→";
            font-size: 24px;
        }
		
		
		
		
		  /* 外层容器，PC最大宽度1400px，居中 */
        .data-wrap {
		background:#f5f5f5;
            max-width: 1400px;
			box-sizing: border-box;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 20px;
        }
        /* 单个数据项 */
        .data-item {
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 1;
            min-width: 240px;
            justify-content: center;
        }
        /* 橙色圆形图标容器 */
        .data-icon {
            width: 80px;
            height: 80px;
            background: #ff7800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .data-icon svg {
            width: 60px;
            height: 60px;
            fill: #fff;
        }
        /* 文字区域 */
        .data-text {
            display: flex;
            flex-direction: column;
        }
        .data-num {
            font-size: 36px;
            color: #ff7800;
            font-weight: 600;
            line-height: 1.1;
        }
        .data-desc {
            font-size: 32px;
            color: #000000;
            margin-top: 8px;
        }
        /* 移动端适配：768px换行，纵向排列 */
        @media screen and (max-width: 768px) {
            .data-wrap {
                flex-direction: column;
                gap: 40px;
                padding: 30px 15px;
            }
            .data-item {
                width: 100%;
                justify-content: flex-start;
            }
            .data-icon {
                width: 90px;
                height: 90px;
            }
            .data-icon svg {
                width: 45px;
                height: 45px;
            }
            .data-num {
                font-size: 42px;
            }
            .data-desc {
                font-size: 24px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		 .huiceng{width:100%;background:#f5f5f5;margin:50px 0; text-align:center;}
	  .baiceng{width:100%;background:#fff;margin:50px 0; text-align:center;}
        /* 外层容器限制最大宽度1400，居中 */
        .title-box {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 0px;
            display: flex;
            align-items: center;
            gap: 24px;
        }
		.huiceng img {max-width:1400px;}.baiceng img {max-width:1400px;}
        /* 左右分割线 */
        .title-line {
            flex: 1;
            height: 2px;
            background-color: #ff7800;
        }
        /* 标题文字居中 */
        .title-text {
            font-size: 30px;
            color: #ff7800;
            font-weight: normal;
            white-space: nowrap;
        }
        /* 移动端适配 */
        @media screen and (max-width: 768px) {
            .title-box {
                padding: 20px 15px;
                gap: 12px;
            }
            .title-text {
                font-size: 36px;
            }
            .title-line {
                height: 3px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
        /* 幻灯片容器 - 高度完全自适应 独立前缀bf_slide_ */
        .bf_slide_wrap {
            position: relative;
            width: 100%;
			max-width:1400px;
			margin:0 auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* 幻灯片项 - 核心优化：所有幻灯片都保留在容器中 */
        .bf_slide_item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0; /* 默认透明 */
            transition: opacity 1s ease-in-out; /* 平滑淡入淡出 */
            z-index: 1; /* 默认层级 */
        }

        /* 激活的幻灯片 - 仅修改透明度和层级 */
        .bf_slide_item.bf_slide_active {
            opacity: 1; /* 完全不透明 */
            z-index: 2; /* 激活的幻灯片在最上层 */
            position: relative; /* 让容器高度由激活的幻灯片决定 */
        }

        /* 幻灯片图片 - 保证不变形 */
        .bf_slide_item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* 幻灯片文本 */
        .bf_slide_caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 18px;
            text-align: center;
        }

        /* 切换按钮 */
        .bf_slide_prev, .bf_slide_next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.2);
            z-index: 10;
        }

        .bf_slide_next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .bf_slide_prev:hover, .bf_slide_next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* 指示器容器 */
        .bf_slide_dot_box {
            text-align: center;
            padding: 10px;
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 10;
        }

        /* 指示器圆点 */
        .bf_slide_dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .bf_slide_dot.bf_slide_dot_active, .bf_slide_dot:hover {
            background-color: #717171;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .bf_slide_prev, .bf_slide_next {
                font-size: 14px;
                padding: 10px;
            }
            .bf_slide_caption {
                font-size: 14px;
                padding: 10px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
        /* 独立外层容器，专属类名避免冲突，最大宽度1400 */
        .slide-news-wrap-2026 {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 16px;
            display: flex;
            gap: 24px;
        }
        /* 左侧轮播区域 宽度50%等分 */
        .slide-left-block-2026 {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: #000;
        }
        /* 右侧新闻区域 宽度50%等分 */
        .news-right-block-2026 {
            flex: 1;
            background: #ffffff;
            border-radius: 10px;
            padding: 22px;
        }
        /* 轮播容器 */
        .slide-image-container-2026 {
            display: flex;
            width: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .slide-item-card-2026 {
            flex-shrink: 0;
            width: 100%;
        }
        .slide-item-card-2026 img {
            width: 100%;
            display: block;
            object-fit: cover;
			height:450px;
        }
        /* 轮播箭头按钮 */
        .slide-arrow-btn-2026 {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: rgba(0,0,0,0.35);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 9;
        }
        .slide-prev-2026 { left: 12px; }
        .slide-next-2026 { right: 12px; }
        /* 轮播圆点 */
        .slide-dot-group-2026 {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 9;
        }
        .slide-dot-item-2026 {
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            cursor: pointer;
        }
        .slide-dot-item-2026.active {
            background: #fff;
        }
        /* 新闻标题 */
        .news-block-title-2026 {
            font-size: 20px;
            color: #222;
            padding-bottom: 14px;
            border-bottom: 2px solid #1677ff;
            margin-bottom: 18px;
        }
        /* 新闻列表 无缩略图 */
        .news-item-list-2026 li {
            padding: 13px 0;
            border-bottom: 1px solid #eeeeee;
        }
        .news-item-list-2026 li:last-child {
            border-bottom: none;
        }
        .news-link-text-2026 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            font-size: 15px;
        }
        .news-link-text-2026:hover {
            color: #1677ff;
        }
        .news-time-text-2026 {
            color: #999;
            font-size: 13px;
        }

        /* 移动端768px以下上下排列 */
        @media screen and (max-width: 768px) {
            .slide-news-wrap-2026 {
                flex-direction: column;
                margin: 20px auto;
                gap: 20px;
            }
            .slide-left-block-2026,
            .news-right-block-2026 {
                width: 100%;
            }
            .slide-arrow-btn-2026 {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		.hzmt-box{width:100%; max-width:1400px;height:350px;line-height:25px;overflow:hidden; margin:0 auto;} 
		.hzmt-box ul{margin:0; padding:0} 
		.hzmt-box img{height:100px; width:223px; float:left; padding:1px;box-shadow:0 0 5px #999; margin-left:10px; margin-top:10px;} 
	

 @media (max-width: 768px) {
       	.hzmt-box img{width:47%;} 
	

        }
		
		
			/*底部*/
		
		
		
		
		
		
		.main-det{width:100%;padding:10px;    box-sizing: border-box;max-width:1200px; margin:50px auto; }
	
.footer{width:100%;background:#f5f5f5;float:left;padding-bottom:100px;}
.footer .bot-list{width:100%;max-width:1400px;margin:0 auto;box-sizing:border-box;padding:10px 0}

.footer .bot-list li{width:33%;padding:20px;box-sizing:border-box;border-right:1px solid #aaa;float:left; line-height:30px;}


.f-mid{width:50%;float:left;}
.f-mid ul{width:100%;float:left;margin-top:20px;}
.footer .bot-list li ul li{width:100%;border:0;padding:5px}
.footer .bot-list li ul li a{color:#333}
.footer .bot-list li ul li img{float:left;margin:3px;}


	@media screen and (max-width: 768px){
	.footer .bot-list li{width:100%;}
	
	.guding ul a{padding: 0 22px;}
	}
		
		
		
		
		
		
		
		
		
		/*新闻列表页样式*/
			
		
		 .glpga-buick-news-maxwrap-20240708 {
            max-width: 1200px;
            margin: 30px auto;
        }
        .glpga-buick-single-news-card-unit-001 {
            display: flex;
            gap: 24px;
            padding: 30px 0;
            border-bottom: 1px solid #e5e5e5;
        } 
        .glpga-buick-single-news-card-unit-001:first-child {
            padding-top: 0;
        }
        .glpga-buick-news-image-box-lpga001 {
            width: 240px;
            height: 160px;
            flex-shrink: 0;
        }
        .glpga-buick-news-image-box-lpga001 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
            display: block;
        }
        .glpga-buick-news-text-content-wrap-golf {
            flex: 1;
        }
        .glpga-buick-news-title-heading-hd {
            font-size: 22px;
            color: #111111;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .glpga-buick-news-description-text-txt {
            font-size: 16px;
            color: #333333;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .glpga-buick-single-news-card-unit-001 {
                flex-direction: column;
                gap: 16px;
                padding: 24px 0;
            }
            .glpga-buick-news-image-box-lpga001 {
                width: 100%;
                height: auto;
                aspect-ratio: 240 / 160;
            }
            .glpga-buick-news-title-heading-hd {
                font-size: 18px;
            }
            .glpga-buick-news-description-text-txt {
                font-size: 15px;
            }
        
		}
		
		.pagelist a{padding:2px 8px;margin-right:10px; background:#06c; color:#fff;}
			.pagelist span{padding:2px 8px;margin-right:10px; background:#ccc; }
		    /* 面包屑列表 */
    .breadcrumbpte {
     display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 16px;
      color: #666;
      flex-wrap: wrap;
      gap: 8px;
	  border-bottom:1px solid #ccc;
	  line-height:40px;
	  width:100%;max-width:1200px;margin:20px auto;
    }
    .breadcrumbpte a{color:#069}
		
		
		
		 /* 内容页样式 */
		 
		 
		 .main-det{width:100%;padding:10px;    box-sizing: border-box;max-width:1200px; margin:50px auto; }
	.left-c{width:830px; float:right;}
	.left-c {font-size:16px; line-height:35px}
	.left-c h2{width:100%; height:40px; line-height:40px; text-align:left; font-size:16px; border-bottom:1px solid #ccc;}
	.left-c .content{width:100%; float:left; text-align:left; line-height:30px; color:#666}
	.right-c {width:330px; float:left;}

	.content,.content *{font-size:16px !important; line-height:35px;}
	



		
		@media screen and (max-width: 768px){
		
		.right-c {display:none;}
		.left-c{width:100%;}
		.det-topimg{margin-top:20px;float:left;}
		
		}
		
		
		
		
		
		/*参观登记样式*/
		
		
		.gudingdi{width:100%;height:80px;background:#2f2a3e; opacity:.8; position:fixed; bottom:0;z-index:9999}
.guding{width:100%;height:80px;overflow:hidden;position:fixed;bottom:0; z-index:99999}
.guding ul{max-width:600px; overflow:hidden; margin:auto;}
.guding ul a{float: left;text-align: center;line-height: 46px;color: #fff;background: #ec6a26;border-radius: 5px;font-size: 20px;font-weight: bold;margin: 17px 15px 0;padding: 0 55px;}











/*小幻灯片*/


  /* 幻灯片容器 - 高度完全自适应 专属唯一类名 */
        .uniSlide_wrap {
            position: relative;
            width: 100%;max-width:1400px;margin:0 auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* 幻灯片项 - 核心优化：所有幻灯片都保留在容器中 */
        .uniSlide_item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0; /* 默认透明 */
            transition: opacity 1s ease-in-out; /* 平滑淡入淡出 */
            z-index: 1; /* 默认层级 */
        }

        /* 激活的幻灯片 - 仅修改透明度和层级 */
        .uniSlide_item.active_show {
            opacity: 1; /* 完全不透明 */
            z-index: 2; /* 激活的幻灯片在最上层 */
            position: relative; /* 让容器高度由激活的幻灯片决定 */
        }

        /* 幻灯片图片 - 保证不变形 */
        .uniSlide_item img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* 幻灯片文本 */
        .uniSlide_item .uniSlide_text_box {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 18px;
            text-align: center;
        }

        /* 切换按钮 */
        .uniSlide_prev_btn, .uniSlide_next_btn {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.2);
            z-index: 10;
        }

        .uniSlide_next_btn {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .uniSlide_prev_btn {
            left: 0;
            border-radius: 3px 0 0 3px;
        }
        .uniSlide_prev_btn:hover, .uniSlide_next_btn:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* 指示器容器 */
        .uniSlide_dot_box {
            text-align: center;
            padding: 10px;
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 10;
        }

        .uniSlide_dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .uniSlide_dot.dot_active, .uniSlide_dot:hover {
            background-color: #717171;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .uniSlide_prev_btn, .uniSlide_next_btn {
                font-size: 14px;
                padding: 10px;
            }
            .uniSlide_item .uniSlide_text_box {
                font-size: 14px;
                padding: 10px;
            }
        }
		
		
		
		
		
		/*侧栏*/
		
		.right-title{width:100%; height:50px;  text-align:left; font-size:16px;background:#eee; text-indent:20px; line-height:50px;}
	.right-list {float:left; width:100%; }
	.right-list li {width:100%; height:50px; line-height:50px;float:left; text-align:left; text-indent:10px; }
	.right-list li a{color:#0053c4;}
	.right-list a:hover{color:#0175be;}
	.lxwm-title{width:100%; height:40px; line-height:40px; text-align:left; font-size:16px; border-bottom:1px solid #ccc; }
	.lxwm-con{text-align:left; line-height:30px;}
	.cgdj{width:70%; height:60px; background:#f8d000; border-radius:5px; float:left; margin-bottom:20px;line-height:60px;font-size:18px;   color:#fff;text-align:center;}
	.czdj{width:70%; height:60px; background:#aacd06;border-radius:5px;  float:left; margin-bottom:20px;line-height:60px;font-size:18px;   color:#fff;text-align:center;}
	.lxwm-con img{max-width:100%;height:auto}
	.bg{background:none;}
	 .right-c ul{margin-bottom:30px;}
 .right-c ul li{width:100%; height:40px; overflow:hidden; margin-top:10px; border-radius:4px;}
.right-c ul li a{display:block; width:100%; height:40px; line-height:40px; font-size:16px; color:#424242; padding-left:24px;}
 .right-c ul li a:hover{background:#424242; color:#fff}
 .right-c .active a{background:#424242; color:#fff}
