/* 会员购买弹窗 */
.member-purchase {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.member-purchase .purchase-flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.member-purchase .modal_dialog {
  border-radius: 12px;
  overflow: hidden;
  width: 870px;
  height: 600px;
  opacity: 0;
  position: relative;
  margin: auto;
  top: calc((100% - 600px) / 3);
}
.member-purchase .modal_dialog.active {
  animation-name: memberPurchaseMove;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
@keyframes memberPurchaseMove {
  0% {
    scale: 0.95;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.member-purchase .modal-header {
  background-image: url("/static/Public/images/productAlbums/09.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  padding: 16px 16px 26px 16px;
  color: #fff;
  position: relative;
}
.member-purchase .close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -5px;
  font-weight: bold;
  color: #333;
}
.member-purchase .modal_content {
  box-shadow: none !important;
  border: none;
  height: 100%;
  overflow: hidden;
}
.member-purchase .modal-body {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
  overflow: hidden;
  height: calc(100% - 77px);
}
.member-purchase .purchase_header_logo {
  width: 36px;
  height: 36px;
  border: 4px solid #f8b6bf;
  border-radius: 50%;
  margin-right: 8px;
  box-sizing: content-box;
  overflow: hidden;
}
.member-purchase .purchase_header_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-purchase .purchase_header_name p {
  font-weight: bold;
  font-size: 16px;
}
.member-purchase .purchase_header_member {
  color: #915328;
  border-radius: 6px;
  padding: 4px 6px;
  margin-left: 7px;
  background: linear-gradient(135deg, #fef5db, #fef5e1, #f2e1bc);
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
}
.member-purchase .purchase_header_member img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin-right: 4px;
}
.member-purchase .purchase_header_period {
  margin-top: 4px;
  font-size: 12px;
}
.member-purchase .purchase_package {
  justify-content: space-between;
}
.member-purchase .purchase_package_item {
  flex: 1;
  text-align: center;
  background: linear-gradient(to right, #fff8ed, #fffaf2, #fff2dc);
  padding: 4.5px 0;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  min-height: 50px;
  justify-content: center;
}
.member-purchase .purchase_package_item h2 {
  font-size: 16px;
  line-height: 29px;
}
.member-purchase .purchase_package_item p {
  font-size: 12px;
  color: #666666;
  line-height: 12px;
}
.member-purchase .purchase_package_item span {
  font-size: 12px;
  color: #ec634f;
  font-weight: bold;
}
.member-purchase .purchase_package_item.active {
  background: #fff;
}
.member-purchase .purchase_package_item.active h2 {
  font-size: 20px;
  font-weight: bold;
}
.member-purchase .purchase_package_item img {
  position: absolute;
  top: 0;
  height: 100%;
  display: none;
  z-index: 1;
}
.member-purchase .purchase_package_item.active img {
  display: block;
}
.member-purchase .purchase-content {
  padding: 24px 24px 0 24px;
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 50px);
}
.member-purchase .purchase_package_content {
  width: calc(100% - 266px);
  height: 100%;
  padding-right: 20px;
  overflow: auto;
}
.member-purchase .purchase_package_content > div {
  display: none;
  height: 100%;
}
.member-purchase .purchase_package_content > div.active {
  display: block;
}
.member-purchase .package_content {
  width: 100%;
  height: 100%;
}
.member-purchase .upgrade_method {
  margin: auto;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 2px;
  width: max-content;
}
.member-purchase .upgrade_membership {
  display: none;
}
.member-purchase .upgrade_method div {
  width: 148px;
  border-radius: 8px;
  text-align: center;
  line-height: 32px;
  color: #666666;
  cursor: pointer;
}
.member-purchase .upgrade_method div.active {
  background-color: #fff;
  color: #333333;
  font-weight: bold;
}
.member-purchase .upgrade_method_content > div {
  display: none;
}
.member-purchase .upgrade_method_content > div.active {
  display: block;
}
.member-purchase .payment-method {
  width: 266px;
}
.member-purchase .package-list {
  justify-content: space-between;
  margin-top: 20px;
}
.member-purchase .package-list_item {
  text-align: center;
  flex: 1;
  border: 1px solid #f8e8d0;
  border-radius: 12px;
  padding-top: 13px;
  position: relative;
  cursor: pointer;
}
.member-purchase .package-list_item.active {
  background-image: url("/static/Public/images/productAlbums/12.png"), linear-gradient(135deg, #fff9eb, #fffefb);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
.member-purchase .package-list_item:not(:last-child) {
  margin-right: 16px;
}
.member-purchase .package-list_item h2 {
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.member-purchase .package-list_item h3 {
  font-size: 32px;
  line-height: 32px;
  margin: 10px auto 4px;
  font-weight: bold;
}
.member-purchase .package-list_item.active h3 {
  color: #ff7f07;
}
.member-purchase .package-list_item h3 span {
  font-size: 16px;
  line-height: 23px;
}
.member-purchase .package-list_item h4 {
  font-size: 14px;
  line-height: 22px;
  color: #999999;
  padding-bottom: 17px;
  text-decoration: line-through;
}
.member-purchase .package-list_discount {
  background-color: #fef4e3;
  line-height: 30px;
  font-size: 12px;
  color: #915328;
  border-radius: 0 0 12px 12px;
}
.member-purchase .package-list_item.active .package-list_discount {
  background: linear-gradient(to right, #ffa756, #ff6368);
  color: #fff;
}
.member-purchase .package-list_discount span {
  color: #ec634f;
}
.member-purchase .package-list_item.active .package-list_discount span {
  color: #fff;
}
.member-purchase .member_upgrade {
  justify-content: center;
  flex: 1;
  background-color: #fdf6f1;
  border: 1px solid #ffce7e;
  border-radius: 8px;
  padding: 20px 0 24px;
  color: #333;
}
.member-purchase .member_upgrade_info {
  justify-content: center;
}
.member-purchase .member_upgrade_info > p {
  margin-bottom: 10px;
  font-weight: bold;
}
.member-purchase .member_upgrade img {
  width: 50px;
  height: 50px;
  margin-right: 16px;
}
.member-purchase .member_upgrade_money {
  font-size: 22px;
  line-height: 22px;
  align-items: baseline;
  font-weight: bold;
}
.member-purchase .member_upgrade_money h2 {
  font-size: 32px;
  line-height: 32px;
  font-weight: bold;
}
.member-purchase .member_upgrade_money p {
  font-size: 14px;
  line-height: 14px;
}
.member-purchase .member_upgrade_money span {
  font-size: 14px;
  line-height: 14px;
  text-decoration: line-through;
  color: #999999;
  margin-left: 4px;
}
.member-purchase .package_form {
  margin-top: 20px;
}
.member-purchase .package_form_block[name="upgrade_days"] {
  display: none;
}
.member-purchase .package_form_block:not(:last-child) {
  margin-bottom: 16px;
}
.member-purchase .package_form_select {
  color: #666;
  width: 150px;
  justify-content: space-between;
  position: relative;
}
.member-purchase .package_form_select input {
  padding: 0 36px 0 12px;
  width: 100%;
  border: none;
  border-radius: 4px;
  line-height: 34px;
  border: 1px solid #dedede;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.member-purchase .package_form_block.disabled input {
  background-color: #eee;
}
.member-purchase .package_form_select > i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.member-purchase .package_form_select.active i.icon-down1 {
  transform: translateY(-50%) rotate(180deg);
}
.member-purchase .package_form_menu {
  position: absolute;
  top: calc(100% + 3.5px);
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #fff;
  border-radius: 4px;
  padding: 4px;
  border: 1px solid rgb(222, 222, 222);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
  display: none;
}
.member-purchase .package_form_select.active .package_form_menu {
  display: block;
}
.member-purchase .package_form_menu li {
  padding: 0 4px;
  line-height: 36px;
  border-radius: 4px;
  justify-content: space-between;
}
.member-purchase .package_form_menu li i {
  display: none;
}
.member-purchase .package_form_menu li.active i {
  display: block;
  color: #fa8919;
}
.member-purchase .package_form_menu li:hover {
  background-color: #eee;
}
.member-purchase .package_form_tips {
  margin-left: 10px;
}
.member-purchase .package_form_tips span {
  color: #ec634f;
  font-weight: bold;
}
.member-purchase .package-list_recommend {
  position: absolute;
  left: 0;
  top: -9px;
  z-index: 1;
  border-radius: 8px 0 8px 0;
  background: linear-gradient(to right, #ff2d1a, #fe941b);
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  padding: 0 8px;
}
.member-purchase .package_discount {
  flex-wrap: wrap;
  background-color: #fdf6f1;
  border: 1px solid #ffce7e;
  line-height: 32px;
  border-radius: 4px;
  padding: 0 16px;
  color: #666666;
  margin-top: 20px;
  position: relative;
  display: none;
}
.member-purchase .package_discount > div:not(:last-child) {
  margin-right: 10px;
}
.member-purchase .package_discount span {
  color: #ec634f;
  font-weight: bold;
}
.member-purchase .package_discount .package_arrow {
  position: absolute;
  left: 0;
  top: -8px;
  height: 9px;
}
.member-purchase .count_down {
  display: inline-block;
}
.member-purchase .count_down span {
  background-color: #fae4db;
  border-radius: 4px;
  line-height: 22px;
  font-size: 14px;
  width: 22px;
  text-align: center;
  display: inline-block;
}
.member-purchase .payment-method {
  border-left: 1px solid #ededed;
  height: 100%;
  padding-left: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}
.member-purchase .payment-method_item {
  line-height: 36px;
  border: 1px solid #ededed;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
.member-purchase .payment-method_item.active {
  background-color: #fff8ee;
  border-color: #ffa457;
}
.member-purchase .payment-method_item:not(:last-child) {
  margin-bottom: 8px;
}
.member-purchase .payment-method_item img {
  display: inline-block;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.member-purchase .payment-code {
  width: 134px;
  height: 134px;
  margin: 20px auto 0;
  box-sizing: content-box;
}
.member-purchase .payment-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #ededed;
  border-radius: 8px;
}
.member-purchase .payment-info {
  font-size: 12px;
  line-height: 17px;
  color: #666666;
  margin-top: 24px;
}
.member-purchase .payment-info .payment-money p {
  color: #ec634f;
}
.member-purchase .payment-info p:not(:last-child) {
  margin-right: 8px;
}
.member-purchase .payment-money {
  flex-wrap: wrap;
  align-items: flex-end;
}
.member-purchase .payment-info a[data-type] {
  color: #1e82e3;
  cursor: pointer;
}
.member-purchase .payment-info > div:not(:last-child) {
  margin-top: 16px;
}

/* 套餐 */
.member-purchase .member_benefits {
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}
.member-purchase .member_benefits .package_item {
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px rgba(80, 98, 154, 0.12);
  background: rgb(255, 255, 255);
  margin: 0 10px;
  flex: 1;
  border: 1px solid #d1dfff;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 24px;
}
.member-purchase .member_benefits .package_head {
  position: relative;
}
.member-purchase .member_benefits .package_title {
  text-align: center;
  background: url("/static/Public/images/productAlbums/02.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 30px 0;
}
.member-purchase .member_benefits .package_title h2 {
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
}
.member-purchase .member_benefits .package_title p {
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  display: none;
}
.member-purchase .member_benefits .package_title p i {
  font-size: 14px;
  color: #fa8919;
}
.member-purchase .member_benefits .package_benefits {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0px 0px 0px 10px;
  background: linear-gradient(90deg, rgb(148, 180, 252) 11.688%, rgb(133, 169, 249) 86.667%);
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  padding: 0 8px;
}
.member-purchase .member_benefits .package_vip .package_benefits {
  background: linear-gradient(90deg, rgb(253, 204, 118) 11.688%, rgb(255, 182, 59) 86.667%);
  color: #915328;
}
.member-purchase .member_benefits .permission_item {
  margin: 0 24px;
  width: calc(100% - 48px);
  margin: auto;
  padding: 12px 0 16px;
  border-bottom: 1px solid #ededed;
}
.member-purchase .member_benefits .permission_head {
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.member-purchase .member_benefits .permission_head p{
  font-weight: bold;
  color: #666666;
}
.member-purchase .member_benefits .permission_title {
  line-height: 20px;
  font-weight: bold;
}
.member-purchase .member_benefits .permission_subtitle {
  background-color: #fbe6c6;
  line-height: 22px;
  padding: 0 4px;
  color: #915328;
  border-radius: 4px;
  margin-left: 10px;
}
.member-purchase .member_benefits .permission_tips {
  margin-left: 2px;
  background: url("/static/Public/images/productAlbums/03.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  height: 12px;
  font-size: 11px;
  line-height: 12px;
  color: #fff;
  text-align: right;
  padding: 0 2px 0 7px;
}
.member-purchase .member_benefits .permission_subtitle span {
  color: #ec634f;
}
.member-purchase .member_benefits .package_permission ul {
  flex-wrap: wrap;
}
.member-purchase .member_benefits .package_permission ul li {
  width: 50%;
  margin-top: 10px;
  text-align: left;
}
.member-purchase .member_benefits .package_permission ul li i {
  color: #3874f6;
}
.member-purchase .member_benefits .package_permission ul li i.icon-close {
  color: #ec5e57;
}
.member-purchase .membership_view-benefits {
  text-align: center;
  color: #666666;
  justify-content: center;
  padding: 32px 0;
  cursor: pointer;
}
.member-purchase .member_benefits .package_vip {
  position: relative;
  top: 0;
  border-color: #e8e0db;
}
.member_benefits .package_vip .package_title {
  color: #915328;
  background-image: url("/static/Public/images/productAlbums/08.png");
  padding: 20px 0;
}
.member_benefits .package_vip .package_title p {
  display: block;
}
.member-purchase .view_member_benefits {
  text-align: center;
  color: #666;
  margin-top: 16px;
  justify-content: center;
  cursor: pointer;
}
.member-purchase .view_member_benefits i {
  margin-left: 4px;
}
.member-purchase .package_member_discount {
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
}
.member-purchase .package_member_discount span {
  font-weight: bold;
  color: #ec634f;
}
.member-purchase .modal-body[data-type="benefits"] {
  display: none;
}

/* 会员权益 */
.member-purchase .modal-body[data-type="benefits"] {
  padding: 0 24px 24px;
  background-color: #fff;
}
.member-purchase .interests_title {
  position: relative;
  text-align: center;
  margin: 12px auto 16px;
}
.member-purchase .interests_title h2 {
  font-size: 24px;
  line-height: 35x;
  font-weight: bold;
}
.member-purchase .interests_back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f5;
  border-radius: 4px;
  line-height: 28px;
  font-size: 14px;
  padding: 0 8px;
}
.member-purchase .interests_list {
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 0 20px 12px;
  height: calc(100% - 40px);
  overflow: auto;
}
.member-purchase .interests_item {
  margin-top: 12px;
}
.member-purchase .interests_privilege {
  border-radius: 8px;
  border: 1px solid #f7f7f7;
  position: relative;
}
.member-purchase .interests_privilege::before {
  content: "";
  position: absolute;
  left: calc(100% / 3);
  top: -10px;
  width: calc(100% / 3);
  height: calc(100% + 10px);
  background: linear-gradient(180deg, rgb(255, 242, 209), rgb(253, 232, 180) 100%);
  border: 2px solid #ffe1c2;
  z-index: 0;
  border-radius: 8px;
}
.member-purchase .interests_privilege_title {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.member-purchase .interests_privilege_title img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.member-purchase .interests_privilege_item:nth-child(odd) {
  background-color: #f7f7f7;
}
.member-purchase .interests_privilege > .interests_privilege_item:first-child div {
  font-weight: bold;
}
.member-purchase .interests_privilege_item > div {
  width: calc(100% / 3);
  text-align: center;
  line-height: 36px;
  position: relative;
  z-index: 1;
}
.member-purchase .interests_privilege_item i.icon-close-circle-filled {
  color: #ec5e57;
}
.member-purchase .interests_privilege_db {
  color: #bf7a3d;
}

.member-purchase .interests_privilege_vip i,
.member-purchase .interests_privilege_vip {
  color: #bf7a3d;
  font-weight: bold;
}
.member-purchase .interests_privilege_vip div {
  background: url("/static/Public/images/productAlbums/07.png");
  background-repeat: no-repeat;
  background-size: 65px 20px;
  background-position: center;
  padding-right: 12px;
  font-size: 15px;
  color: #f8edc2;
  font-weight: bold;
}
.member-purchase .interests_privilege_detail {
  flex-wrap: wrap;
}
.member-purchase .interests_privilege_detail .interests_privilege_item {
  width: 100%;
  background-color: transparent;
  justify-content: flex-end;
}
.member-purchase .interests_privilege_vip p{
  line-height: 14px;
}
.member-purchase .membership_interests .interests_privilege_detail .interests_privilege_item:first-child div:not(.interests_privilege_vip) {
  font-weight: normal;
}
.member-purchase .interests_privilege_item > .interests_privilege_span {
  width: 10%;
  font-weight: normal;
  border-right: 1px solid #ededed;
  position: absolute;
  top: 0;
  left: 0;
}
.member-purchase .interests_privilege .interests_privilege_item > div:last-child {
  color: #333;
}
.member-purchase .member_upgrade_duration {
  margin: 20px auto 0;
}
.member-purchase .member_upgrade_duration span {
  color: #fa8919;
}

/* 对公转账 */
.member-purchase .corporate_info,
.member-purchase .payment_type_mark[data-type="Corporate"] {
  display: none;
}
.member-purchase .payment_corporate h2 {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  margin-bottom: 12px;
}
.member-purchase .corporate_form_block {
  justify-content: space-between;
}
.member-purchase .corporate_form_block input {
  height: 36px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #efefef;
  font-size: 14px;
  padding: 0px 7px;
  float: left;
  outline: none;
  width: calc(100% - 62px - 8px);
  border: 1px solid #ededed;
}
.member-purchase .corporate_form_submit {
  border-radius: 4px;
  background: linear-gradient(90deg, rgb(255, 231, 187), rgb(255, 217, 148) 100%);
  color: #853f14;
  width: 62px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
}
.member-purchase .corporate_info > h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  line-height: 20px;
  margin: 8px 0;
}
.member-purchase .corporate_info > p {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  line-height: 22px;
}
.member-purchase .corporate_info .corporate_desc {
  font-size: 13px;
  font-weight: 400;
  color: #ff0200;
  cursor: default;
}
.member-purchase .corporate_info_item {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  line-height: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.member-purchase .corporate_info h5 span,
.member-purchase .corporate_info_item span {
  color: #bb823d;
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
  cursor: pointer;
}
.member-purchase .corporate_info_code {
  display: none;
}
.member-purchase .corporate_info_code p {
  color: #333;
}
.member-purchase .corporate_info_get {
  display: inline;
}
.member-purchase .corporate_info_send {
  display: inline;
}

/* 协议弹窗 */
.protocol_pop_window {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1051;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.protocol_pop_window .pop_window_dialog {
  width: 740px;
  height: 700px;
  margin: auto;
  position: relative;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  border-radius: 24px;
  padding-bottom: 24px;
  opacity: 0;
  top: calc((100% - 700px) / 3);
}
.protocol_pop_window .pop_window_dialog.active {
  animation-name: protocolPophaseMove;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@keyframes protocolPophaseMove {
  0% {
    scale: 0.95;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.protocol_pop_window .pop_window_header {
  color: #ffdeab;
  background-color: #292e57;
  background-image: url(/static/Public/images/payPop_new/purchase_modal-svipBg.png);
  background-size: 100% 90px;
  background-repeat: no-repeat;
  border-radius: 20px 20px 0 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  padding: 10px 0 30px;
}
.protocol_pop_window .pop_window_header h2 {
  line-height: 60px;
}
.protocol_pop_window .pop_window_header i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  color: #fff;
  margin-top: -10px;
  cursor: pointer;
}
.protocol_pop_window .pop_window_body {
  margin-top: -20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 32px 0 0;
  height: calc(100% - 80px);
}
.protocol_pop_window .pop_window_content {
  height: 100%;
  overflow: auto;
  padding: 0 40px;
}
.protocol_pop_window .pop_window_content p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-indent: 2em;
  line-height: 28px;
}
.protocol_pop_window .pop_window_content .title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 30px;
}
.protocol_pop_window .pop_window_content li {
  list-style: disc;
  color: #666;
  margin-left: 50px;
}
.protocol_pop_window .pop_window_content p > b {
  color: #333;
}
.modaling {
  overflow: hidden !important;
}
