* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f3;
}

.container {
  box-sizing: border-box;
  max-width: 1640px;
  min-width: 1240px;
  width: 100%;
  margin: 25px auto;
  color: #333;
}

.container * {
  box-sizing: border-box;
}

header {
  margin-bottom: 25px;
  text-align: center;
}

header h1 {
  font-size: 2.1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

.search-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.search-form {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
}

.search-tip{
  font-size: 15px;
  color: #666;
}

.input-group {
  display: flex;
  align-items: center;
}

.container label {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-right: 15px;
}

.container input,
.container select {
  min-width: 280px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  min-width: 200px;
}

button {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 12px 48px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  align-self: flex-end;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #ff5252;
}

.result-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  min-height: 200px;
}

.result-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.result-content {
  display: flex;
  gap: 30px;
}

.size-info {
  flex: 1;
}

.size-info h3{
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.clothing-tips {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.clothing-tips h3{
  font-size: 18px;
  margin-bottom: 15px;
}

.clothing-tips p{
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #555;
}

.content-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.content-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.content-section p{
  margin-top: 15px;
}

footer {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.notice.show {
  opacity: 1;
}

.feature-section {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
  text-align: center;
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 18px;
  color: #ff6b6b;
  margin-bottom: 10px;
}
