@charset "utf-8";
.sy-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 1000;
}
.sy-alert {
  position: fixed;
  display: none;
  background: #fff;
  overflow: hidden;
  width: 430px;
  max-width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
}
.sy-alert.animated {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.sy-alert .sy-title {
  height: 50px;
  color: #fff;
  line-height: 50px;
  font-size: 18px;
  background-color: #f08519;
  padding: 0 20px;
}
.sy-alert .sy-title span {
  float: right;
  cursor: pointer;
}
.sy-alert .sy-content {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  overflow-y: auto;
}
.sy-alert.sy-alert-tips {
  text-align: center;
  width: 150px;
  background: rgba(0, 0, 0, 0.7);
}
.sy-alert.sy-alert-tips .sy-content {
  padding: 8px;
  color: #fff;
  font-size: 14px;
}
.sy-alert.sy-alert-model .sy-content {
  text-align: left;
}
.sy-alert.sy-alert-model .sy-content .form {
  padding: 0 20px;
}
.sy-alert.sy-alert-model .sy-content .form .input-item {
  margin-bottom: 20px;
  position: relative;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-text {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #999999;
  padding: 0 15px;
  border-radius: 5px;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-text::-webkit-input-placeholder {
  color: #999999;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-code {
  width: 50%;
  float: left;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-code-img {
  width: calc(50% - 20px);
  height: 50px;
  float: left;
  margin-left: 10px;
  cursor: pointer;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-radio:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #f08519;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-radio:checked:after {
  content: '';
  width: 9px;
  height: 9px;
  text-align: center;
  background: #f08519;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-submit {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background-color: #f08519;
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-nobtn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background: none;
  border: 0;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #999999;
}
.sy-alert.sy-alert-model .sy-content .form .input-item .input-forget {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: #999999;
  cursor: pointer;
}
.sy-alert.sy-alert-model .sy-content .form .form-state {
  color: #999999;
  justify-content: flex-start;
}
.sy-alert.sy-alert-model .sy-content .form .form-state a {
  color: #585858;
  text-decoration: underline;
}
.sy-alert.sy-alert-model .sy-content .form .form-state .input-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}
.sy-alert.sy-alert-model .sy-content .form .form-state .input-checkbox:before {
  content: '';
  width: 14px;
  height: 14px;
  display: block;
  border: 1px solid #f08519;
  box-sizing: border-box;
}
.sy-alert.sy-alert-model .sy-content .form .form-state .input-checkbox:checked:after {
  content: '';
  width: 14px;
  height: 14px;
  text-align: center;
  background: url(../images/icon10.jpg) center no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.sy-alert.sy-alert-model .sy-content .form-login {
  font-size: 14px;
  padding: 20px 0 10px;
  text-align: center;
  border-top: 1px solid #999999;
  margin-top: 20px;
}
.sy-alert.sy-alert-model .sy-content .form-login span {
  color: #f08519;
  cursor: pointer;
}
.sy-alert.sy-info {
  width: 800px;
}
.sy-alert.sy-info .sy-infobox {
  max-height: 80vh;
  padding: 20px;
  font-size: 14px;
  line-height: 2em;
}
.sy-alert .sy-btn {
  height: 50%;
  border-top: 1px solid #eee;
  overflow: hidden;
}
.sy-alert .sy-btn button {
  float: left;
  border: 0;
  color: #333;
  cursor: pointer;
  background: #fff;
  width: 50%;
  line-height: 45px;
  font-size: 15px;
  text-align: center;
}
.sy-alert .sy-btn button:nth-child(1) {
  color: #888;
  border-right: 1px solid #eee;
}
.sy-alert.sy-alert-alert .sy-btn button {
  float: none;
  width: 100%;
}
