/*scroll to top*/

#sttBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#sttBtn:hover {
  background-color: #555;
}

/*eo stt*/




/* base css */

.ve-menu ul {
  
  margin: 0;
  padding: 0;
  list-style: none;
}

.ve-menu a {
  float: left;
  display: inline-block;
  /*overflow: hidden;*/
  width: 100%;
  text-align: center;
  /*white-space: nowrap;*/
  text-decoration: none;
  /*text-overflow: ellipsis;*/
  color: #ffffff;
}



.ve-menu > .ve-menu-pc > li {
  line-height: 40px;
  position: relative;
  float: left;
  height: 40px;
  cursor: pointer;
}

.ve-menu > .ve-menu-pc > li:hover ul {
  display: block;
}



.ve-menu > .ve-menu-pc > li > ul {
  position: absolute;
  /*top: 40px;*/
  left: 0;
  display: none;
}

.ve-menu > .ve-menu-pc > li > ul > li {
  height: 40px;
}


.ve-menu-icon {
  float: right;
  width: 35px;
  height: 41px;
  margin-right: 10px;
  overflow: hidden;
  /*dsb*/
  position: absolute;
  top: 30px;
  right: 70px;
  cursor:pointer;
}

.ve-menu-icon > div {
  width: 100%;
  height: 4px;
  margin-bottom: 11px;
  /*background: #000;
  border-radius: 3px;*/
  background:#ffffff;
}

.ve-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: rgba(20, 20, 20, 0.95);
  z-index:90;  
}


.ve-menu-mobile {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  /*color: #fff;*/
  overflow: auto;
  z-index:100;
}

.ve-menu-mobile li {
  width: 100%;
  /*color: #fff;*/
}

.ve-menu-mobile li a {
  padding: 31px 0;
  border-bottom: 1px solid #333;
}


.ve-menu-mobile ul {
  display: none;
}

.ve-menu-mobile  ul li a {
  /*background: #222;*/
}

.ve-menu-close {
  overflow: hidden;
}

.ve-menu-close > div {
  background:rgba(20, 20, 20, 0.95);
  /*padding: 0 10px;*/
  position: absolute;
  top: 10px;
  right: 78px;
  cursor:pointer;
}

.ve-menu-close > div:after {
  font-size: 69px;
  content: '\00d7';
}

