﻿.color-danger {
  color: #df0000;
}
.color-primary {
  color: #2241ff;
}
.color-warning {
  color: #d6a600;
}
.prop-message {
  position: fixed;
  text-align: center;
  width: 100%;
  top: 20px;
  opacity: 0;
  display: none;
}
.prop-message > div {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  color: #fff;
  background-color: #4695f6;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
.prop-message.danger > div {
  background-color: #df0000;
}
.prop-message.success > div {
  background-color: #029800;
}
.prop-message.primary > div {
  background-color: #2241ff;
}
.prop-message.info > div {
  background-color: #4695f6;
}
.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: .5;
  z-index: 100;
}
.confirm-message {
  z-index: 101;
  position: fixed;
  top: 140px;
  left: 0;
  width: 100%;
}
.confirm-message .message-container {
  margin: 0 20px;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 5px;
}
.confirm-message .message {
  font-size: 16px;
  text-align: center;
}
.confirm-message .buttons {
  margin-top: 30px;
  text-align: center;
}
.confirm-message .buttons .btn {
  width: 40%;
  height: 35px;
  /*line-height: 35px;*/
  font-size: 14px;
}
.confirm-message .buttons .btn:last-child {
  margin-left: 30px;
}
.prop-alert {
  text-align: center;
  position: fixed;
  top: 100px;
  z-index: 1001;
  left: 0;
  width: 100%;
}
.prop-alert .alert-container {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  min-width: 50%;
  max-width: 80%;
  padding: 20px;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}
.prop-alert .alert-container .icon {
  font-size: 36px;
  margin-bottom: 15px;
  z-index: 1002;
  position: relative;
}
.prop-alert .alert-container p {
  font-size: 14px;
  color: #fff;
  z-index: 1;
  position: relative;
}
.prop-alert .alert-container:before {
  display: block;
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .6;
  z-index: 0;
}


.actionsheet {
  display: block;
  visibility: hidden;
  z-index: 1003;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.actionsheet ul {
  margin-bottom: 10px;
  list-style: none;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}
.actionsheet ul li {
  display: block;
  background-color: #fff;
  height: 44px;
  line-height: 44px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.actionsheet ul li:last-child {
  border-bottom: none;
}
.actionsheet ul li.summary {
  height: auto;
  padding: 5px 0;
  font-size: 13px;
  color: #666;
}
.actionsheet ul li a,
.actionsheet ul li button {
  color: #333;
  width: 100%;
  display: block;
  height: 100%;
}
.actionsheet ul li a:active,
.actionsheet ul li button:active {
  background-color: #eee;
}
.actionsheet ul li a.cancel,
.actionsheet ul li button.cancel {
  color: red;
}
.actionsheet-mask {
  display: none;
  z-index: 1002;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
}