@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: "微軟正黑體" !important;
  line-height: 1.5em;
  background-image: url(../img/background.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  outline: none;
  /* hlbr:expression(this.onFocus=this.blur());		 */
}

a img {
  border: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}
@media (max-width: 575px) {
  #swal2-title {
    font-size: 24px;
  }
}
iframe {
  max-width: 100%;
}
.must_write_symbol {
  color: red;
  font-size: 24px;
}
/* img 套件 */
.img_title button {
  display: none !important;
}
.dropify-infos {
  display: none !important;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000000 !important; /* 將文字顏色設置為黑色 */
  font-family: "微軟正黑體" !important;
}
.select_arrow {
  font-size: 36px;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  right: 0px;
  color: #442825;
  pointer-events: none; /* 避免覆蓋原始日曆選擇器 */
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* 預設日期數字樣式 */
input[type="date"]::placeholder {
  font-family: "微軟正黑體";
  color: transparent;
  font-weight: normal;
}
/* 選擇後日期數字樣式 */
input[type="date"]:valid {
  font-weight: bold;
  font-family: "微軟正黑體";
  color: black;
  font-weight: normal;
}
/* 解決ios手機css無法控制的問題! */
input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  text-align: left;
}
/* 隱藏數字輸入框的上下按鈕 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

input {
  padding-left: 15px;
  font-size: 18px;
  border-radius: 0px;
}
@media (max-width: 575px) {
  input {
    font-size: 16px;
  }
}
.img_reverse {
  transform: scale(-1);
}
.recaptcha_box {
  display: flex;
  justify-content: center;
  padding-bottom: 41px;
  padding-top: 11px;
}
/* select2 */
.select2-selection__arrow {
  display: none;
}
/* sign */
/* 364 * 224 */
#sign_canvas {
  height: 100%;
  width: 100%;
}
@media (max-width: 575px) {
  #sign_canvas {
    width: 100%;
    height: calc((100vw - 100px) / (364 / 224));
  }
}
#canvas-wrapper {
  height: 100%;
}
canvas {
  background-color: white; /* 或者设置为 white */
}
/* head_account */
#gotop {
  position: fixed;
  right: 2%;
  bottom: 5%;
  display: none;
  z-index: 10;
}
.head_logo_box {
  display: block;
  margin-top: 18px;
  width: 180px;
}
@media (max-width: 575px) {
  .head_logo_box {
    margin-top: 14px;
    width: 127px;
  }
}
.head_logo_img {
  object-fit: cover;
  width: 100%;
}
.head_logo {
  width: 100%;
}

/* 語系按鈕 */
.nav_lang_item {
  position: relative;
  padding: 4px 0;
}

.nav_lang_item_text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #442825;
  cursor: pointer;
  font-size: 25px;
  transition: all 0.3s;
}

.nav_lang_item_text:hover {
  color: var(--main);
}
.nav_lang_item_text img {
  object-fit: contain;
  width: 30px;

}
.nav_lang_item_text > i {
  font-size: 28px;
  transform: rotate(90deg);
  color: #442825;
}
@media (max-width: 767px) {
  .nav_lang_item {
    padding: 4px 12px 4px 0px;
  }
  .nav_lang_item_text {
    font-size: 18px;
    gap: 8px;
  }
  .nav_lang_item_text > i {
    font-size: 20px;
  }
}
.nav_lang_drop_item {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 70px;
  z-index: 25;
  background-color: #8d5e5b;
  text-align: center;
  display: none;
  border-radius: 5px;
  overflow: hidden;
}
.nav_lang_drop_item i {
  color: #8d5e5b;
  font-size: 20px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.nav_lang_drop_item_link {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  color: #fff;
  /* border-bottom: 1px solid #fff; */
  padding: 10px 4px;
  font-size: 20px;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav_lang_drop_item_link {
    font-size: 16px;
  }
}
.nav_lang_drop_item_link:last-child {
  border-bottom: none;
}
.nav_lang_drop_item_link:hover {
  background-color: #fff;
  color: #8d5e5b;
}

/* 頁碼 */
.pagenate {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.datepicker {
  position: relative;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 美化年份和月份下拉框 */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 50%;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  border-radius: 4px;
  margin: 5px 0;
}

/* 調整日期選擇器面板的樣式 */
.ui-datepicker {
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
}

/* 改變日期選擇器底部按鈕面板樣式 */
.ui-datepicker-buttonpane {
  background: #f1f1f1;
  border-top: 1px solid #ddd;
  padding: 10px;
  margin-top: 10px;
}

/* 調整按鈕樣式 */
.ui-datepicker-close,
.ui-datepicker-current {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.ui-datepicker-close:hover,
.ui-datepicker-current:hover {
  background-color: #0056b3;
}
/* 添加左箭頭圖示 */
/* .ui-datepicker .ui-datepicker-prev:before {
  content: "◀";
  font-size: 16px;
  display: block;
} */
/* 使用 Unicode 字符顯示右箭頭 */
/* .ui-datepicker .ui-datepicker-next:before {
  content: "▶";
  font-size: 16px;
  display: block;
} */
/*  */
/* ===== member_sign ===== */
/* container */
.member_sign_tip {
  font-size: 14px;
  color: #7d7d7d;
  padding-left: 5px;
}
.email_icon {
  font-size: 25px;
}
.user_icon {
  font-size: 19px;
}
.key_icon {
  width: 100%;
  padding: 8px;
}
.check_icon {
  font-size: 20px;
}
.member_sign {
  margin-top: 22px;
}
.member_title_box {
  display: flex;
  justify-content: center;
  padding-bottom: 41px;
}
.member_title_decorate {
  object-fit: contain;
  width: 193.5px;
}
@media (max-width: 767px) {
  .member_title_decorate {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .member_title_decorate {
    width: 100px;
  }
}
.member_title_text_box {
  text-align: center;
  padding: 0px 20px;
}
@media (max-width: 575px) {
  .member_title_text_box {
    padding: 0px 10px;
  }
}
.member_title_text_en {
  line-height: 40px;
  font-size: 30px;
  color: #442825;
  font-weight: bold;
}
@media (max-width: 575px) {
  .member_title_text_en {
    font-size: 20px;
    line-height: 28px;
  }
}
.member_title_text_cn {
  line-height: 33px;
  font-size: 25px;
  color: #442825;
}
@media (max-width: 575px) {
  .member_title_text_cn {
    font-size: 18px;
    line-height: 24px;
  }
}
.member_form {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.member_form_content {
  width: 533px;
}
@media (max-width: 767px) {
  .member_form_content {
    width: 100%;
  }
}
/* @media (max-width:575px) {
    .member_form_content{
        width: 368px;
    }
} */
/* .form_group{
    margin-bottom: 30px;
    width: 533px;
} */
.form_group {
  margin-bottom: 30px;
  width: 100%;
}
.form_group_margin_none {
  margin-bottom: 0px;
}
.member_label {
  display: block;
  color: #442825;
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
  padding-bottom: 5px;
}
@media (max-width: 575px) {
  .member_label {
    font-size: 16px;
  }
}
.member_input_box {
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  height: 50px;
  position: relative;
  background-color: #ffffff;
  width: 100%;
}
@media (max-width: 575px) {
  .member_input_box {
    height: 45px;
  }
}
.member_input_icon_box {
  width: 50px;
  background-color: #d88f83;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member_input_icon_box i {
  color: white;
}
.member_input {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}
/* @media (max-width:575px){
	.member_input{
        font-size: 16px;
    }
} */
.member_btn_box {
  text-align: center;
  margin-bottom: 38px;
}
.member_submit_btn {
  text-align: center;
  padding: 8px 47px;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.5s;
}
.member_submit_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.robot_box {
  margin-bottom: 41px;
}
.member_had_box {
  text-align: center;
}
.member_had_link {
  color: #442825;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 4.5px;
}
@media (max-width: 575px) {
  .member_had_link {
    font-size: 16px;
  }
}
.member_had_link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
/* member_footer */
.foot {
  padding-bottom: 103px;
}
@media (max-width: 1040px) {
  .foot {
    padding-bottom: 10px;
  }
}
.footer_member_box {
  display: flex;
  justify-content: end;
}
@media (max-width: 1040px) {
  .footer_member_box {
    flex-direction: column;
    align-items: center;
  }
}
.footer_account_member_box {
  display: flex;
  justify-content: center;
}
@media (max-width: 1040px) {
  .footer_account_member_box {
    flex-direction: column;
    align-items: center;
  }
}
.footer_member_terms_box {
  margin-right: 23px;
  display: flex;
}
@media (max-width: 1040px) {
  .footer_member_terms_box {
    margin-right: 0px;
  }
}
.footer_member_terms_link {
  font-size: 16px;
  color: #442825;
  text-decoration: none;
  border-right: 1px solid #442825;
  padding: 0px 9.5px;
}
.footer_member_terms_link:lang(en) {
  text-align: center;
}
@media (max-width: 1040px) {
  .footer_member_terms_link {
    margin-bottom: 10px;
  }
}
.footer_member_terms_link:hover {
  opacity: 0.7;
}
.footer_member_terms_link:first-of-type {
  padding-left: 0px;
}
@media (max-width: 1040px) {
  .footer_member_terms_link:first-of-type {
    padding-left: 9.5px;
  }
}
.footer_member_terms_link:last-of-type {
  border: none;
}
.footer_member_copy_text {
  font-size: 16px;
  color: #442825;
}
@media (max-width: 575px) {
  .footer_member_copy_text {
    font-size: 14px;
  }
}
.footer_member_by_text {
  font-size: 16px;
  color: #442825;
}
@media (max-width: 575px) {
  .footer_member_by_text {
    font-size: 14px;
  }
}
.footer_member_by_link {
  font-size: 16px;
  color: #442825;
  text-decoration: none;
}
.footer_member_by_link:hover {
  opacity: 0.7;
}
/* ===== member_login ===== */
.member_login {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .member_login {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .member_login {
    margin-top: 21px;
  }
}
.login_form {
  display: flex;
  justify-content: center;
  margin-bottom: 86px;
}
.member_login_title_box {
  margin: 0px auto;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .member_login_title_box {
    padding-bottom: 26px;
  }
}
@media (max-width: 575px) {
  .member_login_title_box {
    padding-bottom: 22px;
  }
}
.member_login_title_en_box {
  display: flex;
  gap: 20px;
  justify-content: center;
  height: 36px;
}
@media (max-width: 767px) {
  .member_login_title_en_box {
    height: 30px;
  }
}
@media (max-width: 575px) {
  .member_login_title_en_box {
    height: 24px;
  }
}
.member_login_title_en {
  font-size: 18px;
  font-weight: bold;
  color: #8d5e5b;
}
@media (max-width: 767px) {
  .member_login_title_en {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .member_login_title_en {
    font-size: 12px;
  }
}
.member_login_title_en_large {
  font-size: 27px;
  font-weight: bold;
  color: #d88f83;
}
@media (max-width: 767px) {
  .member_login_title_en_large {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .member_login_title_en_large {
    font-size: 18px;
  }
}
.member_login_title_cn {
  font-size: 35px;
  font-weight: bold;
  color: #442825;
  letter-spacing: 12px;
  display: flex;
  justify-content: center;
  padding-left: 14px;
  line-height: 43px;
  padding-top: 4px;
}
.member_login_title_cn:lang(en) {
  letter-spacing: 4px;
}
@media (max-width: 767px) {
  .member_login_title_cn {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .member_login_title_cn {
    font-size: 22px;
    line-height: 30px;
  }
}
.member_login_function_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  margin-bottom: 31px;
}
.member_login_forget_password {
}
.remind_acount_checkbox {
  color: #442825;
}
.forget_password_link {
  color: #757575;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4.5px;
}
@media (max-width: 767px) {
  .forget_password_link {
    font-size: 16px;
  }
}
.forget_password_link:hover {
  text-decoration: underline;
  opacity: 0.7;
}
/* ===== member_forget_password ===== */
.forget_password {
  margin-top: 168px;
}
@media (max-width: 767px) {
  .forget_password {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  .forget_password {
    margin-top: 22px;
  }
}
.forget_password_form {
  display: flex;
  justify-content: center;
  margin-bottom: 146px;
}
@media (max-width: 575px) {
  .forget_password_form {
    margin-bottom: 190px;
  }
}
.member_forget_title_box {
  display: flex;
  justify-content: center;
  padding-bottom: 93px;
}
@media (max-width: 767px) {
  .member_forget_title_box {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .member_forget_title_box {
    padding-bottom: 63px;
  }
}
.forget_form_group {
  margin-bottom: 67px;
  width: 100%;
}
@media (max-width: 767px) {
  .forget_form_group {
    margin-bottom: 55px;
  }
}
@media (max-width: 575px) {
  .forget_form_group {
    margin-bottom: 45px;
  }
}
/* ===== full page ===== */
.fullpage {
  margin-top: 38px;
}
.fullpage_title_box {
  display: flex;
  justify-content: center;
  padding-bottom: 38px;
}
.fullpage_content {
  font-size: 20px;
  color: #707070;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  /* 可以根據需求調整屏幕寬度 */
  .fullpage_content::-webkit-scrollbar {
    display: none; /* 隱藏滾動條 */
  }
}
/* ===== welcome ===== */
.welcome {
  margin-top: 63px;
  margin-bottom: 151px;
}
@media (max-width: 1040px) {
  .welcome {
    margin-top: 43px;
    margin-bottom: 103px;
  }
}
@media (max-width: 767px) {
  .welcome {
    margin-top: 33px;
    margin-bottom: 73px;
  }
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .nav {
    position: fixed;
    z-index: 25;
    background-color: #f2f2f2;
    left: 0px;
    padding: 0px 30px;
    box-shadow: 0px 3px 6px 0px rgba(201, 197, 201, 1);
  }
}
@media (max-width: 575px) {
  .mobile_margin_bottom {
    padding-bottom: 76px;
  }
}
.nav_menu_box {
  display: flex;
  gap: 35px;
  align-items: center;
}
@media (max-width: 575px) {
  .nav_menu_box {
    gap: 20px;
  }
}
.user_name {
  font-size: 25px;
  font-weight: bold;
  color: #442825;
}
@media (max-width: 575px) {
  .user_name {
    font-size: 18px;
  }
}
.ham_icon_box {
  cursor: pointer;
  color: #442825;
}
.bar_icon {
  font-size: 27px;
}
.remove_icon {
  display: none;
  font-weight: bold;
  font-size: 23px;
}
.ham_list_box {
  position: absolute;
  z-index: 20;
  top: -20px;
  right: 0px;
  border-radius: 5px;
  background-color: #8d5e5b;
  padding: 15px 0px;
  display: none;
}
@media (max-width: 575px) {
  .ham_list_box {
    position: fixed;
    top: 76px;
    width: 100%;
    height: 100vh;
    background-color: #e8e8e8;
    text-align: center;
    padding: 0px 30px;
  }
}
.ham_list {
  font-size: 20px;
  color: white;
  padding: 16px 38px;
  display: block;
  position: relative;
}

.ham_list:hover {
  background-color: white;
  color: #8d5e5b;
  font-weight: bold;
}

@media (max-width: 575px) {
  .ham_list {
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding: 28px 0px;
  }

  /* 移除 :hover 效果 */
  .ham_list:hover {
    background-color: transparent; /* 恢复默认背景 */
    color: black; /* 恢复默认颜色 */
    font-weight: bold; /* 保持粗体（与非 hover 状态一致） */
  }
}

.ham_list_i {
  position: absolute;
  font-size: 20px;
  color: #8d5e5b;
  top: 50%;
  left: 25px;
  transform: translate(0%, -50%);
}
@media (max-width: 767px) {
  .ham_list_i {
    display: none;
  }
}
.member_area {
  position: relative;
  height: 644px;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1040px) {
  .member_area {
    min-height: 430px;
    height: unset;
  }
}
.overflow_area {
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 1040px) {
  .overflow_area {
    overflow: unset;
  }
}
.member_content_background {
  background-color: white;
  opacity: 49%;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: sticky;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}
@media (max-width: 1040px) {
  .member_content_background {
    position: absolute;
  }
}
/* @media (max-width:575px){
	.member_content_background{
        opacity: 49%;
    }
} */
.member_content {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
}
@media (max-width: 1040px) {
  .member_content {
    position: relative;
  }
}
.member_welcome_content {
  padding: 112px 72px;
  border-radius: 5px;
  gap: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1040px) {
  .member_welcome_content {
    padding: 60px 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .member_welcome_content {
    padding: 50px 28px;
    gap: 34px;
  }
}
@media (max-width: 575px) {
  .member_welcome_content {
    padding: 32px 16px;
    gap: 28px;
  }
}
.welcome_link_box {
  width: 252px;
  height: 188px;
  padding-bottom: 33px;
  background: linear-gradient(45deg, #ebebeb, #ffffff, #ebebeb);
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16),
    inset -3px -3px 2px rgba(0, 0, 0, 0.15),
    -3px -2px 0px 1px rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  cursor: pointer;
  /* transition: 0.5s; */
}
@media (max-width: 1040px) {
  .welcome_link_box {
    width: 100%;
    height: 122px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .welcome_link_box {
    width: 100%;
    height: 102px;
  }
}
@media (max-width: 575px) {
  .welcome_link_box {
    height: 81px;
  }
}
.welcome_link_box:hover {
  background: linear-gradient(45deg, #b07e6e, #d88f83, #b07e6e);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16),
    inset -3px -3px 2px rgba(0, 0, 0, 0.15),
    -3px -2px 0px 1px rgba(216, 143, 131, 1);
  color: white;
}
.welcome_link_box:hover .welcome_link_text {
  color: white;
}
.welcome_link_box:hover .fas {
  color: #ffffff;
}
.welcome_link_text {
  font-size: 20px;
  font-weight: bold;
  color: #707070;
  padding-top: 18px;
}
@media (max-width: 1040px) {
  .welcome_link_text {
    font-size: 28px;
    width: 70%;
    padding-top: 0px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .welcome_link_text {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .welcome_link_text {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.welcome_link_icon {
  color: #707070;
}
@media (max-width: 1040px) {
  .welcome_link_icon {
    width: 30%;
    text-align: center;
    font-size: 60px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .welcome_link_icon {
    width: 30%;
    font-size: 55px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .welcome_link_icon {
    font-size: 45px;
    padding-left: 10px;
  }
}
.date_icon {
  font-size: 80px;
}
.customer_icon {
  font-size: 64px;
}
.records_icon {
  font-size: 80px;
}
.money_icon {
  font-size: 80px;
}
.people_icon {
  font-size: 60px;
}
/* ===== customer_list ===== */
.member_list {
  margin-bottom: 77px;
}
@media (max-width: 767px) {
  .member_list {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.member_list_action_box {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 767px) {
  .member_list_action_box {
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }
}
.member_list_search_box {
  width: 412px;
  display: flex;
}
@media (max-width: 767px) {
  .member_list_search_box {
    margin-top: 15px;
    width: 100%;
  }
}
.member_list_search_input {
  height: 40px;
  width: calc(100% - 45px);
  border-radius: 5px;
  border: 1px solid #442825;
}
.member_list_search_btn {
  min-width: 40px;
  height: 40px;
  font-size: 22px;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  border: none;
  margin-left: 5px;
  cursor: pointer;
}
.member_list_title_reg {
  line-height: 27px;
  font-size: 20px;
  color: #8d5e5b;
  text-align: end;
  margin-bottom: 6px;
  /* text-transform:uppercase; */
}
@media (max-width: 767px) {
  .member_list_title_reg {
    line-height: 20px;
    margin-bottom: 4px;
  }
}
@media (max-width: 575px) {
  .member_list_title_reg {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0px;
  }
}
.member_list_title_bold {
  font-size: 25px;
  line-height: 33px;
  color: #442825;
  display: flex;
  margin-bottom: 6px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575px) {
  .member_list_title_bold {
    font-size: 18px;
    line-height: 24px;
  }
}
.member_list_title_decorate {
  width: 76px;
  height: 8px;
  margin-right: 6px;
  object-fit: cover;
  object-position: right;
}
@media (max-width: 575px) {
  .member_list_title_decorate {
    width: 50px;
    object-fit: cover;
    object-position: right;
  }
}
.member_list_success_btn {
  display: inline-flex;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  padding: 8px 4px;
  font-size: 18px;
  min-width: 145px;
  border: none;
  text-align: center;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
/* .member_list_success_btn:hover{
    background-color: white;
    outline: 1px solid #442825;
    color: #442825;
} */
.member_list_success_btn.active {
  background-color: white;
  outline: 1px solid #442825;
  color: #442825;
}
@media (max-width: 575px) {
  .member_list_success_btn {
    padding: 6px 0px;
    width: 130px;
  }
}
.member_list_add_box {
  text-align: end;
}
.member_list_add {
  display: inline-flex;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  padding: 8px 4px;
  font-size: 18px;
  min-width: 145px;
  text-align: center;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.member_list_add:hover {
  background-color: white;
  outline: 1px solid #442825;
  color: #442825;
}
@media (max-width: 575px) {
  .member_list_add {
    padding: 6px 4px;
    min-width: 130px;
  }
}
.member_list_content {
  padding: 28px 25px;
  width: 100%;
}
@media (max-width: 1040px) {
  .member_list_content {
    padding: 28px 15px;
  }
}
.member_list_table {
  display: block;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
/* customer */
.cusomter_list {
  margin-bottom: 77px;
}
@media (max-width: 767px) {
  .cusomter_list {
    margin-top: 20px;
    margin-bottom: 90px;
  }
}
.customer_list_table_remove {
  display: block;
  margin-left: auto;
  background-color: white;
  color: #442825;
  border: 1px solid #442825;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  right: 20px;
  top: 50%;
  transform: translate(0%, -50%);
  position: absolute;
}
@media (max-width: 1040px) {
  .customer_list_table_remove {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .customer_list_table_remove {
    right: 5px;
  }
}
@media (max-width: 575px) {
  .customer_list_table_remove {
    right: 0px;
    display: none;
  }
}
.customer_list_table_remove:hover {
  background-color: #442825;
  color: white;
}
.customer_list_table_mobile_remove {
  display: none;
  margin-left: auto;
  background-color: white;
  color: #442825;
  border: 1px solid #442825;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}
@media (max-width: 575px) {
  .customer_list_table_mobile_remove {
    right: 0px;
    display: block;
  }
}
.customer_list_table_mobile_remove:hover {
  background-color: #442825;
  color: white;
}
.member_list_table_head_box {
  background-color: #e8bcb5;
  display: flex;
  padding: 12px 18px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
@media (max-width: 767px) {
  .member_list_table_head_box {
    padding: 12px 10px;
  }
}
.customer_list_table_head_small {
  font-size: 20px;
  font-weight: bold;
  color: white;
  width: 200px;
  padding-left: 25px;
}
@media (max-width: 1040px) {
  .customer_list_table_head_small {
    padding-left: 10px;
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 767px) {
  .customer_list_table_head_small {
    width: 90px;
    min-width: 90px;
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .customer_list_table_head_small {
    font-size: 16px;
  }
}
.customer_list_table_head_big {
  font-size: 20px;
  font-weight: bold;
  color: white;
  width: 200px;
  padding-left: 25px;
}
@media (max-width: 1040px) {
  .customer_list_table_head_big {
    padding-left: 0px;
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 767px) {
  .customer_list_table_head_big {
    width: auto;
    min-width: 110px;
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .customer_list_table_head_big {
    font-size: 16px;
  }
}
.member_list_table_body_box {
  padding: 0px 18px;
}
@media (max-width: 575px) {
  .member_list_table_body_box {
    padding: 0px 10px;
  }
}
.customer_list_link_box {
  padding-top: 12px;
  padding-bottom: 12px;
  height: 68px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 2px solid #f7e4df;
}
@media (max-width: 767px) {
  .customer_list_link_box {
    padding-right: 0px;
  }
}
@media (max-width: 575px) {
  .customer_list_link_box {
    flex-direction: column;
    justify-content: start;
    height: 100px;
    gap: 10px;
  }
  .customer_list_link_box:lang(en) {
    height: auto;
    min-height: 100px;
  }
}
.customer_list_link_box:last-of-type {
  border-bottom: none;
}
.customer_list_info_box {
  display: flex;
}
@media (max-width: 575px) {
  .customer_list_info_box {
    width: 100%;
    justify-content: start;
  }
}
.customer_list_table_body_small {
  font-size: 18px;
  min-width: 200px;
  color: #2b1838;
  padding-left: 25px;
}
@media (max-width: 1040px) {
  .customer_list_table_body_small {
    padding-left: 10px;
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 767px) {
  .customer_list_table_body_small {
    padding-left: 0px;
    width: 90px;
    min-width: 90px;
  }
}
@media (max-width: 575px) {
  .customer_list_table_body_small {
    font-size: 16px;
  }
}
.customer_list_table_body_big {
  font-size: 18px;
  min-width: 200px;
  color: #2b1838;
  padding-left: 25px;
}
@media (max-width: 1040px) {
  .customer_list_table_body_big {
    padding-left: 0px;
    width: 140px;
    min-width: 140px;
  }
}
@media (max-width: 767px) {
  .customer_list_table_body_big {
    padding-left: 0px;
    width: 110px;
    min-width: 110px;
  }
}
@media (max-width: 575px) {
  .customer_list_table_body_big {
    font-size: 16px;
  }
}
.customer_other_links_box {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 20px;
  justify-content: end;
  margin-right: 100px;
}
@media (max-width: 1040px) {
  .customer_other_links_box {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .customer_other_links_box {
    margin-right: 50px;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .customer_other_links_box {
    margin: 0px;
    gap: 15px;
    justify-content: start;
  }
}
.customer_list_member_link {
  display: inline-block;
  border: 1px solid #442825;
  border-radius: 5px;
  display: flex;
  align-items: center;
  min-width: 130px;
  padding: 0 4px;
  justify-content: center;
  font-size: 18px;
  color: #442825;
  font-weight: bold;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_list_member_link:hover {
  background-color: #442825;
  color: white;
}
@media (max-width: 767px) {
  .customer_list_member_link {
    min-width: 90px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .customer_list_member_link {
    min-width: 110px;
    font-size: 16px;
  }
}
.customer_list_marketing_link {
  display: inline-block;
  border: 1px solid #442825;
  border-radius: 5px;
  display: flex;
  align-items: center;
  min-width: 130px;
  padding: 0 4px;
  justify-content: center;
  font-size: 18px;
  background-color: #442825;
  color: white;
  font-weight: bold;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_list_marketing_link:hover {
  background-color: white;
  color: #442825;
}
@media (max-width: 767px) {
  .customer_list_marketing_link {
    min-width: 90px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .customer_list_marketing_link {
    min-width: 110px;
    font-size: 16px;
  }
}
.customer_list_null_box {
  display: block;
  text-align: center;
  padding: 40px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #7c7c7c;
  border-radius: 5px;
}
.marketing_list_null_box {
  display: block;
  text-align: center;
  padding: 25px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #7c7c7c;
  border: 1px solid #c5c5c5;
  margin: 20px;
  border-radius: 5px;
}
/* other */
.member_list_table_head {
  font-size: 20px;
  font-weight: bold;
  color: white;
  width: 200px;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .member_list_table_head {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .member_list_table_head {
    width: 135px;
    min-width: 135px;
    font-size: 16px;
  }
}
.member_list_link_box {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  padding-right: 25px;
  position: relative;
  border-bottom: 2px solid #f7e4df;
}
@media (max-width: 767px) {
  .member_list_link_box {
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .member_list_link_box {
    padding-right: 0px;
  }
}
.member_list_link_box:hover {
  background-color: #f7e4df;
}
.member_list_link_box:last-of-type {
  border: none;
}
.member_list_table_body {
  font-size: 18px;
  color: #2b1838;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .member_list_table_body {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .member_list_table_body {
    font-size: 16px;
    width: 135px;
    min-width: 135px;
  }
}
.member_list_table_remove {
  flex-shrink: 0;
  display: block;
  margin-left: auto;
  background-color: white;
  color: #442825;
  border: 1px solid #442825;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}
@media (max-width: 575px) {
  .member_list_table_remove {
    width: 27px;
    height: 27px;
  }
}
.member_list_table_remove:hover {
  background-color: #442825;
  color: white;
}
.customer_update_container {
  height: 644px;
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .customer_update_container {
    /* height: 100%; */
    height: unset;
  }
}
.customer_update_area {
  position: relative;
  height: 644px;
  width: 100%;
}
@media (max-width: 1040px) {
  .customer_update_area {
    min-height: 430px;
    height: unset;
  }
}
.customer_update_title {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .customer_update_title {
    display: none;
  }
}
.customer_update_name_box {
  font-size: 25px;
  font-weight: bold;
  display: flex;
  color: #442825;
  line-height: 33px;
  display: none;
}
@media (max-width: 767px) {
  .customer_update_name_box {
    display: block;
  }
  .customer_update_name_box:lang(en) {
    align-self: start;
  }
}
@media (max-width: 575px) {
  .customer_update_name_box {
    font-size: 20px;
  }
}
/* .customer_update_name_mobile_box{
    display: flex;
    width: 100%;
    justify-content: space-between;
} */
@media (max-width: 767px) {
  .customer_update_name_mobile_box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
  }
  .customer_update_name_mobile_box:lang(en) {
    flex-direction: column;
  }
}
.customer_update_back_page_btn_box {
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .customer_update_back_page_btn_box {
    width: 100%;
    padding: 20px 0px;
  }
}
@media (max-width: 575px) {
  .customer_update_back_page_btn_box {
    width: 100%;
    padding: 40px 0px 10px;
  }
}
/* ===== customer_add_form ===== */
.back_member_list_btn {
  padding: 8px 0px;
  width: 176px;
  display: block;
  text-align: center;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.5s;
}
.back_member_list_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.member_add_content {
  padding: 20px 23px 54px;
  width: 100%;
}
.member_add_label {
  font-size: 20px;
  color: #442825;
  margin-bottom: 5px;
  display: block;
  line-height: 27px;
}
@media (max-width: 575px) {
  .member_add_label {
    font-size: 16px;
  }
}
.call_link {
  color: #442825;
  font-size: 24px;
  margin-left: 6px;
}
.member_add_uploads_img_box {
  width: 430px;
  padding: 16px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .member_add_uploads_img_box {
    width: 100%;
  }
}
.member_add_uploads_img {
  width: 100%;
}
.member_add_row_box {
  display: flex;
  padding-top: 20px;
  gap: 44px;
}
@media (max-width: 767px) {
  .member_add_row_box {
    flex-direction: column;
    gap: 25px;
  }
}
.member_add_input_box {
  position: relative;
  flex: 1;
}
.customer_company_unicode_input_box:lang(en),
.customer_company_unicode_input_box:lang(zh-cn) {
  display: none;
}
.member_add_input {
  width: 100%;
  height: 50px;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  background-color: white;
}
.member_add_radio_box {
  padding: 13px 0px;
  display: inline-flex;
  margin-right: 70px;
  align-items: center;
}
.member_add_radio {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.member_add_radio_label {
  font-size: 18px;
}
.member_add_select_input_box {
  display: flex;
  align-items: center;
}
.member_add_select_box {
  width: 100%;
  position: relative;
  margin-right: 9px;
}
.member_add_full_select_box {
  width: 100%;
  position: relative;
  margin-right: 9px;
}
.member_add_select_arrow {
  position: absolute;
  font-size: 36px;
  color: #442825;
  bottom: 7px;
  right: 1%;
  pointer-events: none;
}
.member_add_constellation_select {
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 50px;
  border-radius: 5px;
  width: 100%;
  padding-left: 15px;
  font-size: 18px;
  background-color: white;
}
@media (max-width: 575px) {
  .member_add_constellation_select:lang(en) {
    font-size: 14px;
  }
}
.constellation_info_btn {
  font-size: 18px;
  color: white;
  background-color: #442825;
  border: none;
  padding: 13px 17px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.5s;
  min-width: 80px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .constellation_info_btn {
    font-size: 16px;
  }
}
.constellation_info_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.member_add_child_input_box {
  display: flex;
  margin-bottom: 13px;
}
.member_add_child_input_box:last-of-type {
  margin-bottom: 0px;
}
.member_operator_btn {
  font-size: 24px;
  color: white;
  border: none;
  padding: 11px 23px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.member_operator_add_btn {
  background-color: #442825;
}
.member_operator_add_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.member_operator_reduce_btn {
  background-color: #d88f83;
}
.member_operator_reduce_btn:hover {
  background-color: white;
  color: #d88f83;
  outline: 1px solid #d88f83;
}
.member_add_child_input {
  margin-right: 9px;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  height: 50px;
  border-radius: 5px;
  width: calc(100% - 79px);
}
.member_add_textarea {
  width: 100%;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  resize: none;
  padding: 15px;
  font-size: 18px;
}
.customer_analys_table {
  margin-top: 59px;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 54px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_analys_head_text {
  padding-left: 5px;
}
.customer_analys_head {
  background-color: #f7e4df;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .customer_analys_head {
    font-size: 18px;
  }
}
.customer_analys_body {
  padding: 50px 170px;
}
@media (max-width: 1040px) {
  .customer_analys_body {
    padding: 40px 60px;
  }
}
@media (max-width: 767px) {
  .customer_analys_body {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .customer_analys_body {
    padding: 15px;
  }
}
.customer_analys_qusetion_box {
  margin-bottom: 68px;
}
.customer_analys_qusetion_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
}
@media (max-width: 575px) {
  .customer_analys_qusetion_row:lang(en) {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* @media (max-width: 767px){
	.customer_analys_qusetion_row{
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
} */
.customer_analys_qusetion_row:last-of-type {
  margin-bottom: 0px;
}
.customer_analys_qusetion_text {
  font-size: 18px;
  color: #442825;
}
@media (max-width: 767px) {
  .customer_analys_qusetion_text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .customer_analys_qusetion_text {
    font-size: 13px;
  }
}
.customer_analys_qusetion_answer_box {
  flex-shrink: 0;
  display: flex;
  width: 387px;
  border: 1px solid #cb9489;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .customer_analys_qusetion_answer_box {
    width: calc(100% - 140px);
  }
}
@media (max-width: 575px) {
  .customer_analys_qusetion_answer_box {
    width: calc(100% - 110px);
  }
  .customer_analys_qusetion_answer_box:lang(en) {
    width: 100%;
  }
}
.customer_analys_qusetion_answer_btn {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  color: #cb9489;
  text-align: center;
  border: none;
  border-right: 1px solid #cb9489;
  padding: 5px 0px;
  cursor: pointer;
  display: block;
}
@media (max-width: 575px) {
  .customer_analys_qusetion_answer_btn {
    font-size: 16px;
  }
  .customer_analys_qusetion_answer_btn:lang(en) {
    font-size: 14px;
  }
}
.analys_radio_input {
  display: none;
}
.customer_analys_qusetion_answer_btn:last-of-type {
  border-right: 0px;
}
.active {
  background-color: #cb9489;
  color: white;
}
.customer_add_form_submit_btn {
  display: block;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  text-align: center;
  border: none;
  transition: 0.5s;
  cursor: pointer;
  padding: 8px 47px;
  border-radius: 5px;
  margin: 0 auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_add_form_submit_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.customer_analys_result_box {
  margin-bottom: 49px;
}
.decision_atr_table {
  margin-top: 68px;
}
.decision_atr_table:last-of-type {
  margin-top: 0px;
}
.decision_atr_head {
  background-color: #f7e4df;
  border-radius: 5px;
  padding: 11px 27px;
  display: flex;
}

@media (max-width: 575px) {
  .decision_atr_head {
    padding: 11px 15px;
  }
  .decision_atr_head:lang(en) {
    flex-direction: column;
  }
}
.decision_atr_head_qusetion_tip {
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  width: 180px;
}
@media (max-width: 767px) {
  .decision_atr_head_qusetion_tip {
    width: 100px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .decision_atr_head_qusetion_tip {
    width: 70px;
    font-size: 16px;
  }
  .decision_atr_head_qusetion_tip:lang(en) {
    width: 100%;
  }
}
.decision_atr_head_answer_tip_box {
  display: flex;
  flex: 1;
}
.decision_atr_head_answer_tip_box:lang(en) {
  justify-content: space-between;
}
.decision_atr_head_answer_tip {
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  flex: 1;
  text-align: center;
}
@media (max-width: 575px) {
  .decision_atr_head_answer_tip {
    font-size: 16px;
  }
  .decision_atr_head_answer_tip:lang(en) {
    flex: 0;
  }
}
.decision_atr_body {
  padding: 30px 27px;
}
@media (max-width: 575px) {
  .decision_atr_body {
    padding: 20px 15px;
  }
}
.decision_atr_body_row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.decision_atr_body_row:last-of-type {
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  .decision_atr_body_row:lang(en) {
    align-items: start;
    flex-direction: column;
  }
}
.decision_atr_body_qusetion {
  font-size: 18px;
  color: #442825;
  width: 180px;
}
@media (max-width: 767px) {
  .decision_atr_body_qusetion {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .decision_atr_body_qusetion {
    width: 70px;
    font-size: 15px;
  }
  .decision_atr_body_qusetion:lang(en) {
    width: 100%;
  }
}
.decision_atr_body_answer {
  background-color: #f2f1f1;
  padding: 2px 4px;
  flex: 1;
  border-radius: 5px;
  display: flex;
  position: relative;
}
@media (max-width: 575px) {
  .decision_atr_body_answer:lang(en) {
    width: 100%;
  }
}
/* .decision_atr_progress_bar_box{
    display: flex;
    width: 16.6%;
    position: absolute;
    overflow: hidden;
    height: calc(100% - 4px);
}*/
.decision_atr_progress_bar_mask {
  position: absolute;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  opacity: 0.5;
  width: calc(100% - 8px);
  height: calc(100% - 4px);
  border-radius: 5px;
}
.decision_atr_progress_bar {
  width: 0%;
  height: 20px;
  /* background-color: #D88F83; */
  transition: 0.5s;
}
.bg-main1 {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.bg-main1 {
  background: linear-gradient(to right, #f0d3c7, #f1d4c8);
}

.bg-main2 {
  background: linear-gradient(to right, #f1d4c8, #e8c4b8);
}

.bg-main3 {
  background: linear-gradient(to right, #e8c4b8, #e1b9ad);
}

.bg-main4 {
  background: linear-gradient(to right, #e1b9ad, #daaea2);
}

.bg-main5 {
  background: linear-gradient(to right, #daaea2, #d4a398);
}

.bg-main6 {
  background: linear-gradient(to right, #d4a398, #cb9489);
}
.decision_atr_progress_bar:first-of-type {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.decision_atr_progress_bar:last-of-type {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* ===== customer_marketing_list ===== */
.marketing_list_mobile_span {
  display: none;
  margin-right: 10px;
  font-size: 18px;
  color: #442825;
}
@media (max-width: 767px) {
  .marketing_list_mobile_span {
    display: block;
  }
}
@media (max-width: 575px) {
  .marketing_list_mobile_span {
    font-size: 16px;
  }
}
.customer_marketing_list_action_box {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.customer_marketing_list_table_head_box {
  background-color: #e8bcb5;
  display: flex;
  padding: 12px 18px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
@media (max-width: 767px) {
  .customer_marketing_list_action_box:lang(en) {
    flex-direction: column;
  }
  .customer_marketing_list_table_head_box {
    display: none;
  }
}
.customer_name_box {
  font-size: 25px;
  font-weight: bold;
  display: flex;
  color: #442825;
  line-height: 33px;
}
.customer_name_box_br {
  display: none;
}
@media (max-width: 575px) {
  .customer_name_box {
    font-size: 18px;
  }
  .customer_name_box:lang(en) {
    line-height: 1.2;
    align-self: start;
  }
  .customer_name_box_br {
    display: block;
  }
}
.customer_name_box_i {
  margin-right: 12px;
}
.customer_marketing_list_container {
  height: 644px;
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .customer_marketing_list_container {
    height: 430px;
  }
}
.customer_marketing_list_container2 {
  height: 644px;
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .customer_marketing_list_container2 {
    height: 430px;
  }
}
@media (max-width: 575px) {
  .customer_marketing_list_container2 {
    height: auto;
  }
}
/* 手機版side_bar */
.mobile_nav_icon {
  font-size: 17px;
  margin-right: 5px;
  color: white;
}
.mobile_nav_customer_data_icon {
  margin-right: 12px;
  color: #d88f83;
}
.mobile_nav_record_icon {
  margin-right: 12px;
  color: #d88f83;
  min-width: 20px;
}
.mobile_nav_marketing_link {
  color: white;
}
.mobile_nav_marketing_row1_link {
  color: white;
}
.movile_side_nav_row_1 {
  padding-left: 28px;
  background-color: #d88f83;
  color: white;
  display: flex;
  justify-content: space-between;
  width: 100%;
  line-height: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 20px;
  cursor: pointer;
}
.customer_maketing_mobile_side_nav_box {
  position: absolute;
  height: 100%;
  width: 25px;
  left: 0px;
  top: 0px;
  display: none;
}
@media (max-width: 1560px) {
  .customer_maketing_mobile_side_nav_box {
    display: flex;
  }
}
.customer_maketing_mobile_side_nav_btn {
  min-width: 25px;
  height: 100px;
  font-size: 20px;
  background-color: #d88f83;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0 4px;
  /* transform: scaleX(-1); */
  position: fixed;
  top: 40%;
  z-index: 10;
  font-weight: bold;
}
.customer_maketing_mobile_side_nav_btn:lang(en) {
  max-width: 25px;
}
.customer_maketing_mobile_side_nav_control {
  word-break: break-all;
  text-align: center;
}
.customer_maketing_mobile_side_nav {
  display: none;
  width: 100vw;
  overflow: hidden;
  overflow-y: scroll; /* 垂直滾動條 */
  -ms-overflow-style: none; /* 適用於 Internet Explorer 和 Edge */
  scrollbar-width: none; /* 適用於 Firefox */
  position: fixed;
  top: 0px;
  z-index: 30;
}
.mobile_side_nav_mask {
  background-color: black;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
}
.mobile_side_nav_head_row {
  display: flex;
  position: relative;
}
.mobile_side_nav_head_text {
  flex: 1;
  background-color: white;
  color: #573430;
  padding: 18px 34px;
  font-size: 20px;
}
.mobile_side_nav_head_close_btn {
  width: 60px;
  text-align: center;
  background-color: #d88f83;
  color: white;
  padding: 18px 0px;
  font-weight: bold;
  font-size: 20px;
}
.mobile_side_nav_left_box {
  width: calc(100% - 60px);
  background-color: white;
  height: calc(100vh - 60px);
  position: relative;
  overflow-y: scroll; /* 垂直滾動條 */
  -ms-overflow-style: none; /* 適用於 Internet Explorer 和 Edge */
  scrollbar-width: none; /* 適用於 Firefox */
}
.mobile_nav_arrow_down {
  display: block;
  padding-right: 10px;
  font-size: 32px;
  transition: 0.5s;
}
.mobile_nav_arrow_top {
  display: none;
  padding-left: 10px;
  font-size: 32px;
  transform: rotate(-180deg);
  transition: 0.5s;
}
.mobile_side_nav_row {
  width: 100%;
  line-height: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 20px;
  color: #442825;
  cursor: pointer;
  display: block;
}
.mobile_side_nav_project_box {
  display: none;
}
.mobile_side_nav_row_2 {
  padding-left: 72px;
  background-color: #e8bcb5;
  color: white;
  display: flex;
  justify-content: space-between;
}
.mobile_side_nav_row_3 {
  padding-left: 107px;
  background-color: #f7e4df;
  color: #442825;
  display: block;
  position: relative;
}
.mobile_side_nav_row_3:hover {
  font-weight: bold;
}
.mobile_side_nav_row_3:hover .mobile_side_nav_row_3_icon {
  display: block;
}
.mobile_side_nav_row_3_icon {
  font-size: 26px;
  position: absolute;
  left: 85px;
  display: none;
}
.mobile_side_nav_link_box {
  display: none;
}
/* 電腦版side_bar */
.customer_maketing_side_nav_box {
  position: relative;
  height: 100%;
  width: 30px;
  display: flex;
}
@media (max-width: 1560px) {
  .customer_maketing_side_nav_box {
    display: none;
  }
}
.customer_maketing_side_nav_inner_box {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  display: flex;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.customer_maketing_side_nav_btn {
  background-color: #d88f83;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  font-weight: bold;
  word-break: break-all;
  position: relative;
}
.customer_maketing_side_nav_control {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.customer_maketing_side_nav {
  display: none;
  width: 280px;
  background-color: white;
  overflow: hidden;
  overflow-y: scroll; /* 垂直滾動條 */
  -ms-overflow-style: none; /* 適用於 Internet Explorer 和 Edge */
  scrollbar-width: none; /* 適用於 Firefox */
  position: relative;
  z-index: 20;
}
#side_nav_title {
  padding-left: 33px;
  color: #573430;
}
.side_nav_row {
  display: block;
  width: 280px;
  line-height: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 20px;
  color: #442825;
  cursor: pointer;
}
.side_nav_row_1 {
  padding-left: 33px;
  background-color: #d88f83;
  color: white;
}
.side_nav_row_2 {
  padding-left: 45px;
  background-color: #e8bcb5;
  color: white;
}
.side_nav_link_box {
  display: none;
}
.side_nav_row_3 {
  padding-left: 63px;
  background-color: rgba(247, 228, 223, 0.5);
  color: #442825;
  display: block;
  position: relative;
}
.side_nav_row_3:hover {
  font-weight: bold;
}
.side_nav_row_3:hover .side_nav_row_3_icon {
  display: block;
}
.side_nav_row_3_icon {
  font-size: 26px;
  position: absolute;
  left: 18%;
  display: none;
}
/* 逼需在後面覆蓋 */
.nav_active {
  display: block;
  font-weight: bold;
}
.customer_area {
  position: relative;
  height: 644px;
  width: 100%;
}
@media (max-width: 1040px) {
  .customer_area {
    height: 430px;
  }
}
@media (max-width: 767px) {
  .customer_area {
    min-height: 430px;
    height: unset;
  }
}
.customer_marketing_list_content {
  padding: 28px 25px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
/* @media (max-width: 575px){
	.customer_marketing_list_content{
        overflow-y: unset;
    }
} */
/* @media (max-width: 575px){
	.customer_marketing_list_content::-webkit-scrollbar{
        display: none;
    }
} */
.customer_list_row_span {
  font-size: 18px;
  min-width: 60px;
  color: #442825;
}
@media (max-width: 575px) {
  .customer_list_row_span {
    font-size: 16px;
  }
}
.customer_market_list_body_name {
  flex: 1;
  padding-left: 25px;
  font-size: 18px;
  color: #442825;
}
@media (max-width: 767px) {
  .customer_market_list_body_name {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .customer_market_list_body_name {
    font-size: 18px;
  }
}
.customer_market_list_table_body_box {
  padding: 5px 18px;
}
.customer_marketing_list_row_box {
  border-bottom: 2px solid #f7e4df;
}
.customer_marketing_list_row_box:last-of-type {
  border-bottom: 0px;
}
.customer_list_row_box {
  padding-top: 11px;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .customer_list_row_box {
    padding-right: 0px;
  }
}
.customer_marketing_list_link_box {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  gap: 20px;
  justify-content: end;
  padding-right: 45px;
}
@media (max-width: 767px) {
  .customer_marketing_list_link_box {
    display: none;
  }
}
.customer_marketing_list_mobile_link_box {
  display: none;
  gap: 15px;
}
@media (max-width: 767px) {
  .customer_marketing_list_mobile_link_box {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .customer_marketing_list_mobile_link_box {
    display: flex;
    justify-content: start;
    padding-bottom: 15px;
  }
}
.customer_marketing_list_link {
  flex-shrink: 0;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  border-radius: 5px;
  padding: 8px 42px;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_marketing_list_link:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.customer_marketing_list_mobile_link_manage {
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  border-radius: 5px;
  padding: 8px 50px;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575px) {
  .customer_marketing_list_mobile_link_manage {
    padding: 8px 40px;
    font-size: 16px;
  }
  .customer_marketing_list_mobile_link_manage:lang(en) {
    padding: 8px 10px;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.customer_marketing_list_mobile_link {
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  border-radius: 5px;
  padding: 8px 20px;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575px) {
  .customer_marketing_list_mobile_link {
    padding: 8px 10px;
    font-size: 16px;
  }
}
.customer_marketing_list_mobile_link:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.marketing_list_link_style {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.marketing_list_link_style:hover {
  background-color: #442825;
  color: white;
}

/* ===== customer_marketing_add_form ===== */
.customer_marketing_add_content {
  padding: 82px 21px;
  width: 100%;
}
.customer_marketing_add_input_box {
  padding-bottom: 103px;
  position: relative;
}
@media (max-width: 767px) {
  .customer_marketing_add_input_box {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .customer_marketing_add_input_box {
    padding-bottom: 40px;
  }
}
.customer_marketing_add_label {
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  line-height: 27px;
  display: block;
  padding-bottom: 5px;
}
.customer_marketing_add_input {
  height: 50px;
  width: 100% !important;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  border: none;
  position: relative;
  cursor: pointer;
  background-color: white;
}
.customer_marketing_add_btn_box {
  text-align: center;
}
.customer_marketing_add_btn {
  font-size: 18px;
  font-weight: bold;
  color: white;
  border-radius: 5px;
  background-color: #442825;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  padding: 8px 47px;
  transition: 0.5s;
  cursor: pointer;
}
.customer_marketing_add_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* ===== customer_marketing_add_form ===== */
.customer_marketing_update_input_box {
  padding-bottom: 13px;
}
.customer_marketing_update_btn_box {
  text-align: end;
}
/* ===== customer_marketing_update_form ===== */
.customer_marketing_update_input {
  height: 50px;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  border: none;
  position: relative;
  background-color: white;
  font-size: 18px;
}
/* ===== customer_marketing_plan_form ===== */
.customer_marketing_plan_container {
  height: 644px;
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .customer_marketing_plan_container {
    height: unset;
  }
}
.customer_plan_area {
  position: relative;
  height: 644px;
  width: 100%;
}
@media (max-width: 1040px) {
  .customer_plan_area {
    height: unset;
  }
}
.customer_marketing_plan {
  margin-top: 10px;
  margin-bottom: 126px;
}
.customer_marketing_plan_action_box {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 767px) {
  .customer_marketing_plan_action_box {
    margin-bottom: 10px;
  }
}
.customer_marketing_plan_content {
  padding: 64px 21px;
  width: 100%;
}
@media (max-width: 767px) {
  .customer_marketing_plan_content {
    padding: 30px 21px;
  }
}
.customer_marketing_plan_name {
  background-color: white;
  font-size: 18px;
  font-weight: bold;
  color: #442825;
  padding: 15px 30px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .customer_marketing_plan_name {
    padding: 12px 30px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.customer_marketing_plan_name::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 20px;
  background-color: #d88f83;
  opacity: 0.6;
  left: 0px;
  top: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.customer_marketing_plan_input_box {
  margin-bottom: 30px;
}

.customer_marketing_plan_btn_box {
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .customer_marketing_plan_btn_box {
    padding-top: 20px;
  }
}
.customer_marketing_plan_btn {
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 47px;
  transition: 0.5s;
  cursor: pointer;
  margin: 0px 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.customer_marketing_plan_btn:lang(en) {
  margin: 0px 5px 4px;
  display: inline-block;
}
.customer_marketing_plan_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
@media (max-width: 767px) {
  .customer_marketing_plan_btn {
    padding: 8px 35px;
  }
}
/* ===== customer_market_sale_update_form ===== */
.customer_marketing_sale_container {
  height: 644px;
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .customer_marketing_sale_container {
    height: unset;
  }
}
.customer_sale_area {
  position: relative;
  height: 644px;
  width: 100%;
}
@media (max-width: 1040px) {
  .customer_sale_area {
    height: unset;
  }
}
.customer_market_sale_do_box {
  display: flex;
  gap: 20px;
  justify-content: end;
}
@media (max-width: 767px) {
  .customer_market_sale_do_box {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .customer_market_sale_do_box {
    gap: 6px;
  }
}
.customer_market_sale_do {
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 4px;
  min-width: 120px;
  max-height: 40px;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .customer_market_sale_do {
    min-width: 100px;
  }
}
@media (max-width: 575px) {
  .customer_market_sale_do {
    min-width: 80px;
  }
}
.customer_market_sale_do:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.customer_marketing_sale_update_content {
  width: 100%;
  padding: 38px 21px;
}
@media (max-width: 767px) {
  .customer_marketing_sale_update_content {
    padding: 25px 15px;
  }
}
.customer_marketing_sale_update_form {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 35px;
}
.customer_marketing_sale_update_table {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  /* 計算每個寬度 */
  width: calc(100% / 3 - 14px);
  background-color: white;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .customer_marketing_sale_update_table {
    width: 100%;
  }
}
.customer_marketing_sale_update_head {
  background-color: #f7e4df;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 18px;
  /* padding: 17px 0px; */
  height: 58px;
  font-weight: bold;
  color: #442825;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .customer_marketing_sale_update_head {
    font-size: 16px;
    height: 52px;
  }
}
.marketing_head_title_text {
  padding-left: 4px;
}
.customer_marketing_sale_values_head_box {
  display: flex;
}
@media (max-width: 1040px) {
  .customer_marketing_sale_values_head_box {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .customer_marketing_sale_values_head_box {
    display: flex;
    flex-direction: row;
  }
}
.customer_marketing_sale_values_head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer_marketing_sale_update_body {
  padding: 10px 26px;
  background-color: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.customer_marketing_sale_body_row {
  display: flex;
  align-items: center;
  padding: 13px 0px;
}
.customer_marketing_sale_body_num {
  color: #442825;
  font-size: 20px;
  line-height: 27px;
  min-width: 26px;
}
.customer_marketing_sale_body_input {
  padding: 0px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
  background-color: white;
}
.customer_marketing_sale_arrow_i {
  padding: 0px 5px;
}
.customer_marketing_sale_evidence {
  font-size: 14px;
  color: #8d5e5b;
}
.customer_marketing_sale_update_form_btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
}
.customer_marketing_sale_update_btn {
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 47px;
  transition: 0.5s;
  cursor: pointer;
  margin: 0px 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575px) {
  .customer_marketing_sale_update_btn {
    padding: 8px 37px;
  }
}
.customer_marketing_sale_update_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* ===== customer_marketing_sale_copy ===== */
.marketing_sale_copy_select {
  color: #878787;
}
.customer_copy_name_box {
  padding-top: 30px;
}
.back_page_btn_margin {
  display: block;
  margin-bottom: 10px;
}
.customer_copy_title_box {
  margin-bottom: auto;
}
@media (max-width: 767px) {
  .customer_copy_title_box {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .customer_copy_title_box {
    margin-bottom: 0px;
  }
}
.customer_copy_select_box {
  margin-bottom: 28px;
}
/* ===== customer_marketing_frankin_form ===== */
.customer_marketing_franklin_action_box {
  margin-bottom: 5px;
}
.franklin_row_box {
  display: flex;
  justify-content: space-between;
}
.customer_marketing_analyze_form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 35px;
}
.customer_marketing_franklin_table {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  /* 計算每個寬度 */
  width: calc(50% - 15px);
  background-color: white;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .customer_marketing_franklin_table {
    width: 100%;
  }
}
/* ===== customer_marketing_vpsa_form ===== */
.marketing_copy_text {
  color: #666666;
}
.vpsa_arrow_icon_box {
  text-align: center;
  padding-left: 27px;
  color: #8d5e5b;
}
.customer_marketing_vpsa_analyze_form {
  position: relative;
}
.customer_marketing_vpsa_analyze_form_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 38px;
}
.customer_marketing_vpsa_table {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  /* 計算每個寬度 */
  width: calc(50% - 15px);
  background-color: white;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .customer_marketing_vpsa_table {
    width: 100%;
  }
}
.vpsa_circle_img {
  position: absolute;
  width: 135px;
  height: 135px;
  top: 67%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
.vpsa_circle_img:lang(en) {
  top: 63%;
}
@media (max-width: 767px) {
  .vpsa_circle_img {
    display: none;
  }
}
.customer_marketing_analyze_body {
  padding: 19px 26px 24px;
  background-color: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.vpsa_problems_text {
  font-size: 18px;
  color: #442825;
}
.vpsa_letter {
  position: absolute;
  padding: 7px 17px;
  font-size: 18px;
  font-weight: bold;
  color: #442825;
}
@media (max-width: 767px) {
  .vpsa_letter {
    display: none;
  }
}
.vpsa_problems_letter {
  right: 0px;
  bottom: 0px;
}
.vpsa_solutions_letter {
  left: 0px;
  bottom: 0px;
}
.vpsa_vision_letter {
  top: 0px;
  right: 0px;
}
.vpsa_action_letter {
  top: 0px;
  left: 0px;
}
.customer_marketing_vpsa_body_row {
  display: flex;
  position: relative;
}
.customer_marketing_vpsa_body_row_first {
  display: flex;
  position: relative;
  padding-bottom: 11px;
}
.customer_marketing_vpsa_body_row_end {
  display: flex;
  position: relative;
  padding-top: 11px;
}
.customer_marketing_vpsa_body_input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
  text-align: center;
  padding: 0px;
}
.customer_marketing_vpsa_solution_box {
  padding-top: 0px;
}
.customer_marketing_analyze_action_text {
  font-size: 18px;
  color: #442825;
  min-width: 90px;
}
.customer_marketing_analyze_short_body {
  padding: 19px 26px 5px;
}
/* ===== customer_marketing_benefit_form ===== */
.customer_marketing_benefit_table {
  width: 100%;
  border-radius: 5px;
  position: relative;
  margin-bottom: 50px;
}
.customer_marketing_benefit_head {
  padding: 13px 26px;
  background-color: white;
  margin-bottom: 17px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  display: flex;
}
.customer_marketing_benefit_head_text {
  font-size: 20px;
  color: #442825;
  width: 70px;
  min-width: 70px;
}
.customer_marketing_benefit_head_input {
  border: none;
  border-bottom: 1px solid #707070;
  padding: 0px;
  width: 100%;
}
.customer_marketing_benefit_body {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px 26px;
  background-color: white;
  border-radius: 5px;
}
/* ===== customer_marketing_benefit_control_form ===== */
.customer_marketing_benefit_control_table {
  width: calc(50% - 15px);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .customer_marketing_benefit_control_table {
    width: 100%;
  }
}
/* ===== customer_marketing_fact_form ===== */
.customer_marketing_fact_content {
  width: 100%;
  padding: 38px 21px;
}
@media (max-width: 767px) {
  .customer_marketing_fact_content {
    padding: 25px 15px 60px;
  }
}
.customer_marketing_fact_form {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 35px;
  padding-top: 58px;
}
@media (max-width: 767px) {
  .customer_marketing_fact_form {
    margin-bottom: 0px;
  }
}
.customer_marketing_fact_table {
  width: calc(33.3333% - 14px);
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .customer_marketing_fact_table {
    width: 100%;
    margin-bottom: 60px;
  }
}
.message_img_box {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -82%);
}
.message_img_text {
  position: absolute;
  top: 0;
  left: 0;
  top: 36%;
  /* left: 72%; */
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-size: 18px;
}
/* ===== schedule_from_customer ===== */

.schedule_form_customer_action_box {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 767px) {
  .schedule_form_customer_action_box {
    margin-bottom: 5px;
    margin-top: 20px;
    display: block;
  }
}
.back_from_page_btn {
  line-height: 24px;
  padding: 8px 0px;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
  display: block;
  width: 145px;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575px) {
  .back_from_page_btn {
    padding: 8px 0px;
    width: 130px;
  }
}
.back_from_page_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.service_content_from_customer_action_box {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .service_content_from_customer_action_box {
    display: block;
  }
}
.schedule_from_customer_action_box {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.market_schedule_search_box_from_customer_pc {
  display: flex;
  width: 358px;
  align-items: center;
}
@media (max-width: 1040px) {
  .market_schedule_search_box_from_customer_pc {
    width: 308px;
  }
}
@media (max-width: 767px) {
  .market_schedule_search_box_from_customer_pc {
    display: none;
  }
}
.market_schedule_search_box_from_customer_mobile {
  display: none;
  width: 100%;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .market_schedule_search_box_from_customer_mobile {
    display: flex;
  }
}
.schedule_from_customer_list {
  margin-bottom: 96px;
}
/* ===== service_from_customer ===== */
@media (max-width: 767px) {
  .service_from_customer_pc_back_btn {
    display: none;
  }
}
.service_from_customer_mobile_back_btn {
  display: none;
}
@media (max-width: 767px) {
  .service_from_customer_mobile_back_btn {
    display: inline-block;
    margin-bottom: 10px;
  }
}
.schedule_update_title_box {
  margin-bottom: 6px;
}
.schedule_update_title_box_row {
  display: flex;
  justify-content: end;
}
.schedule_update_title_box_between_row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .schedule_update_title_box_between_row {
    justify-content: end;
  }
}
/* ===== member_center ===== */
.member_center {
  margin-bottom: 123px;
}
@media (max-width: 767px) {
  .member_center {
    margin-bottom: 45px;
  }
}
.member_center_action_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 46px;
  margin-bottom: 8px;
}
.member_center_title_box {
  font-size: 25px;
  font-weight: bold;
  color: #442825;
}
@media (max-width: 767px) {
  .member_center_title_box {
    font-size: 20px;
  }
}
.member_center_title_i {
  margin-right: 10px;
}
.member_center_content {
  padding: 34px 0px;
  width: 100%;
}
@media (max-width: 767px) {
  .member_center_content {
    padding: 20px 0px;
  }
}
.mmeber_cneter_form {
  width: 506px;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .mmeber_cneter_form {
    width: 100%;
    padding: 0px 15px;
  }
}
.member_center_label {
  display: block;
  color: #442825;
  font-size: 20px;
  line-height: 27px;
  padding-bottom: 5px;
}
@media (max-width: 575px) {
  .member_center_label {
    font-size: 16px;
  }
}
.member_form_group {
  margin-bottom: 20px;
  width: 100%;
}
.member_radio_box {
  padding-top: 14px;
  display: inline-block;
  padding-right: 73px;
}
.radio_text {
  padding-left: 5px;
  font-size: 18px;
}
.member_center_form_group {
  margin-bottom: 55px;
}
/* ===== member_update_password ===== */
.member_update_area {
  position: relative;
  height: 644px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1040px) {
  .member_update_area {
    height: 544px;
  }
}
@media (max-width: 767px) {
  .member_update_area {
    height: 460px;
  }
}
.member_update_password_content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.member_update_password_form {
  width: 533px;
}
@media (max-width: 767px) {
  .member_update_password_form {
    width: 100%;
    padding: 0px 15px;
  }
}
.member_update_form_group {
  margin-bottom: 65px;
}
@media (max-width: 1040px) {
  .member_update_form_group {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .member_update_form_group {
    margin-bottom: 30px;
  }
}
.lock_icon {
  font-size: 20px;
}
/* ===== member_market_list ===== */
.member_market_list {
  margin-top: 46px;
  margin-bottom: 168px;
}
@media (max-width: 767px) {
  .member_market_list {
    margin-bottom: 96px;
  }
}
.member_market_list_content {
  padding: 17px 23px 53px;
  width: 100%;
}
@media (max-width: 1040px) {
  .member_market_list_content {
    padding: 17px 15px 53px;
  }
}
.member_market_remind_title {
  font-size: 22px;
  font-weight: bold;
  color: #442825;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .member_market_remind_title {
    font-size: 18px;
  }
}
.member_market_remind_table {
  width: 100%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
}
.member_market_remind_table_head {
  font-size: 20px;
  font-weight: bold;
  color: #8d5e5b;
}
@media (max-width: 575px) {
  .member_market_remind_table_head {
    font-size: 16px;
  }
}
.member_market_remind_table_body_box {
  padding: 0px 18px;
}
@media (max-width: 767px) {
  .member_market_remind_table_body_box {
    padding: 0px 10px;
  }
}
/* @media (max-width:575px){
	.member_market_remind_table_body_box{
        padding: 0px 10px;
    }
} */
.member_market_remind_box {
  display: flex;
  border-bottom: 1px solid #c2c2c2;
}

.member_market_remind_box:last-of-type {
  border: none;
}

.table_width_4 {
  width: 300px;
  padding-left: 25px;
}

.table_width_6 {
  width: calc(100% - 300px);
  padding-left: 27px;
}

@media (max-width: 767px) {
  .table_width_4 {
    width: 200px;
    padding-left: 15px;
  }
  .table_width_6 {
    width: calc(100% - 200px);
    padding-left: 22px;
  }
}

@media (max-width: 575px) {
  .table_width_4 {
    width: 160px;
    padding-left: 0px;
  }
  .table_width_6 {
    width: calc(100% - 160px);
    padding-left: 10px;
  }
}

.member_market_remind_date {
  width: 150px;
  /* min-width: 100px; */
  font-size: 18px;
  color: #2b1838;
  padding-left: 29px;
  padding-top: 13px;
  padding-bottom: 13px;
}

@media (max-width: 767px) {
  .member_market_remind_date {
    width: 105px;
    font-size: 16px;
    padding-left: 15px;
  }
}

@media (max-width: 575px) {
  .member_market_remind_date {
    width: 80px;
    font-size: 14px;
    padding-left: 0px;
  }
}

.member_market_remind_link_box {
  width: calc(100% - 150px);
  font-size: 18px;
  color: #2b1838;
}

@media (max-width: 767px) {
  .member_market_remind_link_box {
    width: calc(100% - 105px);
  }
}

@media (max-width: 575px) {
  .member_market_remind_link_box {
    width: calc(100% - 80px);
  }
}

.member_market_remind_link {
  display: flex;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 25px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .member_market_remind_link {
    padding-left: 5px;
  }
}
@media (max-width: 575px) {
  .member_market_remind_link {
    font-size: 14px;
  }
}

.member_market_remind_link:hover {
  background-color: #fff5db;
}

.recently_plan_color {
  color: #9c3703;
}

.recently_contact_color {
  color: #442825;
}

.market_remind_link_time {
  width: 150px;
}

@media (max-width: 767px) {
  .market_remind_link_time {
    width: 95px;
    font-size: 16px;
    padding-left: 15px;
  }
}

@media (max-width: 575px) {
  .market_remind_link_time {
    width: 80px;
    font-size: 14px;
    padding-left: 10px;
  }
}

.market_remind_link_journey {
  width: calc(100% - 300px);
  padding-left: 2px;
}

@media (max-width: 767px) {
  .market_remind_link_journey {
    width: calc(100% - 100px);
    font-size: 16px;
    padding-left: 17px;
  }
}
@media (max-width: 575px) {
  .market_remind_link_journey {
    padding-left: 8px;
    font-size: 14px;
  }
}
/* market_schedule */
.schedule_list_table_head_box {
  background-color: #ffe8a8;
  display: flex;
  padding: 12px 18px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.market_schedule_search_box {
  display: flex;
  width: 358px;
  align-items: center;
}
@media (max-width: 1040px) {
  .market_schedule_search_box {
    width: 308px;
  }
}
@media (max-width: 767px) {
  .market_schedule_search_box {
    width: 100%;
  }
}
.market_schedule_action_box {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 767px) {
  .market_schedule_action_box {
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }
}
.schedule_add_box {
  text-align: end;
}
@media (max-width: 767px) {
  .schedule_add_box {
    display: none;
  }
}
.schedule_add_box_mobile {
  display: none;
}
@media (max-width: 767px) {
  .schedule_add_box_mobile {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
  }
}
.market_schedule_label {
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  padding-right: 16px;
  min-width: 60px;
}
.market_schedul_search_input {
  width: calc(100% - 101px);
  height: 40px;
  border: 1px solid #442825;
  border-radius: 5px;
  color: #707070;
  position: relative;
  background-color: white;
}
@media (max-width: 575px) {
  .market_schedul_search_input {
    width: 100%;
  }
}
.market_schedule_date_box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .market_schedule_date_box {
    display: none;
  }
}

.market_schedule_date_box_mobile {
  display: none;
  justify-content: end;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .market_schedule_date_box_mobile {
    display: flex;
  }
}

.market_schedule_date_box_mobile_row {
  display: none;
  justify-content: start;
  align-items: center;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .market_schedule_date_box_mobile_row {
    display: flex;
  }
}

.api_holiday_range_info {
  font-size: 16px;
  color: #cd212a;
  line-height: 1em;
}
@media (max-width: 767px) {
  .api_holiday_range_info {
    font-size: 12px;
  }
}
.schedule_viewType_btns_box {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .schedule_viewType_btns_box {
    display: none;
  }
}
.schedule_viewType_btns_box_mobile {
  display: none;
  gap: 10px;
  justify-content: end;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .schedule_viewType_btns_box_mobile {
    display: flex;
  }
}
.schedule_viewType_btn {
  background-color: #d88f83;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #d88f83;
  border-radius: 5px;
  padding: 8px 27px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.schedule_viewType_btn:hover {
  background-color: white;
  color: #d88f83;
  border: 1px solid #d88f83;
}
.schedule_viewType_btn_active {
  background-color: white;
  color: #d88f83;
  border: 1px solid #d88f83;
}
@media (max-width: 767px) {
  .schedule_viewType_btn {
    padding: 8px 20px;
  }
}
/* market_schedule_table */
.market_table_box {
  padding: 17px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 53px;
}
@media (max-width: 767px) {
  .market_table_box {
    padding: 10px;
  }
}
.market_schedule_date {
  font-size: 22px;
  color: #442825;
  font-weight: bold;
  text-align: center;
  padding: 10px 0px 27px;
}
@media (max-width: 1040px) {
  .market_schedule_date {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .market_schedule_date {
    font-size: 16px;
    padding: 0px 0px 10px;
  }
}
@media (max-width: 575px) {
  .market_schedule_date {
    font-size: 14px;
  }
}
.customer_market_title_bold {
  font-size: 25px;
  line-height: 33px;
  color: #442825;
  display: flex;
  margin-bottom: 0px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .customer_market_title_bold {
    font-size: 18px;
  }
}
/* schedule_table */
/* 新的 */
.market_schedule_day_calendar {
  display: flex;
  gap: 10px;
}
.schedule_table_head {
  outline: 1px solid #c2c2c2;
  display: flex;
  margin-bottom: 1px;
  background-color: #ffe8a8;
}
.schedule_table_body {
  outline: 1px solid #c2c2c2;
}
.plan_schedule {
  /* outline: 1px solid #C2C2C2; */
  width: calc(50% - 5px);
}
.plan_schedule_table_head_text {
  font-size: 20px;
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d5e5b;
  font-weight: bold;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .plan_schedule_table_head_text {
    font-size: 16px;
    width: calc(100% - 25px);
  }
}
@media (max-width: 767px) {
  .plan_schedule_table_head_text {
    font-size: 12px;
    width: calc(100% - 20px);
    padding: 3px 0px;
  }
}
@media (max-width: 575px) {
  .plan_schedule_table_head_text {
    font-size: 7px;
    width: calc(100% - 12px);
    padding: 0px 0px;
  }
}
.plan_schedule_table_head_checkbox {
  min-width: 30px;
  outline: 1px solid #c2c2c2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #8d5e5b;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .plan_schedule_table_head_checkbox {
    font-size: 14px;
    min-width: 25px;
  }
}
@media (max-width: 767px) {
  .plan_schedule_table_head_checkbox {
    font-size: 10px;
    min-width: 20px;
    padding: 3px 0px;
  }
}
@media (max-width: 575px) {
  .plan_schedule_table_head_checkbox {
    font-size: 6px;
    min-width: 12px;
    padding: 0px 0px;
  }
}
.plan_schedule_table_body {
}
.plan_empty_schedule_table_body_row {
  text-align: center;
  outline: 1px solid #c2c2c2;
  padding: 2px 0px;
  font-weight: bold;
  color: #7c7c7c;
}
@media (max-width: 1040px) {
  .plan_empty_schedule_table_body_row {
    font-size: 14px;
    padding: 2px 0px;
  }
}
@media (max-width: 767px) {
  .plan_empty_schedule_table_body_row {
    font-size: 11px;
    padding: 2px 0px;
  }
}
@media (max-width: 575px) {
  .plan_empty_schedule_table_body_row {
    font-size: 6px;
    padding: 0px 0px;
    line-height: 2em;
  }
}
.plan_schedule_table_body_row {
  display: flex;
  outline: 1px solid #c2c2c2;
  margin-bottom: 1px;
}
.plan_schedule_table_body_row:last-of-type {
  margin-bottom: 0px;
}
.plan_schedule_table_body_row_time {
  min-width: 55px;
  text-align: end;
  padding: 2px 0px;
}
@media (max-width: 1040px) {
  .plan_schedule_table_body_row_time {
    font-size: 14px;
    min-width: 45px;
  }
}
@media (max-width: 767px) {
  .plan_schedule_table_body_row_time {
    font-size: 10px;
    min-width: 40px;
  }
}
@media (max-width: 575px) {
  .plan_schedule_table_body_row_time {
    font-size: 6px;
    min-width: 20px;
    padding: 0px 0px;
    line-height: 2em;
  }
}
.plan_schedule_table_body_row_content {
  width: calc(100% - 85px);
  margin-left: 15px;
  padding: 2px 0px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
}
@media (max-width: 1040px) {
  .plan_schedule_table_body_row_content {
    font-size: 14px;
    width: calc(100% - 70px);
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .plan_schedule_table_body_row_content {
    font-size: 10px;
    width: calc(100% - 65px);
    margin-left: 5px;
  }
}
@media (max-width: 575px) {
  .plan_schedule_table_body_row_content {
    font-size: 6px;
    width: calc(100% - 34px);
    margin-left: 2px;
    padding: 0px 0px;
    line-height: 2em;
  }
}
.plan_schedule_table_body_row_name {
  display: inline;
}
.plan_schedule_table_body_row_address {
  display: inline;
}
.plan_schedule_table_body_row_checkbox {
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #c2c2c2;
  background-color: white;
  border-radius: 0px;
  padding: 2px 0px;
}
@media (max-width: 1040px) {
  .plan_schedule_table_body_row_checkbox {
    min-width: 25px;
  }
}
@media (max-width: 767px) {
  .plan_schedule_table_body_row_checkbox {
    min-width: 20px;
  }
}
@media (max-width: 575px) {
  .plan_schedule_table_body_row_checkbox {
    min-width: 12px;
  }
}
/* contact */
.contact_schedule {
  width: calc(50% - 5px);
}
.contact_schedule_table_head_text {
  padding: 5px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #8d5e5b;
  width: calc(100% - 200px);
  text-align: center;
  outline: 1px solid #c2c2c2;
}
@media (max-width: 1040px) {
  .contact_schedule_table_head_text {
    font-size: 16px;
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_head_text {
    font-size: 12px;
    width: calc(100% - 120px);
    padding: 3px 0px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_head_text {
    font-size: 7px;
    width: calc(100% - 64px);
    padding: 0px 0px;
  }
}
.contact_schedule_table_head_type {
  padding: 5px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #8d5e5b;
  width: 140px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  outline: 1px solid #c2c2c2;
  background-color: #ffe8a8;
}
@media (max-width: 1040px) {
  .contact_schedule_table_head_type {
    font-size: 16px;
    width: 100px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_head_type {
    font-size: 10px;
    width: 80px;
    padding: 3px 0px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_head_type {
    font-size: 7px;
    width: 40px;
    padding: 0px 0px;
  }
}
.contact_schedule_table_head_triangle {
  padding: 5px 0px;
  color: #8d5e5b;
  font-size: 30px;
  width: 30px;
  text-align: center;
  outline: 1px solid #c2c2c2;
  background-color: #ffe8a8;
}
@media (max-width: 1040px) {
  .contact_schedule_table_head_triangle {
    width: 25px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_head_triangle {
    padding: 3px 0px;
    font-size: 13px;
    width: 20px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_head_triangle {
    padding: 0px 0px;
    font-size: 7px;
    width: 12px;
  }
}
.contact_schedule_table_head_checkbox {
  background-color: #ffe8a8;
  padding: 5px 0px;
  color: #8d5e5b;
  width: 30px;
  text-align: center;
  outline: 1px solid #c2c2c2;
}
@media (max-width: 1040px) {
  .contact_schedule_table_head_checkbox {
    font-size: 14px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_head_checkbox {
    padding: 3px 0px;
    font-size: 10px;
    width: 20px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_head_checkbox {
    padding: 0px 0px;
    font-size: 6px;
    width: 12px;
  }
}
.contact_schedule_table_body {
}
.contact_schedule_table_body_row {
  display: flex;
  outline: 1px solid #c2c2c2;
  margin-bottom: 1px;
  width: 100%;
}
.contact_schedule_table_body_row:last-of-type {
  margin-bottom: 0px;
}
.contact_schedule_table_body_row_contact {
  width: calc(100% - 200px);
  display: flex;
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_contact {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_contact {
    width: calc(100% - 120px);
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_contact {
    width: calc(100% - 64px);
  }
}
.contact_schedule_table_body_row_time {
  min-width: 55px;
  text-align: end;
  padding: 2px 0px;
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_time {
    font-size: 14px;
    min-width: 45px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_time {
    font-size: 10px;
    min-width: 40px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_time {
    font-size: 6px;
    min-width: 20px;
    padding: 0px 0px;
    line-height: 2em;
  }
}
.contact_schedule_table_body_row_content {
  margin-left: 20px;
  padding: 2px 0px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
  width: calc(100% - 55px);
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_content {
    font-size: 14px;
    margin-left: 10px;
    width: calc(100% - 45px);
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_content {
    font-size: 10px;
    margin-left: 5px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_content {
    font-size: 6px;
    margin-left: 2px;
    padding: 0px 0px;
    width: calc(100% - 20px);
    line-height: 2em;
  }
}
.contact_schedule_table_body_row_name {
  display: inline;
}
.contact_schedule_table_body_row_address {
  display: inline;
}
.contact_schedule_table_body_row_type {
  min-width: 140px;
  outline: 1px solid #c2c2c2;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0px 7px;
  gap: 4px;
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_type {
    min-width: 100px;
    padding: 0px 3px;
    gap: 2px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_type {
    min-width: 80px;
    gap: 2px;
    padding: 0px 3px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_type {
    min-width: 40px;
    gap: 1px;
    padding: 0px 3px;
    line-height: 2em;
  }
}
@media (max-width: 575px) {
  .icon_em {
    line-height: 2em;
  }
}
.contact_schedule_table_body_row_type * {
  font-size: 15px;
  color: #8d5e5b;
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_type * {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_type * {
    font-size: 9px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_type * {
    font-size: 4px;
  }
}
.contact_schedule_table_body_row_checkbox {
  min-width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  outline: 1px solid #c2c2c2;
}
@media (max-width: 1040px) {
  .contact_schedule_table_body_row_checkbox {
    min-width: 25px;
  }
}
@media (max-width: 767px) {
  .contact_schedule_table_body_row_checkbox {
    min-width: 20px;
  }
}
@media (max-width: 575px) {
  .contact_schedule_table_body_row_checkbox {
    min-width: 12px;
  }
}
/* schedule_checkbox*/
.schedule_checkbox_label {
  padding: 0;
}
.schedule_checkbox_style {
  width: 15px;
  height: 15px;
  border: 1px solid #c2c2c2;
  border-radius: 1px;
  cursor: default;
}
@media (max-width: 1040px) {
  .schedule_checkbox_style {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 767px) {
  .schedule_checkbox_style {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 575px) {
  .schedule_checkbox_style {
    width: 6px;
    height: 6px;
  }
}
.schedule_checkbox_style_checkbox {
  cursor: default;
}
.schedule_table_checkbox {
  display: none;
}
.schedule_table_checkbox + .schedule_checkbox_style {
  display: flex;
  background-color: white;
  user-select: none;
}
.schedule_table_checkbox:checked + .schedule_checkbox_style {
  background-color: #8d5e5b;
}

/* 舊的 */
.market_table_head {
  display: flex;
  gap: 12px;
}
@media (max-width: 1040px) {
  .market_table_head {
    height: 28px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .market_table_head {
    height: 21px;
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .market_table_head {
    height: calc((100vw - 100px) / 25.6);
    gap: 5px;
  }
}
/* .schedule_table_head{
    width: 50%;
    display: flex;
    border: 1px solid #C2C2C2;
    background-color: #FFE8A8;
} */
.grid {
  border-right: 1px solid #c2c2c2;
  font-weight: bold;
  color: #8d5e5b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.schedule_table_head_time {
  width: 16%;
  padding: 5px 0px;
}

.schedule_table_head_wait {
  font-size: 36px;
  width: 7%;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .schedule_table_head_wait {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .schedule_table_head_wait {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .schedule_table_head_wait {
    font-size: 8px;
  }
}
.schedule_table_head_check {
  color: #8d5e5b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 7%;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .schedule_table_head_check {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .schedule_table_head_check {
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  .schedule_table_head_check {
    font-size: 5px;
  }
}
/* body */
.market_table_body_row {
  position: relative;
}
.market_table_body_hour {
  position: absolute;
  background-color: white;
  width: 34px;
  height: calc(100% - 1px);
  top: 0px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #8d5e5b;
}
@media (max-width: 1040px) {
  .market_table_body_hour {
    width: 24px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .market_table_body_hour {
    width: 20px;
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  .market_table_body_hour {
    width: 3%;
    font-size: 6px;
  }
}
.market_table_body_row1 {
  display: flex;
  gap: 12px;
  height: 100%;
}
@media (max-width: 1040px) {
  .market_table_body_row1 {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .market_table_body_row1 {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .market_table_body_row1 {
    gap: 5px;
  }
}
.market_table_body_row2 {
  display: flex;
}
/* schedule_table_body */
/* .schedule_table_body{
    display: flex;
    width: 50%;
    border-right: 1px solid #C2C2C2;
    border-left: 1px solid #C2C2C2;
    border-bottom: 1px solid #C2C2C2;
} */
.schedule_table_body_sec {
  width: 16%;
  border-right: 1px solid #c2c2c2;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 10px;
  color: #8d5e5b;
  line-height: 1em;
  font-size: 18px;
}
@media (max-width: 1040px) {
  .schedule_table_body_sec {
    font-size: 14px;
    padding-right: 4px;
    /* height: 21px; */
  }
}
@media (max-width: 767px) {
  .schedule_table_body_sec {
    font-size: 10px;
    padding-right: 2px;
    /* height: 15px; */
  }
}
@media (max-width: 575px) {
  .schedule_table_body_sec {
    font-size: 6px;
    padding-right: 1px;
    /* height: 100%; */
  }
}
.schedule_table_body_text {
  /* width: calc(72% - 1px); */
  width: 77%;
  min-height: 21px;
  border-right: 1px solid #c2c2c2;
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 5px;
  color: black;
  line-height: 1em;
  padding: 1px 0px;
}
@media (max-width: 1040px) {
  .schedule_table_body_text {
    min-height: 21px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .schedule_table_body_text {
    min-height: 15px;
    font-size: 9px;
  }
}
@media (max-width: 575px) {
  .schedule_table_body_text {
    padding-left: 1px;
    font-size: 5px;
    min-height: 100%;
  }
}
.schedule_table_body_wait {
  width: 7%;
  min-height: 28px;
  border-right: 1px solid #c2c2c2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1040px) {
  .schedule_table_body_wait {
    min-height: 21px;
  }
}
@media (max-width: 767px) {
  .schedule_table_body_wait {
    min-height: 15px;
  }
}
@media (max-width: 575px) {
  .schedule_table_body_wait {
    min-height: 100%;
  }
}
.schedule_table_body_check {
  min-height: 28px;
  width: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1040px) {
  .schedule_table_body_check {
    min-height: 21px;
  }
}
@media (max-width: 767px) {
  .schedule_table_body_check {
    min-height: 15px;
  }
}
@media (max-width: 575px) {
  .schedule_table_body_check {
    min-height: 100%;
  }
}
.schedule_table_body_check_plan {
  min-height: 28px;
  width: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1040px) {
  .schedule_table_body_check_plan {
    min-height: 21px;
  }
}
@media (max-width: 767px) {
  .schedule_table_body_check_plan {
    min-height: 15px;
  }
}
@media (max-width: 575px) {
  .schedule_table_body_check_plan {
    min-height: 100%;
  }
}
/* contact_table */
.contact_table_body {
  width: 50%;
  display: flex;
  border-right: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
  border-bottom: 1px solid #c2c2c2;
}
.contact_table {
  border-radius: 5px;
  border: 1px solid #c2c2c2;
  width: 50%;
}
.contact_table_head {
  width: 50%;
  display: flex;
  border: 1px solid #c2c2c2;
  background-color: #ffe8a8;
}
.contact_table_head_type {
  width: 7%;
  font-size: 16px;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .contact_table_head_type {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .contact_table_head_type {
    font-size: 10px;
  }
}
@media (max-width: 575px) {
  .contact_table_head_type {
    font-size: 6px;
  }
}
.contact_table_head_text {
  width: 51%;
  font-size: 20px;
  padding: 5px 0px;
}
@media (max-width: 1040px) {
  .contact_table_head_text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contact_table_head_text {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .contact_table_head_text {
    font-size: 6px;
  }
}
.contact_table_body_text {
  width: 51%;
  border-right: 1px solid #c2c2c2;
  /* min-height: 28px; */
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 6px;
  color: black;
  line-height: 1em;
  padding: 1px 0px;
}
@media (max-width: 1040px) {
  .contact_table_body_text {
    padding-left: 4px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .contact_table_body_text {
    padding-left: 0px;
    font-size: 9px;
  }
}
@media (max-width: 575px) {
  .contact_table_body_text {
    font-size: 5px;
  }
}
.grid_contact {
  color: #8d5e5b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.market_table_btn_box {
  text-align: center;
}
.market_table_btn {
  text-align: center;
  padding: 8px 47px;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.5s;
}
.market_table_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* ===== 月和周css ===== */

.calendar_title {
  text-align: center;
  padding: 10px 0px 27px;
  color: #442825;
  font-weight: bold;
  font-size: 22px;
}
@media (max-width: 1040px) {
  .calendar_title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .calendar_title {
    font-size: 16px;
    padding: 0px 0px 10px;
  }
}
@media (max-width: 575px) {
  .calendar_title {
    font-size: 14px;
  }
}

.weekend_color {
  color: #cd212a;
}

.weekday_color {
  color: #8d5e5b;
}

.calendar_state_icon {
  color: #8d5e5b;
  font-weight: bold;
}

.triangle_icon {
  font-size: 20px;
  display: inline-block;
  position: relative;
  top: 3px;
}
@media (max-width: 1040px) {
  .triangle_icon {
    font-size: 16px;
    top: 2px;
  }
}
@media (max-width: 767px) {
  .triangle_icon {
    font-size: 12px;
    top: 1px;
  }
}
@media (max-width: 575px) {
  .triangle_icon {
    font-size: unset;
    top: 0px;
  }
}
/* 週 */
.week_weekdays {
  display: grid;
  grid-template-columns: 70px repeat(7, 1fr);
  margin-bottom: 1px;
}
@media (max-width: 1040px) {
  .week_weekdays {
    grid-template-columns: 55px repeat(7, 1fr);
  }
}
@media (max-width: 767px) {
  .week_weekdays {
    grid-template-columns: 50px repeat(7, 1fr);
  }
}
@media (max-width: 575px) {
  .week_weekdays {
    grid-template-columns: 30px repeat(7, 1fr);
  }
}
.week_weekcount {
  text-align: center;
  font-weight: bold;
  outline: 1px solid #c2c2c2;
  background-color: #ffe8a8;
  line-height: 1.5em;
  color: #8d5e5b;
  padding: 3px;
}
@media (max-width: 1040px) {
  .week_weekcount {
    font-size: 14px;
    padding: 2px;
  }
}
@media (max-width: 767px) {
  .week_weekcount {
    font-size: 9px;
  }
}
@media (max-width: 575px) {
  .week_weekcount {
    font-size: 8px;
    padding: 1px;
  }
}
@media (max-width: 500px) {
  .week_weekcount {
    font-size: 6px;
  }
}
.week_weekday {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 3px;
  outline: 1px solid #c2c2c2;
  background-color: #ffe8a8;
  width: calc((903px - 70px) / 7);
  line-height: 1.5em;
}
@media (max-width: 1040px) {
  .week_weekday {
    font-size: 14px;
    width: calc((656px - 55px) / 7);
    padding: 2px;
  }
}
@media (max-width: 767px) {
  .week_weekday {
    font-size: 9px;
    width: calc((483px - 50px) / 7);
  }
}
@media (max-width: 575px) {
  .week_weekday {
    font-size: 8px;
    width: calc((100vw - 130px) / 7);
    padding: 1px;
  }
}
@media (max-width: 500px) {
  .week_weekday {
    font-size: 6px;
  }
}
.week_rows_wrap {
  display: flex;
}
.week_row_time {
  width: 70px;
  outline: 1px solid #c2c2c2;
  background-color: #fff;
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 1040px) {
  .week_row_time {
    font-size: 14px;
    width: 55px;
    min-height: 59px;
  }
}
@media (max-width: 767px) {
  .week_row_time {
    font-size: 9px;
    width: 50px;
    min-height: 54px;
  }
}
@media (max-width: 575px) {
  .week_row_time {
    font-size: 8px;
    width: 30px;
    min-height: 32px;
  }
}
@media (max-width: 500px) {
  .week_row_time {
    font-size: 6px;
  }
}
.week_row_event_box_wrap {
  width: calc(100% - 70px);
  display: flex;
}
@media (max-width: 1040px) {
  .week_row_event_box_wrap {
    width: calc(100% - 55px);
  }
}
@media (max-width: 767px) {
  .week_row_event_box_wrap {
    width: calc(100% - 50px);
  }
}
@media (max-width: 575px) {
  .week_row_event_box_wrap {
    width: calc(100% - 30px);
  }
}
.week_row_event_box {
  width: calc(100% / 7);
  outline: 1px solid #c2c2c2;
  background-color: #fff;
  padding: 4px;
  font-size: 10px;
}
@media (max-width: 1040px) {
  .week_row_event_box {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .week_row_event_box {
    font-size: 6px;
  }
}
@media (max-width: 575px) {
  .week_row_event_box {
    font-size: 3px;
  }
}
.week_days {
  display: grid;
  grid-template-columns: repeat(8, 0.5fr 1fr);
}
.week_days_col {
  display: grid;
}
.week_day {
  outline: 1px solid #c2c2c2;
  background-color: white;
  height: 76px;
  font-size: 10px;
  padding: 10px 4px;
  width: calc((903px - 70px) / 7);
}
@media (max-width: 1040px) {
  .week_day {
    height: 54px;
    font-size: 8px;
    width: calc((656px - 55px) / 7);
    padding: 3px;
  }
}
@media (max-width: 767px) {
  .week_day {
    height: 42px;
    font-size: 6px;
    width: calc((483px - 50px) / 7);
    padding: 2px;
  }
}
@media (max-width: 575px) {
  .week_day {
    font-size: 3px;
    height: calc(((100vw - 130px) / 7) * (76 / 121));
    width: calc((100vw - 135px) / 7);
    padding: 1px;
  }
}

.week_event_box {
  width: 100%;
  line-height: 2em;
  color: black;
  display: block;
  /* position: relative; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* =================== 月 ================== */
.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.weekday {
  padding: 2px;
  text-align: center;
  outline: 1px solid #c2c2c2;
  background-color: #ffe8a8;
  font-weight: bold;
  line-height: 1.5em;
}
@media (max-width: 1040px) {
  .weekday {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .weekday {
    font-size: 10px;
    padding: 1px;
  }
}
@media (max-width: 565px) {
  .weekday {
    font-size: 8px;
  }
}

.days {
  /* outline: 1px solid #8D5E5B; */
}

.day {
  min-height: 110px;
  font-size: 14px;
  padding-left: 5px;
  background-color: white;
  outline: 1px solid #c2c2c2;
  padding-bottom: 4px;
}
@media (max-width: 1040px) {
  .day {
    min-height: 78px;
    font-size: 12px;
    padding-left: 4px;
  }
}
@media (max-width: 767px) {
  .day {
    min-height: 57px;
    font-size: 10px;
    padding-left: 3px;
  }
}
@media (max-width: 565px) {
  .day {
    font-size: 8px;
    min-height: calc(((100vw - 100px) / 7) * (110 / 131.44));
    padding-left: 2px;
  }
}

.month_weekend_color {
  color: #cd212a;
  background-color: #f0f0f0;
}

.day_date {
  color: #8d5e5b;
  font-weight: bold;
  display: flex;
  line-height: 1em;
  padding: 6px 2px 6px 2px;
  align-items: end;
}
@media (max-width: 1040px) {
  .day_date {
    padding: 5px 2px 5px 0px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .day_date {
    padding: 4px 2px 3px 0px;
    font-size: 8px;
  }
}
@media (max-width: 565px) {
  .day_date {
    padding: 3px 2px 1px 0px;
    font-size: 6px;
  }
}

.day_text_color {
  color: #cd212a;
}

.lunar_date {
  font-size: 8px;
  line-height: 1em;
  padding-bottom: 1px;
  padding-left: 3px;
}
@media (max-width: 1040px) {
  .lunar_date {
    font-size: 6px;
  }
}
@media (max-width: 767px) {
  .lunar_date {
    font-size: 4px;
    padding-left: 2px;
  }
}
@media (max-width: 565px) {
  .lunar_date {
    font-size: 2px;
    padding-left: 1px;
  }
}

.day.empty {
  /* background-color: #f0f0f0; */
}

.day_event {
  display: block;
  font-size: 10px;
  color: #442825;
  position: relative;
  line-height: 1em;
  padding: 4px 0px 4px 2px;
  white-space: nowrap;
  width: calc(903px / 8);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1040px) {
  .day_event {
    font-size: 8px;
    padding: 4px 0px 4px 0px;
    width: calc(656px / 8);
  }
}
@media (max-width: 767px) {
  .day_event {
    font-size: 6px;
    padding: 3px 0px 3px 0px;
    width: calc(483px / 8);
  }
}
@media (max-width: 565px) {
  .day_event {
    font-size: 3px;
    padding: 2px 0px 2px 0px;
    width: calc((100vw - 100px) / 8);
  }
}

/* .day_event::before{
    content: '';
    line-height: 1em;
    height: 5px;
    width: 5px;
    position: absolute;
    background-color: #4389D7;
    top: 50%;
    left: 0px;
    border-radius: 50%;
    transform: translate(0, -45%);
}
@media (max-width: 1040px){
	.day_event::before{
        height: 3px;
        width: 3px;
    }
}
@media (max-width: 767px){
	.day_event::before{
        height: 2px;
        width: 2px;
    }
}
@media (max-width: 575px){
	.day_event::before{
        height: 2px;
        width: 2px;
        transform: translate(0, -65%);
    }
} */
.today_background,
.week_today_background {
  background-color: #fff5db !important;
}
/* ===== schedule_add_form ===== */
.member_schedule_add_form {
  margin-bottom: 126px;
}
@media (max-width: 767px) {
  .member_schedule_add_form {
    margin-bottom: 50px;
  }
}
.member_schedule_add_form_action_box {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 767px) {
  .member_schedule_add_form_action_box {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.member_schedule_content {
  width: 100%;
  padding: 20px 0px 61px;
}
@media (max-width: 767px) {
  .member_schedule_content {
    padding: 20px 0px 40px;
  }
}
.schedult_date_select_input {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  color: #4d4d4d;
  background-color: white;
}
@media (max-width: 575px) {
  .schedult_date_select_input {
    font-size: 16px;
    padding-left: 12px;
  }
}
@supports (-webkit-touch-callout: none) {
  /* 針對 iOS 的 CSS */
  @media (max-width: 575px) {
    .schedult_date_select_input {
      font-size: 16px;
      padding-left: 0px;
      padding-right: 20px;
      /* direction: ltr; */
    }
  }
}
.member_schedule_title_bold {
  font-size: 25px;
  line-height: 33px;
  color: #442825;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575px) {
  .member_schedule_title_bold {
    font-size: 18px;
  }
}
.back_page_btn_box {
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .back_page_btn_box {
    width: 100%;
    padding: 20px 0px;
  }
}
.back_page_btn {
  line-height: 24px;
  padding: 8px 0px;
  width: 150px;
  text-align: center;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
}
@media (max-width: 575px) {
  .back_page_btn {
    width: 130px;
  }
}
.back_page_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.schedule_add_form {
  width: 455px;
  margin: 0 auto;
}
@media (max-width: 1040px) {
  .schedule_add_form {
    width: 100%;
    padding: 0px 15px;
  }
}
.member_select {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding-left: 15px;
  background-color: white;
  cursor: pointer;
  color: black;
}
.member_select_option_text {
  width: 300px;
}
.member_form_inner_group {
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .member_form_inner_group {
    flex-direction: column;
  }
}
.member_input_half_box {
  display: flex;
  width: 50%;
  height: 50px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 575px) {
  .member_input_half_box {
    height: 45px;
    width: 100%;
  }
}
.member_input_time_box {
  display: flex;
  width: 50%;
  gap: 8px;
}
@media (max-width: 575px) {
  .member_input_time_box {
    width: 100%;
  }
}
.member_input_time_colon {
  display: flex;
  align-items: center;
}
.member_input_quarter_box {
  display: flex;
  width: 50%;
  height: 50px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 575px) {
  .member_input_quarter_box {
    height: 45px;
  }
}
.member_schedule_label {
  display: block;
  color: #442825;
  font-size: 20px;
  line-height: 27px;
  padding-bottom: 5px;
}
.member_checkbox_box {
  display: inline-flex;
  align-items: center;
  margin-right: 23px;
  margin-top: 14px;
}
.member_checkbox_label {
  font-size: 18px;
}
.member_checkbox {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.member_textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 197px;
  font-size: 18px;
  padding: 15px;
  resize: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
/* @media (max-width:575px){
	.member_textarea{
        margin-bottom: 16px;
    }
} */
.member_schedule_add_form_group {
  margin-bottom: 60px;
  width: 100%;
}
@media (max-width: 767px) {
  .member_schedule_add_form_group {
    margin-bottom: 30px;
  }
}
.member_schedule_add_btn_box {
  text-align: center;
}
/* ===== schedule_update_form ===== */
.go_custom_info_box {
  margin-top: 12px;
  text-align: end;
}
.member_link {
  display: inline-flex;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  padding: 8px 37px;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.member_link:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.member_schedule_update_btn_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 8px;
}
.member_schedule_update_inner_btn_box {
  display: flex;
  gap: 16px;
}
@media (max-width: 575px) {
  .member_schedule_update_inner_btn_box {
    gap: 8px;
  }
}
.member_update_form_btn {
  text-align: center;
  padding: 8px 42px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media (max-width: 575px) {
  .member_update_form_btn {
    padding: 8px 28px;
  }
}
.btn_pink {
  background-color: #d88f83;
  transition: 0.5s;
}
.btn_pink:hover {
  background-color: white;
  color: #d88f83;
  outline: 1px solid #d88f83;
}
.btn_brown {
  background-color: #442825;
  transition: 0.5s;
}
.btn_brown:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* ===== income_list ===== */
.income_area {
  position: relative;
  height: 644px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .income_area {
    min-height: 454px;
    height: unset;
  }
}
.income_list_table_body_box {
  padding: 0px 18px;
}
.income_list_add {
  display: inline-flex;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  padding: 8px 42px;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.income_list_add:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.income_list_link_box {
  display: flex;
  border-bottom: 2px solid #f7e4df;
  position: relative;
}
@media (max-width: 767px) {
  .income_list_link_box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.income_list_link_box:last-of-type {
  border: none;
}
.income_list_link_box:hover {
  background-color: #f7e4df;
}
.income_list_table_body {
  font-size: 18px;
  color: #2b1838;
  padding-left: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .income_list_table_body {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .income_list_table_body {
    font-size: 16px;
  }
}
.income_list_table_remove {
  display: block;
  margin-left: auto;
  background-color: white;
  color: #442825;
  border: 1px solid #442825;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translate(0%, -50%);
}
@media (max-width: 575px) {
  .income_list_table_remove {
    right: 0px;
  }
}
.income_list_table_remove:hover {
  background-color: #442825;
  color: white;
}
/* ===== income_add_form ===== */
.income_input {
  padding: 0px;
  border: none;
  background-color: transparent;
  color: #442825;
  height: 100%;
  font-size: 18px;
  width: 100%;
}
@media (max-width: 767px) {
  .income_input {
    font-size: 15px;
  }
}
.income_input::placeholder {
  font-size: 18px;
  color: #442825;
}
@media (max-width: 767px) {
  .income_input::placeholder {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .income_input::placeholder {
    font-size: 12px;
  }
}
/* ===== income_content ===== */
.income_content {
  margin-bottom: 123px;
}
@media (max-width: 767px) {
  .income_content {
    margin-bottom: 60px;
  }
}
.income_content_content {
  padding: 28px 25px 38px;
  width: 100%;
}
@media (max-width: 1040px) {
  .income_content_content {
    padding: 28px 15px 38px;
  }
}
.income_year_label {
  font-size: 18px;
  color: #707070;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 450px;
  padding: 13px;
  background-color: #ffffff;
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .income_year_label {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .income_year_label {
    width: 230px;
  }
}
@media (max-width: 575px) {
  .income_year_label {
    width: 180px;
  }
  .income_year_label:lang(en) {
    width: 140px;
  }
}
.income_select {
  width: calc(100% - 450px);
  height: 100%;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding-left: 10px;
  color: #707070;
  background-color: #ffffff;
  text-align-last: start;
}
@media (max-width: 1040px) {
  .income_select {
    width: calc(100% - 320px);
  }
}
@media (max-width: 767px) {
  .income_select {
    width: calc(100% - 230px);
  }
}
@media (max-width: 575px) {
  .income_select {
    width: calc(100% - 180px);
  }
  .income_select:lang(en) {
    width: calc(100% - 140px);
  }
}
.income_select option {
  text-align: start;
}
.income_content_form {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .income_content_form {
    margin-bottom: 50px;
  }
}
.income_content_select_box {
  border: 1px solid black;
}
.income_content_select {
  width: 100%;
  background-color: white;
  height: 50px;
}
.income_content_table {
  display: block;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 52px;
  margin-top: 35px;
}
.income_content_table_head_box {
  background-color: #e8bcb5;
  display: flex;
  padding: 12px 18px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
@media (max-width: 767px) {
  .income_content_table_head_box {
    display: none;
  }
}
.income_content_table_head_big {
  font-size: 20px;
  font-weight: bold;
  color: white;
  width: 38%;
  padding-left: 25px;
}
.income_content_table_head {
  font-size: 20px;
  font-weight: bold;
  color: white;
  width: 31%;
  padding-left: 25px;
}
.income_content_table_body_big {
  font-size: 18px;
  width: 38%;
  color: #442825;
  padding-left: 25px;
  display: flex;
}
@media (max-width: 767px) {
  .income_content_table_body_big {
    width: 100%;
    font-size: 16px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
}
.income_content_table_body {
  font-size: 18px;
  width: 31%;
  color: #442825;
  padding-left: 25px;
  display: flex;
}
@media (max-width: 767px) {
  .income_content_table_body {
    width: 50%;
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .income_content_table_body {
    display: block;
  }
}
.income_content_table_span {
  display: none;
  font-size: 15px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .income_content_table_span {
    display: block;
    font-size: 13px;
  }
}
/* @media (max-width:575px){
	.income_content_table_span{
        display: block;
        font-size: 13px;
    }
} */
.min_width_74 {
  min-width: 74px;
}
@media (max-width: 575px) {
  .min_width_74 {
    min-width: 70px;
  }
}

.min_width_90 {
  min-width: 90px;
}
@media (max-width: 575px) {
  .min_width_90 {
    min-width: 82px;
  }
}
.income_content_link_box {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #f7e4df;
}
.income_content_link_box:last-of-type {
  border: none;
}
.income_content_link_box:hover {
  background-color: #f7e4df;
}
.income_content_actual_value {
  cursor: pointer;
}
.income_content_actual_value_input {
  padding: 0px;
  display: none;
}
/* income_chart */
.income_chart_form {
  margin-bottom: 88px;
}
.bar_chart_box {
  margin-bottom: 82px;
}
.chart_title_box {
  display: flex;
  margin-bottom: 41px;
  align-items: center;
  justify-content: center;
  color: #442825;
}
.chart_title {
  font-size: 20px;
  font-weight: bold;
  color: #442825;
  line-height: 27px;
  padding: 0px 16px;
}
.chart_unit_select_box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .chart_unit_select_box {
    gap: 8px;
  }
}
.chart_unit_select_text {
  font-size: 18px;
  color: #442825;
  min-width: 74px;
}
.chart_unit_select_btn {
  width: 100px;
  padding: 7px 0px;
  background-color: white;
  color: #442825;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #442825;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .chart_unit_select_btn {
    width: 80px;
  }
}
.chart_unit_select_btn:hover {
  background-color: #442825;
  color: white;
}
.chart_unit_select_btn_active {
  background-color: #442825;
  color: white;
}
.chart_area_box {
  overflow-x: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.chart_area {
  background-color: white;
  padding: 25px 17px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 575px) {
  .chart_area {
    overflow-x: auto;
    padding: 3px;
  }
}
.chart_img {
  width: 100%;
}
.diamond_icon {
  font-size: 12px;
}
/* ===== service_update_form ===== */
.service_back_add_btn {
  padding: 8px 0px;
  width: 221px;
  display: block;
  text-align: center;
  background-color: #442825;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.5s;
}
.service_back_add_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.service_update_content {
  padding: 18px 25px 59px;
  width: 100%;
}
@media (max-width: 1040px) {
  .service_update_content {
    padding: 18px 15px 25px;
  }
}
.service_content_action_box {
  margin-bottom: 8px;
  display: flex;
  justify-content: end;
  align-items: end;
}
.service_content_label {
  display: block;
  font-size: 20px;
  line-height: 27px;
  color: #442825;
  margin-bottom: 7px;
}
@media (max-width: 575px) {
  .service_content_label {
    font-size: 16px;
  }
}
.service_select {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding-left: 15px;
  background-color: white;
}
/* service_form */
.service_form {
  margin-top: 30px;
}
/* service_form_1 */
.service_form_1 {
  display: flex;
  gap: 5px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8bcb5;
}
@media (max-width: 1040px) {
  .service_form_1 {
    display: block;
    width: 100%;
  }
}
/* @media (max-width:767px){
	.service_form_1{
        width: 533px;
    }
} */
.service_form_1_left {
  width: 50%;
}
@media (max-width: 1040px) {
  .service_form_1_left {
    width: 100%;
    margin-bottom: 5px;
  }
}
.service_form_1_left_top {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .service_form_1_left_top {
    display: block;
  }
}
/* satisfaction_box */
.satisfaction_box {
  flex: 1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 767px) {
  .satisfaction_box {
    margin-bottom: 25px;
  }
}
.service_form_1_title_box {
  background-color: #f7e4df;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 8px;
  text-align: center;
}
.service_form_1_main_title {
  font-size: 18px;
  font-weight: bold;
  color: #442825;
}
.service_form_1_sub_title {
  font-size: 13px;
  font-weight: bold;
  color: #442825;
}
.service_form_1_content_box {
  padding: 11px 13px;
  background-color: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.satist_row_box {
  display: flex;
  padding: 11px 0px;
}
@media (max-width: 575px) {
  .satist_row_box:lang(en) {
    flex-direction: column;
  }
}
.satist_question {
  font-size: 16px;
  margin-right: 13px;
  color: #442825;
}
@media (max-width: 1040px) {
  .satist_question {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .satist_question {
    margin-right: 140px;
  }
}
@media (max-width: 575px) {
  .satist_question {
    margin-right: 60px;
  }
}
.satist_ans_box {
  display: flex;
  flex: 1;
  justify-content: space-between;
  column-gap: 4px;
}
.satist_ans_box:lang(en) {
  flex-direction: column;
}
@media (max-width: 575px) {
  .satist_ans_box:lang(en) {
    /* justify-content: start; */
    flex-direction: row;
  }
}
.satist_radio {
  transform: scale(1.2);
}
/* comments_box */
.comments_box {
  flex: 1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: white;
}
@media (max-width: 767px) {
  .comments_box {
    margin-bottom: 25px;
  }
}
.comments_input {
  width: 100%;
  margin-bottom: 22px;
  border: none;
  outline: none;
  border-bottom: 1px solid #707070;
  transform: scale(1);
  padding: 0px;
  font-size: 16px;
  border-radius: 0px;
}
@media (max-width: 767px) {
  .comments_input {
    width: calc(100% - 64px);
  }
  .comments_input:lang(en) {
    width: 100%;
  }
}
.comments_input:first-of-type {
  margin-top: 12px;
}
.comments_input:last-of-type {
  margin-bottom: 12px;
}
.service_form_1_right {
  width: 50%;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .service_form_1_right {
    width: 100%;
  }
}
.service_form_1_left_bottom {
  background-color: #f7e4df;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .service_form_1_left_bottom {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .service_form_1_left_bottom {
    flex-direction: column;
    align-items: center;
  }
}
.sign_title_box {
  width: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .sign_title_box {
    flex-direction: column;
  }
}
.sign_title_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 10px;
}
.sign_clear_btn {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  background-color: #442825;
  color: white;
  padding: 8px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.sign_clear_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
.sign_area {
  flex: 1;
  height: 224px;
  background-color: white;
  border-radius: 5px;
}
.service_row_box {
  padding: 10px 0px;
  display: flex;
  font-size: 16px;
  line-height: 21px;
  /* align-items: center; */
}
.service_row_box2 {
  padding: 10px 0px;
  display: flex;
  font-size: 16px;
  line-height: 21px;
  align-items: center;
}
.service_text_row_box {
  padding: 10px 0px;
  display: flex;
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .service_text_row_box {
    flex-direction: column;
  }
}
.service_follow_question {
  margin-right: 19px;
  min-width: 64px;
  line-height: 24px;
  color: #442825;
}
@media (max-width: 575px) {
  .service_follow_question {
    margin-right: 10px;
  }
}
.service_follow_question_94 {
  margin-right: 19px;
  min-width: 96px;
  line-height: 24px;
  color: #442825;
}
@media (max-width: 575px) {
  .service_follow_question_94 {
    margin-right: 10px;
  }
}
.service_follow_question_128 {
  margin-right: 19px;
  min-width: 128px;
  line-height: 24px;
  color: #442825;
}
@media (max-width: 575px) {
  .service_follow_question_128 {
    margin-right: 10px;
  }
}
.service_follow_answer {
  display: flex;
  flex-wrap: wrap;
}
.service_follow_choice2_box {
  display: none;
}
.service_follow_choice2_add_btn {
  background-color: #442825;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 6px 8px;
  cursor: pointer;
  color: #fff;
  margin-left: 20px;
  border: none;
  transition: 0.5s;
  display: none;
}
.service_follow_choice2_add_btn:hover {
  background-color: #fff;
  color: #442825;
  outline: 1px solid #442825;
}
.service_follow_remove_item_btn {
  /* padding: 4px; */
  width: 25px;
  height: 25px;
  margin-left: 10px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #442825;
  text-align: center;
  align-self: center;
  transition: 0.5s;
  cursor: pointer;
}
.service_follow_remove_item_btn:hover {
  background-color: #442825;
  color: #fff;
}
.service_follow_date {
  margin-right: 19px;
  height: 24px;
  border: none;
  border-bottom: 1px solid black;
  position: relative;
  width: 100px;
  padding-left: 0px;
  background-color: white;
  font-size: 16px;
}
@media (max-width: 575px) {
  .service_follow_date {
    margin-right: 2px;
    width: 120px;
  }
}
.service_follow_input {
  width: 81px;
  border: none;
  border-bottom: 1px solid black;
  padding: 0px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 575px) {
  .service_follow_input {
    width: 55px;
  }
}
.service_follow_radio_box {
  display: flex;
  align-items: center;
  margin-right: 26px;
}
.service_follow_radio {
  width: 18px;
  height: 18px;
  margin-right: 11px;
}
@media (max-width: 575px) {
  .service_follow_radio {
    margin-right: 4px;
  }
}
.service_follow_checkbox_box {
  display: flex;
  align-items: center;
  margin-right: 26px;
  margin-bottom: 14px;
}
.service_follow_checkbox_box2 {
  display: flex;
  align-items: center;
  margin-right: 26px;
  margin-bottom: 20px;
}
.service_follow_checkbox {
  min-width: 18px;
  height: 18px;
  margin-right: 7px;
}
@media (max-width: 575px) {
  .service_follow_checkbox {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}
.service_follow_frequency_radio_box {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
@media (max-width: 575px) {
  .service_follow_frequency_radio_box {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
.service_follow_study_question {
  margin-right: 13px;
  line-height: 24px;
  color: #442825;
}
.service_follow_input_box {
  flex: 1;
}
.service_follow_full_input {
  border: none;
  border-bottom: 1px solid black;
  width: 100%;
  padding: 0px;
  font-size: 16px;
}
/* service_form_2 */
.service_form_2 {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
  gap: 5px;
  border-bottom: 1px solid #e8bcb5;
}
.service_form_2_box {
  width: calc(25% - (15px / 4));
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .service_form_2_box {
    width: calc(50% - 5px);
  }
}
@media (max-width: 575px) {
  .service_form_2_box {
    width: 100%;
    margin-bottom: 25px;
  }
}
.service_form_2_title_box {
  background-color: #f7e4df;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 8px;
  text-align: center;
}
.service_form_2_main_title {
  font-size: 18px;
  font-weight: bold;
  color: #442825;
}
.service_form_2_sub_title {
  font-size: 13px;
  font-weight: bold;
  color: #442825;
}
.service_form_2_content_box {
  padding: 11px 0px;
}
.service_form_2_select_content_box {
  padding: 11px 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 4px;
  height: calc(100% - 64px);
}
.service_form_2_select_content_box:lang(en) {
  align-items: start;
  height: auto;
}
.service_form_2_content_row {
  padding: 11px 13px;
  display: flex;
}
.service_form_2_mouth_content_row {
  padding: 11px 13px;
  display: flex;
  flex-wrap: wrap;
}
.service_form_2_content_row_quertion {
  /* margin-right: 19px; */
  margin-right: 5px;
  font-size: 16px;
  /* min-width: 32px; */
  min-width: 70px;
  color: #442825;
}

.service_form_2_content_row_input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
  padding: 0px;
  font-size: 16px;
}
.service_form_2_checkbox_margin_box {
  padding: 11px 0px;
  display: flex;
  align-items: center;
  margin-right: 26px;
}
@media (max-width: 1040px) {
  .service_form_2_checkbox_margin_box {
    margin-right: 10px;
  }
}
.service_form_2_checkbox_box {
  padding: 11px 0px;
  display: flex;
  align-items: center;
}
@media (max-width: 1040px) {
  .service_form_2_checkbox_box {
    margin-right: 10px;
  }
}
.service_form_2_select_contact_content_box {
  padding: 11px 7px;
  display: flex;
  flex-wrap: wrap;
}
.service_form_2_select_contact_content_box:lang(en) {
  column-gap: 4px;
}
.checkbox_box_contact_label {
  font-size: 15px;
}
.contact_checkbox {
  margin-right: 4px;
  width: 18px;
  height: 18px;
}
@media (max-width: 575px) {
  .contact_checkbox {
    width: 14px;
    height: 14px;
  }
}
.contact_small_checkbox {
  width: 16px;
  height: 16px;
  margin-right: 1px;
}
@media (max-width: 575px) {
  .contact_small_checkbox {
    width: 14px;
    height: 14px;
  }
}
.checkbox_box_margin {
  margin-right: 6px;
}
@media (max-width: 575px) {
  .checkbox_box_margin {
    margin-right: 14px;
  }
}
/* service_form_3 */
.service_form_3 {
  padding: 30px 0px;
  border-bottom: 1px solid #e8bcb5;
}
.service_form_3_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.add_can_help_people {
  text-align: end;
  padding: 8px 0px;
  margin-left: auto;
}
.add_can_help_people_btn {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 29px;
  background-color: #442825;
  border-radius: 5px;
  transition: 0.5s;
  border: none;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.add_can_help_people_btn:hover {
  background-color: #ffffff;
  color: #442825;
  outline: 1px solid #442825;
}
/* service_form_4 */
.service_form_4 {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.service_form_4_left {
  width: calc(50% - 5px);
}
@media (max-width: 1040px) {
  .service_form_4_left {
    width: 100%;
    border-bottom: 1px solid #e8bcb5;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.service_form_4_left_first_box_padding {
  padding-bottom: 23px;
}
.service_form_4_left_box_padding {
  padding: 23px 0px;
  border-top: 1px solid #e8bcb5;
}
.service_form_4_left_box {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.service_form_4_title_box {
  background-color: #f7e4df;
  padding: 19px;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.service_form_4_main_title {
  line-height: 24px;
  color: #442825;
  font-size: 18px;
  font-weight: bold;
}
.service_form_4_content_box {
  padding: 8px 13px;
}
.service_form_4_content_row {
  padding: 13px 0px;
  display: flex;
  column-gap: 4px;
}
@media (max-width: 575px) {
  .service_form_4_content_row:lang(en) {
    flex-direction: column;
  }
}
.service_form_4_content_question {
  flex-shrink: 0;
  font-size: 16px;
  color: #442825;
  margin-right: 19px;
  min-width: 32px;
}
@media (max-width: 575px) {
  .service_form_4_content_question {
    margin-right: 9px;
  }
}
.service_form_4_policy_date_input {
  width: 170px;
  border: none;
  border-bottom: 1px solid #707070;
  font-size: 16px;
  padding: 0px;
  position: relative;
  min-height: 24px;
}
.service_form_4_policy_quota_input {
  width: 170px;
  border: none;
  border-bottom: 1px solid #707070;
  font-size: 16px;
  padding: 0px;
  position: relative;
}
@media (max-width: 575px) {
  .service_form_4_policy_quota_input {
    width: 100%;
  }
}
.service_form_4_content_answer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.service_form_4_content_answer:lang(en) {
  flex-direction: column;
  row-gap: 4px;
}
.service_form_4_checkbox_box {
  display: flex;
  align-items: center;
  width: calc(50% - 12px);
  margin-bottom: 16px;
}
.service_form_4_checkbox_box:lang(en) {
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 575px) {
  .service_form_4_checkbox_box {
    margin-bottom: 8px;
    width: calc(50% - 4px);
  }
}
.service_form_4_checkbox_box:nth-child(odd) {
  margin-right: 24px;
}
@media (max-width: 575px) {
  .service_form_4_checkbox_box:nth-child(odd) {
    margin-right: 8px;
  }
}
.form_4_label {
  margin-right: 11px;
  min-width: 32px;
}
@media (max-width: 575px) {
  .form_4_label {
    margin-right: 2px;
  }
}
.service_form_4_input {
  width: 100%;
  padding: 0px;
  border: none;
  border-bottom: 1px solid #707070;
}
@media (max-width: 575px) {
  .service_form_4_input {
    font-size: 15px;
  }
}
.service_form_4_checkbox_nomargin_box {
  display: flex;
  align-items: center;
  width: calc(50% - 12px);
}
.service_form_4_checkbox_nomargin_box:lang(en) {
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 575px) {
  .service_form_4_checkbox_nomargin_box {
    width: calc(50% - 4px);
  }
}
.service_form_4_checkbox_nomargin_box:nth-child(odd) {
  margin-right: 24px;
}
@media (max-width: 575px) {
  .service_form_4_checkbox_nomargin_box:nth-child(odd) {
    margin-right: 8px;
  }
}
.service_form_4_checkbox_small_box {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
@media (max-width: 575px) {
  .service_form_4_checkbox_small_box {
    margin-right: 12px;
  }
}
.service_form_4_content_big_question {
  min-width: 64px;
  margin-right: 19px;
  color: #442825;
}
.add_policy_record {
  text-align: end;
}
.add_policy_record_btn {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 29px;
  background-color: #442825;
  border-radius: 5px;
  transition: 0.5s;
  border: none;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.add_policy_record_btn:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* service_form_4_right */
.service_form_4_right {
  width: 50%;
}
@media (max-width: 1040px) {
  .service_form_4_right {
    width: 100%;
  }
}
.service_form_4_right_claims_box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  margin-bottom: 5px;
  border-radius: 5px;
}
@media (max-width: 1040px) {
  .service_form_4_right_claims_box {
    margin-bottom: 25px;
  }
}
.service_form_4_right_img_box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  border-radius: 5px;
}
.service_form_4_claims_content_box {
  padding: 19px 10px;
}
.service_form_4_claims_row {
  padding: 13px 0px;
  display: flex;
  align-items: center;
}
.service_form_4_claims_text {
  padding-left: 20px;
}
.service_form_4_img_content_box {
  padding: 38px 72px 38px;
}
@media (max-width: 1040px) {
  .service_form_4_img_content_box {
    padding: 20px;
  }
}
.service_form_4_img {
  width: 100%;
}
.update_service_page_btn_box {
  text-align: center;
  padding: 20px 0px;
  margin-top: 80px;
}
@media (max-width: 1040px) {
  .update_service_page_btn_box {
    margin-top: 25px;
  }
}
.back_service_list_link {
  color: #442825;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 29px;
  background-color: white;
  border-radius: 5px;
  transition: 0.5s;
  margin-right: 20px;
  outline: 1px solid #442825;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1040px) {
  .back_service_list_link {
    padding: 8px 15px;
    margin-right: 12px;
  }
}
@media (max-width: 575px) {
  .back_service_list_link {
    padding: 8px 12px;
    margin-right: 10px;
  }
  .back_service_list_link:lang(en) {
    display: block;
    margin-bottom: 15px;
  }
}
@media (max-width: 375px) {
  .back_service_list_link {
    display: block;
    margin-bottom: 15px;
  }
}
.back_service_list_link:hover {
  background-color: #442825;
  color: #ffffff;
  outline: 0px;
}
.service_add_submit {
  padding: 8px 47px;
  border-radius: 5px;
  background-color: #442825;
  font-weight: bold;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1040px) {
  .service_add_submit {
    padding: 8px 42px;
  }
}
.service_update_submit {
  padding: 8px 47px;
  border-radius: 5px;
  background-color: #442825;
  font-weight: bold;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1040px) {
  .service_update_submit {
    padding: 8px 42px;
  }
}
@media (max-width: 575px) {
  .service_update_submit {
    padding: 8px 20px;
  }
  .service_update_submit:lang(en) {
    width: 100%;
  }
}
.service_update_submit:hover {
  background-color: white;
  color: #442825;
  outline: 1px solid #442825;
}
/* ===== service_list ===== */
.service_list_table_body_box {
  padding: 0px 18px;
}
.service_list_date_text {
  min-width: 200px;
  padding-left: 25px;
  font-size: 18px;
  color: #442825;
}
@media (max-width: 767px) {
  .service_list_date_text {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .service_list_date_text {
    min-width: 135px;
  }
}
/* ===== service_add_form ===== */
.service_add_action_box {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.service_add_form_select {
  margin-bottom: 30px;
}
.service_follow_other_input {
  border: none;
  border-bottom: 1px solid #707070;
  width: 119px;
  padding-left: 0px;
}
.service_follow_other_label {
  min-width: 40px;
  margin-right: 7px;
}
.service_form_comments_span {
  color: #442825;
  display: none;
}
@media (max-width: 767px) {
  .service_form_comments_span {
    display: inline-block;
  }
}
/* ===== marketing_ =====   */
.gs_container_nav {
  width: 1000px;
  position: relative;
  margin: 0px auto;
  background-color: #442825;
}
@media (max-width: 1040px) {
  .gs_container_nav {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .gs_container_nav {
    width: 533px;
  }
}
@media (max-width: 575px) {
  .gs_container_nav {
    width: 100%;
  }
}
/* rwd */
.gs_container {
  width: 1000px;
  margin: 0px auto;
}
@media (max-width: 1040px) {
  .gs_container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .gs_container {
    width: 533px;
  }
}
@media (max-width: 575px) {
  .gs_container {
    width: 100%;
    padding: 0px 25px;
  }
}

.input_auto_position {
  position: relative;
}

.auto_list_block {
  position: absolute;
  background: #fff;
  border: none;
  width: 100%;
  max-height: 150px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
  overflow-y: auto;
  color: #000;
  display: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.auto_sale_list_block {
  position: absolute;
  background: #fff;
  border: none;
  width: calc(100% - 26px);
  max-height: 120px;
  top: 75%;
  right: 0%;
  /* transform: translateX(-50%); */
  overflow-x: hidden;
  overflow-y: auto;
  color: #000;
  display: none;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.auto_list {
  padding: 12px 40px;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 575px) {
  .auto_list {
    padding: 5px 10px;
    font-size: 16px;
  }
}
.auto_list:hover {
  background-color: #f7e4df;
}
.auto_sale_list {
  padding: 8px 40px;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 575px) {
  .auto_sale_list {
    padding: 5px 10px;
    font-size: 16px;
  }
}
.auto_sale_list:hover {
  background-color: #f7e4df;
}
/* .auto_list_block::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
} */

.auto_list_block::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ddd;
  opacity: 0;
}

.auto_list_block::-webkit-scrollbar {
  width: 3px;
  background-color: black;
  opacity: 0;
}

.auto_list_block::-webkit-scrollbar-thumb {
  background-color: #000;
  opacity: 0;
}

.auto_sale_list_block::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ddd;
  opacity: 0;
}

.auto_sale_list_block::-webkit-scrollbar {
  width: 3px;
  background-color: black;
  opacity: 0;
}

.auto_sale_list_block::-webkit-scrollbar-thumb {
  background-color: #000;
  opacity: 0;
}
