 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
			list-style: none;
        }
        
        body {
            background-color: #fff;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .header-top-wrapper {
            background-color: #ff8b2a;
            width: 100%;
            height: 30px;
        }
        
        .header-top {
            height: 30px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        
        .header-top a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            margin-left: 15px;
        }
        
        .header-top a:hover {
            color: #000;
        }
        
        .header-top .clock-icon {
            margin-left: 5px;
        }
        
        .main-header-wrapper {
            background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
            width: 100%;
            height: 80px;
        }
        
        .main-header {
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 54px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text-cn {
            font-size: 20px;
            font-weight: bold;
            color: #000;
        }
        
        .logo-text-en {
            font-size: 12px;
            color: #333;
        }
        
        .nav {
            display: flex;
            list-style: none;
            height: 100%;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .nav-item a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .nav-item a:hover {
            color: #fff;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            padding: 10px 0;
        }
        
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
            border: none;
            width: 100%;
            text-align: left;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(-37.2135deg, #e60012 0%, #e94518 100%);
            opacity: 0.9;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .active {
            /* position: relative; */
        }
        
        .active::after {
            content: '';
            position: absolute;
            bottom:15%;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background-color: #000;
            border-radius: 50%;
        }
        
        .phone {
            display: flex;
            align-items: center;
        }
        
        .phone-icon {
            font-size: 24px;
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        
        .phone-icon img {
            height: 24px;
            vertical-align: middle;
        }
        
        .phone-number {
            font-size: 22px;
            font-weight: bold;
            color: #fff;
            vertical-align: middle;
        }
		
					
					
					/* 底部区域样式 */
					.footer {
					    background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
					    color: #fff;
					    padding: 50px 0 20px;
					}
					
					.container {
					    width: 1200px;
					    margin: 0 auto;
					    position: relative;
					}
					
					.footer-content {
					    display: flex;
					    justify-content: left;
					    flex-wrap: wrap;
					}
					
					.footer-column {
					    width: 22%;
					}
					
					.footer-title {
					    font-size: 20px;
					    font-weight: bold;
					    margin-bottom: 20px;
					    color: #fff;
					}
					
					.footer-links {
					    list-style: none;
					    padding: 0;
					    margin: 0;
					}
					
					.footer-links li {
					    margin-bottom: 10px;
					}
					
					.footer-links a {
					    color: #fff;
					    text-decoration: none;
					    font-size: 16px;
					    transition: color 0.3s ease;
					}
					
					.footer-links a:hover {
					    color: #ff8b2a;
					}
					
					.footer-contact {
					    list-style: none;
					    padding: 0;
					    margin: 0;
					}
					
					.footer-contact li {
					    margin-bottom: 10px;
					    font-size: 16px;
					}
					
					.contact-label {
					    font-weight: bold;
					}
					
					.contact-value {
					    color: #fff;
					    text-decoration: none;
					}
					
					a.contact-value:hover {
					    color: #ff8b2a;
					}
					
					.address {
					    line-height: 1.5;
					    margin-top: 15px;
					}
					
					.social-icons {
					    display: flex;
					    margin-top: 20px;
					}
					
					.social-icon {
					    display: flex;
					    justify-content: center;
					    align-items: center;
					    width: 40px;
					    height: 40px;
					    background-color: #fff;
					    border-radius: 50%;
					    margin-right: 15px;
					    transition: all 0.3s ease;
					}
					
					.social-icon:hover {
					    transform: translateY(-5px);
					}
					
					.social-icon img {
					    width: 24px;
					    height: 24px;
					}
					
					.qrcode-column {
					    width: 25%;
					}
					
					.qrcode-container {
					    display: flex;
					    justify-content: space-between;
					}
					
					.qrcode-box {
					    text-align: center;
					}
					
					.qrcode-img {
					    width: 120px;
					    height: 120px;
					    background-color: #fff;
					    padding: 10px;
					    border-radius: 10px;
					    margin-bottom: 10px;
					}
					
					.qrcode-label {
					    font-size: 16px;
					    color: #fff;
					    margin: 0;
					}
					
					.copyright {
					    text-align: center;
					    margin-top: 10px;
					    padding-top: 10px;
						padding-bottom: 20px;
					    border-top: 1px solid rgba(255, 255, 255, 0.2);
					}
					
					.copyright p {
					    margin: 0;
					    font-size: 14px;
					    color:#000;
					}
					
					a, a:hover, a:focus, a:active {
					    text-decoration: none;  /* 移除下划线 */
					    outline: none;          /* 移除焦点时的轮廓线 */
					    color: inherit;         /* 使用父元素的颜色 */
					    cursor: pointer;        /* 鼠标悬停时显示为手型 */
					}
					
					/* 侧边栏样式 */
					.sidebar {
					    width: 280px;
					    float: left;
					    margin-right: 30px;
					}
					
					.sidebar-menu {
					    list-style: none;
					    padding: 0;
					    margin: 0;
					    background-color: #f8f9ff;
					    border-radius: 10px;
					    overflow: hidden;
					}
					
					.sidebar-menu li {
					    border-bottom: 1px solid #e8e8e8;
					    transition: all 0.3s ease;
					}
					
					.sidebar-menu li:hover {
					    background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
					}
					
					.sidebar-menu li:hover a {
					    color: white;
					}
					
					.sidebar-menu li:last-child {
					    border-bottom: none;
					}
					
					.sidebar-menu a {
					    display: block;
					    padding: 15px 20px;
					    color: #3d3d3d;
					    text-decoration: none;
					    transition: all 0.3s ease;
					    white-space: nowrap;
					    overflow: hidden;
					}
					
					.sidebar-menu a:hover {
					    background: transparent;
					    color: white;
					}
					
					.sidebar-menu-active {
					    background: linear-gradient(-37.2135deg, #e94518 0%, #e60012 100%);
					}
					
					.sidebar-menu-active a {
					    color: white;
					    font-weight: bold;
					}
					
					.main-content {
					    margin-left: 310px;
					}
					
					@media (max-width: 768px) {
					    .sidebar {
					        width: 100%;
					        float: none;
					        margin-right: 0;
					        margin-bottom: 30px;
					    }
					    
					    .main-content {
					        margin-left: 0;
					    }
					}
					
					
					/* 悬浮在右侧的DIV */
					    .floating-div {
					        position: fixed;
					        right: 10px;
					        top: 50%;
					        transform: translateY(-50%);
					        width: 160px;
					        z-index: 1000;
					        text-align: center;
					        border: 2px solid #e60012;
					        border-radius: 12px;
					        box-shadow: 0 6px 16px rgba(230, 0, 18, 0.25);
					        background-color: #fff;
					        transition: all 0.3s ease;
					    }
					    
					    .floating-div:hover {
					        box-shadow: 0 8px 24px rgba(230, 0, 18, 0.35);
					        transform: translateY(-50%) scale(1.02);
					    }
					    
					    .floating-div img {
					        width: 100%;
					        height: auto;
					        display: block;
					        margin-bottom: 8px;
					    }
					    
					    .floating-div p {
					        margin: 8px 0;
					        font-size: 14px;
					        line-height: 1.4;
					    }
					    
					    .floating-div {
					        font-weight: bold;
					        margin-top: 0;
					    }