@charset "utf-8";
/*
 * @Author: fegq
 * @Date: 2022-10-02 12:03:23
 * @LastEditors: fegq
 * @LastEditTime: 2022-10-02 12:16:38
 * @Description: This is a file comment!
 * @Version: 0.0.1
 */
 /* 提示框 */
 .tipTop {
    top: 5%;
  }
  
  .tipMid {
    top: 45%;
  }
  
  .tipBot {
    bottom: 15%;
  }
  
  .xq-model {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
  }
  
  .xq-model-tip {
    position: fixed;
    padding: 0 10px;
    width: auto;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    background-color: rgba(0,0,0, .9);
    border: 1px solid #333;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.3s;
    z-index: 111;
  }
  
  /* 寮瑰嚭妗� */
  .xq-msg-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0, .5);
    z-index: 9999;
  }
  
  .xq-msg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0, .5);
    z-index: 99;
  }
  
  .xq-msg-inner {
    padding: 10px 30px;
    width: 350px;
    height: auto;
    background: #fff;
    border-radius: 5px;
    animation: showMsgBox .1s ease;
    transition: all .5s;
  }
  
  .xq-msg-title {
    line-height: 50px;
    font-size: 18px;
    color: #333;
    text-align: left;
  }
  
  .xq-msg-content {
    padding: 10px 0;
    line-height: 35px;
    font-size: 16px;
    color: #666;
  }
  
  .xq-msg-set {
    line-height: 50px;
    text-align: right;
  }
  
  .xq-msg-btn {
    margin: 0 5px;
    width: 70px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
  }
  
  .xq-msg-btn.cancel {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #e8e8e8;
  }
  
  .xq-msg-btn.cancel:hover {
    background: #fff;
  }
  
  .xq-msg-btn.confirm {
    background: #1b7322;
    color: #fff;
    border: 1px solid #1b7322;
  }
  
  .xq-msg-btn.confirm:hover {
    background: #1b7322;
  }
  
  /* pop鎻愮ず */
  .xq-pop {
    position: fixed;
    top: -2.8125rem;
    left: 50%;
    margin: 0 auto 0 -100px;
    padding: .625rem .9375rem;
    min-width: 200px;
    width: auto;
    height: 1.5625rem;
    line-height: 1.5625rem;
    border-radius: .5rem;
    animation: popAnimate 1.5s ease-in-out;
    font-size: .875rem;
  }
  
  .xq-pop-icon {
    margin-right: .625rem;
    font-size: .875rem;
  }
  
  @keyframes popAnimate {
    0% {
        transform: translateY(0);
    }
  
    50% {
        transform: translateY(3.75rem);
    }
  
    100% {
        transform: translateY(3.75rem);
    }
  }
  
  /* msg */
  .success {
    background-color: #bde4c0;
    color: #1b7322;
  }
  
  .error {
    background-color: rgb(236, 221, 221);
    color: #a91e12;
  }
  
  .warning {
    background-color: rgb(236, 220, 186);
    color: #9b6412;
  }
  
  .info {
    background-color: rgb(241, 236, 236);
    color: #242222;
  }
  
  .success-text {
    color: #1b7322;
  }
  
  .error-text {
    color: #a91e12;
  }
  
  .warning-text {
    color: #9b6412;
  }
  
  .info-text {
    color: #242222;
  }

  @font-face {
    font-family: "xqmsg"; /* Project id 3684586 */
    src: url('../fonts/iconfont.eot?t=1664716080047'); /* IE9 */
    src: url('../fonts/iconfont.eot?t=1664716080047#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/iconfont.woff2?t=1664716080047') format('woff2'),
         url('../fonts/iconfont.woff?t=1664716080047') format('woff'),
         url('../fonts/iconfont.ttf?t=1664716080047') format('truetype'),
         url('../fonts/iconfont.svg?t=1664716080047#xqmsg') format('svg');
  }
  
  .xqmsg {
    font-family: "xqmsg" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .xqmsg-times-circle:before {
    content: "\e856";
  }
  
  .xqmsg-exclamation-circle:before {
    content: "\e67f";
  }
  
  .xqmsg-check-circle:before {
    content: "\e613";
  }
  
  .xqmsg-info-circle:before {
    content: "\e67e";
  }
  
  