/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 布局样式 */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

header h1 a {
    color: white;
    text-decoration: none;
}

h1 {
    font-size: 1.3rem;
}
h2 {
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0.5rem 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #34495e;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #2c3e50;
    color: white;
}

/* 潮汐特定样式 */
.tide-chart {
    margin: 1rem 0;
    text-align: center;
}

.tide-chart img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

table tr:hover {
    background-color: #f5f5f5;
}

/* 表单样式 */
form {
    display: flex;
    margin: 1rem 0;
}

input[type="text"] {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

button {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

#get-location {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    background-color: #27ae60;
}

#get-location:hover {
    background-color: #219653;
}

/* 工具卡片样式 */
.featured-tools {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.featured-tools article {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.featured-tools article:hover {
    transform: translateY(-5px);
}

.featured-tools h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.featured-tools h3 a {
    color: inherit;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.3rem 0;
    }
    
    .featured-tools {
        grid-template-columns: 1fr;
    }
}

/* 实用类 */
.small-text {
    font-size: 0.85rem;
    color: #777;
}

.update-time {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.fishing-tips {
    background-color: #e8f4fc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.fishing-tips h3 {
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.popular-locations ul, .nearby-locations ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.popular-locations li, .nearby-locations li {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.popular-locations li:hover, .nearby-locations li:hover {
    background-color: #e9ecef;
}

.popular-locations a, .nearby-locations a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.site-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.site-name {
    font-size: 1.8rem;
    font-weight: bold;
}

.page-title {
    color: white;
    margin-left: 10px;
    font-size: 1.4rem;
    opacity: 0.9;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 0.5rem;
    }

    .logo-title {
        margin-bottom: 0.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.3rem;
    }
}

/* 位置控制区域 */
.location-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.location-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary {
    padding: 0.5rem 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-primary .icon {
    font-size: 1rem;
}

.location-status {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* 加载状态 */
.loading {
    color: #666;
    font-style: italic;
}

/* 响应式调整 */
@media (max-width: 600px) {
    .location-controls {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 潮汐信息表格 */
.tide-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tide-info th, .tide-info td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tide-info th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.tide-info tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 潮汐站卡片 */
.tide-station-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tide-station-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tide-station-card h5 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.tide-station-card p {
    margin: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.mini-tide-info {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #eee;
    font-size: 0.85rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tide-stations-grid {
        grid-template-columns: 1fr;
    }

    .tide-info th, .tide-info td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* 潮汐时段卡片 */
.periods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.period-card {
    padding: 1rem;
    border-radius: 8px;
}

.high-tide {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
}

.low-tide {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

/* 潮汐时间表 */
.tide-schedule table {
    width: 100%;
    margin: 1.5rem 0;
}

.high-tide-row {
    background: rgba(52, 152, 219, 0.05);
}

.low-tide-row {
    background: rgba(231, 76, 60, 0.05);
}

.tide-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.tide-badge.high {
    background: #3498db;
    color: white;
}

.tide-badge.low {
    background: #e74c3c;
    color: white;
}

/* 潮汐图表 */
.chart-wrapper {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

/* 附近潮汐站卡片增强 */
.tide-station-card {
    position: relative;
}

.distance-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #2c3e50;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.next-tide {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.tide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tide-indicator.high {
    background: #3498db;
}

.tide-indicator.low {
    background: #e74c3c;
}

.coordinates {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
}

/* 手动选择地区 */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.location-card {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
}

.location-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* 潮汐详情卡片容器 */
.tide-details {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tide-details:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* 站点头部信息 */
.station-header {
    padding: 20px 20px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e0e0e0;
}

.station-header h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.station-name {
    font-weight: 600;
}

.station-distance {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.station-coords {
    margin: 8px 0 0;
    font-size: 13px;
    color: #7f8c8d;
    font-family: 'Courier New', monospace;
}

/* 潮汐时段部分 */
.tide-periods {
    padding: 6px 20px;
}
.tide-periods h5 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #34495e;
    font-weight: 500;
}

.periods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.period-card {
    padding: 12px;
    border-radius: 8px;
}

.high-tide {
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.low-tide {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.period-card h6 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 500;
}

.high-tide h6 {
    color: #2980b9;
}

.low-tide h6 {
    color: #c0392b;
}

.period-card ul {
    margin: 0;
    padding-left: 20px;
}

.period-card li {
    font-size: 13px;
    color: #34495e;
    line-height: 1.6;
}

/* 潮汐时间表 */
.tide-schedule {
    padding: 0 20px 16px;
}

.tide-schedule h5 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #34495e;
    font-weight: 500;
}

.tide-schedule table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tide-schedule th {
    background: #f8f9fa;
    padding: 10px 12px;
    text-align: left;
    font-weight: 500;
    color: #7f8c8d;
    border-bottom: 2px solid #e0e0e0;
}

.tide-schedule td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.high-tide-row {
    background-color: rgba(52, 152, 219, 0.03);
}

.low-tide-row {
    background-color: rgba(231, 76, 60, 0.03);
}

.tide-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tide-badge.high {
    background: rgba(52, 152, 219, 0.15);
    color: #2980b9;
}

.tide-badge.low {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

/* 底部信息 */
.station-footer {
    padding: 12px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.update-time {
    margin: 0;
    font-size: 12px;
    color: #95a5a6;
}

.view-detail {
    color: #3498db;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.view-detail:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .station-header h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .station-distance {
        align-self: flex-end;
    }

    .periods-grid {
        grid-template-columns: 1fr;
    }

    .station-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* 位置信息头部 */
.location-header {
    margin-bottom: 1.5rem;
}

.location-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.update-time {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 潮汐时段 */
.tide-periods {
}

.periods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.period-card {
    padding: 1rem;
    border-radius: 8px;
}

.high-tide {
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.low-tide {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* 潮汐时间表 */
.tide-schedule {
}

.tide-schedule table {
    width: 100%;
    border-collapse: collapse;
}

.tide-schedule th {
    background: #f8f9fa;
    padding: 0.75rem;
    text-align: left;
}

.tide-schedule td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.high-tide {
    background-color: rgba(52, 152, 219, 0.03);
}

.low-tide {
    background-color: rgba(231, 76, 60, 0.03);
}

.tide-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.tide-badge.high {
    background: rgba(52, 152, 219, 0.15);
    color: #2980b9;
}

.tide-badge.low {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

/* 潮汐图表 */
.chart-wrapper {
    height: 300px;
    margin: 1rem 0;
}

/* 钓鱼建议 */
.fishing-tips {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.tips-content ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

/* 附近地区 */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.location-card {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
}

.location-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .periods-grid {
        grid-template-columns: 1fr;
    }

    .tide-schedule table {
        font-size: 0.9rem;
    }
}

/* 页脚增强样式 */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.footer-column {
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: #3498db;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #3498db;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
    position: relative;
}

.footer-column a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover::before {
    opacity: 1;
    left: -12px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}
.copyright a {
    color: #7f8c8d;
    text-decoration:none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }
}

/* 夜间模式适配 */
@media (prefers-color-scheme: dark) {
    footer {
        background-color: #1a252f;
    }

    .footer-column h4 {
        color: #2980b9;
    }

    .footer-column h4::after {
        background: #2980b9;
    }

    .footer-column a {
        color: #95a5a6;
    }

    .footer-column a:hover {
        color: #2980b9;
    }
}

/* 面包屑导航样式 */
.breadcrumb {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0 0 1.5rem 0;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
    margin-right: 0.5rem;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb a::after {
    content: '›';
    margin-left: 0.5rem;
    color: #95a5a6;
    display: inline-block;
    width: 1rem;
    text-align: center;
}

.breadcrumb span {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.3rem 0;
    margin-left: 0.5rem;
}

/* 当前页样式 - 非链接 */
.breadcrumb span:last-child {
    color: #7f8c8d;
    font-weight: normal;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .breadcrumb a,
    .breadcrumb span {
        padding: 0.2rem 0;
    }
}

/* 夜间模式适配 */
@media (prefers-color-scheme: dark) {
    .breadcrumb {
        color: #bdc3c7;
    }

    .breadcrumb a {
        color: #5dade2;
    }

    .breadcrumb a:hover {
        color: #3498db;
    }

    .breadcrumb span {
        color: #ecf0f1;
    }

    .breadcrumb span:last-child {
        color: #bdc3c7;
    }
}

/* 动画增强 */
.breadcrumb a:hover::after {
    animation: breadcrumb-arrow 0.5s ease;
}

@keyframes breadcrumb-arrow {
    0% { transform: translateX(0); }
    50% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

/* 分隔符美化 */
.breadcrumb a:not(:first-child)::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bdc3c7;
    margin-right: 0.8rem;
    opacity: 0.6;
    vertical-align: middle;
}

/* 移动端优化 */
@media (max-width: 480px) {
    .breadcrumb {
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .breadcrumb::-webkit-scrollbar {
        height: 3px;
    }

    .breadcrumb::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.1);
    }
}

.all-locations {
    margin-top: 2rem;
}

.province-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.province-group {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.province-title {
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #333;
}

.region-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}

.region-item:hover {
    background-color: #e9ecef;
}

.station-count {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.city-group {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.city-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #333;
}

.total-count {
    background-color: #bbdefb;
    color: #0d47a1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    background-color: white;
    border: 1px solid #dee2e6;
}

.area-item:hover {
    background-color: #e9ecef;
}

.station-count {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}
.nopadding {
    padding: 0;
}

/* 小程序二维码固定定位样式 */
.wechat-qrcode {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    z-index: 9999;
    transition: all 0.3s ease;
}
.wechat-qrcode img {
    width: 100%;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.wechat-qrcode:hover {
    width: 120px;
}
.wechat-qrcode p{
    color:#000;
    font-weight:bold;
    padding:10px 0;
}
/* 移动端适配 */
@media (max-width: 768px) {
    .wechat-qrcode {
        width: 80px;
        right: 10px;
    }
    .wechat-qrcode:hover {
        width: 90px;
    }
}
