.company-card{
    padding: 40px;
    background: #fff;
    border-radius: 16px 16px 16px 16px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.company-card .company-header{
    margin-bottom: 40px;
}
.company-name{
    font-size: 22px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}
.contact-name{
    font-size: 22px;
    color: #333333;
    margin-bottom: 16px;
}
.company-english-name{
    color: #999999;font-size: 14px;
}
.company-details{
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px dashed #D9D9D9; gap: 20px;
}
.detail-item{
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
}
.detail-label{
    color: #666;
}
.detail-value{
    color: #333;
}.contact-list {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     margin-bottom: 30px;
 }

.contact-card {

    flex: 1 1 calc(50% - 10px); /* 基础宽度50%，可伸缩 */
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border-bottom: 2px solid #ca252d;
    min-width: 300px; /* 最小宽度，避免过窄 */
    position: relative;
}


.contact-toggle {
    font-size: 16px;
    color: #333;border-radius: 30px 30px 30px 30px;width: 135px;height: 34px;
    display: flex;
    align-items: center;
    background: #F5F6FA;
    justify-content: center;
    position: absolute;
    right: 40px;cursor: pointer;
    top: 40px;
}
.contact-toggle:hover{
    color: #CA252D;background: #FCF4F4;
}

.contact-field {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-label {
    width: 79px;
    color: #666;
    font-size: 16px;
}

.contact-value {
    color: #333;
    font-size: 16px;
}
