p{
    margin-bottom: 6px;
}
#tf-case{
    padding:60px 0 0 0;
}

/* 加载状态样式 */
.loading-container {
  text-align: center;
  padding: 60px 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1890ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-container {
  text-align: center;
  padding: 60px 0;
  color: #666;
}

/* 静态轮播图样式 */
.hero-static {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.static-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.static-slide:first-child {
  opacity: 1;
}

.case-filter {
    margin: 40px 0;
}

.case-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-filter li {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.case-filter li.active,
.case-filter li:hover {
    color: #1890ff;
    border-bottom-color: #1890ff;
}

.case-list {
    margin-bottom: 50px;
}

.case-box {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.case-img {
    position: relative;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.case-box:hover .case-overlay {
    opacity: 1;
}

.case-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.case-content h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

.case-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #f8f9fa;
}

.case-info {
    padding: 20px;
}

.case-info h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.case-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.btn-primary {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #40a9ff;
    border-color: #40a9ff;
    color: #fff;
}

/* NuxtLink样式 */
.case-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-link:hover {
    text-decoration: none;
    color: inherit;
}

@media only screen and (max-width:768px) {
  #tf-case{
      padding: 40px 0 0 0;
  }
  .case-img img{
      height: 110px;
  }
  .case-info{
      padding: 14px;
  }
  .case-info h4{
      margin-bottom: 0;
      font-size: 13px;
  }
  .case-list{
      margin-bottom: 30px;
      margin-right: -10px;
      margin-left: -10px;
  }
  .case-list .case-item{
      padding-right: 10px;
      padding-left: 10px;
  }
}