#tool-body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  transition: background-color 0.3s;
}

#tool-body .head-card {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 30px;
}

#tool-body .head-title {
  font-size: 19px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
}

#tool-body .search-box {
  margin-bottom: 30px;
}

#tool-body .result-table-container {
  margin-top: 20px;
  animation: layui-upbit 0.3s;
}

#tool-body .layui-table {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

#tool-body .layui-table .ext-info {
  display:none;
}
#tool-body .view-more {
  text-align:center;
  margin-top: 2px;
}
#tool-body .view-more button {
  width: 100%;
}
#tool-body .layui-table th {
  background-color: #fcfcfc;
  font-weight: 600;
  color: #666;
  width: 22%;
  text-align: right;
  padding-right: 20px;
  min-width: 80px;
}

#tool-body .layui-table td {
  color: #333;
  font-weight: 500;
}

#tool-body .ip-tag {
  color: #1e9fff;
  font-weight: bold;
}

.theme-dark-mode #tool-body .head-card {
  background-color: #1e1e1e;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.theme-dark-mode #tool-body .head-title {
  color: #eee;
}

.theme-dark-mode #tool-body .layui-input {
  background-color: #2c2c2c;
  border-color: #444;
  color: #fff;
}

.theme-dark-mode #tool-body .layui-table {
  background-color: #252525;
  color: #aaa;
  border-color: #333;
}

.theme-dark-mode #tool-body .layui-table th {
  background-color: #2d2d2d;
  color: #999;
  border-color: #333;
}

.theme-dark-mode #tool-body .layui-table td {
  background-color: #252525;
  color: #ecf0f1;
  border-color: #333;
}

.theme-dark-mode #tool-body .layui-table[lay-even] tr:nth-child(even) {
  background-color: #2a2a2a;
}



@media screen and (max-width: 768px){
  #tool-body .head-card{
    background-color: inherit!important;
    box-shadow: none!important;
    padding: 0!important;
  }
  
  #tool-body .ip-input{
    width: calc(100% - 100px);
  }
  #tool-body .search-btn{
    width: 100px;
  }
}