/* 学者网顶部导航样式 */
.scholat-comp-header {
  position: fixed;
  z-index: 10005;
  height: 50px;
  width: 100%;
  background-color: #339999;
  top: 0;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-container {
  margin: 0 auto;
  width: 75%;
  min-width: 1100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 30px;
}

.logo-text {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 20px;
  font-family: 'Georgia', Georgia, 'Times New Roman', Times, 'Microsoft YaHei', SimSun, SimHei, serif;
  color: #fff;
}

.divider {
  color: #fff;
  font-size: 20px;
  margin: 0 5px;
}

.org-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.org-text {
  margin-left: 15px;
  font-size: 20px;
  font-family: 'Georgia', Georgia, 'Times New Roman', Times, 'Microsoft YaHei', SimSun, SimHei, serif;
  color: #fff;
}

.header-center {
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.user-avatar-wrapper {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.login-register {
  display: flex;
  margin-left: 35px;
}

.login-btn, .register-btn {
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.login-btn:hover, .register-btn:hover {
  color: #f0f0f0;
}

.register-btn {
  padding-left: 10px;
}

.dropdown-item-content {
  text-align: center;
}

.dropdown-item-content i {
  margin-right: 5px;
}

@media (max-width: 1200px) {
  .header-container {
    width: 90%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    width: 95%;
  }
  
  .logo-text, .org-text {
    font-size: 18px;
  }
  
  .logo-img {
    height: 25px;
  }
} 