@charset "UTF-8";

/* 全局样式 */
#pubheader {
  width: 100vw;
  height: 7.5vw;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 8px 4px -8px rgba(1, 85, 220, 0.15);
  z-index: 99999;
}

/* 页头 */
.bar-header {
  height: 5vw;
  padding-left: 10.42%;
  padding-right: 10.42%;
  display: flex;
  align-items: center;
}

.header-logo {
  color: #0155dc;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  cursor: pointer;
}


.header-logo>img {
  max-height: 2vw;
  width: auto;
  vertical-align: text-bottom;
}

.header-login,
.header-language {
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.1rem;
}

.header-login {
  margin-left: auto;
}

.header-login-btn {
  color: #0155dc;
  font-size: 1.5rem;
  font-weight: bold;
}

.header-login-btn:hover {
  /* text-decoration: underline; */
}

.user-icon {
  width: 2vw;
  margin-right: 0.3vw;
}

.header-language {
  margin-left: 2.5vw;
  position: relative;
}

.glyphicon-close,
.glyphicon-open {
  height: 1vw;
  margin-left: 0.3vw;
}

.glyphicon-open {
  display: none;
}

.glyphicon-close.hide {
  display: none;
}

.glyphicon-open.active {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.lang-icon {
  height: 1.25vw;
  margin-right: 0.520vw;
}

.language-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0155dc;
  font-style: normal;
  cursor: pointer;
}

.language {
  font-size: 1.5rem;
  font-weight: bold;
}

.think_var_div {
  width: 120%;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(1, 85, 220, .1);
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 4vw;
  left: -10%;
  transform: translateY(30%);

}

.think_var_div.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}

.think_var_div::before {
  content: "";
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-bottom-color: #ebeef5;
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-top: -12px;
}

.think_var_div::after {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  left: 51%;
  bottom: 100%;
  margin-top: -10px;
}

.think_var-list {
  padding: 0.5vw 0;
}

.think_var-item {
  width: 100%;
  cursor: pointer;
  display: flex;
  color: #666666;
  justify-content: center;
  align-items: center;
  padding: 0.5vw 0;
}

.think_var-item:hover {
  color: #0155dc;
  background-color: rgba(1, 85, 220, .2);
}

.think_var-item img {
  height: 1vw;
  margin-right: 0.520vw;
}



/* 导航菜单栏 */
.bar-nav {
  height: 2.5vw;
  background-color: #0155dc;
}

.nav-menu {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.nav-menu-item {
  height: 2.5vw;
  margin-left: 10.42%;
  line-height: 2.5vw;
  letter-spacing: 0.2rem;
  position: relative;
  text-align: center;
}

.nav-menu-item.visited {
  border-bottom: 0.2vw solid #FFFFFF;
}

.nav-menu-item>a {
  display: block;
  color: #FFFFFF;
  font-size: 1.5rem;
}


.nav-menu .dropdown-menu {
  width: 20.833vw;
  min-height: 8.073vw;
  text-align: left;
  padding: 1.563vw 1.667vw .625vw;
  box-sizing: border-box;
  box-shadow: 0 0 .3125vw rgba(0, 0, 0, .3);
  position: absolute;
  z-index: 99999;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30%);
  background: #fff;
  background-repeat: no-repeat;
  background-position: right .625vw bottom;

}

.nav-menu .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-1%);
  transition: all 0.5s ease-in-out;
}

.dropdown-menu li {
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0.729vw;
}

.dropdown-menu a:link {
  color: #0155dc;
}

.dropdown-menu a:visited {
  color: #0155dc;
}

.dropdown-menu a:hover {
  color: #0155dc;
  text-decoration: underline;
}

.dropdown-menu a:active {
  color: #0155dc;
  text-decoration: underline;
}

.menu-desc {
  color: #666;
  font-size: 1rem;
  line-height: 2;
  font-weight: 200;
}

/* 右侧悬浮 */
.page-r-fun {
  position: fixed;
  top: 75%;
  right: 2%;
}

.page-r-fun>div {
  width: 2vw;
  height: 2vw;
  background: rgba(1, 85, 220, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0.208vw;
}

.page-r-fun>div.active {
  background: #0155dc;
}

.page-r-fun img {
  max-width: 1.25vw;
  height: 1.25vw;
}

.page-r-fun>div+div {
  margin-top: 10px;
}