.select_main {
  padding: 4.9rem 0 20rem;
}
.select_main .content {
  max-width: 120rem;
}
.select_main .head h2 {
  font-size: 3.6rem;
  letter-spacing: 0.09rem;
  font-weight: 600;
}
.select_main .box {
  margin-top: 6rem;
}
.select_main .box .title {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1.7rem;
}
.select_main .box .title h3 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.select_main .box .title p {
  font-size: 1.7rem;
  color: var(--text);
  margin-top: 1.7rem;
  padding-bottom: 0.4rem;
}
.select_main .box .title p strong {
  font-weight: 400;
  color: var(--title);
}
.select_main .box + .box {
  margin-top: 6.8rem;
}
.select_main .quote_form {
  margin-top: 3.2rem;
}
.select_main .list {
  margin-top: 3rem;
}
.select_main .list.package_list .img img {
  filter: unset;
}
.select_main .list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  gap: 2.7rem 1.6666667%;
}
.select_main .list li {
  cursor: pointer;
}
.select_main .list li:hover img {
  transform: scale(1.02);
}
.select_main .list .active .img {
  background-color: #fff;
}
.select_main .list .active .img::after {
  opacity: 1;
}
.select_main .list .active .img i {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.select_main .list .active .img i::after {
  transform: scale(0.42);
  opacity: 1;
}
.select_main .list .img {
  background-color: var(--bg);
  --radius: 1.4rem;
  border-radius: var(--radius);
  padding-bottom: 100%;
  transition: all 0.3s;
}
.select_main .list .img img {
  filter: drop-shadow(0 0.5rem 0.2rem rgba(0, 0, 0, 0.2));
}
.select_main .list .img::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 0.3rem solid var(--secondary);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.select_main .list .img i {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid #161616;
  transition: all 0.3s;
  right: 4.9%;
  bottom: 5.36%;
}
.select_main .list .img i::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
.select_main .list .name {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.2rem;
}
.select_main .other_size {
  margin-top: 4.1rem;
}
.select_main .other_size.active .size i::before {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.select_main .other_size.active .size i::after {
  opacity: 1;
  transform: scale(0.4);
}
.select_main .other_size .label {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #161616;
  letter-spacing: 0.02rem;
  margin-bottom: 2rem;
}
.select_main .other_size .size {
  width: 48.25%;
  border-radius: 0.6rem;
  border: 1px solid #c1c1c1;
  height: 5.3rem;
  display: grid;
  grid-template-columns: 4.2rem 1fr;
}
.select_main .other_size .size:focus-within {
  border-color: var(--secondary);
}
.select_main .other_size .size input {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: var(--title);
  background-color: transparent;
  padding: 0 0.6rem;
}
.select_main .other_size .size input::placeholder {
  color: #969696;
}
.select_main .other_size .size i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.select_main .other_size .size i::before,
.select_main .other_size .size i::after {
  position: absolute;
  width: 28.6%;
  padding-bottom: 28.6%;
  border-radius: 50%;
  content: '';
  transition: all 0.3s;
}
.select_main .other_size .size i::before {
  border: 1px solid #333333;
}
.select_main .other_size .size i::after {
  background-color: #fff;
  opacity: 0;
}
.select_main .times {
  margin-top: 4.2rem;
}
.select_main .times ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3.5%;
}
.select_main .times li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  cursor: pointer;
  border: 1px solid #c1c1c1;
  gap: 2rem;
  border-radius: 0.6rem;
  transition: all 0.3s;
  padding: 1.5rem 1.5rem 1.6rem;
}
.select_main .times li::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 0.6rem;
  border: 0.3rem solid var(--secondary);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.select_main .times li.active::after {
  opacity: 1;
}
.select_main .times li.active i {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.select_main .times li.active i::after {
  transform: scale(0.42);
  opacity: 1;
}
.select_main .times i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1px solid #161616;
  transition: all 0.3s;
  margin-top: 0.3rem;
}
.select_main .times i::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
.select_main .times h4 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #121415;
  margin-top: 0;
}
.select_main .times p {
  color: #969696;
  margin-top: 0.8rem;
}
.select_main .btn {
  margin-top: 6.4rem;
  min-width: 24rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .select_main .content {
    max-width: 896px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .select_main .content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .select_main {
    padding: 50px 0;
  }
  .select_main .head h2 {
    font-size: 22px;
    letter-spacing: unset;
  }
  .select_main .box {
    margin-top: 40px;
  }
  .select_main .box .title {
    padding-bottom: 10px;
  }
  .select_main .box .title h3 {
    font-size: 18px;
    letter-spacing: unset;
  }
  .select_main .box .title p {
    font-size: 14px;
    margin-top: 12px;
    padding-bottom: 0;
  }
  .select_main .box + .box {
    margin-top: 40px;
  }
  .select_main .quote_form {
    margin-top: 20px;
  }
  .select_main .list {
    margin-top: 20px;
  }
  .select_main .list ul {
    gap: 30px 16px;
    grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
  }
  .select_main .list .img {
    --radius: 10px;
  }
  .select_main .list .img i {
    width: 18px;
    height: 18px;
  }
  .select_main .list .name {
    font-size: 16px;
    margin-top: 10px;
  }
  .select_main .other_size {
    margin-top: 20px;
  }
  .select_main .other_size .label {
    font-size: 16px;
    letter-spacing: unset;
    margin-bottom: 10px;
  }
  .select_main .other_size .size {
    height: 46px;
    grid-template-columns: 40px 1fr;
  }
  .select_main .other_size .size input {
    font-size: 14px;
    padding: 0 14px;
  }
  .select_main .times {
    margin-top: 20px;
  }
  .select_main .times ul {
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 16px;
  }
  .select_main .times li {
    padding: 14px;
    gap: 14px;
  }
  .select_main .times i {
    width: 18px;
    height: 18px;
    margin-top: 0;
  }
  .select_main .times h4 {
    font-size: 16px;
  }
  .select_main .times p {
    margin-top: 5px;
  }
  .select_main .btn {
    margin-top: 40px;
    min-width: 180px;
  }
}
@media screen and (max-width: 576px) {
  .select_main .other_size .size {
    width: 100%;
  }
}
