.styled-list {
    list-style-type: disc; /* Default bullet points */
    padding-left: 20px; /* Add some space on the left */
    margin: 20px 0;
	color:#2A2A2A;
}

.styled-list > li {
    padding: 6px 0; /* Spacing between list items */
    font-family: Arial, sans-serif;
}

.styled-list > li strong {
    color: #2cb8a5; /* Green color for emphasized text */
}

.styled-list ul {
    padding-left: 20px; /* Indentation for nested lists */
}

.styled-list ul li {
    padding: 4px 0; /* Less padding for nested items */
    font-size: 0.95em; /* Slightly smaller font size for nested items */
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin: 20px 0;
    background-color: #e0f8f4; 
    color: #2A2A2A;
}

.styled-table th {
    background-color: #2cb8a5; 
    color: white; 
}

.styled-table tbody tr:nth-child(even) {
    background-color: #b3ede4; 
}

.styled-table tbody tr:hover {
    background-color: #89dccf; 
}

.styled-table td, .styled-table th {
    padding: 12px;
    border: 1px solid #7ccfc1; 
}
/* Recommendation Heading */
.recommendation-heading {
  font-size: 24px;
  margin: 20px 0 10px 0; /* Space above and below the heading */
  font-weight: bold;
  text-align: left;
}

/* Recommendation Section Styling */
.recommended-article {
  background-color: #e8f5e9; /* Light greenish background */
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 40px 0; /* Margin only at the bottom */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-image img {
  width: 200px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.article-details {
  flex: 1;
}

.article-title {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #2cb8a5; /* Updated title color */
}

.article-description {
  font-size: 16px;
  color: #555;
  margin: 0 0 15px 0;
}

.article-link-container {
  text-align: right; /* Align link to the right */
}

.article-link {
  font-size: 16px;
  color: #2cb8a5; /* Updated link color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: #1b5e20; /* Darker green on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .recommendation-heading {
    font-size: 22px; /* Slightly smaller on mobile */
    text-align: center; /* Center heading on smaller screens */
  }

  .article-container {
    flex-direction: column;
    text-align: center;
  }

  .article-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .article-title {
    font-size: 20px;
  }

  .article-description {
    font-size: 14px;
  }

  .article-link-container {
    text-align: center; /* Center link on smaller screens */
  }
}


.buy-one-wrapper {
        position: relative;
    max-width: 1200px;    /* 控制整体宽度 */
    margin: 20px auto;    /* 上下20px，水平居中 */
    padding: 0 20px;
    }
    
    .buy-one-container {
        background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .buy-one-content {
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .buy-one-header {
        width: 80%;
        padding-right: 30px;
        box-sizing: border-box;
    }
    
    .buy-one-title {
        font-size: 30px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .buy-one-subtitle {
        font-size: 18px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .buy-one-discount {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #ff0000;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 28px;
        font-weight: bold;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    .buy-one-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #45a049;
        color: white !important;
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 75px;
		margin-top: 25px;
        flex-shrink: 0;
    }
    
    .buy-one-button:hover {
        background-color: #45a049;
    }
    
    .buy-one-icon {
        margin-right: 8px;
    }

    @media (max-width: 768px) {
        .buy-one-content {
            flex-direction: column;
        }
        
        .buy-one-header {
            width: 100%;
            padding-right: 0;
            margin-bottom: 20px;
        }
        
        .buy-one-title {
            font-size: 28px;
        }
        
        .buy-one-subtitle {
            font-size: 16px;
        }
        
        .buy-one-button {
            margin-left: 0;
            width: 100%;
        }
        
        .buy-one-discount {
            font-size: 16px;
            padding: 6px 15px;
        }
    }

    @media (max-width: 480px) {
        .buy-one-container {
            padding: 20px;
        }
        
        .buy-one-title {
            font-size: 24px;
        }
        
        .buy-one-button {
            font-size: 16px;
            padding: 12px 25px;
        }
    }