/*浮动 清除浮动*/
.fl {
	float: left;
}
.fr {
	float: right;
}
.cf:after {
	display: block;
	content: "";
	height: 0;
	visibility: hidden;
	clear: both;
}
.cf {
	zoom: 1;
}
.container{
    width: 1100px;
    margin: 0 auto;
}
.df{
	width: 1100px;
	overflow-x: hidden;
    list-style: none;
    text-decoration: none;
}
.df li{
    width: 130px;
    height: 60px;
	border-radius: 4px;
    line-height: 60px;
    text-align: center;
    float: left;
	margin-right: 30px;
	position: relative;
}
.df .gl:nth-of-type(7n){
	margin-right: 0px;
}
.df li::after{
	content: "";
    position: absolute;
    top: 18px;
    right: -16px;
    height: 22px;
    width: 2px;
    background-color: #C6CDD9;
}

.df li a{
    color: black;
    font-size: 22px;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    width: 100%;
}
.xg{
    display: none;
    width: 100%;
    float: left;
    background-color: #F8FAFD;
    padding-bottom: 30px;
    padding-left: 30px;
	margin: 20px 0px;
}

.xg div{
    display: inline-block;
    font-size: 22px;
    background-color: white;
    width: 280px;
    height: 108px;
    line-height: 60px;
    text-align: center;
    padding:24px 60px;
    margin-right: 30px;
    margin-top: 30px;
    border-left: 4px #0168D1 solid;
    cursor: pointer;
}
.xg div:hover{
    color: #0168D1;
}

.gl:hover div a{
    color: #0168D1;
}

.df .active{
	position: relative;
}
.active:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 60px;
    left: 54px;
    border-left: solid 12px transparent;
    border-top: solid 10px #0168D1;
    border-right: solid 12px transparent;
}