#chooseAccountModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 2.9rem;
  z-index: 1000;
}
.chooseAccountModal-header {
  background: var(--primary-color);
  color: white;
  padding: 3rem 4.8rem 3rem 4.8rem;
  border-radius: 2.9rem 2.9rem 0 0;
  /* text-align: center; */
}
.chooseAccountModal-close{
  position: absolute;
  top: 1rem;
  right: 2.8rem;
  font-size: 24px;
}
.chooseAccountModal-title{
  margin-top: 0px;
  margin-bottom:6px
}

.chooseAccountModal-content {
  padding: 3rem 4.8rem 3rem 4.8rem;
  text-align: center;
}
.chooseAccountModal-footer {
  display: flex;
  justify-content: space-between;
  padding: 3rem 4.8rem 3rem 4.8rem;
}

#chooseAccountModal .btn_default{
  margin-right: 6px;
  background-color: var(--primary-color-op) !important;
  border-color: var(--primary-color-op) !important;
  border-radius: 1rem;
  height: 37px;
}
#chooseAccountModal .btn_primary{
  border-radius: 1rem;
}
#chooseAccountModal .ant-avatar-circle{
  width:48px;
  height:48px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum', "tnum";
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  background: #ccc;
  line-height: 32px;
  border-radius: 50%;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.account-option {
  display: flex;
  align-items: center;
  margin: 10px 0 16px;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  padding: 12px;
  border-radius: 6px;
  justify-content: space-between;
}
.account-option:hover{
  box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 3px;
  border-color: var(--primary-color-op);
}
.account-option input {
  margin-right: 10px;
}
.account-avatar {
  /* width: 40px; */
  /* height: 40px; */
  /* border-radius: 50%; */
  /* margin-right: 10px; */
}
.ant-card-meta-title{
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.ant-card-meta-description{
  color:rgba(0, 0, 0, 0.45)
}
.account-option-left{
  display:flex;
  justify-content:center;
  align-items:center
}
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}
@media screen and (max-width: 500px) {
  .chooseAccountModal-content .inputAccount{
    border: 1px solid #f0f0f0 !important;
  }
  #chooseAccountModal{
    width:98vw
  }
}
@media screen and (min-width: 500px) {
  .inputAccount{
    border: 1px solid #f0f0f0 !important;
  }
}
.input_account{
  margin-left: 1.2rem;
  margin-top: .8rem;
  margin-bottom: .8rem;
  /* margin-left: 28rem; */
  font-family: "Microsoft Yahei";
  background-color: transparent;
  border: 0;
  font-size: 1.6rem;
  color: #8a8a8a;
  width: 100%;
  line-height: 4rem;
}
