@charset "utf-8";
/* CSS Document */

 /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		a {
            text-decoration: none;
        }
        
        
        /* 容器布局 */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
			height:900px;
        }
        
        /* 页眉样式 */
        .headerss {
            background: linear-gradient(135deg, #1e5799, #207cca);
            color: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }        
        .logos{
			float:left;
			width:100%;}
			
		 .logos h2{
			 width:150px;
			 height:50px;
			 font-size: 30px;
			}
        /* 特色内容区样式 */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
		.features a{
		 color:#03C
         font-size: 30px;
		 font-weight: bold;
		}

		.features a:hover {
         font-size: 24px;
		 font-weight: bold;
		}
        
		   
	    .feature {
            text-align: center;
            padding: 1.5rem;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px 0;
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #207cca;
            margin-bottom: 1rem;
        }
		.feature h3{
		   color:#F00;} 

     
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            } 
        }
        @media (max-width: 480px) {
           
        }