* {
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
  width: 100%;
  height: 100%;
  background: #fafafa;
  font-size: 14px;
  line-height: 24px;
  font-family: arial, "微软雅黑";
  color: #4c4c4c;
}
img {
  border: none;
}
li {
  list-style: none;
}
a {
  display: inline-block;
  color: #4c4c4c;
  font-size: 14px;
  outline-style: none;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}

/* 提示弹窗 */
.tipDialog {
  background: url(../image/bg.png) no-repeat top left;
  display: none;
  padding: 45px 58px 40px;
  position: relative;
}
.tipDialog::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 149px;
  background: url(../image/watermark.png) no-repeat;
  bottom: 46px;
  right: 60px;
}
.tipDialog img.close{
  position: absolute;
  right: 31px;
  top: 27px;
  width: 15px;
  cursor: pointer;
}
.tipDialog .title1 {
  color: #242424;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: FZJinLS-B-GB;
  column-gap: 18px;
  margin-bottom: 26px;
}
.tipDialog .title1 h4 {
  font-weight: 400;
}
.tipDialog .title1 span {
  color: #ccc;
}
.tipDialog p {
  text-indent: 2em;
  color: #4D4D4D;
  line-height: 30px;
  font-size: 16px;
}
.tipDialog p.appellation {
  text-indent: 0;
}
.tipDialog p span.date {
  color: #D41A1A;
}
.tipDialog p span.ml-30 {
  display: inline-block;
  margin-left: 30px;
  text-indent: 0;
}
.tipDialog a.url {
  color: #2B99D1;
  font-size: 16px;
  display: inline;
}
.tipDialog .btns{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  column-gap: 70px;
}
.tipDialog .btns .noprompt {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #333333;
  font-size: 16px;
}
.tipDialog .btns input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #8D2C25;
}
.tipDialog .btns .notip{
  width: 128px;
  height: 46px;
  background: #8D2C25;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}