.big-red-tips {
  display: inline-block;
  padding: 2px 4px;
  margin-top: 8px;
  background: #ff0008;
  border-radius: 2px 2px 2px 2px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 600; }

.message_pop_model {
  position: fixed;
  z-index: 99999;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  padding: 4px 10px;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  color: #999;
  box-shadow: 0 0 2px 2px rgba(153, 153, 153, 0.1);
  background-color: rgba(153, 153, 153, 0.2);
  border: rgba(153, 153, 153, 0.3);
  border-radius: 5px;
  transition: all 1s ease-in-out;
  opacity: 0; }
  .message_pop_model.success {
    background-color: rgba(0, 255, 0, 0.2);
    color: #0f0;
    box-shadow: 0 0 2px 2px rgba(0, 255, 0, 0.1);
    border: rgba(0, 255, 0, 0.3); }
  .message_pop_model.error {
    background-color: rgba(255, 0, 0, 0.2);
    color: #DB2726;
    box-shadow: 0 0 2px 2px rgba(255, 0, 0, 0.1);
    border: rgba(255, 0, 0, 0.3); }

.nowxapp_model,
.wxapp_model {
  display: none; }

.enlarge_img {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999; }
  .enlarge_img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3; }
  .enlarge_img .enlarge_bg_img {
    background-color: rgba(153, 153, 153, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    clip: rect(205px 572px 516px 351px);
    filter: blur(4px);
    height: 100%;
    width: 100%;
    z-index: 0; }

.share-btn {
  position: fixed;
  right: 0;
  top: 40%;
  background-color: rgba(0, 0, 0, 0.3);
  width: 3rem;
  padding: 0.4rem;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  border-radius: 8px 0 0 8px;
  z-index: 9999; }

.h5alert {
  position: fixed;
  padding: 2px 10px;
  line-height: 24px;
  font-size: 12px;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  opacity: 0;
  transition: all 0.4s ease-in-out; }
  .h5alert.success {
    background: rgba(76, 76, 76, 0.7);
    color: #fff;
    max-width: 300px; }
  .h5alert.error {
    background: rgba(76, 76, 76, 0.7);
    color: #f00;
    max-width: 300px; }
  .h5alert.default {
    background: #ffffff;
    color: #333333;
    max-width: 300px; }
