.pc-mode {
  width: 100%;
  color: #333;
  background-color: white;
  position: relative;
  z-index: 100;
}

.pc-mode .pc-menu {
  box-sizing: border-box;
}

.pc-mode .pc-menu .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: static;
  overflow: visible;
}

.pc-mode .pc-menu .logo {
  display: block;
  position: relative;
}

.pc-mode .pc-menu .logo img {
  max-width: 100%;
  height: auto;
}

.pc-mode .pc-menu .navigator {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pc-mode .pc-menu .navigator .menus {
  display: flex;
  flex:1;
/*  padding-left:175px;
  padding-right: 80px;*/
	  padding-left:105px;
  padding-right:50px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}

.pc-mode .pc-menu .navigator .menus .menu {
  position: relative;
}

.pc-mode .pc-menu .navigator .menus .menu .link {
  white-space: nowrap;
  font-size:19px;
  color: currentColor;
  height: 75px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pc-mode .pc-menu .navigator .menus .menu .link:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  background-color: #ee8b2d;
  transition: transform 500ms ease;
}

.pc-mode .pc-menu .navigator .menus .menu:hover .link:after {
  transform: translateX(-50%) scaleX(1);
}

.pc-mode .pc-menu .navigator .menus .menu:hover .subNav {
  display: block;
}

.pc-mode .pc-menu .navigator .menus .subNav {
  position: absolute;
  left: 50%;
  top: 75px;
  color: #333;
  display: none;
  transform: translateX(-50%);
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont {
  position: relative;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-list {
  display: flex;
  align-items: center;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item {
  float: left;
  line-height: 60px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item:hover {
  color: #ee8b2d;
}

.pc-mode .pc-menu .navigator .menus .subNav .sub-nav-cont .sub-nav-item + .sub-nav-item {
  margin-left: 20px;
}

.pc-mode .pc-menu .navigator .menus .subNav:before {
  content: "";
  position: absolute;
  width: 200vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
}

.pc-mode .pc-menu .navigator .menus .menu:last-child .subNav {
  right: 0;
  left: initial;
  transform: none;
}

.pc-mode .pc-menu .right-field {
  display: flex;
  align-items: center;
}

.pc-mode .pc-menu .right-field .search {
  width: 80px;
  height: 22px;
  box-sizing: border-box;
  border-radius: 22px;
  border: 1px solid #8f8d8d;
  color:#8f8d8d;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-left: 20px;
  cursor: pointer;
}
.pc-mode .pc-menu .right-field .search .btn {
  height: 20px;
  width:20px;
  background: url(../image/search.png) no-repeat center center;
}


.pc-mode .pc-menu .right-field .language {
  width: 80px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-mode .pc-menu .right-field .language select{
  display: block;
  width:100%;
  height:100%;
  border-radius: 22px;
  border-color: #8f8d8d;
  color:#8f8d8d;
  
}

.icon-search {
  background: url(../image/search_g.png) no-repeat center center;
}
