.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
    z-index: 99999;
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid rgb(173, 173, 173);
  width: 800px;
  height: 500px;
  animation-name: modalopen;
  animation-duration: 0.5s;
  border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-content h2 {
    height: 24px;
    opacity: 1;
    color: #262626;
    font-size: 16px;
    font-weight: 600;
    font-family: "PingFang SC";
    text-align: center;
    line-height: 24px;
    display: flex;
    justify-content: center;
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 22px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 700px) {
  .modal-content {
    width: 90%;
  }
}

.layui-col-md6 {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}
.layui-col-md6 span {
  color: #f04f4f;
  font-size: 14px;
  display: block;
  height: 8px;
  margin-right: 4px;
}
.layui-col-md6 p {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.margin-tb {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  display: flex;
  height: 370px;
  overflow: auto;
}
.margin-tb span:first-child {
  display: inline-block;
  text-align: right;
  width: 79px;
}
.margin-tb span:nth-child(2) {
  width: 420px;
}
.margin-tb2 span {
  display: inline-block;
  text-align: right;
  width: 121px;
}
.margin-tb3 span {
  display: inline-block;
  text-align: right;
  width: 121px;
}
.margin-b {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.layui-col-md6 {
  width: 100%;
}
.layui-form-select {
  flex: 1;
}
.tk_btn {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
.sure {
    width: 72px;
    height: 32px;
    border-radius: 2px;
    opacity: 1;
    border: 0 solid #979797;
    background: #4974f5;
     margin: 20px 0;
    font-size: 12px;
  /*border: 1px solid rgba(72, 116, 246, 1);*/
  /*background: rgba(72, 116, 246, 1);*/
  /*outline: none;*/
  /*padding: 4px 10px;*/
  /*border-radius: 4px;*/
  color: #fff;
  cursor: pointer;
}

.cancel {
  border: 1px solid rgba(217, 217, 217, 1);
  background: #fff;
  outline: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
    margin: 0 20px;
}
.warning {
  border: 1px solid rgba(246, 215, 116, 1);
  border-radius: 2px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin-top: 15px;
  text-align: left;
}
.warning svg {
  margin-right: 4px;
}

.check-box {
    font-size: 11px;
    color: #888888;
    margin-bottom: 10px;
    height: 12px;
    display: flex;
    z-index: 999;
}
.tk_text{
color:#4974F5;
display: flex;
align-items: center;
cursor: pointer;
}
.tk_begin{
    text-indent: 3px;
    display: flex;
    align-items: center;
}
.agree input{
    display: none;
}
.agree span {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #4974F5;
    margin-left: 4px;
    vertical-align: -0.1em;
}
.agree span:after {
    transform: rotate(
            45deg
    ) scaleY(1);
    box-sizing: content-box;
    content: "";
    /*border: 2px solid #fff;*/
    /*border-left: 0;*/
    /*border-top: 0;*/
    height: 7px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 7px;
    border-radius: 100PX;
    background-color: transparent;
    transform-origin: center;
}
.agree input:checked + span:after {
    background-color: #4974F5;
}
/*设置滚动条样式*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;/*transparent*/
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

::-webkit-scrollbar-thumb {
    background-color: #9c9da0;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em
}

#toast {
    position: fixed;
    top: 20px;
    left: 50%;
    padding: 7.5px 17.67px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s;
    line-height: 22px;
    z-index: 999999;
    background-color: #fff;
    border: 1px solid #e5e6eb;
    box-shadow: 0 4px 10px 0 #0000001a;
    border-radius: 2px;

}
#toast .icon {
    width: 20px;
    height: 20px;
    margin-right: 9.67px;
}