/*============pop============*/
.PC #free_pop {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 999;
}

.MOBILE #free_pop {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 999;
}
.PC .popup {
  position: fixed;
  z-index: 20;
  max-width: 85%;
  width: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 50%);
  border-radius: 10px;
}

.MOBILE .popup {
  position: fixed;
  z-index: 20;
  max-width: 95%;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 50%);
  border-radius: 10px;
}

/*============pop============*/

/*============pop標題============*/
.popup_header {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #9300d7;
}

/*標題群組*/
.title_group {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 0 0 2%;
}

/*標題*/
.popup .title_img img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.popup .title_bar {
  font-size: 1.4rem;
  line-height: 42px;
  font-weight: bold;
  color: #9300d7;
}
.MOBILE .popup .title_bar {
  font-size: 1.2rem;
}

/*關閉按鈕容器*/
.close {
  width: 45px;
  height: 45px;
  overflow: hidden;
  position: fixed;
  right: 0px;
  top: -50px;
}

.close a {
  display: block;
  width: 45px;
  height: 45px;
  font-size: 24px;
  position: relative;
  text-indent: -9999px;
}

.popup .close a::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 3px;
  top: 10px;
  right: 50%;
  background-color: #fff;
  color: #fff;
  transform: translate(50%) rotate(45deg);
}

.popup .close a::after {
  content: "";
  position: absolute;
  height: 30px;
  width: 3px;
  top: 10px;
  right: 50%;
  background-color: #fff;
  color: #fff;
  transform: translate(50%) rotate(315deg);
}

/*============pop內容區塊============*/
.model_content {
  width: 100%;
  height: 250px;
  overflow: auto;
  box-sizing: border-box;
  max-height: 500px;
  padding: 3%;
}

/*============產品能算什麼項目============*/
.pr_item {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.pr_item ul {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  list-style-type: disc;
  padding: 0 0 0 20px;
}
.MOBILE .pr_item ul {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  list-style-type: disc;
  padding: 0 0 0 21px;
}
.PC .pr_item li {
  width: 48%;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}
.MOBILE .pr_item li {
  width: 100%;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}

/*============pop表尾區塊============*/
.model_footer {
  width: 95%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

.model_footer .bt_group {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.model_footer .bt_group ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  padding: 10px 0;
}

.model_footer .bt_group li {
  width: 48%;
}

.model_footer .bt_group li a {
  display: block;
  width: 100%;

  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
}
.bt_group .confirm {
  color: #ffffff;
  background-color: #ef4848;
}
.bt_group .free_trial {
  color: #333;
  background-color: #f6d35c;
}
.bt_group .confirm:hover {
  background-color: #be1515;
}
.bt_group .free_trial:hover {
  color: #333;
  background-color: #edc127;
}

.model_footer .bt_group span.s_text {
  font-size: 0.9rem;
}
.model_footer .bt_group span.b_text {
  font-size: 1.1rem;
}
