@charset "utf-8";
/* CSS Document */

  /* 卡片容器，添加yingjun-前缀 */
    .yingjun-gym-card {
      width: 100%;
      margin: 10px auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
      display: block;
      text-decoration: none;
      color: inherit;
	  
    }

    .yingjun-gym-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    /* 图片容器，添加yingjun-前缀 */
    .yingjun-gym-card__image {
      width: 100%;
      height: 300px;
      overflow: hidden;
    }

    .yingjun-gym-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .yingjun-gym-card:hover .yingjun-gym-card__image img {
      transform: scale(1.05);
      filter: brightness(0.8);
    }

    /* 文字内容容器，添加yingjun-前缀 */
    .yingjun-gym-card__content {
      padding: 24px;
      transition: background-color 0.3s ease;
	  background-color: #FAFBFB;
    }

    .yingjun-gym-card:hover .yingjun-gym-card__content {
      background-color: #f5f5f5;
    }

    /* 标题样式，添加yingjun-前缀 */
    .yingjun-gym-card__title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .yingjun-gym-card:hover .yingjun-gym-card__title {
      color: #2196F3;
    }

    /* 描述文字样式，添加yingjun-前缀 */
    .yingjun-gym-card__desc {
      color: #666;
      line-height: 1.5;
    }