/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */
/*
添加小圆点 基类
*/
.add-mydot{
  position: relative;
}
/*
在前面添加小红点
*/


.add-mypot-red-before::before{
  content: " ";
  border: 5px solid red;
  border-radius:5px;
  position: absolute;
  z-index: 999999;
}
/*
在后面添加小红点
*/
.add-mypot-red-after::after{
  content: " ";
  border: 5px solid red;
  border-radius:5px;
  position: absolute;
  left:5px;
  z-index: 999999;
}

/*
在前面添加小蓝点
*/

.add-mypot-blue-before::before{
  content: " ";
  border: 5px solid blue;
  border-radius:5px;
  position: absolute;
  z-index: 999999;
}
/*
在后面添加小蓝点
*/
.add-mypot-blue-after::after{
  content: " ";
  border: 5px solid blue;
  border-radius:5px;
  position: absolute;
  left: 5px;
  z-index: 999999;
}

/*
在前面添加小橙点
*/

.add-mypot-orange-before::before{
  content: " ";
  border: 5px solid orange;
  border-radius:5px;
  position: absolute;
  z-index: 999999;
}
/*
在后面添加小橙点
*/
.add-mypot-orange-after::after{
  content: " ";
  border: 5px solid orange;
  border-radius:5px;
  position: absolute;
  left: 5px;
  z-index: 999999;
}
/*
菜单项目文字居中
*/
.caidanjuzhong{
  text-align:center;
}

.addBorder{
 border: 1px solid #ccc; 
  padding:10px;
}

/*
gallary 标题
*/
.shebeiTitle{
  color:#fff;
}

/*
调节主菜单高度
.tm-navbar, .tm-navbar > div{
  height: 100px !important;
}
*/

/* 
top-d的强制设置
*/
.tm-top-d > div{
  width:100%;
}

/* 
bottom-c的强制设置
*/
.tm-bottom-c > div{
  width:100%;
}

.highlight{
  background-color:yellow;
}
