* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "黑体"; */
  font-size: 14px;
}

.scroll_content {
  padding: 12px 0;
  max-height: 100px;
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.scroll_content::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

.messageBox {
  position: fixed;
  z-index: 9999;
  width: 100vw;
}

.messageBox .messageItem {
  margin: 10px auto;
  display: none;
  opacity: 0;
  position: relative;
  top: 100px;
  width: 60%;
  padding: 16px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.messageBox .success_alert {
  background: #F0F9EB;
  color: #67C23A;
}

.messageBox .warning_alert {
  background: #FDF6EC;
  color: #E6A23C;
}

.messageBox .errorMessage {
  background: #FEF0F0;
  color: #F56C6C;
}

.success_color {
  color: #67C23A;
}

.warning_color {
  color: #E6A23C;
}

.error_color {
  color: #F56C6C;
}

.messageBox .successMessage,
.warningMessage,
.errorMessage {
  margin-left: 20px;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-secondary.focus,
.btn-secondary:focus,
.btn.focus,
.btn:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  /* box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) */
  box-shadow: none;
}

.fff_color {
  background: #fff;
}

.flex_align_center {
  display: flex;
  align-items: center;
}

.flex_between_center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex_center_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_between {
  display: flex;
  justify-content: space-between;
}

.scribing_price {
  text-decoration: line-through;
}

.fs_46 {
  font-size: 46px;
}

.fs_34 {
  font-size: 34px;
}

.fs_32 {
  font-size: 32px;
}

.fs_28 {
  font-size: 28px;
}

.fs_26 {
  font-size: 24px;
}

.fs_24 {
  font-size: 24px;
}

.fs_22 {
  font-size: 22px;
}

.fs_20 {
  font-size: 20px;
}

.fs_18 {
  font-size: 18px;
}

.fs_16 {
  font-size: 16px;
}

.fs_14 {
  font-size: 14px;
}

.fs_12 {
  font-size: 12px;
}

.can_touch {
  cursor: pointer;
}

.showUnderline:hover {
  text-decoration: underline
}

/* 模态框 */
.my_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 8px;
}

/* 模态框定位用 */
.my_modal .positon {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 关闭图标 */
.my_modal .close {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 24px;
  top: 24px;
}

.my_modal .close img {
  width: 100%;
  height: 100%;
}

input,
textarea {
  border: none;
  outline: none;
}

header {
  padding: 0 200px;
  min-width: 1580px;
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header .logo_box {
  display: flex;
  align-items: center;
  margin-right: 3vw;
}

header .logo_name {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}

header .list {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}

header .list>div {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 43px;
  cursor: pointer;
  position: relative;
}

header .list>div:hover {
  color: #174DFF;
}

header .list .select_item {
  color: #174DFF;
  position: relative;
}

header .list .select_item::after {
  content: "";
  display: block;
  width: 61px;
  height: 2px;
  background: #174DFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

header .login_box {
  display: flex;
  align-items: center;
}

header .login_box>div {
  padding: 0 22px;
  margin-left: 14px;
  border-radius: 19px;
  height: 37px;
}

header .logged {
  position: relative;
  display: flex;
  align-items: center
}

header .head_img {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 9px;
}

header .other {
  position: absolute;
  right: 0;
  padding: 9px;
  border: 1px solid #E6E8EC;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 9 14px 0px rgba(18, 19, 23, 0.1);
  bottom: 0;
  transform: translateY(100%);
  display: none;
}

header .other>div {
  width: 175px;
  height: 40px;
  line-height: 40px;
  border-radius: 9px;
  padding: 0 12px;
  cursor: pointer;
}

header .other .logout {
  color: #FF3939;
}

header .other>div:hover {
  background: #F4F6F9;
}

.plain_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #174DFF;
  color: #174DFF;
}

.primary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #174DFF;
  color: #fff;
}

.default_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #3D4045;
}

.default_btn:hover {
  color: #174DFF;
}

.mask_panel {
  width: 100vw;
  height: 100vh;
  background: #000000;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  /* display: none; */
}

/* 登录框 */
.copywriting_item {
  opacity: 0.7;
  margin-bottom: 20px;
}

.copywriting_item img {
  width: 14px;
  height: 9px;
  margin-right: 17px;
}

.login_panel .logo {
  color: #fff;
}

.login_panel .flex_align_center .written_logo .logo_name {
  color: #fff;
}

.login_panel {
  z-index: 100;
  position: fixed;
  display: none;
}

.login_qrcode {
  margin: 0 auto;
  position: relative;
}

.login_qrcode .login_qrcode_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #c9c9c9;
  opacity: .6;
  left: 0;
  top: 0;
}

.login_qrcode .login_qrcode_mask .position {
  width: 100%;
  height: 100%;
}

.login_qrcode .login_qrcode_mask .position svg {
  animation: rotate 2s infinite linear;
  transform: rotate(0deg);
  position: absolute;
  top: 35%;
  left: 35%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.log_reg_panel .my_container .left {
  width: 302px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
  background-image: url('../images/背景 (1).png');
  background-size: 100% 100%;
  padding: 48px 26px;
  color: #fff;
}

.log_reg_panel .my_container .left .title {
  /* margin: 17px 0 42px; */
  margin-top: 17px;
}

.log_reg_panel .my_container .right .content .getCode {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  margin-left: 10px;
  border-radius: 4px;
  font-weight: 500;
}

.log_reg_panel .my_container .right .content .before_state {
  background: #3270FF;
  color: #fff;
}

.log_reg_panel .my_container .right .content .after_state {
  background: #ECECEC;
  color: #444950;
  pointer-events: none;
  /* cursor:not-allowed; */
}

.log_reg_panel .my_container .right .close {
  text-align: right;
  padding: 24px 24px 0 0;
}

.log_reg_panel .my_container .right .close img {
  width: 14px;
  height: 14px;
}

.log_reg_panel .my_container .right .content .title {
  color: #000000;
  margin-bottom: 22px;
}

.log_reg_panel .my_container .right .content .remind {
  margin-bottom: 22px;
}

.log_reg_panel .my_container .right .content .ipt {
  height: 40px;
  margin-bottom: 16px;
}

.log_reg_panel .my_container .right .content .toggle>div:first-child {
  color: #3270FF;
}

/* .log_reg_panel .my_container .right .content .toggle>div:last-child {
  color: #A5ABB3;
} */

.log_reg_panel .my_container .right .content .toggle>div {
  font-size: 12px;
}

.log_reg_panel .my_container .right .content .my_btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #3270FF;
  color: #fff;
  /* background: #3270FF; */
  /* color: #777777; */
  margin-top: 16px;
  font-size: 14px;
}

.log_reg_panel .my_container .right .content {
  text-align: center;
  margin-top: 72px;
  padding: 0 80px;
}

.log_reg_panel .my_container .right .toLogin {
  color: #A5ABB3;
  margin-top: 8px;
}

.log_reg_panel .my_container .right .toLogin span {
  color: #3270FF;
}

.log_reg_panel .my_container .right .tips {
  width: 100%;
  height: 62px;
  background: #F9FAFB;
  color: #C0C4CA;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.log_reg_panel .my_container .right {
  flex: 1;
  position: relative;
  background: #fff;
}

.log_reg_panel .my_container {
  display: flex;
  width: 100%;
  height: 100%;
}

.log_reg_panel input {
  width: 100%;
  height: 100%;
  border: 1px solid #DBDDE1;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 12px;
  box-sizing: border-box;
}

.log_reg_panel {
  width: 749px;
  height: 480px;
  border-radius: 8px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  /* background: #fff; */
}

.TYPE_2 {
  display: none;
}

.TYPE_3 {
  display: none;
}

/* //修改placeholder的默认颜色： */
input::-webkit-input-placeholder {
  color: #A5ABB3;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #A5ABB3;
}

input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #A5ABB3;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #A5ABB3;
}

.transform_modal {
  width: 800px;
  height: 211px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 0 64px;
  /* display: none; */
}

.transformModalDOM {
  display: none;
  position: fixed;
}

.transform_modal>div {
  width: 100%;
  text-align: center;
}

.transform_modal .line {
  width: 100%;
  height: 4px;
  /* background: #3270FF; */
  margin: 30px 0;
  border-radius: 4px;
  overflow: hidden;
}


.transform_modal .line .style1 {
  background: #3270FF;
}

.transform_modal .line .style2 {
  background: #3270FF;
  opacity: 0.35;
}

.transform_modal .line .line_item {
  transform: rotate(45deg);
  width: 20px;
  height: 10px;
  flex-shrink: 0;
  margin-left: -6px;
}

.transform_modal .cancel {
  color: #3270FF;
  cursor: pointer;
}

.transformAnimateLineDom {
  /* position: absolute; */
  /* transition: all 2s; */
  animation: mymove 2s linear infinite;
}

@keyframes mymove {
  from {
    transform: translateX(-20%);
  }

  to {
    transform: translateX(0);
  }
}


.transformModalDOM .line {
  position: relative;
}

/* 开通会员模态框 */
.open_vip_modal {
  position: fixed;
  display: none;
}

.open_vip_modal .my_modal {
  width: 660px;
  background: #fff;
}

.qr_code {
  width: 200px;
  height: 200px;
  position: relative;
}

.qr_code .refresh_btn {
  padding: 2px 6px;
  background: #fff;
  color: #000;
  margin-top: 6px;
  cursor: pointer;
  font-size: 12px;
}

.code_expired {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.9);
  color: #fff;
  display: none;
}

.code_expired>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 提醒开通vip模态框 */
.not_vip_modal {
  position: fixed;
  display: none;
}

.not_vip_modal .my_modal {
  width: 700px;
  /* height: 207px; */
}

.not_vip_modal .my_modal .modal_content {
  width: 100%;
  height: 100%;
  text-align: center;
  background-image: url('/images/开通页弹窗.png');
  font-size: 100% 100%;
  padding: 60px 104px 43px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.not_vip_modal .my_modal .open_vip_btn {
  width: 287px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 4px;
  color: #3270FF;
  margin: 36px auto 0;
  cursor: pointer;
}

/*确认框*/
.confirm_modal {
  position: fixed;
  display: none;
}

.confirm_modal .my_modal {
  width: 400px;
  background: #fff;
}

.confirm_modal .modal_content {
  padding: 20px 20px 10px;
  /* text-align: center; */

}

.confirm_modal .confirm_content {
  font-size: 14px;
  margin: 10px 0 20px;
}

.confirm_modal .my_btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
}

.confirm_modal .my_btns>div {
  width: 56px;
  border: 1px solid #dcdfe6;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 10px;
}

.confirm_modal .my_btns>div:first-child {
  color: #606266;
}

.confirm_modal .my_btns>div:first-child:hover {
  color: #409eff;
  border-color: #c6e2ff;
  background-color: #ecf5ff;
}

.confirm_modal .my_btns>div:last-child {
  color: #fff;
  background-color: #409eff;
  border-color: #409eff;
}

.confirm_modal .my_btns>div:last-child:hover {
  background-color: #64b1ff;
}

.confirm_modal .confirm_content img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.server_box {
  position: fixed;
  right: 10px;
  top: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(#5F66E2, #5196F3);
  box-shadow: 0 0 5px #c9d7fc;
  padding: 18px 14px;
  z-index: 999;
  font-size: 14px;
  cursor: pointer;
  width: 10px;
  box-sizing: content-box;
  border-radius: 20px;
  color: #fff;
  line-height: 20px;
}

.server_box img {
  width: 40px;
}

.wx_code {
  position: absolute;
  right: 60px;
  top: 0;
  width: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 5px #c9d7fc;
}

.wx_code .title {
  background-color: #3983FC;
  color: #fff;
  font-size: 18px;
  padding: 16px 10px;
}

.wx_code img {
  width: 80%;
}

.wx_code .code {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  padding: 0 0 12px;
  font-size: 12px;
}

.server_box2 {
  z-index: 9999;
  display: none;
}

.server_box2 .wx_code {
  position: absolute;
  left: 0;
  top: 64px;
}

.mini_pro {
  display: none;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  z-index: 9999;
  color: #212529;
  cursor: default;
  padding: 12px 0;
  width: 160px;
}

.mini_item {
  padding: 6px 24px;
  cursor: pointer;
}

.mini_item:hover {
  background: #f0f0f0;
}

.mini_code {
  display: none;
  position: absolute;
  box-shadow: 0 0 5px #c9d7fc;
  right: -2px;
  transform: translateX(100%);
  top: -12px;
}

.download_exe_btn {
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 12px;
}

.bg_2_process {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 80px 0 220px; */
  padding: 80px 0 60px;
  background-image: url('/images/位图@2x.png');
  background-repeat: no-repeat;
  background-size: 360px 317px;
  background-position: top center;
}

.bg_2_process .h1 {
  font-size: 33px;
  font-weight: 500;
  color: #000000;
  line-height: 40px;
}

.bg_2_process .h5 {
  font-size: 16px;
  font-weight: 400;
  color: #5E6269;
  line-height: 20px;
  margin-top: 15px;
}

.bg_2_process .icon_list {
  display: flex;
  margin-top: 40px;
}

.bg_2_process .icon_list>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 117px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 26px;
}

.bg_2_process .icon_list>div:last-child {
  margin-right: 0;
}

.bg_2_process .step_list {
  display: flex;
  justify-content: space-between;
  width: 1302px;
  border-bottom: 2px dashed #DBDEE7;
  margin-top: 82px;
  padding-bottom: 230px;
  /* padding-bottom: 31px; */
}

.bg_2_process .step_list>div {
  text-align: center;
  line-height: 68px;
  font-size: 18px;
  font-weight: 500;
  width: 373px;
  height: 68px;
  border-radius: 19px;
  position: relative;
  transition: all .1s;
  cursor: pointer;
}

.bg_2_process .step_list>div:first-child {
  background: rgba(23, 77, 255, 0.1);
  color: #174DFF;

}

.bg_2_process .step_list>div:first-child:hover {
  background: #174DFF;
  color: #fff;
}

.bg_2_process .step_list>div:first-child:hover .point {
  box-shadow: 0 0 0 7px rgba(50, 112, 255, 0.16);
}

.bg_2_process .step_list>div:nth-child(2) {
  background: rgba(0, 210, 177, 0.1);
  color: #00D2B1;
}

.bg_2_process .step_list>div:nth-child(2):hover {
  background: #00D2B1;
  color: #fff;
}

.bg_2_process .step_list>div:nth-child(2):hover .point {
  box-shadow: 0 0 0 7px rgba(0, 210, 177, 0.16);
}

.bg_2_process .step_list>div:nth-child(3) {
  background: rgba(255, 171, 0, 0.1);
  color: #FFAB00;
}

.bg_2_process .step_list>div:nth-child(3):hover {
  background: #FFAB00;
  color: #fff;
}

.bg_2_process .step_list>div:nth-child(3):hover .point {
  box-shadow: 0 0 0 7px rgba(255, 171, 0, 0.16);
}

.bg_2_process .step_list .point {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  border-radius: 50%;
}

.bg_2_process .step_list>div:first-child .point {
  background: #174DFF;
}

.bg_2_process .step_list>div:nth-child(2) .point {
  background: #00D2B1;
}

.bg_2_process .step_list>div:nth-child(3) .point {
  background: #FFAB00;
}

.bg_2_process .step_list img {
  position: absolute;
  height: 150px;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  cursor: zoom-in;
}

.bg_3_list {
  background: #F6F7FA;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bg_3_list .bg3_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 334px;
  height: 286px;
}

.bg_3_list .h1 {
  font-size: 33px;
  font-weight: 500;
  color: #000000;
  line-height: 40px;
}

.bg_3_list .h5 {
  font-size: 16px;
  font-weight: 400;
  color: #5E6269;
  line-height: 20px;
  margin-top: 13px;
}

.bg_3_list .icons_item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 24px;
  margin-top: 40px;
}

.bg_3_list .icon_item {
  width: 356px;
  padding: 20px;
  display: flex;
  background: linear-gradient(180deg, #F4F5F8 0%, #FFFFFF 100%);
  box-shadow: 8px 8px 8px 0px #E9EDF5;
  border-radius: 12px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
}

.bg_3_list .icon_item:hover {
  background: #EBF0F9;
  border-color: #EBF0F9;
}

.bg_3_list .icon_item img {
  width: 48px;
  height: 48px;
  margin-right: 16px;
}

.bg_3_list .icon_item .title {
  font-size: 18px;
  font-weight: 600;
  color: #181818;
  line-height: 29px;
  margin-bottom: 4px;
}

.bg_3_list .icon_item .desc {
  color: #4B5B76;
  font-weight: 400;
  font-size: 14px;
}

/* .footer_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 47px 188px;
}

.footer_list .p_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: #4B5B76;
  line-height: 26px;
}

.footer_list .p_list>div {
  cursor: pointer;
}

.footer_list .p_list>div:hover {
  color: #174DFF;
}

.footer_list .other {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #9EA6B4;
  line-height: 20px;
  cursor: pointer;
}

.footer_list .other:hover {
  color: #181818;
} */
.footer_list {
  background: #21232B;
  padding: 40px 0;
  color: #fff;
}

.footer_list .container1 {
  display: flex;
}

.footer_list .container1 .center {
  /* width: 530px; */
  margin: 0 auto;
}


.footer_list .container1 .title {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 20px;
}

.footer_list_box {
  display: flex;
  justify-content: space-between;
}

.footer_list_box .l_title {
  color: #FFFFFF;
  font-size: 18px;
}

.footer_list_box .f_item {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
}

.footer_list_box .f_item:hover {
  text-decoration: underline;
  color: #d8d8d8;
}

.footer_list_box>div {
  margin-right: 100px;
}

.footer_list_box>div:last-child {
  margin-right: 0;
}

footer {
  padding: 19px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #AEB2BF;
  line-height: 20px;
  background: #F8FAFC;
  box-shadow: inset 0px 1 0px 0px #EFF0F5;
}

.disabled_style {
  cursor: not-allowed !important;
}

.pay_tab {
  display: flex;
  width: 334px;
  height: 56px;
  background: #f6f6f6;
  border-radius: 28px;
  padding: 4px 5px;
  font-size: 18px;
  margin-bottom: 32px;
}

.pay_tab .active {
  background: linear-gradient(190deg, #0235c3, #4800db);
  border-radius: 24px;
  color: #fff;
}

.pay_tab .pay_item {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 16px;
  cursor: pointer;
}

.pay_tab .pay_item img {
  margin-right: 9px;
}

.pay_tab .pay_item:first-child img {
  width: 28px;
  height: 25px;
}

.pay_tab .pay_item:last-child img {
  width: 26px;
  height: 26px;
}

.scan_code {
  padding: 35px 0 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
  border-radius: 15px;
  position: relative;
}

.scan_code .title {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 33px;
}

.scan_code .pay_amount_text {
  font-size: 16px;
  line-height: 16px;
}

.scan_code .pay_amount {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  margin: 19px 0 33px;
}

.scan_code .code {
  width: 100px;
  height: 100px;
  margin-right: 24px;
}

.scan_code .pay_type img {
  width: 15px;
  margin-right: 5px;
}

.scan_code .pay_tips {
  font-size: 14px;
  margin-top: 14px;
}

.price_color {
  color: #FC3627 !important;
}

.scan_code .pay_type img {
  width: 15px;
  margin-right: 5px;
}

.scan_code .agreement {
  color: #3270ff;
  cursor: pointer;
}

.scan_code .close_icon {
  position: absolute;
  right: 0;
  top: -60px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.buy_vip_tips {
  position: absolute;
  right: 10px;
  width: 50px;
  transform: translateX(100%);
  top: 10px;
}

.friend_link {
  display: flex;
  align-items: center;
  width: 986px;
  margin: 0 auto;
  margin-top: 32px;
}

.friend_link .link_list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.friend_link .title {
  margin-right: 48px;
}

.friend_link .link_item {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 14px;
  margin-right: 36px;
}

.friend_link .link_item:hover {
  text-decoration: underline;
  color: #d8d8d8;
}