  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
ol, ul {
	list-style: none;
	text-decoration:none;
}
a {
  text-decoration: none;
  color:#fff;
}
html,body {
            width: 100%;
			text-decoration:none;
			list-style:none;
			-webkit-font-smoothing: antialiased;
			color: #333;
			text-size-adjust: none;
			-webkit-text-size-adjust: none;
			background-color: #FFF;
			height: 100%;
			font: 14px/1.8 "HarmonyOS";
			color:#fff;
        }
i{color:#fff;}


/*--------------轮播大图-----------*/
.carousel-container {
            position: relative;
            width: 100%;
			max-width:2500px;
			overflow:hidden;
            height:1200px;
            max-width: 100%;
            margin: 0 auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        
        .carousel {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 10%;
        }
        
        .slide-content {
            max-width: 600px;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            animation: fadeIn 1s ease-out;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background:linear-gradient(126deg, #fff, #adadad);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .slide p {
            font-size: 1.2rem;
			margin-top:35px;
            line-height: 1.8;
            margin-bottom: 30px;
            color:rgb(251 251 251 / 70%);
        }
        
        .price {
			display:none;
            font-size: 2.5rem;
            font-weight: 700;
            color: #8b5cf6;
            margin-bottom: 25px;
        }
        
        .btn {
            display: inline-block;
            background:linear-gradient(45deg, #112d5c, #3f64a0);
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
			margin-top:55px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow:0 10px 20px rgb(49 86 155 / 30%);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow:0 10px 20px rgb(49 86 155 / 30%);
        }
        
        .inddicators {
			display:none;
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }
        
        .indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #8b5cf6;
            transform: scale(1.3);
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-btn:hover {
            background: rgba(139, 92, 246, 0.7);
            transform: translateY(-50%) scale(1.1);
        }
        
        .nav-btn i {
            font-size: 2rem;
            color: white;
        }
        
        .prev {
            left: 30px;
        }
        
        .next {
            right: 30px;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .product-tag {
            position: absolute;
            top: 10%;
            right:10%;
            background: linear-gradient(45deg, #4882ec, #8b5cf6);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
        }
        
        /* 响应式设计 */
        @media (max-width: 2000px) {
            .carousel-container {
                width: 100%;
                height: auto;
                aspect-ratio: 1950/900;
            }
        }
        
        @media (max-width: 1200px) {
            .slide h2 {
                font-size: 2.8rem;
            }
            
            .slide-content {
                max-width: 500px;
                padding: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .slide {
                padding: 0 5%;
            }
            
            .slide-content {
                max-width: 400px;
            }
            
            .slide h2 {
                font-size: 2.2rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .price {
                font-size: 2rem;
            }
            
            .nav-btn {
                width: 60px;
                height: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content {
                max-width: 100%;
                margin: 0 20px;
            }
            
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .product-tag {
                top: 20px;
                right: 20px;
                font-size: 0.9rem;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
            }
            
            .nav-btn i {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .slide-content {
                padding: 20px;
            }
            
            .slide h2 {
                font-size: 1.5rem;
            }
            
            .price {
                font-size: 1.5rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .inddicators {
                bottom: 15px;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
.dajiang_ban{width:100%;height:900px;float:left;}
/*--------------轮播大图-----------*/
/*--------------导航-----------*/
.dajiang_a{width:100%;position:fixed;top:0px;left:0px;z-index:999;float:left;border-bottom: 1px solid rgba(255, 255, 255, .2);}
.dajiang_aa{width:80%;float:left;margin:0px 10%;}
.dajiang_aa h1{width:2%;border:none;margin:1% 2%;float:left;}
.dajiang_aa a img{width:100%;float:left;}
.dajiang_aa span{width:50%;margin-left:3%;margin-top:1%;float:left;}
.dajiang_aa span a{height:40px;line-height:40px;float:left;margin-right:3%;color:#fff;}
.dajiang_aa font{width:30%;float:right;}
.dajiang_aa font p{float:right;cursor:pointer;color:#fff;font-size:16px;margin-left:5%;margin-top:5%;padding:1% 3% !important;}
.dajiang_ab{width:80%;display:none;float:left;margin:0px 10%;}
.dajiang_ab h1{width:2%;border:none;margin:1% 2%;float:left;}
.dajiang_ab a img{width:100%;float:left;}
.dajiang_ab span{width:50%;margin-left:3%;margin-top:1%;float:left;color:#222;}
.dajiang_ab span a{height:40px;line-height:40px;float:left;margin-right:3%;color:#222;}
.dajiang_ab font{width:30%;float:right;}
.dajiang_ab font p{float:right;cursor:pointer;color:#222;font-size:16px;margin-left:5%;margin-top:5%;padding:1% 3% !important;}
.dajiang_ab font p i{color:#222;}
.dajiang_ssl{width:100%;height:200px;margin-top:8%;float:left;position:fixed;top:0px;left:0px;z-index:1000;display:none;}
.sjij_ser{width:80%;margin:0px 10%;float:left;margin-top:1%;margin-right:3%;}
.sjij_ser form{ width:100%;float:left;align-items: center; height:96px;line-height: 34px; border:solid 1px #f8f8f8;border-radius:50px;padding-right: 12px;padding:1.4% 0px;background-color: #f5f5f5;border: solid 1px #e1e1e1;}
.search-subb {width:5%;float:right;height: 18px;font-size: 18px; border:none;color: #c39c61;cursor: pointer;background:transparent;}
.search-inpp{width:85%;color:#222;padding-left:5%;float:left;border:none;background:transparent;outline:none;height:38px;box-sizing:border-box;}
.search-subb img{width:50%;padding:0.5%;background-color:#e36b47;border-radius:20px;border:solid 1px #fff;float:left;}
.jj_ncp{width:100%;display:none;position:fixed;top:7%;left:0px;z-index:999;height:1000px; background-color:#fff; /* 浅蓝，透明度 50% */float:left;}
.jj_ncpa{width:80%;padding-top:1%;float:left;margin:0px 10%;}
.jj_ncp_left{width:13%;float:left;}
.jj_ncp_left ul li{width:100%;float:left;line-height:50px;border-bottom: 1px dashed #dae2eb;}
.jj_ncp_left ul li a{width:100%;color:#222;float:left;font-size:18px;line-height:50px;}
.jj_ncp_rig{width:75%;margin-left:5%;float:left;}
.jj_zhong{width:98%;margin:0px 1%;float:left;}
.jj_zhong span{width:100%;float:left;font-size:18px;font-weight:bold;color:#222;}
.jj_zhong span i{color:#222;}
.jj_zhong a{padding:1% 1% 0px 0px;line-height:35px;font-size:15px;color:#222;}
.jj_zing{width:96%;padding:0px 2%;margin-top:2%;float:left;}
.jj_zing span{width:100%;float:left;font-size:18px;font-weight:bold;color:#222;}
.jj_zing span i{color:#222;}
.jj_zing ul{width:100%;float:left;}
.jj_zing li{width:20%;border:solid 1px #e1e1e1;border-radius:20px;float:left;margin:1%;}
.jj_zing li a img{width:100%;float:left;}
.jj_zing li a h3{width:100%;float:left;text-align:center;font-size:15px;color:#222;line-height:45px;}
.jj_zh	ong a:hover;{color:#326698;}
#u28,#u33,#u10,#u25,#u31,#u30,#u27,#u29,#u34,#u35,#u36,#u12,#u84{display:none;}
.jud_a{width:15%;padding:1%;box-shadow: 0 0 10px rgba(0, 0, 0, .3);float:left;margin:0.8%;border:solid 1px #e1e1e1;border-radius:20px;}
.jud_a span{width:80%;margin-left:20%;margin-top:5%;float:left;padding-left:16%;font-size:16px;line-height:65px;height:65px;color:#fff;font-weight:bold;background:url(/skin/images/icon44.png) 10px 8px no-repeat;background-size:100% 80%;}
.jud_a ul{width:70%;margin-left:20%;float:right;}
.jud_a ul li{width:100%;height:30px;overflow:hidden;float:left;}
.jud_a ul li a{width:100%;float:left;font-size:14px;line-height:30px;color:#222;}
/*--------------导航-----------*/
/*--------------产物展示-----------*/
.dajiang_cp{width:100%;height:800px;float:left;background:url(/skin/images/diping/4.jpg);background-size:100% 100%;}
.daj_cpa{width:50%;float:left;margin:5% 25% 0px 25%;}
.daj_cpa p{width:100%;float:left;text-align:center;color: rgba(255,255,255,.65);font-size:16px;line-height:20px;}
.daj_cpa h2{width:100%;float:left;text-align:center;font-size: 40px;line-height: 44px;margin-top: 8px;margin-bottom: 8px;color: #ffffff;font-weight:normal;}
.daj_cpa span{width:100%;float:left;text-align:center;font-size:20px;line-height: 44px;margin-top: 8px;margin-bottom: 8px;color:#cedef2;}
.daj_cpa a{width:10%;padding:0.5% 1%;border:solid 1px #fff;color:#fff;float:left;margin:0px 45%;border-radius: 64px;font-size: 14px; line-height: 20px;text-align:center;color:#cedef2;}
.daj_cpa a i{color:#cedef2;}
.dajiang_sp{width:100%;float:left;}
.daj_spa{width:49%;height:700px;float:left;margin-left:1%;margin-top:1%;}
#cp1{background:url(/skin/images/cp/nc.jpg) no-repeat;background-size:100% 100%;}
#cp2{background:url(/skin/images/cp/tjj.jpg) no-repeat;background-size:100% 100%;}
#cp3{background:url(/skin/images/cp/zjs.jpg) no-repeat;background-size:100% 100%;}
#cp4{background:url(/skin/images/cp/sy.jpg) no-repeat;background-size:100% 100%;}
#cp5{background:url(/skin/images/cp/wsw.jpg) no-repeat;background-size:100% 100%;}
#cp6{background:url(/skin/images/cp/syy.jpg) no-repeat;background-size:100% 100%;}
#cp7{background:url(/skin/images/cp/scp.jpg) no-repeat;background-size:100% 100%;}
#cp8{background:url(/skin/images/cp/rl.jpg) no-repeat;background-size:100% 100%;}
#cp9{background:url(/skin/images/cp/zjds.jpg) no-repeat;background-size:100% 100%;}
#cp10{background:url(/skin/images/cp/dwyb.jpg) no-repeat;background-size:100% 100%;}
.daj_spa a{width:100% !important;}
.daj_spaa{width:100%;float:left;margin-top:3%;}
.daj_spaa p{width:100%;float:left;text-align:center;color: rgba(0,0,0,.45);font-size:16px;line-height:20px;}
.daj_spaa h2{width:100%;float:left;text-align:center;font-size: 40px;line-height: 44px;margin-top: 8px;margin-bottom: 8px;color: #000;font-weight:300;letter-spacing:1.5px;}
.daj_spaa h2 strong{font-weight:600 !important;}
.daj_spaa span{width:100%;float:left;text-align:center;font-size:20px;line-height: 44px;margin-top:1px;color:#9d9d9d;}
.daj_spaa b{width:25%;padding:0.5% 1%;font-weight:normal;color:rgb(181 181 181 / 85%);float:left;margin:0px 38%;border-radius: 64px;font-size: 14px; line-height: 20px;text-align:center;}
.daj_spaa b i{color:rgb(226 226 233 / 85%);}
/*--------------产物展示-----------*/
/*-------------多图轮播图------------*/
/* CSS 部分：核心优化 .item 基础样式和 .active 优先级 */
.daji_anlb{
    width:100%;
    height: 800px;
    float:left;
    position: relative;
    perspective: 3000px;
    margin:2% auto;
    overflow: hidden;
}
.carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* 关键修复：1. 基础样式只控制“隐藏”，不干扰 active 显示；2. 增加 !important 确保 active 样式优先 */
.item {
    position: absolute;
    width: 80%;
    height: 90%;
    top: 5%;
    left: 10%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
    display: flex;
    align-items: flex-end;
    /* 基础状态：完全隐藏（仅 active/prev/next 可见） */
    opacity: 0 !important; 
    transform: scale(0.5) !important;
    filter: brightness(0.7);
    z-index: 1; /* 基础层级最低 */
}

/* 中间活跃项：强制显示，层级最高 */
.item.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: brightness(1);
    z-index: 10 !important; /* 确保在最上层 */
}

/* 左右辅助项：半透明显示，层级中等 */
.item.prev, .item.next {
    opacity: 0.8 !important;
    transform: scale(0.7) !important;
    z-index: 5 !important; /* 高于基础项，低于活跃项 */
}
.item.prev { transform: translateX(-85%) scale(0.7) !important; }
.item.next { transform: translateX(85%) scale(0.7) !important; }

/* 以下样式保持不变 */
.item-content {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 100%;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.8s ease;
}
.item.active .item-content { transform: translateY(0); }
.item h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color:#c6ccdd;
    font-weight: 600;
}
.item p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 80%;
}
.nav-btnn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-btnn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
}
.prev-btnn { left: 40px; }
.next-btnn { right: 40px; }
.indicators {
	display:none;
    position: absolute;
    bottom:15%;
    left: 50%;
    transform: translateX(-50%);
    gap: 20px;
    z-index: 100;
}
.indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}
.indicator.active {
    background: #ffcc00;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}
.timer-bar {
	display:none;
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: #ffcc00;
    z-index: 200;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}
.controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 35px;
    font-size: 20px;
}
.play-pause {
    width: 55px;
    height: 55px;
	padding-left: 10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;nav-btn
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.play-pause:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}
.counter {
    font-size: 24px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}
@media (max-width: 2000px) { .container { transform: scale(0.9); } }
@media (max-width: 1700px) { .container { transform: scale(0.8); } }
@media (max-width: 1500px) { .container { transform: scale(0.7); } }
/*-------------多图轮播图------------*/
/*-------------新闻资讯------------*/
.news-container {
            width: 100%;
			float:left;
            overflow: hidden;
            flex-direction: column;
        }
        
        /* 顶部简约标题 */
        .news-header {
            background: #ffffff;
            border-bottom: 1px solid #e9ecef;
            text-align: center;
        }
        
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            font-size: 32px;
            color: #4361ee;
        }
        
        .logo-text {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            letter-spacing: 1px;
        }
        
        .date-display {
            margin-top: 10px;
            font-size: 16px;
            color: #6c757d;
            font-weight: 500;
        }
        
        /* 主内容区 */
        .news-main {
            display: flex;
            flex: 1;
            overflow: hidden;
        }
        
        /* 主要内容区 */
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: hidden;
            padding: 0 30px;
        }
        
        /* 热点新闻 */
        .hot-news {
			width:90%;float:left;
            padding:30px 0px 30px 2%;
            position: relative;
            border-bottom: 1px solid #e9ecef;
        }
        
        .hot-news-content {
            width:100%;
			float:left;
            gap: 40px;
            align-items: center;
        }
        
        .hot-news-img {
            width:30%;
			float:right;
            height:auto;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .hot-news-img:hover {
            transform: scale(1.02);
        }
        
        .hot-news-text {
            width:60%;float:left;margin-top:7%;
        }
        
        .hot-news-tag {
            display: inline-block;
            background: linear-gradient(to right, #4361ee, #3a0ca3);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }
        
        .hot-news-title {
            font-size: 22px;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 700;
            color: #333;
        }
        
        .hot-news-desc {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #495057;
        }
        
        .hot-news-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #6c757d;
        }
        
        /* 新闻列表 */
        .news-list-container {
            padding: 30px 0;
            overflow-y: auto;
        }
        
        .section-tiitle {
            font-size: 24px;
            margin-bottom: 25px;
            font-weight: 600;
            color: #4361ee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .news-grid {
			width:100%;float:left;margin:1%;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .news-card {
			width:23%;float:left;
			margin:0.5%;
            background: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.1);
            border-color: rgba(67, 97, 238, 0.2);
        }
        
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .card-img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-category {
            display: inline-block;
            background: rgba(67, 97, 238, 0.1);
            color: #4361ee;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 13px;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .card-title {
            font-size: 20px;
            margin-bottom: 12px;
            line-height: 1.4;
            font-weight: 600;
            color: #333;
        }
        
        .card-desc {
            font-size: 15px;
            line-height: 1.6;
            color: #495057;
            margin-bottom: 20px;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #6c757d;
        }
        
        /* 右侧边栏 */
        .news-aside {
            width: 300px;
            background: #f8f9fa;
            padding: 30px;
            border-left: 1px solid #e9ecef;
            height: 100%;
            overflow-y: auto;
        }
        
        .trending-news {
            margin-bottom: 40px;
        }
        
        .trending-title {
            font-size: 20px;
            margin-bottom: 25px;
            font-weight: 600;
            color: #4361ee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .trending-list {
            list-style: none;
        }
        
        .trending-item {
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .trending-item:last-child {
            border-bottom: none;
        }
        
        .trending-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            display: block;
            transition: all 0.3s ease;
            line-height: 1.5;
            position: relative;
            padding-left: 15px;
        }
        
        .trending-link:hover {
            color: #4361ee;
        }
        
        .trending-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #4361ee;
            border-radius: 50%;
        }
        
        .trending-meta {
            display: flex;
            gap: 15px;
            margin-top: 8px;
            font-size: 13px;
            color: #6c757d;
            padding-left: 15px;
        }
        
        .ad-container {
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(67, 97, 238, 0.1);
            margin-top: 30px;
        }
        
        .ad-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #4361ee;
        }
        
        .ad-desc {
            font-size: 15px;
            color: #495057;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .ad-button {
            background: linear-gradient(to right, #4361ee, #3a0ca3);
            color: #ffffff;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ad-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }

        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .news-aside {
                width: 250px;
            }
            
            .hot-news-content {
                flex-direction: column;
            }
            
            .hot-news-img {
                width: 100%;
            }
        }
        
        @media (max-width: 992px) {
            .news-main {
                flex-direction: column;
            }
            
            .news-aside {
                width: 100%;
                height: auto;
                border-left: none;
                border-top: 1px solid #e9ecef;
            }
        }
        
        @media (max-width: 768px) {
            .news-header {
                padding: 20px;
            }
            
            .logo-text {
                font-size: 28px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .news-footer {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }
.gabnxw{width:90%;margin:1% 5%;padding:0px 5%;;float:left;}

/*-------------新闻资讯------------*/
/*-------------底部联系我们------------*/
.dajing_lx{width:100%;float:left;}
.footer-container {
            width: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* 顶部装饰 */
        .footer-top-decoration {
            height: 10px;
            background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
        }

        /* 主要内容区域 */
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            padding: 60px 80px;
            flex: 1;
        }

        /* 品牌信息区域 */
        .brand-section {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .logo-icon i {
            font-size: 28px;
            color: white;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            letter-spacing: -0.5px;
        }

        .brand-description {
            color: #718096;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 16px;
            max-width: 400px;
        }

        /* 链接区域 */
        .links-section {
            flex: 2;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .link-column {
            min-width: 180px;
            margin-bottom: 30px;
        }

        .link-column h3 {
            color: #2d3748;
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .link-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
            border-radius: 3px;
        }

        .link-column ul {
            list-style: none;
        }

        .link-column ul li {
            margin-bottom: 15px;
        }

        .link-column ul li a {
            text-decoration: none;
            color: #718096;
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .link-column ul li a:hover {
            color: #4a5568;
            transform: translateX(5px);
        }

        .link-column ul li a i {
            margin-right: 10px;
            font-size: 14px;
            color: #a1c4fd;
        }

        /* 通讯区域 */
        .newsletter-section {
            flex: 1;
            min-width: 300px;
            padding-left: 40px;
        }

        .newsletter-section h3 {
            color: #2d3748;
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .newsletter-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
            border-radius: 3px;
        }

        .newsletter-text {
            color: #718096;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .subscribe-form {
            display: flex;
            margin-bottom: 30px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: #f1f5f9;
            border-radius: 10px 0 0 10px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
        }

        .subscribe-form input:focus {
            background: #e2e8f0;
        }

        .subscribe-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
            color: white;
            border: none;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .subscribe-form button:hover {
            background: linear-gradient(90deg, #8fb0fc 0%, #b0dffa 100%);
            transform: translateY(-2px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
            color: white;
            transform: translateY(-5px);
        }

        /* 底部版权区域 */
        .footer-bottom {
            padding: 30px 80px;
            border-top: 1px solid #edf2f7;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright {
            color: #a0aec0;
            font-size: 15px;
        }

        .legal-links a {
            color: #718096;
            text-decoration: none;
            margin-left: 25px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .legal-links a:hover {
            color: #4a5568;
        }

        /* 装饰元素 */
        .decoration-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(161, 196, 253, 0.1) 0%, rgba(194, 233, 251, 0.1) 100%);
            z-index: 0;
        }

        .circle-1 {
            top: -150px;
            right: -150px;
        }

        .circle-2 {
            bottom: -200px;
            left: -100px;
            width: 500px;
            height: 500px;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .footer-content {
                padding: 50px 40px;
            }
            
            .brand-section, .newsletter-section {
                padding: 0;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                padding: 40px 30px;
            }
            
            .links-section {
                width: 100%;
            }
            
            .link-column {
                min-width: 50%;
            }
            
            .footer-bottom {
                padding: 25px 30px;
                flex-direction: column;
                text-align: center;
            }
            
            .legal-links {
                margin-top: 15px;
            }
            
            .legal-links a {
                margin: 0 12px;
            }
        }

        @media (max-width: 480px) {
            .link-column {
                min-width: 100%;
            }
            
            .subscribe-form {
                flex-direction: column;
            }
            
            .subscribe-form input {
                border-radius: 10px;
                margin-bottom: 10px;
            }
            
            .subscribe-form button {
                border-radius: 10px;
                width: 100%;
            }
        }
.ylisan{width:90%;float:left;margin:0px 5%;}
.ylisan span{width:100%;float:left;}
.ylisan span a{color:#e1e1e1;font-size:12px;}
/*-------------底部联系我们------------*/
@media (min-width: 2001px) {
.dajiang_ban{height:auto;}	
.dajiang_cp{margin-top:1%;}
.dajiang_cp{height:1080px;background-size:100% auto;}
.daj_spa{height:900px;background-size:100% auto;}
}
@media screen and (min-width:1600px) and (max-width:1800px) {
.dajiang_ban{height:auto;}	
.dajiang_cp{margin-top:1%;}
.daj_cpa a{width:20%;margin:0px 40%}
.daj_spa{height:581px;background-size:100% auto;}
.daji_anlb{width:100%;height:600px;}
.dajiang_aa span,.dajiang_ab span{width:60%;}
}
@media screen and (min-width:1501px) and (max-width:1599px) {
.dajiang_ban{height:auto;}	
.dajiang_cp{margin-top:1%;}
.daj_cpa a{width:20%;margin:0px 40%}
.daj_spa{height:581px;background-size:100% auto;}
.daji_anlb{width:100%;height:600px;}
.dajiang_aa span,.dajiang_ab span{width:60%;}	
}
@media screen and (min-width:1200px) and (max-width:1500px) {
.dajiang_ban{height:auto;}	
.dajiang_cp{height:600px;margin-top:1%;}
.daj_cpa a{width:20%;margin:0px 40%}
.daj_cpa{margin-top:1%;}
.daj_spa{height:450px;background-size:100% auto;}
.daji_anlb{width:100%;height:600px;}
.dajiang_aa span,.dajiang_ab span{width:60%;}	
.dajiang_ab,.dajiang_aa{width:98%;margin:0px 1%;}
.daj_spaa b{width:40%;margin:0px 30%;}	
.item p{font-size:16px;}
.search-box{display:none;}
.newsletter-section{display:none;}
.dajiang_aa span a{margin-right:2%}
}
@media screen and (min-width:1000px) and (max-width:1199px) {
.dajiang_ban{height:auto;}	
.dajiang_cp{height:600px;margin-top:1%;}
.daj_cpa a{width:20%;margin:0px 40%}
.daj_cpa{margin-top:1%;}
.daj_spa{height:450px;background-size:100% auto;}
.daji_anlb{width:100%;height:600px;}
.dajiang_aa span,.dajiang_ab span{width:70%;}	
.dajiang_ab,.dajiang_aa{width:98%;margin:0px 1%;}
.daj_spaa b{width:40%;margin:0px 30%;}	
.item p{font-size:14px;}
.search-box{display:none;}
.newsletter-section{display:none;}
.dajiang_ab span,.dajiang_aa span{margin-top:0px;}
.dajiang_aa span a,.dajiang_ab span a{margin-right:2%}
.dajiang_aa font,.dajiang_ab font{width:20%;}
.dajiang_aa font p,.dajiang_ab font p{margin-left:0px;}
.daj_spaa h2{font-size:35px;}
.daj_spaa span{font-size:18px;}
.item h3{font-size:25px;}
.nav-actions{display:none;}
.nav-links a{font-size:14px;}
}