html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
.banner {
  height: 295px;
  text-align: center;
  background-image: url(../../img/article-template/banner-pc.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.banner .min-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.banner .wrap-h1 {
  font-size: 46px;
  color: #fff;
}
article {
  padding: 20px 0;
}
article .common-catalog {
  overflow: hidden;
  border-radius: 10px 10px;
  box-shadow: 0 4px 4px 0 rgba(154, 122, 39, 0.08);
  margin: 30px 0;
}
article .common-catalog_top {
  padding: 20px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  background: #F5A253;
}
article .common-catalog_top.active::after {
  transform: rotate(180deg);
}
article .common-catalog_top::after {
  content: '';
  width: 14px;
  height: 10px;
  transition: transform 0.3s;
  background: url(../../img/icon-catalog.svg) no-repeat center;
  background-size: 100% 100%;
  filter: brightness(10);
}
article .common-catalog_title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
article .common-catalog_list {
  background: #fff;
}
article .common-catalog_list .common-catalog_item,
article .common-catalog_list > li {
  list-style: none;
  padding: 10px 35px;
  line-height: 1.5;
}
article .common-catalog_list .common-catalog_item:hover,
article .common-catalog_list > li:hover {
  background: #FFFAF6;
}
article .common-catalog_list .common-catalog_item:hover .common-catalog_link,
article .common-catalog_list > li:hover a {
  color: #F5A253;
}
article .common-catalog_list .common-catalog_item .common-catalog_link,
article .common-catalog_list > li a {
  font-size: 18px;
  color: #616161;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  article .common-catalog {
    border-radius: 10rem;
  }
  article .common-catalog_top {
    border-radius: 10rem 10rem 0 0;
  }
  article .common-catalog_top::after {
    width: 18rem;
    height: 10rem;
  }
  article .common-catalog_title {
    font-size: 16rem;
  }
  article .common-catalog_list .common-catalog_item,
  article .common-catalog_list > li {
    padding: 10rem 30rem;
  }
  article .common-catalog_list .common-catalog_item .common-catalog_link,
  article .common-catalog_list > li a {
    font-size: 16rem;
  }
}

article .ask-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
article .ask-box_list {
  box-sizing: border-box;
  width: 445px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  background: #fffdf9;
  padding: 20px;
}
article .ask-box_list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
article .ask-box_list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url(../../img/article-template/ask-point.svg);
  background-size: contain;
}
article .ask-box_list li a {
  flex: 1;
  font-size: 18px;
  line-height: 2;
  color: #393939;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color linear 100ms;
}
article .ask-box_list li a:hover {
  color: #f5a253;
}
article .ask-box_img {
  flex-shrink: 0;
}
article .tips-box {
  border-radius: 4px;
  background: #fff7f0;
  margin-bottom: 40px;
  padding: 16px;
}
article .tips-box_title {
  display: flex;
  gap: 8px;
  font-weight: 400;
  color: #393939;
  font-size: 20px;
  margin-bottom: 10px;
}
article .tips-box_title::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: url(../../img/article-template/tips-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
article .tips-box .tips-box_list,
article .tips-box ul {
  padding-left: 55px;
}
article .tips-box .tips-box_list li,
article .tips-box ul li {
  list-style: disc;
  font-weight: 300;
  font-size: 18px;
  line-height: 2;
  color: #f5a253;
}
article .tips-box .tips-box_list li a:hover,
article .tips-box ul li a:hover {
  text-decoration: underline;
}
article .table-box.table-row {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  margin: 20px 0;
  padding-bottom: 10px;
}
article .table-box.table-row table {
  width: auto;
  border-collapse: collapse;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
article .table-box.table-row table tr:nth-child(odd) {
  background: #f7f7f7;
}
article .table-box.table-row table th {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  border: 1px solid #475a7a;
  border-bottom-color: #e6e6e6;
  background: #475a7a;
  padding: 16px 0;
}
article .table-box.table-row table td {
  box-sizing: border-box;
  min-width: 250px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #393939;
  border: 1px solid #e6e6e6;
  padding: 16px;
  text-align: center;
}
article .table-box.table-row table td:first-child {
  width: 380px;
  padding-left: 32px;
  text-align: left;
}
article .table-box.table-row::-webkit-scrollbar {
  max-width: 100px;
  height: 15px;
}
article .table-box.table-row::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}
article .table-box.table-row::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #475a7a;
}
article .table-box.table-column {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  margin: 20px 0;
  padding-bottom: 10px;
}
article .table-box.table-column table {
  width: auto;
  border-collapse: inherit;
  box-sizing: border-box;
}
article .table-box.table-column table tr:first-child td {
  border-bottom: none;
}
article .table-box.table-column table tr:first-child td:first-child {
  border-radius: 6px 0 0 0;
}
article .table-box.table-column table tr:first-child td:last-child {
  border-radius: 0 6px 0 0;
}
article .table-box.table-column table tr:last-child td {
  border-top: none;
}
article .table-box.table-column table tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}
article .table-box.table-column table tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}
article .table-box.table-column table td {
  min-width: 140px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #393939;
  border: 1px solid #e6e6e6;
  border-left: none;
  padding: 16px;
  text-align: center;
}
article .table-box.table-column table td:first-child {
  width: 130px;
  font-size: 18px;
  color: #fff;
  padding-left: 32px;
  background: #475a7a;
  padding: 16px 12px;
  border-left: 1px solid #e6e6e6;
}
article .table-box.table-column::-webkit-scrollbar {
  max-width: 100px;
  height: 15px;
}
article .table-box.table-column::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}
article .table-box.table-column::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #475a7a;
}
article .enquire-btn {
  display: block;
  font-size: 18px;
  color: #fff;
  border-radius: 80px;
  background: linear-gradient(90deg, #f6d365 0%, #fda085 100%), linear-gradient(90deg, #f78ca0 0%, #f9748f 19%, #fd868c 60%);
  padding: 20px 35px;
  margin: 50px auto 65px;
  transition: transform linear 300ms;
}
article .enquire-btn:hover {
  transform: scale(1.05);
}
article .min-container > h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: #080808;
  margin: 90px 0 20px;
}
article .min-container > h3 {
  font-size: 26px;
  line-height: 1.5;
  color: #f5a253;
  margin-bottom: 20px;
}
article .min-container > p {
  font-size: 18px;
  line-height: 1.8;
  color: #393939;
  margin-bottom: 20px;
  font-weight: 300;
}
article .min-container > p.citation {
  font-size: 12px;
  color: #797979;
}
article .min-container > img,
article .min-container > p img {
  display: block;
  max-width: 650px;
  height: 400px;
  /*object-fit: cover;*/
  margin: 65px auto;
  border-radius: 20px;
  border: 2px solid #ebebeb;
}
article .min-container > p a{
  color: #f5a253;
}
article .min-container > ul,
article .min-container > ol{
  list-style-type: revert;
  padding: 20px;
}
article .min-container > ul li,
article .min-container > ol li {
  font-size: 18px;
  line-height: 1.8;
}
article .min-container > ul li a,
article .min-container > ol li a{
  color: #f5a253;
}
#common-popup {
  display: none;
  position: fixed;
  z-index: 991;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#common-popup .close-btn {
  display: inline-block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  color: rgba(230, 230, 230, 0.7);
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
  margin: 20px 60px 20px auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #common-popup {
    width: 100%;
    height: 100%;
  }
  #common-popup .close-btn {
    width: 50rem;
    height: 50rem;
    font-size: 40rem;
    margin: 20rem 20rem 20rem auto;
  }
}
.common-form {
  width: 858px;
  border-radius: 16px 0px 16px 16px;
  background: #fff;
  padding: 36px 54px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .common-form {
    flex-direction: column;
  }
}
.common-form.popup {
  border-radius: 16px;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.common-form.popup::before,
.common-form.popup::after {
  display: none;
}
.common-form::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  right: -16px;
  top: 0;
  background-color: #fff;
}
.common-form::after {
  content: '';
  position: absolute;
  background-image: url(../../img/index/form-right.png);
  width: 33px;
  height: 121px;
  right: -33px;
  top: 0;
}
.common-form_tips {
  font-size: 20px;
  font-weight: normal;
  color: #171717;
  font-style: italic;
  flex: 0 0 100%;
  margin-bottom: 30px;
  display: inline-block;
  text-align: left;
  width: 100%;
}
.common-form_item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}
.common-form_item.half {
  flex: 0 0 353px;
}
.common-form_pact {
  display: flex;
  align-items: flex-start;
}
.common-form_pact .common-form_checkbox {
  border-radius: 3.276px;
  border: 1px solid #d9d9d9;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
}
.common-form_pact .common-form_label {
  flex-grow: 1;
  margin-left: 9px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: normal;
  color: #393939;
  line-height: 1.5;
}
.common-form_label {
  font-size: 20px;
  font-weight: normal;
  color: #171717;
  margin-bottom: 20px;
  display: inline-block;
}
.common-form_input {
  box-sizing: border-box;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: transparent;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: normal;
  color: #404040;
}
.common-form_input::placeholder {
  font-size: 20px;
  font-weight: 300;
  color: #959595;
}
.common-form_input.error {
  border: 1px solid #d04c3f;
}
.common-form_error {
  margin-top: 10px;
  min-height: 17px;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  color: #D04C3F;
}
.common-form_submit {
  border-radius: 50px;
  padding: 22px 0;
  width: 317px;
  text-align: center;
  background: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
  font-size: 26px;
  font-weight: normal;
  color: #FFF;
  margin: 0 auto;
}
.common-form_submit:hover {
  background: linear-gradient(90deg, #ffd44f 0%, #f47652 100%);
}
.common-form .file-box {
  border-radius: 8px;
  border: 2px dashed #152e56;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  width: 100%;
}
.common-form .file-box_placeholder {
  font-size: 20px;
  font-weight: 300;
  color: #959595;
}
.common-form .file-box_collect {
  display: none;
  align-items: center;
}
.common-form .file-box_collect .img-box {
  margin-left: 10px;
  position: relative;
}
.common-form .file-box_collect .img-box_file {
  object-fit: contain;
}
.common-form .file-box_collect .img-box_close {
  position: absolute;
  right: -5px;
  top: -5px;
  padding: 5px;
  border-radius: 50%;
  background: #747474;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
  width: 10px;
  height: 10px;
}
.common-form .file-box_upload {
  background-image: url(../../img/folder.svg);
  background-size: 100% 100%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.common-form .file-box_file {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.common-form .file-box_tips {
  font-size: 14px;
  font-weight: normal;
  color: #F5A253;
  display: inline-block;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .common-form {
    width: 100%;
    border-radius: 16rem;
    padding: 25rem 16rem 40rem 16rem;
    flex-wrap: nowrap;
  }
  .common-form::after,
  .common-form::before {
    display: none;
  }
  .common-form_tips {
    font-size: 16rem;
    margin-bottom: 30rem;
    flex: unset;
  }
  .common-form_item {
    flex: unset;
    margin-bottom: 15rem;
    width: 100%;
  }
  .common-form_item.half {
    flex: unset;
  }
  .common-form_pact .common-form_checkbox {
    border-radius: 3.276rem;
    border: 1rem solid #d9d9d9;
    width: 19rem;
    height: 19rem;
    flex: 0 0 19rem;
    margin-top: 2rem;
  }
  .common-form_pact .common-form_label {
    flex-grow: 1;
    margin-left: 9rem;
    margin-bottom: 0;
    font-size: 14rem;
  }
  .common-form_label {
    font-size: 16rem;
    margin-bottom: 12rem;
  }
  .common-form_input {
    border-radius: 8rem;
    border: 1rem solid #d9d9d9;
    padding: 13rem;
    font-size: 16rem;
  }
  .common-form_input::placeholder {
    font-size: 14rem;
  }
  .common-form_input.error {
    border: 1rem solid #d04c3f;
  }
  .common-form_error {
    margin-top: 10px;
    min-height: 17px;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    color: #D04C3F;
  }
  .common-form_submit {
    border-radius: 50rem;
    padding: 22rem 0;
    width: 277rem;
    text-align: center;
    font-size: 20rem;
  }
  .common-form .file-box {
    border-radius: 8rem;
    border: 2rem dashed #152e56;
    flex-direction: row;
    padding: 13rem;
  }
  .common-form .file-box_placeholder {
    font-size: 14rem;
  }
  .common-form .file-box_upload {
    width: 23rem;
    height: 23rem;
  }
  .common-form .file-box_tips {
    font-size: 12rem;
    margin-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    height: 295rem;
    background-image: url(../../img/article-template/banner-mobile.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .banner .wrap-h1 {
    font-size: 36rem;
    line-height: 1.5;
  }
  article {
    padding: 20rem 0;
  }
  article .ask-box {
    flex-flow: column wrap;
    gap: 30rem;
    margin-bottom: 50rem;
  }
  article .ask-box_list {
    order: 1;
    width: 345rem;
    gap: 15rem;
    border-radius: 5rem;
    border: 1rem solid #e1e1e1;
    padding: 12rem;
  }
  article .ask-box_list li {
    gap: 10rem;
  }
  article .ask-box_list li::before {
    width: 10rem;
    height: 10rem;
  }
  article .ask-box_list li a {
    font-size: 14rem;
  }
  article .ask-box_img {
    order: 3;
    width: 345rem;
    height: auto;
  }
  article .tips-box {
    border-radius: 4rem;
    margin-bottom: 40rem;
    padding: 16rem;
  }
  article .tips-box_title {
    gap: 8rem;
    font-size: 18rem;
    margin-bottom: 10rem;
  }
  article .tips-box_title::before {
    width: 20rem;
    height: 20rem;
  }
  article .tips-box .tips-box_list,
  article .tips-box ul {
    padding-left: 40rem;
  }
  article .tips-box .tips-box_list li,
  article .tips-box ul li {
    font-size: 16rem;
  }
  article .table-box.table-row {
    margin: 20rem 0;
    padding-bottom: 10rem;
  }
  article .table-box.table-row table {
    border-radius: 8rem 8rem 0 0;
  }
  article .table-box.table-row table th {
    font-size: 16rem;
    border-width: 1rem;
    padding: 16rem 0;
  }
  article .table-box.table-row table td {
    min-width: 250rem;
    font-size: 14rem;
    border-width: 1rem;
    padding: 16rem;
  }
  article .table-box.table-row table td:first-child {
    width: 380rem;
    padding-left: 32rem;
  }
  article .table-box.table-row::-webkit-scrollbar {
    height: 10rem;
  }
  article .table-box.table-row::-webkit-scrollbar-track {
    border-radius: 10rem;
  }
  article .table-box.table-row::-webkit-scrollbar-thumb {
    border-radius: 10rem;
  }
  article .table-box.table-column {
    margin: 20rem 0;
    padding-bottom: 10rem;
  }
  article .table-box.table-column table tr:first-child td:first-child {
    border-radius: 6rem 0 0 0;
  }
  article .table-box.table-column table tr:first-child td:last-child {
    border-radius: 0 6rem 0 0;
  }
  article .table-box.table-column table tr:last-child td:first-child {
    border-radius: 0 0 0 6rem;
  }
  article .table-box.table-column table tr:last-child td:last-child {
    border-radius: 0 0 6rem 0;
  }
  article .table-box.table-column table td {
    min-width: 140rem;
    font-size: 14rem;
    border-width: 1rem;
    padding: 16rem;
  }
  article .table-box.table-column table td:first-child {
    width: 130rem;
    font-size: 16rem;
    padding-left: 32rem;
    padding: 16rem 12rem;
    border-width: 1rem;
  }
  article .table-box.table-column::-webkit-scrollbar {
    height: 10rem;
  }
  article .table-box.table-column::-webkit-scrollbar-track {
    border-radius: 10rem;
  }
  article .table-box.table-column::-webkit-scrollbar-thumb {
    border-radius: 10rem;
  }
  article .enquire-btn {
    width: 100%;
    font-size: 14rem;
    text-align: center;
    border-radius: 80rem;
    padding: 16rem 0;
    margin: 35rem auto;
  }
  article .min-container > h2 {
    font-size: 28rem;
    margin: 90rem 0 20rem;
  }
  article .min-container > h3 {
    font-size: 20rem;
    margin-bottom: 20rem;
  }
  article .min-container > p {
    font-size: 14rem;
    margin-bottom: 20rem;
  }
  article .min-container > p.citation {
    font-size: 12rem;
  }
  article .min-container > img,
  article .min-container > p img {
    max-width: 345rem;
    height: 215rem;
    margin: 50rem auto;
    border-radius: 10rem;
    border: 1rem solid #ebebeb;
  }
  article .min-container > ul{
    padding: 20rem;
  }
  article .min-container > ul li,
  article .min-container > ol li{
    font-size: 14rem;
    line-height: 2.8;
  }
}
