
        /* 完全隔离的样式 - 不会影响其他模板 */
        .training-mats-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        .training-mats-container {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.5;
            padding: 15px;
            max-width: 1000px;
            margin: 20px auto;
            border: 1px solid #ddd;
        }
        
        .training-mats-section {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        
        .training-mats-container h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #ddd;
            font-size: 22px;
        }
        
        .training-mats-product {
            margin-bottom: 25px;
            padding: 15px;
        }
        
        .training-mats-img {
            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
            margin: 0 auto 15px;
        }
        
        .training-mats-title {
            color: #2980b9;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .training-mats-desc {
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .training-mats-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 18px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 16px;
        }
        
        .training-mats-btn:hover {
            background: #2980b9;
        }
        
        .training-mats-footer {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            color: #7f8c8d;
            font-size: 14px;
        }

        .training-mats-header {
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
            background: #2c3e50;
            color: white;
            border-radius: 5px;
        }

        .training-mats-header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .training-mats-header p {
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }
    