/* 医院搜索选择器 */ .hospital-search-wrapper { position: relative; } .hospital-search-input { width: 100%; padding: 10px 36px 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; outline: none; transition: border-color 0.2s; } .hospital-search-input:focus { border-color: #f97316; } .hospital-search-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #999; font-size: 16px; } .hospital-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); max-height: 200px; overflow-y: auto; z-index: 100; display: none; } .hospital-dropdown.show { display: block; } .hospital-dropdown-item { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.2s; } .hospital-dropdown-item:last-child { border-bottom: none; } .hospital-dropdown-item:hover, .hospital-dropdown-item.selected { background: #fff7ed; } .hospital-dropdown-name { font-size: 14px; color: #333; margin-bottom: 2px; } .hospital-dropdown-meta { font-size: 12px; color: #999; display: flex; align-items: center; gap: 8px; } .hospital-level-tag { display: inline-block; padding: 1px 6px; border-radius: 3px; font-size: 11px; font-weight: 500; } .level-3a { background: #fee2e2; color: #dc2626; } .level-3b { background: #ffedd5; color: #ea580c; } .level-2a { background: #dbeafe; color: #2563eb; } .level-2b { background: #e0e7ff; color: #4f46e5; } .level-other { background: #f5f5f5; color: #666; } .hospital-search-clear { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); color: #999; font-size: 14px; cursor: pointer; display: none; } .hospital-search-clear.show { display: block; } .hospital-no-result { padding: 16px; text-align: center; color: #999; font-size: 13px; } .hospital-detail-btn { font-size: 12px; color: #f97316; margin-left: auto; } /* 医院库页面 */ .hospital-db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 12px; } .hospital-db-stat { background: white; border-radius: 10px; padding: 12px 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); } .hospital-db-stat-value { font-size: 24px; font-weight: 700; color: #f97316; } .hospital-db-stat-label { font-size: 11px; color: #666; margin-top: 2px; } .hospital-db-list { background: white; border-radius: 12px; margin: 0 12px 12px; overflow: hidden; } .hospital-db-item { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.2s; } .hospital-db-item:last-child { border-bottom: none; } .hospital-db-item:active { background: #fafafa; } .hospital-db-item-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; } .hospital-db-item-name { font-size: 15px; color: #333; font-weight: 500; } .hospital-db-item-meta { font-size: 12px; color: #999; } .hospital-db-item-detail { font-size: 12px; color: #666; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; } .hospital-db-item-tag { background: #f5f5f5; padding: 2px 6px; border-radius: 3px; } .hospital-db-source { text-align: center; padding: 12px; font-size: 12px; color: #999; }