* {
            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%;
            height: 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%;
            height: 900px;
            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(45deg, #f43f5e, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .slide p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #e2e8f0;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8b5cf6;
            margin-bottom: 25px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(139, 92, 246, 0.4);
        }
        
        .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, #ec4899, #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;}
.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:2% 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;}

/*--------------导航-----------*/
/*--------------产品展示-----------*/
.dajiang_cp{width:100%;height:800px;float:left;background:url(../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;}
.daj_cpa span{width:100%;float:left;text-align:center;font-size:20px;line-height: 44px;margin-top: 8px;margin-bottom: 8px;color: #ffffff;}
.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;}
.dajiang_sp{width:100%;float:left;}
.daj_spa{width:49%;height:700px;float:left;margin-left:1%;margin-top:1%;}
#cp1{background:url(../images/cp/nc.jpg) no-repeat;background-size:100% 100%;}
#cp2{background:url(../images/cp/tjj.jpg) no-repeat;background-size:100% 100%;}
#cp3{background:url(../images/cp/zjs.jpg) no-repeat;background-size:100% 100%;}
#cp4{background:url(../images/cp/sy.jpg) no-repeat;background-size:100% 100%;}
#cp5{background:url(../images/cp/wsw.jpg) no-repeat;background-size:100% 100%;}
#cp6{background:url(../images/cp/syy.jpg) no-repeat;background-size:100% 100%;}
#cp7{background:url(../images/cp/scp.jpg) no-repeat;background-size:100% 100%;}
#cp8{background:url(../images/cp/rl.jpg) no-repeat;background-size:100% 100%;}
#cp9{background:url(../images/cp/zjds.jpg) no-repeat;background-size:100% 100%;}
#cp10{background:url(../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;}
.daj_spaa span{width:100%;float:left;text-align:center;font-size:20px;line-height: 44px;margin-top: 8px;margin-bottom: 8px;color: #000;}
.daj_spaa b{width:25%;padding:0.5% 1%;font-weight:normal;color:rgba(0,0,0,.85);float:left;margin:0px 38%;border-radius: 64px;font-size: 14px; line-height: 20px;text-align:center;}
.daj_spaa b i{color:rgba(0,0,0,.85);}
/*--------------产品展示-----------*/
/*-------------多图轮播图------------*/
		.daji_anlb{
			width: 1920px;
            height: 800px;
            position: relative;
            perspective: 3000px;
            margin: 0 auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            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);
        }
        
        .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;
            opacity: 0.7;
            filter: brightness(0.7);
        }
        
        .item.active {
            transform: scale(1);
            opacity: 1;
            filter: brightness(1);
            z-index: 10;
        }
        
        .item.prev {
            transform: translateX(-85%) scale(0.7);
            opacity: 0.8;
            z-index: 5;
        }
        
        .item.next {
            transform: translateX(85%) scale(0.7);
            opacity: 0.8;
            z-index: 5;
        }
        
        .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: #ffcc00;
            font-weight: 600;
        }
        
        .item p {
            font-size: 20px;
            line-height: 1.6;
            max-width: 80%;
        }
        
        .nav-btn {
            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-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.15);
        }
        
        .prev-btn {
            left: 40px;
        }
        
        .next-btn {
            right: 40px;
        }
        
        .indicators {
            position: absolute;
            bottom:15%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            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);
        }
        
        .title {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 48px;
            text-align: center;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            z-index: 100;
            background: rgba(0, 0, 0, 0.3);
            padding: 15px 60px;
            border-radius: 60px;
            letter-spacing: 2px;
            font-weight: 700;
        }
        
        .title span {
            color: #ffcc00;
            font-weight: bold;
        }
        
        .timer-bar {
            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;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            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);
            }
        }
/*-------------多图轮播图------------*/
/*-------------新闻资讯------------*/
.dajiang_xw{width:100%;float:left;background:url(../images/diping/3.jpg) no-repeat;background-size:100% 100%;}
 /* 顶部导航栏 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            z-index: 100;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
        }
        
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #FFD700;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(30, 41, 59, 0.7);
            border-radius: 30px;
            padding: 8px 15px;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .search-box input {
            background: transparent;
            border: none;
            color: #e2e8f0;
            outline: none;
            width: 180px;
            padding: 5px 10px;
        }
        
        .search-box i {
            color: #94a3b8;
            cursor: pointer;
        }
        
        .user-actions {
            display: flex;
            gap: 15px;
        }
        
        .user-actions i {
            color: #cbd5e1;
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .user-actions i:hover {
            color: #FFD700;
        }
        
        /* 主要内容区域 */
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 30px 40px;
            height: calc(100% - 80px);
        }
        
        /* 左侧新闻区域 */
        .left-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .featured-news {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            height: 380px;
        }
        
        .featured-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(120deg, #1e293b, #334155);
            position: relative;
            overflow: hidden;
        }
        .featured-image a img{width:100%;height:auto;float:left;}
        .featured-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(transparent 60%, rgba(15, 23, 42, 0.9));
        }
        
        .featured-content {
            padding: 11px;
        }
        
        .featured-tag {
            background: linear-gradient(90deg, #FFD700, #FFA500);
            color: #0f172a;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }
        .featured-tag a{color: #0f172a;font-size: 12px;font-weight: 700;}
        .featured-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #FFD700 0%, #FFFFFF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .featured-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #94a3b8;
            font-size: 14px;
        }
        
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .news-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.2);
        }
        
        .news-card .tag {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .news-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .news-card p {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-card .meta {
            display: flex;
            justify-content: space-between;
            color: #64748b;
            font-size: 12px;
        }
        
        /* 右侧边栏 */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .trending-topics {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .section-title h2 {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(90deg, #FFD700 0%, #FFFFFF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .section-title a {
            color: #FFD700;
            text-decoration: none;
            font-size: 14px;
        }
        
        .topic-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .topic-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .topic-item:last-child {
            border-bottom: none;
        }
        
        .trend-number {
            font-size: 24px;
            font-weight: 700;
            color: #94a3b8;
            min-width: 30px;
        }
        
        .trending-topics .topic-item:nth-child(1) .trend-number {
            color: #FFD700;
        }
        
        .trending-topics .topic-item:nth-child(2) .trend-number {
            color: #FFA500;
        }
        
        .trending-topics .topic-item:nth-child(3) .trend-number {
            color: #FF6347;
        }
        
        .topic-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .topic-content span {
            color: #94a3b8;
            font-size: 12px;
        }
        
        .breaking-news {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .breaking-news::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #FF0000, #FF4500);
        }
        
        .breaking-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .breaking-title h2 {
            font-size: 20px;
            color: #FF6347;
            font-weight: 700;
        }
        
        .breaking-title i {
            color: #FF6347;
            font-size: 24px;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        
        .breaking-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .breaking-content p {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .breaking-meta {
            display: flex;
            justify-content: space-between;
            color: #64748b;
            font-size: 12px;
        }
        
        .news-categories {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .category {
            background: rgba(30, 41, 59, 0.5);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .category:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        .category i {
            font-size: 24px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        
        .category span {
            font-size: 14px;
            font-weight: 500;
        }
/*-------------新闻资讯------------*/
/*-------------底部联系我们------------*/
.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;}
}