/* 信息公开中间主体区域 */
.infoOpen-main {
    background: #ffffff;
    padding: 80px 0 100px;
}

.info-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


/* 左侧菜单 */
.info-left {
    width: 300px;
}

.left-title {
    width: 300px;
    height: 73px;
    background: #1E72E1;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 73px;
}

.left-menu {
    border: 1px solid #d8d8d8;
    border-top: none;
}

.left-menu li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 19px;
    color: #1A1A1A;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.left-menu li:last-child a {
    border-bottom: none;
}

.left-menu li.active a {
    color: #E4332D;
}

.arrow {
    display: block;
    width: 24px;
    height: 24px;
}

/* 站内搜索页面整体 */
.search-main {
    background: #fff;
    padding: 60px 0 100px;
}

/* 顶部搜索栏 */
/*.search-top-box {*/
/*    width: 600px;*/
/*    margin: 0 auto 60px;*/
/*    display: flex;*/
/*}*/
.layui-form{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    margin-top: 20px;
}

.search-input {
    padding: 20px 40px;
    width: 600px;
    height: 69px;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #E4332D;
    outline: none;
    font-weight: 400;
    font-size: 20px;
    color: #1A1A1A;
}

.search-btn {
    width: 164px;
    height: 69px;
    background: #E4332D;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 29px;
    border: none;
    cursor:pointer;
}

/* 右侧容器 */
.info-right {
    width: 960px;
    box-sizing: border-box;
}

.performance-item {
    display: block;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.itemPic {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.itemLeft {
    width: 225px;
    height: 150px;
}

.itemLeft img {
    display: block;
    width: 100%;
    height: 100%;
}

.itemRight {
    width: 705px;
}

.performance-item:hover h4 {
    color: #1E72E1;
}

.performance-item:first-child {
    padding-top: 0;
}

.performance-item h4 {
    font-weight: 400;
    font-size: 20px;
    color: #1A1A1A;
    line-height: 29px;
    margin-bottom: 10px;
    /* 多行省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.performance-item .time {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #767676;
    line-height: 22px;
}

.performance-item .content {
    font-weight: 400;
    font-size: 15px;
    color: #767676;
    line-height: 30px;
    /* 多行省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}