
/* base css */

.ve-menu ul {
  font-family: 'Arial', 'Microsoft YaHei', '黑体', '宋体', sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
}

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


/* 一级菜单 */

.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: 20px;
  height: 21px;
  margin-right: 10px;
  overflow: hidden;
  /* 垂直居中用js动态计算 */
}

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

.ve-menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  /*background: #000;*/   
}

/* 一级菜单 */
.ve-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*color: #fff;*/
  overflow: hidden;
}

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

.ve-menu-mobile li a {
  padding: 15px 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 {
  float: right;
  padding: 0 10px;
}

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

/* 
/////////////////////////////////////////////
//// floeating social media buttons /////////
////////////////////////////////////////////
*/

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding-left: 5px;
  padding-right:10px;
  padding-bottom:5px;
  padding-top:5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

/* 
/////////////////////////////////////////////
//// Videos /////////
////////////////////////////////////////////
*/

.video-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:100%;
	width: 100%;
}
.video-responsive iframe {
	position:absolute;
    left:0;
	right: 0;
    top:0;
	bottom: 0;
	height:100%;
    width:100%;
	aspect-ratio: 16 / 9;
}