/* #region 内容区 */
.about-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 85%;
    margin-left: 15%;
    overflow: hidden;
}
.main {
    width: 90%;
	margin: 0 auto;	
    padding: 20px 0;
}
.main .title1{
    color: #111D76;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 30px;
}
.main .tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DCDCDC;
}
.main .tabs .tab1.active, .main .tabs .tab2.active{
    padding: 5px 35px;
    background-color: #111d76;
    color: #fff;
    border: none;
    border-radius: 0%;
    font-size: 16px;
    height: 100%;
}
.main .tabs .tab1, .main .tabs .tab2{
    padding: 5px 35px;
    background-color: #eaeaef;
    color: #5A5A5A;
    border: 1px solid #111D76;
    border-radius: 0%;
    font-size: 16px;
    height: 100%;
}
.main .title2 {
    color: #111D76;
    font-size: 26px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}


.main form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid #DCDCDC;
}
.main form .search1{
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    width: 100%;
}
.main form .search1 i {
    position: absolute;
    margin-left: 10px;
    color: #999;
    font-size: 18px;
}
.main form .search1 input{
    padding: 0 30px;
    border: 1px solid #C5C5C5;
    border-radius:0%;
    font-size: 16px;
    color: #C5C5C5;
    height: 100%;
    width: 100%;
}
.main form .search2{
    display: flex;
    align-items: center; 
    height: 100%;
}
.main form .search2 .layui-form{
    border: 1px solid #C5C5C5;
}
.main form .search2 button {
    padding: 0 20px;
    background-color: #111d76;
    color: #fff;
    border: none;
    border-radius: 0%;
    font-size: 14px;
    margin-left: 20px;
    height: 100%;
}
.main form .search2 .reset-btn {
    display: inline-block;
    padding: 0 20px;
    background-color: #dcdcdc;
    color: #333;
    border: none;
    border-radius: 0%;
    font-size: 14px;
    margin-left: 20px;
    height: 100%;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
}


.main .content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 45px;
    width: 100%;
}
.main .content .project{
    height: 160px;
    padding: 20px;
    border: 1px solid rgba(197, 197, 197, 1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.main .content .project .bidding_code{
    font-family: Roboto;
    font-weight: 700;
    font-size: 16px;
    color: #be0022;
    margin-bottom: 15px;
}
.main .content .project .title{
    font-weight: 400;
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 10px;

    line-height: 24px;       /* 行高，建议略大于字体 */
    height: 48px;            /* 强制占两行高度：24px * 2 */
    overflow: hidden;        /* 超出隐藏 */
    display: -webkit-box;    /* 支持多行截断 */
    -webkit-line-clamp: 2;   /* 限制最多显示 2 行 */
    -webkit-box-orient: vertical;
}
.main .content .project .project_type{
    font-weight: 400;
    font-size: 14px;
    padding: 0 6px;
    text-align: center;
    background: rgba(222, 129, 146, 0.05);
    border: 1px solid;
}
.main .content .project .type_service {
    color: #de8192;
    border-color: rgba(222, 129, 146, 1);
}
.main .content .project .type_engineering {
    color: #81cd87;
    border-color: rgba(129, 205, 135, 1);
}
.main .content .project .type_resource {
    color: #7382ea;
    border-color: rgba(115, 130, 234, 1);
}
.main .content .project .time{
    font-weight: 400;
    font-size: 14px;
    color: #7d7d7d;
    margin-top: 15px;
}
/* #endregion 内容区 */

/* #region 分页 */
.pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; /* 允许换行 */
    gap: 10px;
    margin-bottom: 50px;
    margin-top: 20px;
}
.pagination a.cur {
    background: #18289e !important;
}
.pagination a:hover {
    color: #18289e !important;
    border:1px #18289e solid !important;
}
/* #endregion 分页 */