@charset "utf-8";
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
		a {
		 text-decoration: none;
		}
        
        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #00c6ff;
            --accent: #2979ff;
            --light: #f5f9ff;
            --dark: #0a192f;
            --text: #333;
            --text-light: #f0f8ff;
            --gray: #7f8c8d;
            --success: #2ecc71;
        }
        
        body {
            background: linear-gradient(135deg, var(--dark) 0%, #122b4d 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            padding-bottom: 100px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 - 修改后在同一行 */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(64, 224, 208, 0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
        }
        
        .logo i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* 首屏区域 */
        .hero {
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #b0c4de;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(26, 115, 232, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover::after {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(26, 115, 232, 0.6);
        }
        
        .stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 80px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        .stat-item .label {
            font-size: 1.1rem;
            color: #b0c4de;
        }
        
        /* 特性部分 */
        .features {
            padding: 100px 0;
            background: rgba(15, 40, 70, 0.5);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--primary));
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: rgba(25, 55, 99, 0.4);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(64, 224, 208, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(64, 224, 208, 0.3);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .feature-card p {
            color: #b0c4de;
        }
        
        /* 下载区域 */
        .download-section {
            padding: 100px 0;
            text-align: center;
        }
        
        .download-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(0, 198, 255, 0.2));
            border-radius: 20px;
            padding: 70px 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(64, 224, 208, 0.2);
        }
        
        .download-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .download-box h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }
        
        .download-box p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: #b0c4de;
        }
        
        /* 支持平台 */
        .platforms {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .platform {
            display: flex;
            align-items: center;
            background: rgba(25, 55, 99, 0.4);
            padding: 15px 30px;
            border-radius: 50px;
            transition: transform 0.3s ease;
        }
        
        .platform:hover {
            transform: translateY(-5px);
            background: rgba(26, 115, 232, 0.3);
        }
        
        .platform i {
            font-size: 2rem;
            margin-right: 15px;
            color: var(--secondary);
        }
        
        /* 页脚 */
        footer {
            background: rgba(10, 20, 35, 0.9);
            padding: 50px 0 30px;
            text-align: center;
            border-top: 1px solid rgba(64, 224, 208, 0.1);
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            color: #7f8c8d;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        
        
        /*-------------------------------
电脑端模块显示，手机端隐藏 开始
-------------------------------*/
@media screen and (max-width: 767px) { /*当屏幕尺寸小于600px时，应用下面的CSS样式*/
  .ying {
  display:none;
  }
}
/*-------------------------------
电脑端模块显示，手机端隐藏 结束
-------------------------------*/
        
        /* 底部浮动按钮 */
        .floating-button {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            max-width: 700px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 20px 10px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
            z-index: 999;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .floating-button:hover {
            transform: translateX(-50%) translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }
        
        .floating-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .floating-button:hover::after {
            left: 100%;
        }
        
        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
            }
            70% {
                transform: translateX(-50%) scale(1.02);
                box-shadow: 0 0 0 15px rgba(26, 115, 232, 0);
            }
            100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding-top: 150px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .stats {
                gap: 30px;
            }
            
            .stat-item .number {
                font-size: 2rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .download-box {
                padding: 50px 20px;
            }
            
            .download-box h2 {
                font-size: 2.2rem;
            }
            
            .platforms {
                flex-direction: column;
                align-items: center;
            }
            
            .platform {
                width: 100%;
                max-width: 300px;
            }
            
            .floating-button {
                font-size: 1.2rem;
                padding: 18px 10px;
                width: 90%;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 130px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 15px 35px;
                font-size: 1.1rem;
            }
            
            .stats {
                gap: 20px;
            }
            
            .stat-item .number {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .floating-button {
                font-size: 1.1rem;
            }
        }
/*要闻列表*/
.paddtop {
  padding-top: 30px;
}

.news_box {
  margin: 0 auto;
  /* border: 1px solid #dcdcdc; */
  padding: 30px 16px;
  padding-bottom: 39px;
}

.news_box .list {
  border-bottom: 0px solid #ccc;
}

.news_box .list_1 ul {
  /* padding: 15px 0; */
}

.news_box .list li {
  line-height: 28px;
  background: url(zsj_list_icon_dot.png) no-repeat 16px 20px;
  padding: 8px 26px 8px 38px;
  font-size: 14px;
  list-style-type: none;
  text-decoration: none;
}
.news_box .list li:last-child {
    padding-bottom: 27px
  }
.news_box .list li h4 {
    position: relative;
}
.news_box .gwpage {
    padding-left: 38px;
}

.news_box .list li.list-li-scly {
  font-size: 14px;
  padding: 0 0 0 30px;
  background: url(trs_point.jpg) no-repeat 16px 17px;
  line-height: 36px;
}

.news_box .list a {
  background: none;
  padding-left: 0px;
  color: #fff;
  font-family: "微软雅黑",
  "宋体";
  font-weight: normal;
  display: inline-block;
  width: 90%;
  text-decoration: none;
}
.news_box .list a *{display: inline;font-size: inherit!important;font-family: inherit!important;}
.news_box .list a.list-item-scly {
  display: inline;
}

.news_box .list a:hover {
  color: #024886;
  text-decoration: none;
  
}

.news_box .list span.date {
  font-size: 14px;
  font-family: "微软雅黑","宋体";
  font-weight: normal;
  color: #888888;
  float: right;
  padding-left: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
.news_box .list .line span.date {
    bottom: 26px
  }
.news_box .list span.date-scly {
  font-size: 12px;
  font-family: "宋体";
  float: inherit;
  padding-left: 14px;
}

.news_box .current {
  border: 0;
}

/*更多的样式*/
.news_box a.zl_more {
  margin: 30px auto 40px;
  font-size: 16px;
  font-family: "微软雅黑",
  "宋体";
  color: #000;
  width: 111px;
  height: 28px;
  background: #dcdcdd;
  display: block;
  line-height: 28px;
  text-align: center;
}

.news_box li h4.line {
  padding-bottom: 26px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 12px;
}

/*-------------------------
电脑端模块隐藏，手机端显示
-------------------------*/
.wppc{
    display: none;
}
@media (max-width: 767px) {
  .wppc{
    display: block !important;
  }
}
/*-------------------------------
电脑端模块隐藏，手机端显示 结束
-------------------------------*/


/*-------------------------------
电脑端模块显示，手机端隐藏 开始
-------------------------------*/
@media screen and (max-width: 767px) { /*当屏幕尺寸小于600px时，应用下面的CSS样式*/
  .ying {
  display:none;
  }
}
/*-------------------------------
电脑端模块显示，手机端隐藏 结束
-------------------------------*/

/*璇︽儏椤靛叕鍏辨牱寮�*/
.details_mian {
	margin-top: 10px;
}
.details_mian h1 {
	text-align: center;
}
.details_tit {
	font-size: 24px;
    color: #fff;
    margin: 10px 0;
	font-weight: bold;
	line-height: 2em;
}
.details_time {
	display: block;
	margin-bottom: 20px;
	text-align: center;
	color: #999;
	font-size: 12px;
}
.details_time span {
	margin-right: 10px;
}

/*璇︽儏椤典笂涓嬮〉绡囩珷*/
.piece {
	border-top: 1px solid gainsboro;
	padding: 15px 0 0;
	line-height: 2em;
	font-size:15px;
	text-decoration: none;
}
.piece p:hover a {
  color: #e60000;
  text-decoration: none;
}


.piecess {
	padding: 15px 0 0;
	line-height: 2em;
	font-size:15px;
	text-decoration: none;
}
.piecess p:hover a {
  color: #e60000;
  text-decoration: none;
}

.piecess a { font-size:15px;
color: #fff;
}


/*鍒嗛〉-浜у搧椤甸潰-鏂伴椈椤甸潰*/
.pages {
	text-align: center; margin-top:10px;
}
.pages a{
	color: #333; margin:0px 5px 0 0;
}
.pages .a1{color: #ff0000; }
.pages a:hover{color: #ff0000; }



/*璇︽儏椤靛唴瀹�*/
.details_content a { font-size:15px;
text-decoration: none;
}


.details_content {
	margin-top: 10px;
	font-size:15px;
}


.details_content img {
	max-width: 100% !important;
}
.details_content p {
	line-height: 2em;
	margin-bottom: 10px;
	word-break:break-all;
	word-wrap:break-word
}
.source {
	margin: 10px 0 15px;
}

.piece a { font-size:15px;
color: #fff;
}