.seize-customer ul li .txt .more:hover {
    background: #000!important;
}

.seize-customer ul li .txt .more {
    margin: 10px 0 0;
    width: 190px;
    height: 30px;
    line-height: 30px;
    background: #000!important;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #fff!important;
}






.tanthos-business {
  background: var(--bg-color);
  font-family: var(--title-font-family);
}
.tanthos-business .tanthos-business-content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tanthos-business .company-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.tanthos-business .company-inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  opacity: 1;
  padding: 0 50px;
  animation: 1s ease 0s 1 normal none running fadeIn;
}
.tanthos-business .company-block:hover .company-inner,
.tanthos-business .company-block:hover .company-bg{
  display: block;
}

.tanthos-business .company-block {
  margin-top: 10px;
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.tanthos-business .company-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff!important;
  margin-bottom: 33px;
}
.tanthos-business .company-desc {
  font-size: 20px;
  font-family: var(--font-family);
  color: #fff;
  margin-bottom: 30px;
  line-height: 20px; /* 150% */
  letter-spacing: -0.2px;
}
.tanthos-business .company-btn {
  font-family: var(--font-family);
  width: fit-content;
  padding: 12px 38px;
  /* border-radius: 25px; */
  background-color: var(--color-primary);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 45px auto 0;
  transition: background 0.2s;
}
.tanthos-business .company-btn:hover {
  
}
/* 响应式设计 */
@media screen and (max-width: 1500px) {
  .tanthos-business .company-inner {
    padding: 0 50px;
  }
  .tanthos-business .company-title {
    font-size: 24px;
  }
  .tanthos-business .company-desc {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .tanthos-business .company-title {
    font-size: 30px;
  }
  .tanthos-business .company-desc {
    font-size: 18px;
  }
  .tanthos-business .company-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 30px;
  }
  .tanthos-business .company-block {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .tanthos-business .company-title {
    font-size: 24px;
  }
  .tanthos-business .company-desc {
    font-size: 16px;
  }
  .tanthos-business .company-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 30px;
  }
  .tanthos-business .company-block {
    width: 100%;
    min-height: 410px;
  }
  .tanthos-business .company-block .company-inner,
.tanthos-business .company-block .company-bg{
  display: block;
}
}
@media screen and (max-width: 576px) {
  .tanthos-business .company-inner {
    padding: 0 24px;
  }
  .tanthos-business .company-title {
    font-size: 18px;
    margin-bottom:10px;
  }
  .tanthos-business .company-desc {
    font-size: 14px;
  }
  .tanthos-business .company-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 30px;
  }
  .tanthos-business .company-block {
    width: 100%;
    min-height: 310px;
  }
  .tanthos-business .company-block .company-inner,
  .tanthos-business .company-block .company-bg{
    display: block;
  }
}