/* 未来科技风格工作表格 - 数字孪生城市界面 */

:root {
  --primary-color: #00a2ff;
  --secondary-color: #7e42ff;
  --accent-color: #00e5ff;
  --neon-blue: #00f3ff;
  --neon-purple: #bd00ff;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --text-primary: #1a1a1a;
  --text-secondary: #4d4d4d;
  --glow-effect: 0 0 20px rgba(0, 243, 255, 0.6), 0 0 40px rgba(0, 162, 255, 0.4);
  --neon-border: 1px solid rgba(0, 243, 255, 0.6);
  --cyber-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  --card-shadow: 0 12px 35px rgba(0, 162, 255, 0.18);
  --card-hover-shadow: 0 18px 45px rgba(0, 162, 255, 0.28);
  --dark-bg: #0a0e17;
}

/* 工作表格样式 - 未来科技风格 */
.jobtable {
  width:100%;
  flex-wrap: wrap;
  margin: 25px 0;
}

.jobtable .side {
  flex: 1;
  min-width: 300px;
  perspective: 1200px;
}

.jobtable .main {
  padding-left:25px;
}

.jobtable .side .drag,
.jobtable .side .drag2 {
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
}

.jobtable .side .drag::before,
.jobtable .side .drag2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.jobtable .side .drag:hover,
.jobtable .side .drag2:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

.jobtable .side .drag .head,
.jobtable .side .drag2 .head {
  background: var(--cyber-gradient);
  height: auto;
  min-height: 50px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.jobtable .side .drag .head::before,
.jobtable .side .drag2 .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.jobtable .side .drag .head .LL,
.jobtable .side .drag .head .RR,
.jobtable .main .drag .head .LL,
.jobtable .main .drag .head .RR {
  display: none;
}

.jobtable .side .drag .head .TAG,
.jobtable .side .drag2 .head {
  float: none;
  padding: 0;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.jobtable .side .drag .CC,
.jobtable .side .drag2 .CC {
  border: none;
  padding: 25px;
  background: rgba(248, 248, 248, 0.7);
}

.jobtable .side .drag .list_t .big {
  background: none;
  height: auto;
  padding: 18px 0 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
  position: relative;
}

.jobtable .side .drag .list_t .big::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.3rem;
}

.jobtable .side .drag .list_t .big a {
  display: inline;
  background: none;
  padding-left: 35px;
  height: auto;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease;
}

.jobtable .side .drag .list_t .big a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
  transform: translateX(5px);
}

.jobtable .side .drag .list_t .small {
  height: auto;
  padding: 10px 0 10px 35px;
  line-height: 1.6;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.jobtable .side .drag .list_t .small:hover {
  background: rgba(0, 162, 255, 0.08);
  padding-left: 40px;
  border-radius: 10px;
  transform: translateZ(10px);
}

.jobtable .side .drag .list_t .small a {
  padding-right: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.jobtable .side .drag .list_t .small a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.jobtable .side .drag .list_t .small a:hover {
  color: var(--primary-color);
}

.jobtable .side .drag .list_t .small a:hover::before {
  width: 100%;
}

.jobtable .side .drag .head2 {
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.15), rgba(126, 66, 255, 0.15));
  height: auto;
  padding: 15px 20px 15px 45px;
  border: none;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  transition: all 0.4s ease;
}

.jobtable .side .drag .head2:hover {
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.2), rgba(126, 66, 255, 0.2));
}

.jobtable .side .drag .head2::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.jobtable .side .drag .list_c {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.jobtable .side .drag .list_c:hover {
  background: rgba(0, 162, 255, 0.08);
  transform: translateZ(10px);
}

.jobtable .main .drag {
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
}

.jobtable .main .drag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.jobtable .main .drag:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

.jobtable .main .drag .head {
  background: var(--cyber-gradient);
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.jobtable .main .drag .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

.jobtable .main .drag .head .TAG {
  float: none;
  background: none;
  width: auto;
  height: auto;
  text-align: left;
  padding: 20px 25px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.3rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jobtable .main .drag .CC {
  border: none;
  padding: 30px;
}

.jobtable .main .drag .CC #list_zh .hh td {
  color: var(--primary-color);
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.jobtable .main .drag .CC #list_zh .lt td {
  line-height: 1.6;
  padding: 15px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.jobtable .main .drag .CC #list_zh .lt:hover td {
  background: rgba(0, 162, 255, 0.08);
  transform: translateZ(10px);
}

.jobtable .main .drag .CC #list_zh .lt .t1 a {
  display: inline;
  background: none;
  padding-left: 25px;
  position: relative;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

.jobtable .main .drag .CC #list_zh .lt .t1 a::before {
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.jobtable .main .drag .CC #list_zh .lt .t1 a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.jobtable .main .drag .CC #list_zh .lt .t1 a:hover::before {
  color: var(--secondary-color);
}

.jobtable .main .drag .CC #list_zh .bb td {
  background: rgba(246, 248, 255, 0.5);
}

#page td {
  padding: 15px;
  text-align: center;
}

#page a {
  display: inline-block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

#page a:hover {
  background: var(--cyber-gradient);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.jobtable .side .drag .morejob {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  background: rgba(248, 248, 248, 0.7);
}

.jobtable .side .drag .morejob div {
  line-height: 1.6;
  color: var(--primary-color);
  padding-left: 0;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.jobtable .side .drag .morejob div:hover {
  padding-left: 12px;
  transform: translateZ(10px);
}

.jobtable .side .drag .morejob div a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.jobtable .side .drag .morejob div a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.jobtable .side .drag .morejob div a:hover {
  color: var(--secondary-color);
}

.jobtable .side .drag .morejob div a:hover::before {
  width: 100%;
}

.had {
  margin-bottom: 18px;
}

.jobtable .side .drag2 {
  border: none;
  margin-top: 25px;
}

.jobtable .side .drag2 .CC {
  padding: 25px;
  line-height: 1.6;
}

.search_job {
  border: none;
  margin: 25px 0;
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.search_job::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.search_job:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

.search_job div {
  height: auto;
  float: none;
  padding: 18px 25px;
  display: flex;
  align-items: center;
}

.search_job div.title {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  background: none;
  padding-right: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: 1px;
}

.search_job div.type {
  height: auto;
  padding: 18px 25px;
  background: none;
  padding-right: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.search_job div.type input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 18px;
  width: 100%;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.search_job div.type input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 162, 255, 0.25);
}

.search_job div.butt {
  height: auto;
  padding: 18px 25px;
  display: flex;
  justify-content: center;
}

.search_job div.butt input {
  padding: 12px 30px;
  background: var(--cyber-gradient);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
}

.search_job div.butt input:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.search_job #s_input {
  width: 100%;
}

#top_from {
  margin-bottom: 25px;
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

#top_from::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

#top_from:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

#top_from .CB {
  height: auto;
  border: none;
  padding: 25px;
}

#top_from .head {
  background: var(--cyber-gradient);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

#top_from .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

#top_from .head div {
  width: 50%;
  height: auto;
  padding: 18px 0;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  color: white;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

#top_from .head div:hover {
  background: rgba(255, 255, 255, 0.15);
}

#top_from .TAG1,
#top_from .TAG4 {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border: none;
}

#top_from .TAG2,
#top_from .TAG3 {
  background: none;
  color: rgba(255, 255, 255, 0.9);
  border: none;
}

#top_from .CB div.lt {
  clear: both;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

#top_from .CB div.lt:last-child {
  border-bottom: none;
}

#top_from .CB div.lt:hover {
  background: rgba(0, 162, 255, 0.08);
  transform: translateZ(10px);
}

#top_from .CB div span {
  line-height: 1.6;
  float: none;
  padding: 6px 12px;
}

#top_from .CB div .t1 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

#top_from .CB div .t1 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
  transform: translateX(5px);
}

#top_from .CB div .t2,
#top_from .CB div .t3,
#top_from .CB div .t4,
#top_from .CB div .t5 {
  float: none;
  width: auto;
  color: var(--text-secondary);
}

#top_from .tb_f {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#top_from .tb_f div {
  background: var(--cyber-gradient);
  width: auto;
  height: auto;
  float: none;
  margin: 0;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  perspective: 600px;
  transform-style: preserve-3d;
}

#top_from .tb_f div:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#top_from .tb_f div a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.city_hr {
  background: var(--cyber-gradient);
  border-radius: 12px;
  overflow: hidden;
  margin: 25px 0;
  box-shadow: var(--card-shadow);
}

.city_hr td {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  text-align: center;
  padding: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 600px;
  transform-style: preserve-3d;
}

.city_hr td:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px) translateZ(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dragcity {
  border: none;
  margin-bottom: 25px;
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.dragcity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.dragcity:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

.dragcity .head {
  background: var(--cyber-gradient);
  height: auto;
  min-height: 60px;
  line-height: 1.5;
  padding: 18px 25px;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.dragcity .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

.dragcity .CC {
  padding: 25px;
}

.hr_main_linead {
  margin: 25px 0;
  text-align: center;
}

.dragcity #hr_ad td {
  padding: 18px;
  text-align: center;
}

/***************/
.hrsorttable {
  background: var(--cyber-gradient);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: var(--card-shadow);
}

.hrsorttable .head {
  background: none;
  height: auto;
  min-height: 60px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hrsorttable .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

.hrsorttable .head .TAG {
  float: none;
  padding: 0;
  background: none;
  line-height: 1.5;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hrsorttable .middle {
  border: none;
  padding: 25px;
  background: var(--glass-bg);
  border-radius: 0 0 20px 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
}

.hrsorttable .middle .big {
  background: none;
  height: auto;
  padding: 18px 0 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  position: relative;
}

.hrsorttable .middle .big::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.3rem;
}

.hrsorttable .middle .big a {
  display: inline;
  background: none;
  padding-left: 35px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease;
}

.hrsorttable .middle .big a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
  transform: translateX(5px);
}

.hrsorttable .middle .small {
  padding: 12px 0 12px 35px;
  line-height: 1.6;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.hrsorttable .middle .small:hover {
  background: rgba(0, 162, 255, 0.08);
  padding-left: 40px;
  border-radius: 10px;
  transform: translateZ(10px);
}

.hrsorttable .middle .small a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.hrsorttable .middle .small a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.hrsorttable .middle .small a:hover {
  color: var(--primary-color);
}

.hrsorttable .middle .small a:hover::before {
  width: 100%;
}

.hrsorttable .middle .h {
  height: auto;
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.15), rgba(126, 66, 255, 0.15));
  line-height: 1.5;
  padding: 15px 20px 15px 45px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 18px;
  border-radius: 10px;
  position: relative;
  transition: all 0.4s ease;
}

.hrsorttable .middle .h:hover {
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.2), rgba(126, 66, 255, 0.2));
}

.hrsorttable .middle .h::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.hrsorttable .middle .c {
  padding: 18px 0;
  line-height: 1.6;
  color: var(--primary-color);
}

.hrsorttable .middle .c a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.hrsorttable .middle .c a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.hrsorttable .middle .c a:hover {
  color: var(--secondary-color);
}

.hrsorttable .middle .c a:hover::before {
  width: 100%;
}

.jobtable .side .side_ad1 {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.15), rgba(126, 66, 255, 0.15));
  margin: 20px 0;
  border: none;
  border-radius: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.jobtable .side .side_ad1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.jobtable .side .side_ad1:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-8px) rotateX(5deg);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .jobtable {
    flex-direction: column;
  }
  
  .jobtable .side,
  .jobtable .main {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .jobtable .side .drag .CC,
  .jobtable .side .drag2 .CC,
  .jobtable .main .drag .CC {
    padding: 20px;
  }
  
  #top_from .head div {
    width: 100%;
  }
  
  #top_from .CB div span {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .city_hr td {
    width: 50%;
    display: inline-block;
    margin: 6px;
  }
}

@media (max-width: 576px) {
  .jobtable .side .drag .head .TAG,
  .jobtable .side .drag2 .head,
  .jobtable .main .drag .head .TAG {
    font-size: 1.1rem;
  }
  
  .jobtable .side .drag .list_t .big,
  .jobtable .side .drag .list_t .small,
  .hrsorttable .middle .big,
  .hrsorttable .middle .small {
    padding-left: 30px;
  }
  
  .jobtable .side .drag .list_t .big::before,
  .hrsorttable .middle .big::before {
    font-size: 1.1rem;
  }
  
  .search_job div {
    padding: 15px 20px;
  }
}

/* 黑暗模式支持 */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-bg: rgba(26, 32, 54, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --card-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    --card-hover-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  }
  
  body {
    background-color: var(--dark-bg);
  }
  
  .jobtable .side .drag .CC,
  .jobtable .side .drag2 .CC,
  .jobtable .main .drag .CC,
  .hrsorttable .middle,
  #top_from .CB,
  .search_job,
  .dragcity .CC {
    background: rgba(26, 32, 54, 0.8);
  }
  
  .jobtable .side .drag .list_t .big a,
  .jobtable .side .drag .list_t .small a,
  .jobtable .side .drag .morejob div a,
  .hrsorttable .middle .big a,
  .hrsorttable .middle .small a,
  .hrsorttable .middle .c a,
  #top_from .CB div .t1 a {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .jobtable .side .drag .list_t .small:hover,
  .jobtable .side .drag .list_c:hover,
  .jobtable .main .drag .CC #list_zh .lt:hover td,
  .jobtable .side .drag .morejob div:hover,
  .hrsorttable .middle .small:hover,
  #top_from .CB div.lt:hover {
    background: rgba(0, 162, 255, 0.15);
  }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}