<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.part-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.part-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.branch-plan-list {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.plan-table-wrapper {
  overflow: hidden;
}

.plan-table {
  display: flex;
  transition: transform 0.5s ease;
}

.plan {
  flex: 0 0 380px;
  margin: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan::before {
  content: "ä¼˜æƒ&nbsp;!";
  position: absolute;
  top: 20px;
  right: -25px;
  background-color: #ff0000;
  color: white;
  padding: 0 40px;
  transform: rotate(45deg);
  font-size: 0.9rem;
  z-index: 1;
}

.plan-l {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.h {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c8c8c8;
}

.h em {
  color: #0099ff;
  font-style: normal;
  margin-left: 10px;
}

.h-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.vo-service-list {
  list-style-type: none;
  padding-left: 0;
  flex-grow: 1;
}

.vo-service-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
}

.vo-service-list li::before {
  content: "â—†";
  color: #0099ff;
  position: absolute;
  left: 0;
}

.price12 {
  background-color: #f8f8f8;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price12-hkd {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0000;
}

.price12-hkd em {
  font-size: 1rem;
  font-style: normal;
}

.tip {
  font-size: 0.8rem;
  color: #666;
}

.apply {
  background-color: #0099ff;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.plan_prev,
.plan_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  z-index: 10;
}

.plan_prev {
  left: -50px;
}

.plan_next {
  right: -50px;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: #0099ff;
}

@media (max-width: 1360px) {
  .part-bottom {
    /* max-width: 100%; */
    /* padding: 20px; */
  }

  .branch-plan-list {
    width: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .plan {
    flex: 0 0 360px;
  }
}

@media (max-width: 768px) {
  .branch-plan-list {
    width: 360px;
  }

  .plan {
    flex: 0 0 340px;
    margin: 0 10px;
  }

  .plan_prev,
  .plan_next {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .plan_prev {
    left: -15px;
  }

  .plan_next {
    right: -15px;
  }
}
</pre></body></html>