/*阻止点击改变背景颜色*/
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*解决手机版点击背景问题*/
    text-decoration:none;/*去除下划线*/
}
*{
    font-weight: 400;
}
/*END-阻止点击改变背景颜色*/

/*BODY的全局类*/
.transition_none *{ /*禁止一切过渡动画*/
    -webkit-transition:none!important;
    -moz-transition:none!important;
    -ms-transition:none!important;
    -o-transition:none!important;
    transition:none!important;
}
/*END-BODY的全局类*/

/*次级导航*/
#CiJiDaoHang { /*次级导航最外层*/
    width: 100%;
    height: 4rem;
    background-color: #146C06;/*背景颜色*/
    box-shadow: 0 0 5px #7f7f7f;/*阴影效果*/
}
.CiJiDaoHang-Left { /*左边导航区块*/
    height: 40%;
    padding:0.2rem 0 0.2rem 2%;/*间隔*/
}
.CiJiDaoHang-Left-Text { /*每个导航文字*/
    height: 100%;
    display: inline-block;/*横向块元素*/
    margin-left: 1em;/*间距*/
}
.CiJiDaoHang-Left-Text::after{ /*底边框*/
    content:'';/*文字*/
    display : block;/*设置为块元素*/
    width:100%;/*开始时候下划线的宽度为100%*/
    height:2px;
    bottom:-5px;
    background:white;/*底边框颜色*/
    transition:all 0.3s linear;/*底边框动画*/
    transform: scale3d(0,1,1);/*通过transform的缩放scale来让初始时x轴为0*/
    transform-origin:50% 0;/*将坐标原点移到元素的中间，以原点为中心进行缩放*/
}
.CiJiDaoHang-Left-Text:hover::after { /*底边框动画*/
    transform:scale3d(1,1,1);/*底边框为正常长度*/
}
.CiJiDaoHang-Left-Text-A { /*每个导航文字的链接*/
    color: white;/*字体颜色*/
    font-size: 1rem;/*字体大小*/
    text-decoration: none;/*无下划线*/
    text-align: center;/*水平居中显示*/
    line-height: 1.6rem;/*垂直居中显示*/
    cursor: pointer;/*小手鼠标*/
}
.CiJiDaoHang-Right { /*次级导航栏的右边部分*/
    height: 40%;
    padding:0.2rem 0 0.2rem 2%;/*间隔*/
}
.CiJiDaoHang-Right-Text{ /*次级导航栏的右边文字部分*/
    color: white;/*字体颜色*/
    font-size: 1rem;/*字体大小*/
    text-decoration: none;/*无下划线*/
    text-align: center;/*水平居中显示*/
    line-height: 1.6rem;/*垂直居中显示*/
    display: inline-block;/*块元素水平排列*/
    cursor: default;/*正常鼠标*/
}
.CiJiDaoHang-Right-Zi-Text{ /*需要链接的文字部分*/
    cursor: pointer;/*小手鼠标*/
}
/*END-次级导航*/