@charset "utf-8";

/* CSS Document */

body,
ul,
ol,
dl,
li,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
  font-family: "Microsoft YaHei";
}

img {
  border: none;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font-size: 100%;
  border: none;
}

body {
  background: #fff;
  color: #5e5e5e;
  font: 14px/24px Microsoft YaHei, SimSun, Arial;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*默认a标签样式*/
a {
  text-decoration: none
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  zoom: 1;
}

.clear:after {
  content: "";
  display: block;
  height: 0;
  visibility: visible;
  clear: both;
}


/*显示隐藏*/

.hide {
  display: none;
}

.show {
  display: block;
}


/*表格table和td有边框*/

.boder_tl {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.boder_tl td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.boder_bl {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.boder_bl td {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.boder_tr {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.boder_tr td {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.boder_br {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.boder_br td {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.txt_center {
  text-align: center;
}

input[type='input']:focus {
  outline: none
}

/* button:focus{
    outline:none
} */
/*表格table和tr有边框*/

.boder_ltr_trborder {
  border: 1px solid #ccc;
  border-bottom: none;
}

.boder_ltr_trborder tr {
  border-bottom: 1px solid #ccc;
}

.d-flex {
  display: flex;
}

.d-flex-c {
  display: flex;
  flex-direction: column;
}

.jc-b {
  justify-content: space-between;
}

.jc-a {
  justify-content: space-around;
}

.jc-c {
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.middle {
  width: 780px;
  margin: 0 auto;
}

@keyframes diamove {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}