.enterprise-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.enterprise-list-item {
    background-color: var(--white);
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
}
.enterprise-list-item-img {
    width: 100%;
    overflow: hidden;
}
.enterprise-list-item-img img {
    width: 100%;
    object-fit: scale-down; 
    aspect-ratio: 1/.8;
    transition: transform 0.6s ease; 
}
.enterprise-list-item-img:hover img {
    transform: scale(1.1); 
}
.enterprise-list-item-title {
    font-size: 16px;
    margin: 10px 0;
    line-height: 20px;
}
.enterprise-list-item-title a {
    color: var(--black2); 
}

.enterprise-home-top {
    padding: 20px;
    box-sizing: border-box;
    border: solid 1px var(--borderColor);
}
.enterprise-home-top-image {
    width: 450px;
    height: 300px;
    overflow: hidden;
}
.enterprise-home-top-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down; 
    transition: transform 0.6s ease; 
}
.enterprise-home-top-image:hover img {
    transform: scale(1.1); 
}
.enterprise-home-top-content {
    flex: 1;
}
.enterprise-home-top-content-title {

}
.enterprise-home-top-content-title h1 {
    font-size: 24px;
    color: var(--black2);
    display: inline-block;
    line-height: 30px;
}
.enterprise-home-top-content-title h1 a {
    color: var(--black2);
}
.enterprise-home-top-content-title span {
    background-color: var(--orange);
    color: var(--white);
    font-size: 16px;
    display: inline-block;
    padding: 5px 10px;
    line-height: 20px;
    border-radius: 4px;
}
.enterprise-home-top-content-tag {
}
.enterprise-home-top-content-tag span {
    padding: 5px 10px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 4px;
    display: inline-block;
    margin: 0 5px 5px 0;
}
.enterprise-home-top-content-meta {
    color: var(--gray1);
    line-height: 30px;
}

.enterprise-home-top-content-meta-item {
    display: flex;
    gap: 10px;
}
.enterprise-home-top-content-meta-item .label {
    width: 80px;
    text-align: justify;
    text-justify: inter-word;
    font-weight: bolder;
}

.enterprise-home-top-content-meta-item .value {
    flex: 1;
}
.enterprise-home-top-content-meta-item .value .link {
    color: var(--orange);
    cursor: pointer;
}
.enterprise-home-introduce {
    border: solid 1px var(--borderColor);
    padding: 20px;
    box-sizing: border-box;
}

.list-more {
    margin: 16px auto;
    width: 200px;
    text-align: center;
    border: solid 1px var(--blue);
    line-height: 40px;
    box-sizing: border-box;
}
.list-more a {
    color: var(--blue);
    display: block;
    height: 40px;
    width: 100%;
}
.list-more a:hover {
    background-color: var(--blue);
    color: var(--white);
}
.info-title {
    font-size: 16px;
    font-weight: bolder;
    margin: 10px 0;
}
.info-table {
    width: 100%;
    border-collapse: collapse;

}
.info-table th, .info-table td {
    border: solid 1px var(--el-border-color-lighter);
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}
.info-table th {
    background-color: var(--el-fill-color-light);
    font-weight: bolder;
}

