* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
 /*正常的未被访问过的链接*/
 a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
}
/* 正在点击的链接*/
a:active {
  text-decoration: none;
}
html {
  background-color: rgba(236, 236, 236, .3);
}
/* 去除表单点击后的样式 */
.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(204,204,204,1);
  box-shadow: 0 0 0 rgba(0,0,0,.075);
  -webkit-box-shadow: 0 0 0 rgba(0,0,0,.075);
}

.btn:focus,.btn:active:focus,
.btn.active:focus,.btn.focus,
.btn:active.focus,.btn.active.focus {  
 outline: none !important;   
 border-color: transparent !important;   
 box-shadow: none !important;
 background: rgba(245,57,57,1) !important;
}
.form-control::placeholder {
  color: #ccc;
}
/* 图标 */
@font-face {
  font-family: 'iconfont';
  src: url('../font/iconfont.ttf?t=1624329678092') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 错误提示 */
.tips {
  display: inline-block;
  text-align: left;
  /* width: 7.5rem; */
  font-size: .4rem;
}
.tips_false {
  color: red;
}
.tips_true {
  color: rgb(8, 117, 8);
}
.tips_true i {
  color: rgb(8, 117, 8) !important;
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
}
/* 分页 */
.pageBox {
  text-align: center;
  height: 1.6rem;
  line-height: 1.6rem;
  width: 100%;
  background-color: #fff;
  position: absolute; 
  bottom: 0;
  left: 0;
}
.M-box1 span,
.M-box1 a,
.M-box2 span,
.M-box2 a {
  display: inline-block;
  width: .4rem;
  height: .4rem;
  line-height: .4rem;
  color: #000;
  border: 1px solid #cccccc;
  margin-left: .4rem;
}
.M-box1 .active,
.M-box2 .active {
  background: #b69965;
  color: #fff;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 640px;
    margin: 1.75rem 1rem;
  }
}
.m_c {
  margin-top: 4rem;
}
.m_h {
  height: 2rem !important;
  /* line-height: 2rem; */
  /* text-align: center; */
  padding: .5rem .5rem !important;
  border-bottom: 1px solid rgba(245,57,57,1);
}
.m_t {
  font-size: .8rem;
  color: rgba(245,57,57,1);
  /* text-align: center; */
  margin-left: 50%;
  transform: translateX(-50%);
}
.m_b {
  font-size: .6rem;
  padding: .6rem;
  text-indent: 2em;
}
.modal-header .cc {
  padding: .7rem 1rem !important;
}
.m_b p {
  margin-bottom: .5rem;
}
