@charset "UTF-8";
/**
 *
 * 该css提供基础集合支持
 *
 * @Author: snl
 * @Date: 2020/07/16 16:12
 */
/**
 *
 * 该项目基础css  为项目提供基础css支持  body等支持
 *
 * @Author: snl
 * @Date: 2020/07/16 13:31
 */
* {
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none; }

body, html {
  width: 100%;
  height: 100%; }

/*IOS下可使用 -webkit-text-size-adjust禁止用户调整字体大小*/
body {
  -webkit-text-size-adjust: 100% !important;
  overflow-x: hidden; }

body {
  font-size: .14rem;
  color: #000; }

:root {
  --primary-color: #A45438; }

.container {
  width: 100%;
  margin: 0 auto; }

.sl {
  /* 元素溢出内容  隐藏 */
  overflow: hidden;
  /* 设置文本不折行 */
  white-space: nowrap;
  /* 元素溢出打点 */
  text-overflow: ellipsis; }

.sl2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical; }

.notify {
  position: fixed;
  z-index: 888;
  top: .2rem;
  width: 90%;
  left: 50%;
  line-height: .24rem;
  font-size: .14rem;
  border-radius: .04rem;
  background-color: var(--primary-color);
  color: #fff;
  visibility: hidden;
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: all .3s;
  padding: .1rem .12rem; }

.notify.showed {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1; }

.fg-modal {
  position: fixed;
  z-index: 666;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  background-color: rgba(0, 0, 0, 0.3); }
  .fg-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%) scale(0.15);
    border-radius: .04rem;
    overflow: hidden;
    transition: all .3s; }
    .fg-modal .modal-content .modal-msg {
      padding: .12rem;
      line-height: .24rem;
      font-size: .14rem;
      background-color: #fff;
      color: #666; }
    .fg-modal .modal-content .modal-footer .modal-footer-btn {
      display: none;
      float: left;
      width: 50%;
      font-size: .16rem;
      height: .4rem;
      line-height: .4rem;
      text-align: center;
      color: #fff;
      background-color: #DEDEDE; }
    .fg-modal .modal-content .modal-footer .modal-sure {
      background-color: var(--primary-color); }

.fg-modal.showed {
  visibility: visible;
  opacity: 1; }
  .fg-modal.showed .modal-content {
    transform: translate(-50%, -50%); }

input, select {
  border: .01rem solid #BFBFBF;
  outline: 0; }

/*# sourceMappingURL=master.css.map */
