.tabGroup .tabs {
  background-image: linear-gradient(to bottom,#FFFFFF,#F6F6F6);
  background-image: -webkit-linear-gradient(to bottom,#FFFFFF,#F6F6F6);
  background-color: #F6F6F6 \9;
  border-bottom: 1px solid #E5E5E5;

}
.tabGroup .tabs .tab{
  padding: 23px 0 0px;
  display: block;
  float: left;
  font-size: 16px;
}
.tabGroup .tabs .tab a{
  color: #262626;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tabGroup .tabs .tab a:hover{
  color: #aa8535;
}
.tabGroup .tabs .tab.active a{
  color: #aa8535;
  border-color: #aa8535;
}
.tabGroup .tabs .tab a i{
  position: absolute;
  width:0px;
  height:0px;
  border:6px solid transparent;
  bottom:0px;
  left:50%;
  margin-left:-6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.tabGroup .tabs .tab.active a i{
  position: absolute;
  width:0px;
  height:0px;
  border:6px solid transparent;
  border-bottom-color: #aa8535;
  bottom:0px;
  left:50%;
  margin-left:-6px;
}
.tabGroup .tabs .tab .dot{
  margin-right: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #aa8535;
  width: 6px;
  height: 6px;
  opacity: 0;
}
.tabGroup .tabs .tab.active .dot{
  opacity: 0;
}
.tabGroup  .content{
  display: none;
}
.tabGroup .content .list {
  border-bottom: 1px solid #dcdcdc;
}


.tabGroup-en{
  position: relative;
}
.tabGroup-en .tabs{
  width:100%;
  margin-top:-68px;
}
.tabGroup-en .tab:first-child{
  border-top-left-radius:3px;
  -webkit-border-top-left-radius:3px;
}
.tabGroup-en .tab:last-child{
  border-top-right-radius:3px;
  -webkit-border-top-right-radius:3px;
}
.tabGroup-en .tab{
  width:25%;
  float: left;
  text-align: center;
  cursor: pointer;
  height: 68px;
  padding-top:27px;
  background-color: rgba(170,133,53,0.85);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.tabGroup-en .tab:hover,.tabGroup-en .tab.active{
  background-color: rgba(255,255,255,1);
}
.tabGroup-en .tab a{
  font-weight:100;
  font-size:16px;
  color: #FFFFFF;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.tabGroup-en .tab:hover a,.tabGroup-en .tab.active a{
  color: #aa8535;
}