.hyck.pm80 {
  display: none;
}
#port-route {
  display: block;
}
/* 内容区块美化样式 */
.con {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* 添加装饰性背景元素 */
.con::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.con::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.text p {
    background: white;
    padding: 20px 15px;
    margin: 0;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* 为每个城市添加不同的渐变背景 */
.text p:nth-child(1) {
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    border-left: 4px solid #3498db;
}

.text p:nth-child(2) {
    background: linear-gradient(145deg, #ffffff 0%, #f0fff4 100%);
    border-left: 4px solid #2ecc71;
}

.text p:nth-child(3) {
    background: linear-gradient(145deg, #ffffff 0%, #fff0f4 100%);
    border-left: 4px solid #e74c3c;
}

.text p:nth-child(4) {
    background: linear-gradient(145deg, #ffffff 0%, #fdf0ff 100%);
    border-left: 4px solid #9b59b6;
}

.text p:nth-child(5) {
    background: linear-gradient(145deg, #ffffff 0%, #fff9f0 100%);
    border-left: 4px solid #f39c12;
}

/* 悬停效果 */
.text p:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

/* 添加小图标装饰 */
.text p::before {
    content: '⚓';
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.text p:hover::before {
    transform: rotate(15deg) scale(1.2);
    opacity: 1;
}

/* 为每个城市设置不同的图标 */
.text p:nth-child(1)::before { content: '🌊'; }  /* 宁波 - 海浪 */
.text p:nth-child(2)::before { content: '🏙️'; }  /* 上海 - 城市 */
.text p:nth-child(3)::before { content: '⛴️'; }  /* 连云港 - 渡轮 */
.text p:nth-child(4)::before { content: '🏭'; }  /* 天津 - 工业 */
.text p:nth-child(5)::before { content: '🌴'; }  /* 广东 - 棕榈树 */

/* 响应式设计 */
@media (max-width: 768px) {
    .con {
        padding: 20px;
    }
    
    .text {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .text p {
        padding: 15px 10px;
        font-size: 16px;
    }
    
    .text p::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .text {
        grid-template-columns: 1fr;
    }
}

/* 如果希望显示标题，可以添加 */
.ntitle h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.ntitle h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c, #9b59b6, #f39c12);
    border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .chart-box {
    width: 100% !important;
    height: 350px !important;
  }
  
  .data-summary {
    flex-direction: column !important;
  }
  
  .data-summary > div {
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0;
  }
  
  .data-summary > div:last-child {
    border-bottom: none;
  }
}



@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 10px 5px rgba(0, 255, 255, 0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

/* 地图容器科技感光效 */
.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 5;
}

.map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
  animation: scan 8s linear infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes scan {
  0% {
    top: -1px;
  }
  100% {
    top: 100%;
  }
}


/* 图表容器样式优化 */
.chart-box {
  width: 48%;
  height: 420px !important;  /* 固定高度 */
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  box-sizing: border-box;
}

.chart-box h3 {
  text-align: center;
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
}

.chart-box > div {
  width: 100%;
  height: calc(100% - 45px) !important;  /* 减去标题高度 */
}

/* 响应式优化 */
@media screen and (max-width: 1200px) {
  .chart-box {
    width: 48%;
    height: 380px !important;
  }
}

@media screen and (max-width: 768px) {
  .chart-box {
    width: 100% !important;
    height: 350px !important;
  }
}

/* 实时物流独立CSS */
.real-time-logistics-module {
  background: linear-gradient(135deg, #0a1428 0%, #122b44 100%);
  position: relative;
  overflow: hidden;
}

.real-time-logistics-module .wrap {
  position: relative;
  z-index: 3;
}

/* 科技感背景网格 */
.real-time-logistics-module .grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

/* 物流卡片容器 */
.logistics-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
  margin-top: 30px;
}

/* 通用卡片样式 - 玻璃拟态 */
.logi-card {
  background: rgba(20, 40, 65, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 32px;
  padding: 25px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.logi-card:hover {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 255, 0.3);
}

/* 卡片标题 */
.logi-title {
  color: #0ff;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  padding-bottom: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

.logi-title span {
  background: rgba(0, 255, 255, 0.15);
  border-radius: 40px;
  padding: 4px 12px;
  font-size: 12px;
  color: #aaf;
  margin-left: auto;
  border: 1px solid #0ff3;
}

/* 实时物流条目 */
.ship-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.ship-item:last-child {
  border-bottom: none;
}

.ship-name {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ship-name i {
  color: #0ff;
  font-style: normal;
  font-size: 18px;
}

.ship-pos {
  color: #8ab;
  font-size: 13px;
  background: rgba(0, 40, 70, 0.6);
  padding: 4px 10px;
  border-radius: 40px;
  border: 1px solid #0ff3;
}

.ship-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-badge {
  background: rgba(0, 255, 0, 0.1);
  color: #0f0;
  border: 1px solid #0f0;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.warning {
  background: rgba(255, 170, 0, 0.1);
  color: #fa0;
  border-color: #fa0;
}

.status-badge.danger {
  background: rgba(255, 70, 70, 0.1);
  color: #f66;
  border-color: #f66;
}

.ship-speed {
  color: #9cf;
  font-size: 13px;
  font-family: monospace;
}

/* 全球概览卡片 */
.glove-card {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
}

.world-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.stat-item {
  flex: 1 1 40%;
  background: rgba(0, 40, 70, 0.5);
  border-radius: 20px;
  padding: 15px;
  border-left: 4px solid #0ff;
}

.stat-label {
  color: #9bc;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-value {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-unit {
  color: #0ff;
  font-size: 14px;
  margin-left: 5px;
}

.stat-trend {
  color: #0f0;
  font-size: 13px;
  margin-top: 5px;
}

/* 物流地图模拟 */
.map-preview {
  background: #0a1e30;
  border-radius: 24px;
  padding: 15px;
  margin: 15px 0;
  position: relative;
  border: 1px solid #0ff3;
  height: 150px;
  overflow: hidden;
}

.map-dots {
  position: relative;
  width: 100%;
  height: 100%;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ff;
  box-shadow: 0 0 20px #0ff;
}

.dot::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  top: -6px;
  left: -6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.route-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #0ff, transparent);
  top: 50%;
  left: 20%;
  width: 60%;
  opacity: 0.5;
}

/* 进度条组件 */
.progress-container {
  margin: 15px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #bdf;
  font-size: 14px;
  margin-bottom: 5px;
}

.progress-bar-bg {
  background: #1a3a55;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0ff, #08f);
  border-radius: 10px;
  width: 0%;
  transition: width 1s;
}

/* 航线列表 */
.route-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #0ff3;
}

.route-name {
  color: #ffaa00;
}

.route-count {
  color: #0ff;
  font-weight: 600;
}

/* 国内口岸独立CSS */
.domestic-ports-module {
  background: linear-gradient(135deg, #102235 0%, #1c3a5a 100%);
  position: relative;
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.port-card {
  background: rgba(30, 50, 75, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 32px;
  padding: 25px;
  transition: 0.3s;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.port-card:hover {
  border-color: #ffaa00;
  box-shadow: 0 20px 40px rgba(255,170,0,0.2);
}

.port-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,170,0,0.3);
  padding-bottom: 15px;
}

.port-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,170,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffaa00;
  border: 1px solid #ffaa00;
}

.port-name {
  color: #ffaa00;
  font-size: 24px;
  font-weight: 500;
}

.port-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.port-stat-item {
  flex: 1 1 40%;
}

.port-stat-label {
  color: #9bc;
  font-size: 12px;
  text-transform: uppercase;
}

.port-stat-value {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.port-stat-trend {
  color: #0f0;
  font-size: 13px;
}

.port-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #bdf;
  font-size: 13px;
  border-top: 1px dashed #ffaa0040;
  padding-top: 15px;
}

.port-badge {
  background: #ffaa0020;
  color: #ffaa00;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid #ffaa00;
}

/* 吞吐量排名 */
.rank-list {
  background: rgba(0,0,0,0.2);
  border-radius: 24px;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #ffaa0030;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-bottom: 1px solid #ffaa0020;
}

.rank-number {
  width: 30px;
  height: 30px;
  background: #ffaa0020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffaa00;
  font-weight: bold;
}

.rank-port {
  flex: 2;
  color: #fff;
  font-weight: 500;
}

.rank-teu {
  color: #0ff;
  font-weight: 600;
}

.rank-change {
  color: #0f0;
  font-size: 13px;
  margin-left: auto;
}




/* 地图容器样式 */
.map-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 30px;
  background: linear-gradient(145deg, #0b1a3a 0%, #1a2f4f 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

/* 数据总结卡片样式 */
.data-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: #fff;
}

/* 图表容器 - 修复自适应问题的关键 */
.chart-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

.chart-box {
  width: 48%;
  /* 注意：这里将固定高度改为最小高度，或者使用相对单位，但为了echarts渲染，保留高度，父容器已做响应 */
  height: 400px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  box-sizing: border-box;
}

/* 确保echarts容器占满 */
.chart-box > div {
  width: 100%;
  height: calc(100% - 45px) !important; /* 减去标题高度，适应echarts */
}

/* 响应式修复 - 解决电脑端显示过小的问题 */
@media screen and (max-width: 1200px) {
  .chart-box {
    width: 48%;
    height: 380px;
  }
}

@media screen and (max-width: 768px) {
  .chart-box {
    width: 100% !important;
    height: 350px !important;
  }

  .data-summary {
    flex-direction: column;
  }
  .data-summary > div {
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0;
  }
  .data-summary > div:last-child {
    border-bottom: none;
  }
}









 .hyck.pm80 {
            width: 100%;
            background: #f9fcff;
            padding: 60px 0;
            transition: all 0.3s;
        }
   
        /* 标题区 */
        .ntitle {
            text-align: center;
            margin-bottom: 40px;
        }
        .ntitle h2 {
            font-size: 36px;
            font-weight: 600;
            color: #0b3b5c;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .ntitle h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, #0088cc, #004b7c);
            border-radius: 3px;
        }

        /* ===== 船期查询专属样式 (完全包含原 .box .pic .con .text 以及新增表格样式) ===== */
        .box {
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 20px 40px -10px rgba(0,40,80,0.15);
            padding: 30px 28px;
            border: 1px solid rgba(0,160,255,0.2);
            backdrop-filter: blur(2px);
            transition: all 0.3s;
        }

        /* 原结构保留：pic 和 con 左右分布，但我们现在扩展了 .schedule-wrapper 以适应复杂查询 */
        .schedule-wrapper {
            display: flex;
            flex-direction: unset;
            gap: 30px;
        }

        /* 查询表单卡片 */
        .query-card {
            background: #f0f7fd;
            border-radius: 28px;
            padding: 28px 26px;
            border: 1px solid #cde1f0;
            box-shadow: inset 0 1px 4px #ffffff, 0 6px 12px rgba(0,35,70,0.08);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            font-size: 14px;
            color: #1d4e7c;
            letter-spacing: 0.3px;
            margin-left: 6px;
        }
        .form-group select,
        .form-group input[type="date"] {
            height: 48px;
            border: 1px solid #b8d1e9;
            border-radius: 30px;
            padding: 0 18px;
            background: white;
            font-size: 15px;
            color: #0a2b44;
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23336699" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 14px;
            cursor: pointer;
        }
        .form-group input[type="date"] {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23336699" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>');
            padding-right: 45px;
        }
        .form-group select:focus,
        .form-group input[type="date"]:focus {
            outline: none;
            border-color: #0070b3;
            box-shadow: 0 0 0 3px rgba(0,112,179,0.2);
        }

        .search-btn {
            background: linear-gradient(115deg, #0d3f64, #0066a0);
            border: none;
            border-radius: 40px;
            height: 48px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 10px 18px -6px #0066a070;
            transition: all 0.15s;
            border: 1px solid #ffffff40;
            margin-top: 22px;  /* 与表单项对齐 */
            width: 100%;
            grid-column: 1 / -1;  /* 让按钮独占一行 */
        }
        .search-btn:hover {
            background: linear-gradient(115deg, #125689, #0077be);
            transform: scale(1.01);
            box-shadow: 0 12px 22px -4px #0077bea0;
        }

        /* 表格结果区 (原 .con 和 .text 保留，但将表格置入其中) */
        .con {
            margin-top: 15px;
        }
        .result-table-wrap {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid #cfe1f2;
            overflow-x: auto;
        }
        .result-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 860px;
        }
        .result-table th {
            background: #e2effa;
            padding: 18px 12px;
            font-size: 14px;
            font-weight: 700;
            color: #0c3c60;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #b7d3ea;
            text-align: center;
        }
        .result-table td {
            padding: 16px 12px;
            border-bottom: 1px solid #d7e6f5;
            color: #173e5f;
            font-size: 15px;
            text-align: center;
        }
        .result-table tbody tr:hover td {
            background-color: #f1f9ff;
        }
        .carrier-tag {
            background: #e7f0fc;
            padding: 4px 14px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 13px;
            color: #004b99;
            display: inline-block;
            white-space: nowrap;
        }
        .rate {
            font-weight: 700;
            color: #1f6d1f;
            background: #e2f7e2;
            padding: 4px 14px;
            border-radius: 40px;
        }
        .no-data-msg {
            padding: 50px;
            text-align: center;
            color: #6f8aa8;
            font-style: italic;
        }

        /* 原结构 .pic 区域 — 根据原有设计可以放置插图，但为了简洁我们保留占位 */
        .pic {
            text-align: center;
            margin-bottom: 20px;
        }
        .pic img {
            max-width: 100%;
            height: auto;
            border-radius: 24px;
            opacity: 0.9;
        }
        /* 原 .text 段落隐藏，因为我们使用表格，但保留类 */
        .text p {
            display: none;  /* 原有宁波上海列表隐藏，完全用表格替代 */
        }

        /* 未来日期提示 */
        .future-hint {
            font-size: 12px;
            color: #3f6682;
            margin-top: 4px;
            margin-left: 12px;
        }
        .footer-note {
            margin-top: 16px;
            text-align: right;
            font-size: 13px;
            color: #6d8eb0;
        }



        .hyck.pm80#schedule-query {
    width: 100%;
    background: transparent;
    padding: 40px 0;
}

/* 标题样式 */
.ntitle h2 {
    font-size: 36px;
    font-weight: 600;
    color: #0b3b5c;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin: 0;
}

.ntitle h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #0088cc, #004b7c);
    border-radius: 3px;
}

/* 主卡片样式 */
.box {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 40px -10px rgba(0,40,80,0.15);
    padding: 30px 28px;
    border: 1px solid rgba(0,160,255,0.2);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: row;
    gap: 30px;
    transition: all 0.3s;
}

/* 左侧图片区域 */
.pic {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pic img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    opacity: 0.9;
    transition: transform 0.3s;
}

.pic img:hover {
    transform: scale(1.02);
}

/* 右侧内容区域 */
.con {
    flex: 1;
}

/* 查询卡片 */
.track-query-card {
    background: #f0f7fd;
    border-radius: 28px;
    padding: 26px 24px;
    border: 1px solid #cde1f0;
    box-shadow: inset 0 1px 4px #ffffff, 0 8px 16px rgba(0,35,70,0.08);
    margin-bottom: 30px;
}

/* 表单布局 */
.track-form-row {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr auto;
    gap: 18px;
    align-items: end;
}

/* 表单组 */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #1d4e7c;
    letter-spacing: 0.3px;
    margin-left: 6px;
}

.form-group select,
.form-group input {
    height: 48px;
    border: 1px solid #b8d1e9;
    border-radius: 30px;
    padding: 0 18px;
    background: white;
    font-size: 15px;
    color: #0a2b44;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23336699" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.form-group input {
    background-image: none;
    padding: 0 20px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #0070b3;
    box-shadow: 0 0 0 3px rgba(0,112,179,0.2);
}

/* 查询按钮 */
.track-search-btn {
    background: linear-gradient(115deg, #0d3f64, #0066a0);
    border: none;
    border-radius: 40px;
    height: 48px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 18px -6px #0066a070;
    transition: all 0.15s;
    border: 1px solid #ffffff40;
    padding: 0 30px;
    white-space: nowrap;
}

.track-search-btn:hover {
    background: linear-gradient(115deg, #125689, #0077be);
    transform: scale(1.02);
    box-shadow: 0 12px 22px -4px #0077bea0;
}

.track-search-btn:active {
    transform: scale(0.98);
}

/* 错误提示 */
.error-hint {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 12px;
    margin-left: 12px;
    background: #ffebee;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #ffcdd2;
}

/* 结果表格容器 */
.track-result-wrap {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #cfe1f2;
    overflow-x: auto;
    margin-top: 20px;
}

/* 表格样式 */
.track-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.track-table th {
    background: #e2effa;
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #0c3c60;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #b7d3ea;
    text-align: center;
}

.track-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #d7e6f5;
    color: #173e5f;
    font-size: 14px;
    text-align: center;
}

.track-table tbody tr:hover td {
    background-color: #f1f9ff;
}

.track-table tbody tr:last-child td {
    border-bottom: none;
}

/* 表格内标签样式 */
.carrier-tag {
    background: #e7f0fc;
    padding: 4px 14px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 13px;
    color: #004b99;
    display: inline-block;
    white-space: nowrap;
}

.blno-highlight {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #b44;
    background: #ffeeee;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
}

.position-badge {
    background: #e2f0fa;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 13px;
    color: #02609e;
    display: inline-block;
    white-space: nowrap;
}

.route-info {
    font-weight: 500;
    color: #1a4d6b;
}

.days-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.days-bar {
    width: 60px;
    height: 4px;
    background: #d9e5f0;
    border-radius: 4px;
    overflow: hidden;
}

.days-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3a9bdc, #0066a0);
    border-radius: 4px;
}

.days-text {
    font-weight: 600;
    color: #0b3b5c;
}

.eta-text {
    font-weight: 600;
    color: #1f6d1f;
}

/* 提示文字 */
.track-footer-note {
    margin-top: 16px;
    text-align: right;
    font-size: 13px;
    color: #6d8eb0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-badge {
    background: #e2effa;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 12px;
    color: #004b7c;
    border: 1px dashed #98b9d9;
}

/* 空数据提示 */
.no-data-msg {
    padding: 50px;
    text-align: center;
    color: #6f8aa8;
    font-style: italic;
    font-size: 16px;
}

/* 响应式 */
@media (max-width: 900px) {
    .box {
        flex-direction: column;
    }
    .pic {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .track-form-row {
        grid-template-columns: 1fr;
    }
    .track-search-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .track-table {
        min-width: 800px;
    }
}














/* 左侧图片区域 - 增强 */
.pics {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e6f0fa, #ffffff);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 
        inset 0 2px 4px rgba(255,255,255,0.8),
        inset 0 -2px 4px rgba(0,0,0,0.02),
        10px 10px 20px rgba(0,20,40,0.08);
}

.pics img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0,60,120,0.15));
}

.pics img:hover {
    transform: scale(1.03) rotate(1deg);
    filter: drop-shadow(0 15px 20px rgba(0,80,160,0.25));
}

/* 右侧内容区域 */
.cons {
    flex: 1;
    display: flex;
    /*flex-direction: column;*/
    justify-content: center;
}

/* 口岸列表容器 - 网格布局 */
.texts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 18px;
    padding: 10px 0;
}

/* 口岸项卡片样式 */
.texts p {
    margin: 0;
    padding: 18px 12px;
    background: white;
    border-radius: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #0a3a5c;
    text-align: center;
    box-shadow: 
        0 8px 18px -6px rgba(0,60,120,0.15),
        0 0 0 1px rgba(0,150,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
}

/* 口岸项装饰性渐变色 */
.texts p:nth-child(1) { background: linear-gradient(145deg, #ffffff, #f0f9ff); }
.texts p:nth-child(2) { background: linear-gradient(145deg, #ffffff, #f0f9ff); }
.texts p:nth-child(3) { background: linear-gradient(145deg, #ffffff, #f0f9ff); }
.texts p:nth-child(4) { background: linear-gradient(145deg, #ffffff, #f0f9ff); }
.texts p:nth-child(5) { background: linear-gradient(145deg, #ffffff, #f0f9ff); }

/* 口岸项悬停效果 */
.texts p:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 18px 25px -10px rgba(0,80,160,0.3),
        0 0 0 2px rgba(0,160,255,0.3);
    color: #0066a0;
}

/* 为每个口岸添加icon */
.texts p::before {
    content: '⚓';
    font-size: 20px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
    transition: all 0.3s;
}

.texts p:hover::before {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    color: #0088cc;
}

/* 不同口岸不同icon (可选) */
.texts p:nth-child(1)::before { content: '🏙️'; }  /* 宁波 */
.texts p:nth-child(2)::before { content: '🌆'; }  /* 上海 */
.texts p:nth-child(3)::before { content: '🏗️'; }  /* 连云港 */
.texts p:nth-child(4)::before { content: '🏭'; }  /* 天津 */
.texts p:nth-child(5)::before { content: '🏢'; }  /* 广东 */

/* 添加口岸统计数据标记 (模拟) */
.texts p::after {
    content: attr(data-stat);
    font-size: 12px;
    background: rgba(0,102,160,0.1);
    padding: 2px 10px;
    border-radius: 30px;
    margin-left: 8px;
    color: #0066a0;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}

/* 为每个口岸添加模拟数据 */
.texts p:nth-child(1)::after { content: '285万TEU'; }
.texts p:nth-child(2)::after { content: '420万TEU'; }
.texts p:nth-child(3)::after { content: '356万TEU'; }
.texts p:nth-child(4)::after { content: '198万TEU'; }
.texts p:nth-child(5)::after { content: '312万TEU'; }

/* 添加响应式设计 */
@media (max-width: 900px) {
  
    
    .pics {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .texts {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .texts p {
        font-size: 16px;
        padding: 15px 10px;
    }
    
    .ntitle h2 {
        font-size: 32px;
    }
    
    .ntitle h2:before {
        display: none;
    }
}

@media (max-width: 600px) {
    .texts {
        grid-template-columns: 1fr 1fr;
    }
    
    .texts p {
        font-size: 15px;
        padding: 12px 8px;
    }
    
    .texts p::after {
        display: none; /* 小屏幕上隐藏统计数据 */
    }
}

/* 添加动画效果 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.texts p {
    animation: float 5s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.texts p:nth-child(1) { --i: 1; }
.texts p:nth-child(2) { --i: 2; }
.texts p:nth-child(3) { --i: 3; }
.texts p:nth-child(4) { --i: 4; }
.texts p:nth-child(5) { --i: 5; }



/* 添加到 business.css 文件中 */

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 消息提示 */
.custom-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    z-index: 9999;
    display: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-toast.success {
    background: #52c41a;
}

.custom-toast.warning {
    background: #faad14;
}

.custom-toast.error {
    background: #ff4d4f;
}

.custom-toast.info {
    background: #1890ff;
}

/* 运价表格样式增强 */
.result-table .rate-price {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 16px;
}

.result-table .rate-price::before {
    content: '';
}

/* 暂无数据样式 */
.no-data-msg {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

/* 登录模态框样式 */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 10%;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 20%;
    left: 30%;
}

.login-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-modal-header h3 {
    margin: 0;
    color: #333;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.login-modal-body {
    padding: 30px 20px;
    text-align: center;
}

.login-modal-body p {
    margin: 10px 0;
}

.login-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.btn-go-login {
    background: #1890ff;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-go-login:hover {
    background: #40a9ff;
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.login-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    animation: modalFadeIn 0.3s ease;
}
.login-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-modal-header .close-modal {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.login-modal-body {
    padding: 20px;
}
.login-modal-body .form-group {
    margin-bottom: 15px;
}
.login-modal-body .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.login-modal-body .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.login-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}
.login-modal-footer button {
    padding: 8px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.btn-cancel {
    background: #f0f0f0;
}
.btn-login {
    background: #1890ff;
    color: #fff;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-toast {
    position: fixed;
    /*bottom: 30px;*/
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    z-index: 10000;
    display: none;
    white-space: nowrap;
}
.custom-toast.success { background: #52c41a; }
.custom-toast.error { background: #ff4d4f; }
.custom-toast.warning { background: #faad14; }
.custom-toast.info { background: #1890ff; }