/* color */
/* font */
/* transition */
@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.surgeryItem {
  align-items: center;
  display: flex;
  gap: 30px;
  border-bottom: 2px solid #627695;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative; }
  @media (max-width: 640px) {
    .surgeryItem {
      flex-direction: column; } }
  @media (min-width: 1181px) {
    .surgeryItem:hover .title {
      color: #9f947d; }
    .surgeryItem:hover .imgBox img {
      scale: 1.05; }
    .surgeryItem:hover .imgBox:before {
      content: "";
      position: absolute;
      opacity: 1; }
    .surgeryItem:hover .imgBox:after {
      content: "";
      position: absolute;
      opacity: 1; }
    .surgeryItem:hover .btn {
      transform: translateX(-15px); } }
  .surgeryItem .link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .surgeryItem .imgBox {
    padding: 10px 20px;
    position: relative;
    flex-shrink: 1;
    min-width: 300px; }
    .surgeryItem .imgBox img {
      position: relative;
      z-index: 3;
      max-width: 100%;
      object-fit: cover;
      aspect-ratio: 300/210;
      width: 300px;
      height: 210px;
      transition: all 0.5s ease-in-out; }
    .surgeryItem .imgBox:before {
      content: "";
      position: absolute;
      width: 40%;
      height: 105%;
      background-color: #8a9fc0;
      right: 0;
      top: -5%;
      border-top-right-radius: 24px;
      z-index: 1;
      opacity: 0;
      transition: all 0.5s ease-in-out; }
    .surgeryItem .imgBox:after {
      content: "";
      position: absolute;
      border: 1px dashed #fff;
      width: 95%;
      height: 95%;
      left: 0;
      top: 0;
      z-index: 2;
      opacity: 0;
      transition: all 0.5s ease-in-out; }
  .surgeryItem .title {
    font-size: 20px;
    font-weight: 700;
    color: #627695;
    letter-spacing: 3.2px;
    transition: all 0.5s ease-in-out; }
  .surgeryItem .text {
    color: #627695;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px; }
  .surgeryItem .btnBox {
    margin-top: 30px;
    justify-content: flex-end; }
  .surgeryItem .btn {
    width: 180px;
    min-width: 180px;
    height: 30px;
    padding: 0 15px; }
    .surgeryItem .btn span {
      font-size: 14px; }

.content {
  max-width: 700px;
  margin: 20px auto 0;
  padding-top: 40px; }
  .content .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2.08px;
    text-align: center;
    color: #627695; }
  .content .imgBox {
    position: relative;
    text-align: center;
    padding: 30px;
    margin-bottom: 60px; }
    .content .imgBox img {
      position: relative;
      z-index: 3;
      max-width: 100%;
      margin: auto;
      object-fit: cover;
      transition: all 0.5s ease-in-out; }
    .content .imgBox:before {
      content: "";
      position: absolute;
      width: 40%;
      height: 105%;
      background-color: #8a9fc0;
      right: 0;
      top: -2.5%;
      border-top-right-radius: 24px;
      z-index: 1; }
    .content .imgBox:after {
      content: "";
      position: absolute;
      border: 1px dashed #fff;
      width: 95%;
      height: 95%;
      left: 0;
      top: 0;
      z-index: 2; }
  .content .textEditor {
    color: #627695; }
    .content .textEditor ul {
      color: #5c76a1;
      font-weight: 600;
      list-style-type: disc;
      padding-left: 15px;
      letter-spacing: 1.6px;
      line-height: 2.25; }
  .content .contentBlockTitleBox {
    position: relative;
    margin-bottom: 60px; }
  .content .contentBlockTitle {
    font-size: 24px;
    font-weight: 700;
    color: #627695;
    position: relative;
    z-index: 2; }
  .content .contentBlockSubtitle {
    font-size: 70px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; }
  .content .contentBlockBox {
    margin: 30px 0;
    padding: 50px 0;
    text-align: center;
    border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff; }
    .content .contentBlockBox .caseList {
      padding: 60px 40px;
      border-radius: 60px;
      background-color: rgba(255, 255, 255, 0.7);
      box-shadow: 0px 3px 12.35px 0.65px rgba(73, 95, 131, 0.34);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px; }
    .content .contentBlockBox .caseItem {
      cursor: pointer;
      position: relative;
      font-size: 0; }
      @media (min-width: 1181px) {
        .content .contentBlockBox .caseItem:hover::before {
          opacity: 1; }
        .content .contentBlockBox .caseItem:hover::after {
          opacity: 1; } }
      .content .contentBlockBox .caseItem:before {
        content: "";
        position: absolute;
        background-color: rgba(43, 71, 118, 0.75);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        opacity: 0;
        transition: all 0.5s ease-in-out; }
      .content .contentBlockBox .caseItem:after {
        content: "";
        position: absolute;
        width: 28px;
        height: 28px;
        background-image: url("../assets/images/icon-search.png");
        background-size: contain;
        background-repeat: no-repeat;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        opacity: 0;
        transition: all 0.5s ease-in-out; }
    .content .contentBlockBox + .contentBlockBox {
      border-top: none;
      margin-top: 0; }
  .content .faqItem {
    margin-bottom: 20px; }
    .content .faqItem.open .questionBox {
      background-color: #fff;
      color: #627695; }
    .content .faqItem .questionBox {
      font-size: 20px;
      padding: 0 30px;
      background-color: #627695;
      border-radius: 24px;
      text-align: left;
      border: 1px solid #627695;
      color: #fff;
      letter-spacing: 3.2px;
      position: relative;
      z-index: 2;
      transition: all 0.5s ease-in-out;
      cursor: pointer; }
      .content .faqItem .questionBox em {
        font-size: 36px;
        font-weight: 700;
        color: currentColor;
        letter-spacing: 2.88px; }
    .content .faqItem .answerBox {
      text-align: left;
      align-items: flex-start;
      display: flex;
      gap: 16px;
      padding: 90px 25px 40px;
      background-color: #deebff;
      border-radius: 24px;
      transform: translateY(-54px);
      color: #627695;
      font-weight: 500;
      font-family: "Noto Serif TC", sans-serif;
      display: none; }
      .content .faqItem .answerBox em {
        font-family: "Cormorant", Noto Serif TC, sans-serif;
        line-height: 1;
        font-size: 70px;
        font-weight: 700;
        color: currentColor;
        transform: translateY(-10px); }
