@charset "utf-8";
.pulldown{ display: inline-block}
.pulldown .butn{ background: 0 0;display: block;width: 100%;cursor: pointer}
.pulldown .pulldown-menu{ width: 100%;max-height: 335px;z-index: 333;background-color: #c5e8ff;position: absolute;left: 0;top: 100%;display: none;padding: 10px 5px}
.pulldown .pulldown-menu:before{ content: "";position: absolute;width: 0;height: 0;border-bottom: 9px solid #c5e8ff;border-left: 9px solid transparent;border-right: 9px solid transparent;top: -9px;left: 50%;margin-left: -9px}
.pulldown .pulldown-menu li{ display: block;margin: 0;font-size: 14px;cursor: pointer}
.pulldown .pulldown-menu li a{ display: block;color: #fff;margin: 0}
.pulldown .pulldown-menu:after{ content: '';display: block;clear: both}
.header{ background: #f5f7fa url(../) no-repeat left bottom;height: 190px}
.header .logo{ padding-top: 2%;width: 65%}

.header .topbar{ padding-top: 15px;color: #fff;text-align: right}
.header .topbar a{ color: #fff;margin-left: 15px}
.header .topbar span a{margin-left: 0;}

.header .top-right{ width: 32%}
.header .topSearch{ position: relative;}

        /* 添加成人高考资讯网头部样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;

        } 

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }        
        
        /* 顶部标题区域 */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #e1e4e8;
            margin-bottom: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo i {
            font-size: 28px;
            color: #3498db;
            margin-right: 10px;
        }
        
        .logo-content {
            display: flex;
            flex-direction: column;
        }
        
        .logo h1 {
            font-size: 24px;
            color: #2c3e50;
            line-height: 1.2;
        }
        
        .site-tagline {
            font-size: 14px;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        .user-actions {
            display: flex;
            align-items: center;
        }
        
        .user-actions button {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s;
            margin-left: 10px;
            display: flex;
            align-items: center;
        }
        
        .user-actions button i {
            margin-right: 5px;
        }
        
        .user-actions button:hover {
            background: #2980b9;
        }
        
        /* 修改导航栏：去掉悬浮随动效果 */
        .sticky-nav {
            position: static; /* 改为静态定位 */
            top: 0;
            z-index: 100;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-right: 5px;
        }
        
        nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            padding: 15px 20px;
            display: block;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        nav a:hover, nav a.active {
            color: #3498db;
            border-bottom: 3px solid #3498db;
            background-color: #f8f9fa;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .user-actions {
                margin-top: 15px;
                width: 100%;
                justify-content: flex-end;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            nav li {
                margin: 0;
                flex: 1;
                text-align: center;
            }
            
            nav a {
                padding: 12px 10px;
                font-size: 14px;
            }
        } 