@charset "utf-8";

/* 头部样式 */
.header {
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.head {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo区域 */
.logoImg {
    width: 300px;
    height: 60px;
}

.logoImg a {
    display: block;
    width: 100%;
    height: 100%;
}

.logoImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 导航菜单 */
.head-nav {
    height: 100%;
}

.head-nav-ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.head-nav-ul li {
    height: 100%;
    margin: 0 15px;
}

.head-nav-ul li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.head-nav-ul li a:hover {
    color: #009B96;
}

.head-nav-ul li.active a {
    color: #009B96;
}

.head-nav-ul li.active a:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009B96;
}

/* 学校名称文字（如果Logo中没有） */
.school-name {
    font-size: 24px;
    font-weight: bold;
    color: #009B96;
    margin-left: 15px;
}

.school-name-en {
    font-size: 14px;
    color: #999;
    margin-left: 15px;
    text-transform: uppercase;
}