/*
 * syalert.css
 * Version - 1.0
 * Copyright (c) 2019 sy
 */
@charset "utf-8";

.sy-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  z-index: 1000
}
.sxing{ cursor:pointer;}
.sy-content p{ padding: 10px 0;}
.sy-alert {
  position: fixed;
  display: none;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  width:500px;
  max-width: 100%;
  max-height: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999
}

.sy-alert.animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s
}

.sy-alert .sy-title {
  height: 45px;
  color: #333;
  line-height: 45px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  padding: 0 12px
}

.sy-alert .sy-content {
  padding: 20px;
  text-align: center;
}
