@charset "utf-8";
/* CSS Document */
.container_com {
            width: 100%;
            max-width: 800px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            padding: 30px;
        }
        
        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 25px;
            font-weight: bold;
            font-size: 2.2rem;
        }
 h2 {
            text-align: left;
            color: #333;
            margin-bottom: 10px;
            font-size: 1rem;
	 		font-weight: 600
        }
.wrapper {
    display: flex;
	
	
}

/* 固定宽度块 */
.fixed-block {
    width: 150px;
}

/* 弹性填充块 */
.flexible-block {
    vertical-align: top; /* 让行内元素顶部对齐 */
	flex: 1;
}

/* 响应式设计 - 移动设备 */
@media (max-width: 600px) {
    .wrapper {
        flex-direction: column;
    }
    
    .fixed-block {
        width: 100%;
        height: 50px;
    }
}


.company-card {
            width: 100%;
            max-width: 1000px;
            background-color: white;
            overflow: hidden;
        }
        
        .company-name {
            font-size: 23px;
            letter-spacing: 1px;
			font-weight: 500;
			height: 45px;
        }
        
        .company-info {
            padding: 5px 5px;
        }
        
        .info-item {
            margin-bottom: 6px;
             width: 100%;
			height: 30px;
        }
       
        
        @media (max-width: 600px) {
            .company-name {
                margin-bottom: 5px;
                font-size: 20px;
            }
            
            .info-item {
                flex-direction: column;
            }
        }