﻿        /* 主要顶部导航栏样式 */
        .dps_header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #e6e6e6;
            z-index: 1000;
        }
        
        .dps_header_container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1500px;
            margin: 0 auto;
            height: 100%;
        }
        
        /* Logo样式 */
        .dps_logo {
            width: 140px;
            height: 30px;
            background:url(image/logo.png) no-repeat left center scroll;
			text-indent:-999em;
        }

        
        /* 导航菜单样式 */
        .dps_menu_nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .dps_menu_item {
            
            margin: 0 20px;
        }
        
        .dps_menu_link {
            color: #6b7280;
            text-decoration: none;
            font-size: 16px;
            padding: 10px 5px;
            display: block;
            font-weight: 500;
        }
        
        .dps_menu_link:hover,
        .dps_menu_item.active .dps_menu_link {
            color: #53bef3;
        }
		.dps_menu_item a.active {
            color: #53bef3;
        }
		
        
        /* 下拉菜单样式 */
        .dps_dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            border-top: 1px solid #e6e6e6;
            padding: 60px 0;
            -webkit-backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
			background-color:rgba(255,255,255,0.98);
			backdrop-filter:blur(90);
			box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.1);
            z-index: 1001;
			
        }
        
        .dps_dropdown_inner {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .dps_dropdown_title {
            font-size: 18px;     
            margin-bottom: 15px;
			padding-bottom: 10px;
            font-weight: bold;
			border-bottom: 1px solid #e6e6e6;
        }
		.dps_dropdown_title a{color: #53bef3;}
        
        .dps_dropdown_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
        }
        
     	.dps_dropdown_item{line-height:30px;}
		.dps_dropdown_item a{display:inline-block;line-height:30px;font-size:15px;background:url(image/li1.png) no-repeat left center scroll;padding-left:15px;}
		.dps_dropdown_item a:hover{background:url(image/li2.png) no-repeat left center scroll;padding-left:15px;}
        
        .dps_menu_item:hover .dps_dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* 右侧内容样式 */
        .dps_header_right {
            display: flex;
            align-items: center;
        }
        
        .dps_lang_switch {
            display: flex;
            align-items: center;
            margin-right: 20px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .dps_lang_active {
            background-color: #53bef3;
            color: white;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
        }
		.dps_lang_active:hover{color: #3a9ccd;}
        
        .dps_lang_inactive {
            background-color: #f5f5f5;
            color: #6b7280;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
        }
        
        .dps_lang_inactive:hover {
            background-color: #e9e9e9;
        }
        
        .dps_phone {
            color: #6b7280;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .dps_phone i {
            margin-right: 8px;
            color: #53bef3;
        }
        
        /* 移动端样式 */
        .dps_mobile_toggle {
            display: none;
            font-size: 24px;
            color: #6b7280;
            cursor: pointer;
        }
        
        .dps_mobile_phone {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #53bef3;
            color: white;
            text-align: center;
            padding: 10px;
            z-index: 1002;
            font-size: 15px;
            font-weight: bold;
			font-family:Arial, Helvetica, sans-serif;
        }
        
        .dps_mobile_phone a {
            color: white;
            text-decoration: none;
        }
        
        /* 移动端菜单样式 */
        .dps_mobile_menu {
            display: none;
            position:absolute;
            top: 60px;
            right: 0;
            width: 80%;
            height: 100wv;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            padding: 20px;
            z-index: 1001;
            overflow-y: auto;
        }
        
        .dps_mobile_menu.active {
            display: block;
        }
        
        .dps_mobile_menu_item {
            margin-bottom: 15px;
        }
        
        .dps_mobile_menu_link {
            color: #6b7280;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #e6e6e6;
        }
        
        .dps_mobile_menu_link:hover {
            color: #53bef3;
        }
        
        .dps_mobile_lang_switch {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            border-top: 1px solid #e6e6e6;
            padding-top: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
			.dps_header_container{
				padding:0 20px;	
			}
            .dps_menu_nav {
                display: none;
            }
            
            .dps_header_right {
                display: none;
            }
            
            .dps_mobile_toggle {
                display: block;
            }
            
            .dps_mobile_phone {
                display: block;
            }
        }