.content_warp {
    width: 100%;
}

.content {
    width: 1200px;
    min-height: 1000px;
    background: #fff;
    margin: 0 auto;
    padding-top: 14px;
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
}

.type_lists {
    height: 40px;
    /* background: pink; */
}

.type_lists span {
    width: 100px;
    height: 40px;
    background: #EEEEEE;
    opacity: 1;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    color: var(--color);
    cursor: pointer;
}

.type_lists :last-child {
    width: 198px;
    height: 41px;
    background: #D1781F;
    opacity: 1;
    color: #FFFFFF;
}

.types {
    border: 1px solid #DCDCDC;
    padding-right: 10px;
    padding-bottom: 10px;
}

.types .types_childer {
    min-height: 44px;
    font-size: 12px;
    display: flex;
    /* align-items: center; */
    overflow: hidden;
    line-height: 44px;
    /* border-bottom: 1px solid #DCDCDC; */
}

.types_childer .left {
    width: 85px;
    height: 100%;
    color: var(--color);
    font-size: 16px;
    line-height: 24px;
    color: var(--color);
    margin-left: 10px;
    margin-top: 10px;
}

.types_childer .right {
    width: 1134px;
    background: #fff;
    /* border-left: 1px solid #DCDCDC; */
    border-bottom: dashed 1px #ccc;
}

.types_childer .right p {
    float: left;
    margin: 8px 16px;
    color: #6E6E6E;
    cursor: pointer;
    line-height: 22px;
    padding: 4px;
}

.types_childer .right p.active {
    background: var(--color);
    opacity: 1;
    color: #FFFFFF;
}

.types p.active a {
    color: var(--font-color);
}

.infomode {
    margin-top: 15px;
}

.infomode .module_left {
    width: 900px;
    float: left;
}

.infomode .module_left .module_left_inner {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    box-sizing: border-box;
    padding: 20px 0;
}

/* .infomode .module_left :last-of-type {
    border: 0;
} */

.content_module {
    width: 100%;
    /* background: pink; */
    margin-left: 20px;
}

.content_module h4 {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.content p {
    color: #858585;
}

.content_module .time {
    float: right;
    margin: 0px;
}

.content_module .content_p {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 28px;
    color: #6E6E6E;
    padding-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.operation_button {
    width: 130px;
    margin-left: 20px;
}

.operation_button button {
    width: 130px;
    height: 36px;
    background: var(--color);
    opacity: 1;
    border-radius: 10px;
    border: 0;
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
    margin-top: 24px;
    cursor: pointer;
}

.operation_button .lookdetail {
    background: #fff;
    border: solid 1px var(--color);
    color: var(--color);
}

.module_left_inner {
    display: flex;
}

.module_left_inner img {
    height: 152px;
    width: 230px;
    border-radius: 8px;
}

.infomode .module_right {
    width: 252px;
    float: right;
}

.news_title_list {
    width: 252px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    opacity: 1;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.logo_news_view {
    width: 252px;
    height: 124px;
    position: relative;
}

.logo_news_view img {
    height: 100%;
    width: 100%;
    position: absolute;
}

.logo_news_view p {
    width: 252px;
    height: 30px;
    background: brown;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    color: #FFFFFF;
    padding: 0 20px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lists_news {
    padding: 12px;
    font-size: 14px;
    color: #333333;
    border-bottom: 1px solid #EEEEEE;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news_title_list :last-child {
    border: 0;
}

.choose {
    width: 252px;
    height: 280px;
    background-image: url(../img/menban4.png);
    margin-bottom: 20px;
    padding: 38px 32px;
    box-sizing: border-box;
}

.choose-option {
    /*用div的样式代替select的样式*/
    margin-bottom: 12px;
    width: 100%;
    height: 40px;
    /*border-radius: 5px;*/
    /*盒子阴影修饰作用,自己随意*/
    /* box-shadow: 0 0 5px #ccc;*/
    border: 1px solid #cccccc;
    position: relative;
}

.choose-option select {
    /*清除select的边框样式*/
    border: none;
    /*清除select聚焦时候的边框颜色*/
    outline: none;
    /*将select的宽高等于div的宽高*/
    width: 100%;
    height: 40px;
    line-height: 40px;
    /*隐藏select的下拉图标*/
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*通过padding-left的值让文字居中*/
    padding-left: 20px;
    font-size: 16px;
}

/*使用伪类给select添加自己想用的图标*/

.choose-option:after {
    content: "";
    width: 14px;
    height: 8px;
    background: url(../img/sanjiao.png) no-repeat center;
    /*通过定位将图标放在合适的位置*/
    position: absolute;
    right: 20px;
    top: 41%;
    /*给自定义的图标实现点击下来功能*/
    pointer-events: none;
}

.submit_button {
    width: 198px;
    height: 40px;
    background: #5A1B16;
    opacity: 1;
    text-align: center;
    line-height: 40px;
    color: #FFFFFF;
    /* margin-top: 180px; */
    cursor: pointer;
}