/* ↓ 公共样式 ↓ */
.block {
  margin-top: 22px;
  margin-bottom: 28px;
}
.block .title {
  font-family: Source Han Sans CN;
  font-size: 20px;
  color: #3D3D3D;
  font-weight: 500;
  margin-bottom: 14px;
}

.block .content {
  display: flex;
}

.block .content .content-item {
  width: 50%;
}

.block .content .content-title {
  font-family: NunitoSans-Regular;
  font-size: 14px;
  color: #4E5969;
  line-height: 22px;
}
.a-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* 弹窗样式 */
.mask {
  position: fixed;
  bottom: 0px;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 97;
}
.modal-panel {
  position: relative;
  padding: 52px 0 38px;
  background: #fff;
  border-radius: 4px;
}
.modal-panel  .close-icon {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 20px;
  height: 20px;
}
.modal-title {
  font-family: NunitoSans-SemiBold;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #3D3D3D;
}
.modal-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 30px;
  color: #3D3D3D;
  text-align: center;
}
.modal-form {

}
.modal-form .form-item {

}
.modal-form .form-label {
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 22px;
  color: #3D3D3D;
}

/* ↓ 收件人按钮组 ↓ */
.rec-btn-group {
  margin-top: 20px;
}
.rec-btn-group .rec-btn {
  display: inline-block;
  padding: 6px 20px;
  margin-right: 20px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  font-size: 12px;
  color: #515968;
  cursor: pointer;
}

.rec-btn-group .blue-btn {
  background: #317EE7;
  border: none;
  color: #fff;
}

/* ↓ 收件人表格 ↓ */
.rec-man-table {
  width: 856px;
  margin-top: 20px;
  border: 1px solid #e5e6eb;
  font-size: 13px;
  color: #4E5969;
}

.rec-man-table tr {
  border:  1px solid #e5e6eb;
}

.rec-man-table tr:last-child {
  border: none;
}

/* 每一列 */
.rec-man-table tr td{
  min-width: 80px;
  padding: 14px 0 14px 34px;
  border: none;
}

.rec-man-table tr td .total-price {
  text-decoration: line-through;
  color: #BEBEBE;
}

/* 第一列 */
.rec-man-table tr td:nth-child(1) {
  min-width: 100px;
  padding-left: 20px;
}

/* 第二列 */
.rec-man-table tr td:nth-child(2) {
  max-width: 400px;
}

/* 第三列 */
.rec-man-table tr td:nth-child(3) {
  min-width: 100px;
}

/* 第四列 */
.rec-man-table tr td:nth-child(4) {
  min-width: 100px;
}

.rec-man-table .th {
  background: #F2F3F5;
  box-shadow: 1px 0 0 0 #F2F3F5;
  font-size: 14px;
  font-weight: bold;
  color: #1D2129;
}

.rec-man-table .t-footer td {
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: #4E5969;
  padding-left: 34px;
}

.rec-man-table .t-footer td .price {
  margin-left: 30px;
}

.rec-man-table .t-footer td .price .cost-price {
  color: #F62424;
}

.rec-man-table .t-footer td .price .total-price {
  color: #BEBEBE;
}

/* .rec-man-table .t-footer td .add-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
} */

.rec-man-table .click-btn {
  color: #0082FA;
  cursor: pointer;
}
.modal-rec-man-table tr td:nth-child(1) {
  min-width: 60px;
  padding-left: 20px;
}
.modal-rec-man-table tr td:nth-child(3) {
  min-width: 100px;
}
.modal-rec-man-table tr td:nth-child(4) {
  text-align: left;
}
.modal-rec-man-table .edit-btn {
  position: relative;
  margin-right: 8px;
}
/* ↑ 收件人表格 ↑ */

/* ↑ 公共样式 ↑ */

/* ↓ 批量寄件引导弹窗 ↓ */
/* 媒体查询 */
/* 中型设备（平板电脑，768 像素及以上） */
@media only screen and (min-width: 768px) {
  .batch-guide-modal, .add-contact-block {
    font-size: 16px;
    /* background: blue; */
  }
} 

/* 大型设备（笔记本电脑/台式机，992 像素及以上） */
@media only screen and (min-width: 1440px) {
  .batch-guide-modal, .add-contact-block {
    font-size: 18px;
    /* background: orange; */
  }
} 

/* 超大型设备（大型笔记本电脑和台式机，2560 像素及以上） */
@media only screen and (min-width: 1920px) {
  .batch-guide-modal, .add-contact-block {
    font-size: 20px;
    /* background: pink;  */
  }
}

.batch-guide-modal {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 45em;
  height: 35em;
  background: #fff;
}


.batch-guide-modal .close-icon {
  position: absolute;
  top: 1.15em;
  right: 1.15em;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

.batch-guide-modal .title {
  font-size: 1.5em;
  color: #3D3D3D;
  margin-top: 2.6em;
}

.batch-guide-modal .order-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5.4em;
  margin-top: 2.4em;
}

.batch-guide-modal .order-item {
  width: 7.4em;
  height: 2.3em;
  margin-right: 1.5em;
  border-radius: 6.2em;
  background: #fff;
  border: 1px solid #C9CDD4;
  box-sizing: border-box;
  font-size: 0.8em;
  color: #4E5969;
  line-height: 2.3em;
  text-align: center;
  cursor: pointer;
}

.batch-guide-modal .order-item-active {
  background: #0082FA;
  color: #fff;
}

.batch-guide-modal .order-item:last-child {
  margin-right: 0;
}

.batch-guide-modal .panel-com-list {
  margin-top: 2.65em;
  margin-bottom: 3.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.batch-guide-modal .big-qrCode {
  width: 9em;
  height: 9em;
  margin: 2.85em 0 2em;
}

.batch-guide-modal .com-card {
  width: 7.4em;
  height: 6em;
  margin-right: 1.5em;
  box-sizing: border-box;
  border: 1px solid #86909C;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.batch-guide-modal .com-card:last-child {
  margin-right: 0;
}

.batch-guide-modal .com-card .name {
  width: 100%;
  height: 1.7em;
  border-bottom: 1px solid #86909C;
  border-radius: 4px 4px 0 0;
  background: #E5F2FE;
  font-size: 1em;
  color: #0082FA;
  line-height: 1.7em;
  text-align: center;
}

.batch-guide-modal .com-card .price-block {
  height: 4.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.batch-guide-modal .com-card .total-price {
  font-size: 1em;
  color: #4e5969;
}

.batch-guide-modal .com-card .total-price span {
  color: #f53f3f;
}

.batch-guide-modal .com-card .original-price {
  font-size: 0.6em;
  color: #86909C;
}

.batch-guide-modal .com-card .original-price span {
  text-decoration: line-through;
}

.batch-guide-modal .com-card-active {
  border: 1px solid #0082FA;
}

.batch-guide-modal .com-card-active .name {
  background: #0082FA;
  color: #fff;
}
.batch-guide-modal .save-text {
  /* margin-top: 70px; */
  font-size: 0.6em;
  line-height: 1em;
  color: #3d3d3d;
}

.batch-guide-modal .save-text span {
  font-size: 1em;
  color: #f53f3f;
}

.batch-guide-modal .send-btn {
  width: 24.3em;
  height: 2.6em;
  background: #FF9632;
  margin-top: 0.85em;
  border-radius: 4px;
  font-size: 0.8em;
  color: #fff;
  line-height: 2.6em;
  text-align: center;
  cursor: pointer;
}
.batch-guide-modal .bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.6em;
}

.batch-guide-modal .qrCode {
  width: 3.9em;
  height: 3.9em;
  margin-right: 0.8em;
}
.batch-guide-modal .text {
  font-size: 0.7em;
  line-height: 1em;
  color: #4E5969;
}
.batch-guide-modal .first-line {
  margin-bottom: 0.7em;
}
/* ↑ 批量寄件引导弹窗 ↑ */

.inline-btn {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 4px;
  background-color: #0082FA;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.inline-btn:nth-child(1) {
  margin-left: 20px;
}

/* ↓ 其他信息 ↓ */
.other-info {
  margin-bottom: 296px;
}
.other-info .content .content-tag .tag {
  display: inline-block;
  border-radius: 2px;
  padding: 4px 8px;
  margin: 14px 12px 0 0;
  background-color: #F2F3F5;
  font-size: 8px;
  line-height: 14px;
  color: #86909C;
  cursor: pointer;
}
/* ↑ 其他信息 ↑ */

/* ↓ 物品信息弹窗 ↓ */
.goods-block {
  width: 520px;
  padding: 0;
}
.goods-block .modal-title {
  margin: 12px 0;
  font-size: 16px;
  line-height: 24px;
  color: #1D2129;
}
.tip-block {
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #E5F2FE;
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 22px;
  color: #165DFF;
  cursor: pointer;
}
.goods-form {
  padding: 18px 0 100px;
  border-bottom: 1px solid #E5E6E8;
}

.goods-form .form-item {
  display: flex;
  padding: 0 50px 0 20px;
}

.goods-form .form-tip {
  margin-top: 20px;
  font-family: Source Han Sans CN;
  font-size: 14px;
  color: #FF7F02;
}

.goods-form .form-item .form-item-tip {
  font-family: Source Han Sans CN;
  font-size: 12px;
  color: red;
}

.goods-form .form-label {
  flex-shrink: 0;
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 22px;
  color: #3D3D3D;
}
.goods-form .goods-tag {
  display: inline-block;
  padding: 3px 8px;
  margin: 0 20px 22px 0;
  background: #F2F3F5;
  border-radius: 2px;
  font-family: NunitoSans-SemiBold;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #1D2129;
  cursor: pointer;
}
.goods-form .goods-tag.chooseTab {
  background: #E5F2FE;
  color: #0082FA;
}

.goods-attach {
  /* padding-left: 76px;
  padding-top: 26px; */
  font-size: 12px;
  color: #888888;
  position: relative;
  margin-left: 2px;
}

.goods-attach [type='text'] {
  width: 330px;
  height: 40px;
  border: 1px solid #f0f0f0;
  font-size: 14px;
  padding-left: 8px;
}

.goods-attach [type='checkbox'] {
  width: 14px;
  height: 14px;
  border: 2px solid #C9CDD4;
}

.goods-attach  .ib-block {
  margin-top: 8px;
}

.goods-attach .ib {
  margin-right: 25px;
}

.goods-form .weight-item {
  margin-top: 32px;
}

.goods-form .weight-item .form-label {
  line-height: 36px;
}

.goods-form .form-weight {
  display: flex;
  align-items: center;
}

.goods-form .form-weight .input-block {
  position: relative;
}

.goods-form .form-weight .input-block input {
  border: 1px solid #f0f0f0;
  height: 36px;
  background: #f7f8fa;
  padding: 0 12px;
  border-radius: 2px;
}
.goods-form .form-weight .input-block .unit {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  line-height: 20px;
  color: #86909C;
}

.goods-form .form-weight .after-fix {
  margin-left: 8px;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  line-height: 20px;
  color: #4E5969;
}

.btn-block {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 16px 0;
}

.btn-block .modal-btn {
  padding: 5px 16px;
  margin-left: 12px;
  border-radius: 4px;
  background: #F2F3F5;
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 22px;
  color: #1D2129;
  cursor: pointer;
}

.btn-block .submit-btn {
  color: #fff;
  background: #0082FA;
}

.goods-block-main-name.chooseTab {
  background: #E5F2FE;
  color: #0082FA;
}
.goods-block .goods-item {
  display: flex;
}
.newsent-goods-title {
  flex-shrink: 0;
}
.newsent-goods-main-attach {
  padding-top: 0;
}
/* ↑ 物品信息弹窗 ↑ */

/* ↓ 地址簿 ↓ */
.addr-book {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 900px;
  padding: 40px 0;
}
.addr-book .modal-title {
  margin-bottom: 30px;
}
.addr-book .search-block {
  width: 100%;
  display: flex;
  padding: 0 44px;
  box-sizing: border-box;
}
.addr-book .search-block .input-block {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 6px 10px 6px 12px;
  border: 1px solid #ececf0;
  border-radius: 4px;
  box-sizing: border-box;
}
.addr-book .search-block .input-block input {
  flex-grow: 1;
  border: none;
}
.addr-book .search-block .input-block .search-icon {
  width: 24px;
  height: 24px;
}
.addr-book .search-block .addr-btn {
  position: relative;
  height: 40px;
  padding: 0 20px;
  margin-left: 16px;
  border-radius: 4px;
  border: 1px solid #0082FA;
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 40px;
  align-items: center;
  color: #0082FA;
  cursor: pointer;
}
.addr-book .search-block .add-btn {
  height: 40px;
  padding: 0 20px;
  margin-left: 16px;
  background: #0082FA;
  border-radius: 4px;
  font-family: NunitoSans-Regular;
  font-size: 14px;
  line-height: 40px;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.addr-book .addr-table-block {
  max-height: 320px;
  margin-top: 27px;
  overflow-y: scroll;
}
.addr-book .addr-table {
  width: 810px;
  border: 1px solid #ececf0;
}
.addr-book .addr-table tr {
  height: 63px;
  border-bottom: 1px solid #ececf0;
}
.addr-book .addr-table tr:last-child {
  border-bottom: none;
}
.addr-book .addr-table tr td {
  text-align: center;
}
.addr-book .addr-table tr td:nth-child(1) {
  width: 100px;
  padding: 0 8px;
  text-overflow: ellipsis;
}
.addr-book .addr-table tr td:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 63px;
  white-space: nowrap;
  overflow: hidden;
}
.addr-book .addr-table tr td:nth-child(3) {
  text-align: left;
}
.addr-book .addr-table tr td:last-child {
  min-width: 60px;
}
.addr-book .addr-table .checkbox-icon {
  width: 24px;
  height: 24px;
}
.addr-book .addr-table .icon-lock {
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin-left: 4px;
}

.addr-book .bottom-btn {
  width: 220px;
  height: 60px;
  margin-top: 50px;
  border-radius: 4px;
  background: #FF8005;
  border: 1px solid #F2F3F5;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
}
/* ↑ 地址簿 ↑ */
.newsent-kd {
  border-bottom: 1px solid #F2F3F5;
  margin-bottom: 18px;
}

.rec-man-modal{
  width: 900px;
  text-align: center;
}

.rec-man-modal .table-block {
  display: flex;
  justify-content: center;
  max-height: 384px;
  overflow-y: scroll;
}

.frame {
  z-index: 100;
}
.newsent-tab-detail {
  position: relative;
}
.newsent-tab-detail .tab-tag {
  position: absolute;
  top: -25px;
  right: 0;
}
.newsent-tab-detail .tab-tag .tag {
  position: relative;
  padding: 4px;
  background: #FF9634;
  border-radius: 4px;
  font-family: PingFangSC-Medium;
  font-size: 11px;
  line-height: 11px;
  color: #FFFFFF;
}
.newsent-tab-detail .tab-tag .tag::after {
  position: absolute;
  left: 8px;
  bottom: -3px;
  display: inline-block;
  content: '';
  border-top: 3px solid  #FF9634;
  border-left: 3px solid  transparent;
  border-right: 3px solid  transparent;
}
.fixed-bar {
  width: 100%;
  height: 154px;
}

/* ↓ 提交结果 ↓ */
.submit-result {
  width: 900px;
}
.submit-result .submit-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  max-height: 400px;
  margin-top: 85px;
  overflow-y: scroll;
}
.submit-result .submit-list-item {
  display: flex;
  margin-bottom: 23px;
}
.submit-result .submit-list-item:last-child {
  margin-bottom: 0;
}
.submit-result .info-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 150px;
}
.submit-result .info-block .city {
  font-family: PingFangSC-Medium;
  font-size: 24px;
  line-height: 32px;
  color: #1D2129;
}
.submit-result .info-block .name {
  width: 100%;
  font-family: NunitoSans-Regular;
  font-size: 16px;
  line-height: 24px;
  color: #4E5969;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.submit-result .result-block {
  margin: 0 90px;
}
.submit-result .result-block .result-text {
  font-family: NunitoSans-Regular;
  font-size: 16px;
  line-height: 24px;
  color: #F53F3F;
  text-align: center;
}
.submit-result .result-block .line {
  margin-top: 7px;
  width: 310px;
  height: 1px;
  background: #C9CDD4;
}
.submit-result .bottom-btn {
  display: flex;
  justify-content: center;
}
.submit-result .bottom-btn .btn {
  width: 486px;
  height: 52px;
  margin-top: 50px;
  background: #FF9632;
  border-radius: 4px;
  font-family: PingFang SC;
  font-size: 16px;
  line-height: 52px;
  color: #FFFFFF;
  text-align: center;
}
/* ↑ 提交结果 ↑ */

/* ↓ 底部提示 ↓ */
.bottom-tip {
  padding: 7px 12px;
  background:#FDF3EA;
  font-family: Source Han Sans CN;
  font-size: 12px;
  color: #FF7F02;
}
.bottom-tip-fixed {
  position: fixed;
  bottom: 118px;
  width: 1010px;
  margin-left: -48px;
}
/* ↑ 底部提示 ↑ */

/* ↓ 底部栏 ↓ */
.page-bottom-bar {
  position: absolute;
  width: 1058px;
  margin-left: -49px;
  background: #fff;
}
.page-bottom-bar-fixed {
  position: fixed;
  bottom: 0;
}
.newsent-submit {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-left: 49px;
}
.newsent-submit .newsent-submit-btn {
  display: flex;
  align-items: center;
}

.newsent-submit .newsent-submit-btn-protocol {
  margin-right: 4px;
}
/* ↑ 底部栏 ↑ */

/* ↓ 防重复点击按钮 ↓ */
.throttle-btn {
  animation: throttle 1s step-end forwards;
}
.throttle-btn:active {
  animation: none;
}
@keyframes throttle {
  from {
    pointer-events: none;
  }
  to {
    pointer-events: all;
  }
}
/* ↑ 防重复点击按钮 ↑ */

/* ↓ 收件人表格 ↓ */
/* ↑ 收件人表格 ↑ */

.add-contact-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: #fff;
  margin: 100px auto;
  border-radius: 2px;
  width: 900px;
  min-height: 700px;
  padding-top: 3.25em;
  box-sizing: border-box;
}

.add-contact-block .title {
  font-size: 30px;
  font-weight: 500;
  color: #3D3D3D;
  text-align: center;
}

.add-contact-block .identify-block {
  margin: 1.875em auto 0;
}

.add-contact-block .identify-block .identify-title {
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
}

.add-contact-block .identify-block .identify-textarea {
  width: 812px;
  height: 160px;
  margin-top: 10px;
  border-radius: 4px;
  display: block;
  background: #F2F3F5;
  padding: 16px 24px;
  box-sizing: border-box;
}

.add-contact-block .identify-block .identify-textarea .textarea-block {
  width: 100%;
  height: 108px;
  background: #F2F3F5;
  resize: none;
  border: none;
  outline: none;
}

.add-contact-block .identify-block .word-num {
  right: 17px;
  bottom: 7px;
  font-size: 12px;
  line-height: 22px;
  color: #86909C;
  text-align: right;
}

.add-contact-block .identify-block .identify-btn {
  display: flex;
  justify-content: flex-end;
}

.add-contact-block .identify-block .btn {
  width: 65px;
  height: 32px;
  margin-top: 14px;
  border-radius: 4px;
  background: #0082FA;
  font-size: 14px;
  color: #FFF;
  line-height: 32px;
  text-align: center;
}

.add-contact-block .form-block {
  width: 812px;
  box-sizing: border-box;
}

.add-contact-block .form-block .form-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
}

.add-contact-block .form-block .location-box {
  left: 0;
  top: 36px;
  width: 364px;
  z-index: 1110;
}

.add-contact-block .form-block .newsent-half-content-right input {
  width: 364px;
  height: 36px;
}

.add-contact-block .form-block .newsent-half-content-right-loc {
  width: 364px;
  height: 36px;
}

.add-contact-block .showrec-btn {
  margin-top: 63px;
}

/* .new-login-frame {
  width: 40em;
  height: 65em;
  margin-left: -20em;
  margin-top: -20em;
} */

.guide-img {
  position: absolute;
  right: -174px;
  width: 174px;
  height: 140px;
}

.newsent-kd-content {
  border: 1px solid #86909C;
}

.newsent-kd-content .newsent-kd-content-name {
  border-radius: 4px 4px 0 0;
}

.newsent-kd-first {
  border: 1px solid #0082FA;
}

.newsent-kd-first .newsent-kd-content-name{
  color: #fff;
  background: #0082FA;
  border-bottom: 1px solid #0082FA;
}