* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
background-color: #f5f7fa;
color: #333;
line-height: 1.6;
padding: 0;
}

.container {
max-width: 100%;
padding: 0 15px;
}

/* 顶部搜索区域 */
.header {
background: linear-gradient(135deg, #1a73e8, #0d47a1);
padding: 20px 0;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
margin-bottom: 20px;
}

/* 搜索框 */
.search-section {
padding: 0 15px;
display: flex;
gap: 10px;
}

.search-box {
flex: 1;
padding: 14px 20px;
border: none;
border-radius: 30px;
font-size: 16px;
outline: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
background-color: white;
transition: box-shadow 0.3s;
}

.search-box:focus {
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.search-btn {
background-color: #ff6b35;
color: white;
border: none;
border-radius: 30px;
padding: 0 20px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
min-width: 80px;
}

.search-btn:hover {
background-color: #e55a2b;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.search-btn:active {
transform: translateY(0);
}

/* 卡片样式 */
.card {
background-color: #fff;
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.card-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 18px;
color: #1a73e8;
padding-bottom: 10px;
border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: center;
}

.card-title i {
margin-right: 8px;
font-size: 20px;
}

/* 企业信息 */
.info-item {
display: flex;
margin-bottom: 12px;
padding: 8px 0;
}

.info-label {
width: 100px;
color: #666;
flex-shrink: 0;
font-size: 14px;
}

.info-content {
flex: 1;
font-weight: 500;
color: #333;
}

/* 电话区域 */
.phone-section {
background-color: #fff;
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.phone-item {
display: flex;
align-items: center;
margin-bottom: 15px;
padding: 15px;
background: linear-gradient(to right, #f8f9fa, #e8f0fe);
border-radius: 10px;
text-decoration: none;
color: #1a73e8;
font-weight: 500;
transition: all 0.3s;
border: 1px solid #e0e0e0;
}

.phone-item:hover, .phone-item:active {
background: linear-gradient(to right, #e8f0fe, #d2e3fc);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(26, 115, 232, 0.2);
}

.phone-icon {
margin-right: 12px;
font-size: 22px;
background-color: #1a73e8;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.phone-number {
font-size: 18px;
}

/* 药品区域 */
.drug-item {
padding: 18px 15px;
border-bottom: 1px solid #f0f0f0;
cursor: pointer;
transition: all 0.3s;
border-radius: 8px;
margin-bottom: 10px;
background-color: #fafafa;
text-decoration: none;
color: inherit;
display: block;
}

.drug-item:last-child {
border-bottom: none;
margin-bottom: 0;
}

.drug-item:hover {
background-color: #f0f7ff;
transform: translateX(5px);
}

.drug-name {
font-weight: 600;
margin-bottom: 8px;
color: #2e7d32; /* 修改药品名颜色为深绿色 */
font-size: 16px;
}

.drug-code {
font-size: 14px;
color: #666;
margin-bottom: 5px;
}

.drug-spec {
font-size: 14px;
color: #888;
margin-bottom: 5px;
}

.drug-link {
font-size: 13px;
color: #1a73e8;
margin-top: 8px;
display: block;
}

/* 页脚 */
.footer {
text-align: center;
padding: 20px;
color: #666;
font-size: 14px;
margin-top: 20px;
border-top: 1px solid #eee;
}