:root {
            --primary-color: #005bac;
            --primary-dark: #0d5bb9;
            --secondary-color: #ff6b35;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
			background:#f2f3f7
        }
        
        .container {
            max-width: 1370px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background: url(../images/topbg.jpg) center top no-repeat #FFF;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);

			 height:130px;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
			height:100px;
        }
        
        .logo img{height:100px;
        }
        
        .hotline {
            display: flex;
            align-items: center;
            font-size: 18px;
            color: var(--primary-color);
            background: rgba(26, 115, 232, 0.1);
            padding: 8px 15px;
            border-radius: 30px;
            transition: var(--transition);
        }
        
        .hotline:hover {
            background: rgba(26, 115, 232, 0.2);
        }
        
        .hotline i {
            margin-right: 8px;
            font-size: 20px;
        }
        
        /* 导航栏样式 */
        nav {
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
            padding: 0;
        }
        
        /*.nav-container {
            display: flex;
            justify-content: space-between;
        }
        
        .nav-item {
            position: relative;
            color: var(--white);
            padding: 15px 20px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .nav-item:hover {
            background-color: rgba(255,255,255,0.15);
        }
        
        .nav-item.active {
            background-color: rgba(255,255,255,0.2);
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: var(--shadow);
            display: none;
            z-index: 100;
            border-radius: 0 0 8px 8px;
            overflow: hidden;
        }
        
        .dropdown a {
            display: block;
            padding: 12px 20px;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }
        
        .dropdown a:hover {
            background-color: #f5f5f5;
            color: var(--primary-color);
        }
        
        .nav-item:hover .dropdown {
            display: block;
        }*/
		.nav-container {
           
        }
        
        /* 导航菜单样式 */
        .nav-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }
        
        .nav-menu > li {
            position: relative;
			width:11.1%
        }
        
        .nav-menu > li > div {
            padding: 15px 20px;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
            white-space: nowrap;
			 text-align:center;
			 font-weight:bold
        }
        
        .nav-menu > li > div:hover {
            background-color: #1a6bb8;
        }
        
        .nav-menu > li > div span a {
            color: white;
            text-decoration: none;
        }
        
        /* 下拉菜单样式 */
        .nav-menu ul {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 150px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 4px 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .nav-menu li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-menu ul li {
            list-style: none;
            border-bottom: 1px solid #f0f0f0;
			 text-align:center
        }
        
        .nav-menu ul li:last-child {
            border-bottom: none;
        }
        
        .nav-menu ul li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s;
        }
        
        .nav-menu ul li a:hover {
            background-color: #f0f7ff;
            color: #2c80d5;
        }
        
        /* 轮播图样式 */
        .slider {
            height: 630px;
            position: relative;
            overflow: hidden;
        }
        
        .slides {
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s, transform 1s;
            transform: scale(1.1);
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .slide:nth-child(1) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/b1.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(2) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/b2.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(3) {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/b3.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 80%;
        }
        
        .slide-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            background: #ff6600;
            color: var(--white);
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: 2px solid #ff6600;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #186cca;
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        .btn:hover {
            border-color: #186cca;
        }
        
        .btn .arrow {
            transition: transform 0.3s ease;
        }
        
        .btn:hover .arrow {
            transform: translateX(4px);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-secondary:hover {
            background-color: transparent;
            color: var(--white);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active {
            background-color: var(--white);
            transform: scale(1.2);
        }
        
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255,255,255,0.3);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .arrow:hover {
            background-color: rgba(255,255,255,0.5);
        }
        
        .arrow-left {
            left: 20px;
        }
        
        .arrow-right {
            right: 20px;
        }
        
        /* 快捷导航样式 */
        .quick-nav {
			position: relative;
            padding: 30px 10px;
			margin-top:-50px;
            background:#fff;
			 border-radius: 12px;
            box-shadow: var(--shadow);
			 z-index:999;
        }
        
        .quick-nav-container {
            display: flex;
            gap: 30px;
        }
        
        .track-section {
            flex: 0 0 40%;
            background-color: var(--white);
            padding:0 30px 0px 30px;
           
        }
        
        .track-section h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 22px;
        }
        
        .track-input {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .track-input input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 16px;
            background: var(--white);
        }
        
        .track-input button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        
        .track-input button:hover {
            background-color: var(--primary-dark);
        }
        
       /* .quick-links {
            flex: 1;
            display: flex;
            gap: 20px;
			margin-top:10px;
        }
        
        .quick-link {
            flex: 1;
            background:#f7f7f7;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .quick-link:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .quick-link i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
            background: rgba(26, 115, 232, 0.1);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .quick-link:hover i {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .quick-link h4 {
            font-size: 18px;
            color: var(--text-dark);
        }
		*/
		 .quick-links {
           
			
			
			  flex: 1;
            display: flex;
            gap: 20px;
			margin-top:10px;
        }
        
        .quick-link {
            flex: 1;
            min-width: 200px;
			height:240px;
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 0px solid #eaeaea;
        }
		 .quick-link i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
            background: rgba(26, 115, 232, 0.1);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .quick-link:hover i {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .quick-link:hover {
            background-color: #005bac;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(44, 128, 255, 0.2);
        }
        
        .quick-link:hover i,
        .quick-link:hover h4,
        .quick-link:hover p {
            color: white;
        }
        
        .quick-link i {
            font-size: 40px;
            color: #2c80ff;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .quick-link h4 {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .quick-link p {
            color: #666;
            font-size: 14px;
            transition: all 0.3s ease;
        }
		.quick-link a{ text-decoration:none
        }
		
		.track-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .input-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .input-container label {
            font-weight: 600;
            color: #444;
            font-size: 16px;
        }
        
        .input-container textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #f7f7f7;
			background: #f7f7f7;
            border-radius: 8px;
            font-size: 16px;
            resize: vertical;
            min-height: 120px;
            transition: all 0.3s ease;
        }
        
        .input-container textarea:focus {
            outline: none;
            border-color: #4d90fe;
            box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2);
        }
        
        .button-container {
            display: flex;
            justify-content: flex-start;
        }
        
        .button-container button {
            background: linear-gradient(to right, #4d90fe, #357ae8);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(77, 144, 254, 0.3);
        }
        
        .button-container button:hover {
            background: linear-gradient(to right, #357ae8, #2a65c7);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(77, 144, 254, 0.4);
        }
        
        .button-container button:active {
            transform: translateY(0);
        }
        
        /* 服务项目样式 */
        .services {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 20px auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .service-item {
            background: url(../images/bg.jpg);
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;

        }
		 .service-item a{ text-decoration:none}
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-item i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
            background: rgba(26, 115, 232, 0.1);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .service-item:hover i {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .service-item h3 {
            font-size: 18px;
            color: var(--text-dark);
        }
        
        /* 企业简介样式 */
        .about {
            background: url(../images/abbg.jpg) center center no-repeat;
            padding: 80px 0;
            color: var(--white);
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 115, 232, 0.3), rgba(255, 107, 53, 0.3));
            z-index: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 企业新闻样式 */
        .news {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .news-item {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .news-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: var(--primary-color);
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 5px;
        }
        
        .news-content h3 {
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.4;
        }
        
        .news-content p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .news-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .news-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .news-more:hover {
            color: var(--primary-dark);
        }
        
        .news-more:hover i {
            transform: translateX(5px);
        }
        
        /* 服务指南样式 */
        .guide {
            padding: 80px 0; background:url(../images/fwbg.jpg) center top no-repeat #000
        }
        
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .guide-item {
            height: 180px;
            perspective: 1000px;
        }
        
        .guide-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .guide-item:hover .guide-inner {
            transform: rotateY(180deg);
        }
        
        .guide-front, .guide-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        
        .guide-front {
            background-color: var(--white);
            color: var(--text-dark);
        }
        
        .guide-back {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            transform: rotateY(180deg);
        }
        
        .guide-front i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .guide-back h3 {
            margin-bottom: 10px;
        }
		
		
        /* Banner 区域 */
        .banner {
            height: 400px;
            width: 100%;
           
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .banner-content {
            text-align: center;
            color: white;
            z-index: 2;
        }
        
        .banner-title {
            font-size: 3rem;
            margin-bottom: 1px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }
        
        .banner-subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.8s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        
        .breadcrumb li {
            margin-right: 10px;
            font-size: 14px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #999;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #2c80ff;
        }
        
        .breadcrumb i {
            margin-right: 5px;
        }
        
        /* 二级菜单 */
        .submenu {
            padding: 20px 20px 0;
            margin-bottom: 0px;
        }
        
        .menu-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .menu-list {
            display: flex;
            list-style: none;
            background-color: #f0f2f5;
            border-radius: 8px;
            padding: 5px;
            overflow: hidden;
        }
        
        .menu-item {
            padding: 12px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
            font-weight: 500;
            text-align: center;
            color: #333;
            background-color: transparent;
			margin-right:10px; background:#FFF;
			text-decoration:none
        }
		 .menu-item a{
            color: #333;text-decoration:none
          
        }
        
        .menu-item:hover {
            background-color: #3498db;
            color: white;
        }
        .menu-item:hover a{
       
            color: white;
        }
        .menu-item.active {
            background-color: #3498db;
            color: white;
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
        }
		 .menu-item.active  a{
            background-color: #3498db;
            color: white;
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
        }
        
        /* 内容区域 */
        .content {
            background-color: #fff;
            padding: 40px;
            margin-top: 20px;
			margin-bottom:20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .content-section {
            display: none;
        }
        
        .content-section.active {
            display: block;
        }
        
        .content h2 {
            color: #2c80ff;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .content p {
            font-size: 16px;
            line-height: 33px;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .content img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-subtitle {
                font-size: 1.3rem;
            }
            
            .submenu ul {
                justify-content: center;
            }
            
            .submenu li {
                padding: 12px 20px;
            }
        }
        
		.page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2.2rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .news-list {
            list-style: none;
     
            overflow: hidden;
			margin:20px auto;
        }
        
        .news-itemx {
            display: flex;
            padding: 25px;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s ease; margin-bottom:10px;
        }
        
        .news-itemx:hover {
            background-color: #f9f9f9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .news-itemx:last-child {
            border-bottom: none;
        }
        
        .news-image {
            flex: 0 0 280px;
            margin-right: 25px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .news-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .news-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .news-intro {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-button {
            display: inline-block;
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            align-self: flex-start;
            box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
        }
        
        .news-button:hover {
            background: linear-gradient(to right, #2980b9, #2573a7);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
        }
        
        .news-time {
            flex: 0 0 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-left: 20px;
        }
        
        .news-day {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3498db;
            line-height: 1;
        }
        
        .news-month-year {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
                padding: 20px;
            }
            
            .news-image {
                flex: 0 0 auto;
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
            }
            
            .news-image img {
                height: 180px;
            }
            
            .news-time {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
                margin-top: 15px;
                margin-left: 0;
            }
            
            .news-day {
                font-size: 2rem;
            }
        }
		
		@keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .news-header {
            padding: 40px 40px 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
           background:#FFF;
            position: relative;
        }
        
        .news-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .news-titlex{
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            color:#333;
            text-shadow: 0 1px 2px rgba(0,0,0,0.05);
			 text-align:center
        }
        
        .news-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--gray);
            font-size: 15px;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .meta-item i {
            color: var(--primary);
        }
        
        .news-content {
            padding: 40px;
            font-size: 17px;
            line-height: 1.8;
			background:#FFF
        }
        
        .news-content p {
            margin-bottom: 24px;
            text-align: justify;
            color: #444;
        }
        
      
        
        .highlight-box {
            background: linear-gradient(120deg, #f0f7ff 0%, #e3f2fd 100%);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.03);
        }
        
        .highlight-box p {
            margin-bottom: 0;
            font-style: italic;
            color: var(--secondary);
        }
        
        .news-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        
        .news-content img:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .news-navigation {
            display: flex;
            justify-content: space-between;
            padding: 25px 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            background-color: #f9f9f9;
			 margin-bottom:30px;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            color: var(--primary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            padding: 12px 20px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            max-width: 45%;
        }
        
        .nav-link:hover {
            color: white;
            background:#3498db;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .nav-link.prev::before {
            content: "←";
            margin-right: 10px;
            font-weight: bold;
        }
        
        .nav-link.next::after {
            content: "→";
            margin-left: 10px;
            font-weight: bold;
        }
        
        .tag-list {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .tag {
            background: #e3f2fd;
            color: var(--primary-dark);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
        }
        
        .social-share {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px dashed #dee2e6;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f3f4;
            color: var(--gray);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
            color: white;
        }
        
        .share-btn.weibo:hover { background: #e6162d; }
        .share-btn.wechat:hover { background: #07c160; }
        .share-btn.link:hover { background: var(--primary); }
		
		
	/*下单*/
	 d-header {
            background: linear-gradient(135deg, #4a6ee0, #6a11cb);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        d-header h1 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        
        d-header p {
            opacity: 0.9;
            font-size: 14px;
        }
        
	 .form-container {
            padding: 30px;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
       
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: #4a6ee0;
        }
        
        .sender-receiver {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .sender, .receiver {
            flex: 1;
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #eaeef5;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4a5568;
            font-size: 14px;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d9e6;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #4a6ee0;
            box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.1);
        }
        
        .address-row {
            display: flex;
            gap: 10px;
        }
        
        .address-row select {
            flex: 1;
        }
        
        .item-info {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #eaeef5;
            margin-bottom: 30px;
        }
        
        .item-details {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .item-type, .item-dimensions {
            flex: 1;
        }
        
        .dimension-inputs {
            display: flex;
            gap: 10px;
        }
        
        .dimension-inputs input {
            text-align: center;
        }
        
        .weight-quantity {
            display: flex;
            gap: 20px;
        }
        
        .weight-selection, .quantity-selection {
            flex: 1;
        }
        
        .weight-options {
            display: flex;
            gap: 15px;
            margin-top: 5px;
        }
        
        .weight-option {
            display: flex;
            align-items: center;
        }
        
        .weight-option input {
            width: auto;
            margin-right: 5px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .quantity-btn {
            width: 26px;
            height: 36px;
            border: none;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 26px;
            transition: all 0.2s;
        }
        
        .quantity-btn:hover {
            background: #4a6ee0;
        }
        
        .quantity-input {
            width: 60px;
            text-align: center;
            margin: 0 10px;
        }
        
        .service-info {
            background: #f8fafc;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #eaeef5;
            margin-bottom: 30px;
        }
        
        .insurance-option {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .insurance-option input {
            width: auto;
            margin-right: 10px;
        }
        
        .insurance-amount {
            margin-left: 20px;
            display: none;
        }
        
        .insurance-amount.active {
            display: block;
        }
        
        .notes {
            margin-bottom: 30px;
        }
        
        .notes textarea {
            height: 100px;
            resize: vertical;
        }
        
        .time-selection {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .start-time, .end-time {
            flex: 1;
        }
        
        .submit-btn {
            text-align: center;
            margin-top: 20px;
        }
        
        button {
            background: linear-gradient(135deg, #4a6ee0, #6a11cb);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(74, 110, 224, 0.3);
        }
        
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 110, 224, 0.4);
        }
        
        @media (max-width: 768px) {
            .sender-receiver {
                flex-direction: column;
            }
            
            .item-details, .weight-quantity, .time-selection {
                flex-direction: column;
            }
        }	
		
		
		
		
		 .pagination-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
		/* 分页样式 */
        .pagination {
            display: flex;
            list-style: none;
            border-radius: 50px;
            background: white;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .pagination a, .pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            margin: 0 5px;
            text-decoration: none;
            color: #3498db;
            font-weight: 500;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background: #f1f9ff;
            color: #2980b9;
            transform: translateY(-2px);
        }
        
        .pagination .current {
            background: #3498db;
            color: white;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        .pagination a[rel="prev"],
        .pagination a[rel="next"] {
            background: #f8f9fa;
            font-weight: bold;
        }
        
        .pagination a[rel="prev"]:hover,
        .pagination a[rel="next"]:hover {
            background: #3498db;
            color: white;
        }
        
		
		
		
        /* 底部样式 */
        footer {
              background: url(../images/footbj.jpg) center top no-repeat #001e50;
            color: #ecf0f1;
        }
        
        .footer-top {
            padding: 60px 0;
        }
        
		.footer {
          
            color: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 40px 30px 0px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff8a00, #e52e71, #00b4db);
        }
		
		
       .footer-container {
          
            color: #fff;
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
			margin:0 auto;
			width:1370px;
        }
        
      
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            flex: 1;
            min-width: 70%;
        }
        
        .footer-column {
			width:160px;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        
		.footer-column:nth-child(6) {

            width: 280px;
    
        }
		
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }
        
        .footer-column ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ffcc00;
        }
        
        .footer-column ul li a i {
            margin-right: 8px;
            font-size: 12px;
            color: #fff;
        }
        
        .footer-column:last-child ul li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-column:last-child ul li i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            color: #fff;
        }
        
        .footer-qr {
            flex: 0 0 180px;
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: fit-content;
        }
        
        .footer-qr img {
            width: 140px;
            height: 140px;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer-qr p {
            font-weight: 600;
            color: #fff;
            margin: 0;
        }
		.footer-bottom {
            background-color: #001e50;
            padding: 10px 0;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .copyright {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        
        .support {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 14px;
            color: #fff;
        }
        
        .footer-bottom a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-bottom a:hover {
            color: #007bff;
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .services-grid, .guide-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .quick-nav-container {
                flex-direction: column;
            }
            
            .track-section {
                flex: 1;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid, .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .footer-links {
                flex-wrap: wrap;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .slider {
                height: 500px;
            }
            
            .slide-content h2 {
                font-size: 36px;
            }
            
            .slide-content p {
                font-size: 18px;
            }
            
            .nav-container {
                flex-wrap: wrap;
            }
            
            .nav-item {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid, .guide-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            
            .slider {
                height: 400px;
            }
            
            .slide-content h2 {
                font-size: 28px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .quick-links {
                flex-direction: column;
            }
        }