.params-img {
    width: 100%;
    height:460px;
    overflow: hidden;
}
.params-img:hover img {
    transform: scale(1.1);
}
.params-img img {
    display: block;
    width:100%;
    height:100%;
    transition: transform 2s;
}
.content {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    min-height: 700px;
}
.content .side-bar {
    display: inline-block;
    /* position: absolute;
    top: 0;
    left: 0; */
    z-index: 10;
    width: 232px;
    margin-right: 80px;
    background: #f5f5f5;
    border-radius: 5px;
}
.content .side-bar .side-wrapper {
    padding: 22px 0;
    border-radius: 5px;
}
.content .side-bar .side-wrapper .ui-repeater-item {
    width: 100%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: #777;
    cursor: pointer;
}
.content .side-bar .side-wrapper .ui-repeater-item_act {
    position: relative;
    background: #eea330;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.content .side-bar .side-wrapper .ui-repeater-item_act:hover {
    color: #fff !important;
}
.content .side-bar .side-wrapper .ui-repeater-item:hover {
    color: #eea330;
}
.content .side-bar .side-wrapper .ui-repeater-item_act:after {
    position: absolute;
    content: '';
    top: 15px;
    right: -24px;
    border-left: 14px #eea330 solid;
    border-right: 14px transparent dashed;
    border-bottom: 14px transparent dashed;
    border-top: 14px transparent dashed;
}


.content .__content {
    display: none;
    width: 880px;
}
.content .__content .__title {
    font-size: 35px;
    text-align: center;
    font-weight: 500;
    color: #333333;
    margin: 55px 0;
}
.content p, .content dd, .content dt {
    display: block;
    font-size: 18px;
    line-height: 2;
    color: #333333;
    text-align: left;
}