* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: Lora;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ccc;
}
body.body_overflow_hidden {
  overflow: hidden;
}

.chinese-text {
  font-family: "Yahei", Arial, sans-serif;
}

.english-text {
  font-family: "Lora", Arial, sans-serif;
}

.layout_content_wp {
  flex-grow: 1;
}
.layout_content_wp .page_background_img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 130%;
  z-index: -1;
  font-size: 0;
  background: url("../images/bg.jpg") center/cover;
  animation: bian 10s infinite alternate;
  transform: translateY(-15%);
  transition: all 0.1s linear;
}
.layout_content_wp .page_background_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 2;
  filter: blur(4px);
  transform: scale(1.1);
}

.padding_top_20 {
  padding-top: 20px;
}

.padding_top_40 {
  padding-top: 40px;
}

.padding_top_60 {
  padding-top: 60px;
}

.padding_bottom_20 {
  padding-bottom: 20px;
}

.padding_bottom_40 {
  padding-bottom: 40px;
}

.padding_bottom_60 {
  padding-bottom: 60px;
}

.margin_right_20 {
  margin-right: 20px;
}

.margin_right_40 {
  margin-right: 40px;
}

.margin_right_60 {
  margin-right: 60px;
}

.text_align_center {
  text-align: center;
}

#show_img_wp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}
#show_img_wp .img_box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 0;
}
#show_img_wp .img_box img {
  max-width: 100%;
  max-height: 100%;
}

@font-face {
  font-family: Lora;
  src: url("../fonts/Lora-Regular.ttf");
}/*# sourceMappingURL=public.css.map */