/* banner */

#banner {
    width: 100%;
}

#banner img {
    width: 100%;
}


/* content */

#content {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}

.title-min {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px;
}

.title-min span {
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    margin-left: 5px;
}

.title-min span a{
	color: #000;
}


.center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.left {
    width: 20%;
}

.left a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #c7c4c4;
}

.left-nav {
    width: 100%;
    height: 43px;
    background: #F6F6F6;
    line-height: 43px;
    font-size: 14px;
    font-weight: 400;
    color: #777777;
    padding: 0 20px;
    position: relative;
}

.left a:last-child {
    border: 0;
}

.left .top {
    background-color: #70981A;
    width: 100%;
    height: 94px;
    padding: 20px 20px 0 0;
    text-align: right;
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 24px;
}

.left-nav {
    cursor: pointer;
}

.ln-active {
    color: #70981A;
}

.sjx {
    width: 0;
    height: 0;
    border-left: 8px solid #777777;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    right: 20px;
    top: 40%;
}

.sjx-active {
    border-left: 8px solid #70981A;
}

.right {
    width: 77%;
}

@media screen and (max-width:961px) {
	#content{
		width: 90%;
	}
    .left .top {
        text-align: center;
        padding-right: 0;
    }
    .left {
        width: 100%;
        margin-bottom: 20px;
		display: none;
    }
    .right {
        width: 100%;
    }
}