/*
 * @Description: 
 * @Date: 2021/5/11 10:36
 * @Author: jinger
 */

:root {
  color: #333;
  font-family: PinFang;
  --color-theme1-dark: #b7282d; /* 颜色1 正常主题红 */
  --color-theme1-light: #f8e9e9; /* 颜色2 浅红 */
  --color-theme2-dark: #4fb4ff; /* 颜色3 正常蓝色 */
  --color-theme2-light: #edf7ff; /* 颜色4 浅蓝 */
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #333;
  text-decoration: none;
}
/* 字体 */
@font-face {
  font-family: "PinFang";
  src: url("../fonts/PinFang.ttf");
}
/* 布局 */
.g_flex_rn {
  display: flex;
  flex-flow: row nowrap;
}
.g_flex_rw {
  display: flex;
  flex-flow: row wrap;
}
.g_flex_cn {
  display: flex;
  flex-flow: column nowrap;
}
.g_flex_cw {
  display: flex;
  flex-flow: column wrap;
}
.g_flex_sc {
  justify-content: space-between;
  align-items: center;
}
.g_flex_cc {
  justify-content: center;
  align-items: center;
}

/* header */
.g_header_box {
  position: fixed;
  z-index: 22;
  width: 100%;
  height: 3.5rem;
  background: rgba(51, 51, 51, .03);
  display: flex;
  align-items: center;
}
.g_header_transparent {
  background: transparent!important;
}
.g_header_red {
  background: #f7f5f5!important;
}
.g_header_box .img_logo {
  width: 7.7rem;
  height: 2rem;
  margin: auto 10rem;
}
.g_header_box .img_logo img {
  width: 7.7rem;
  height: 2rem;
}
.g_header_box .list {
  flex: 1;
}
.g_header_box .list a {
  line-height: 3.5rem;
  margin-right: 2.5rem;
  font-weight: 500;
}
.g_header_box a:hover,
.g_header_box .active {
  font-weight: bold!important;
  position: relative;
  color: #b7282d;
}
.g_header_box .active::before {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1rem;
  height: 0.15rem;
  content: "";
  border-radius: 0.4rem;
  background: #b7282d;
}
.g_header_box .login_box {
  margin-right: 10rem;
}
.g_header_box .login_box img {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.25rem;
}
.g_header_box .login_box span {
  text-decoration: underline;
}

/* 大标题 类型1 */
.g_maintitle_type1 h1 {
  position: relative;
  color: #333;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.g_maintitle_type1 h1::after {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3rem;
  height: 0.2rem;
  content: "";
  background: #b7282d;
}
.g_maintitle_type1 h2 {
  color: #999;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25rem;
  margin-top: 0.7rem;
}
/* 大标题 类型2：color1 主题红， color2 正常白 */
.g_maintitle_type2_color1 h1,
.g_maintitle_type2_color2 h1 {
  position: relative;
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.g_maintitle_type2_color2 h1 {
  color: #fff;
}
.g_maintitle_type2_color1 h1::after,
.g_maintitle_type2_color2 h1::after {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  content: "";
  background: #b7282d;
}
.g_maintitle_type2_color2 h1::after {
  background: #fff;
}
.g_maintitle_type2_color1 h2,
.g_maintitle_type2_color2 h2 {
  color: #999;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4rem;
  margin-top: 0.7rem;
}
.g_maintitle_type2_color2 h2 {
  color: #fff;
}

/* 小标题 类型1：color1 主题红， color2 正常蓝 */
.g_subtitle_type1_color1 h3,
.g_subtitle_type1_color2 h3 {
  position: relative;
  display: inline;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.1rem;
}
.g_subtitle_type1_color1 h3 span,
.g_subtitle_type1_color2 h3 span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.8rem;
}
.g_subtitle_type1_color1 h3 span {
  color: #b7282d;
}
.g_subtitle_type1_color2 h3 span {
  color: #4fb4ff;
}
.g_subtitle_type1_color1 h3::before,
.g_subtitle_type1_color2 h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 1.05rem;
  content: "";
}
.g_subtitle_type1_color1 h3::before {
  background: #f8e9e9;
}
.g_subtitle_type1_color2 h3::before {
  background: #edf7ff;
}

/* 横向幻灯片的轮播按钮 类型1(有阴影)： size1、size2 */
.g_carouselPoint_type1_size1,
.g_carouselPoint_type1_size2 {
  background: #f8e9e9;
  border-radius: 50%;
  cursor: pointer;
}
.g_carouselPoint_type1_size1 {
  width: 0.5rem;
  height: 0.5rem;
}
.g_carouselPoint_type1_size2 {
  width: 1rem;
  height: 1rem;
}
.g_carouselPoint_type1_size1:hover,
.g_carouselPoint_type1_size1_active {
  box-shadow: 0 0 0 0.15rem #f8e9e9!important;
  background: #b7282d!important;
}
.g_carouselPoint_type1_size2:hover,
.g_carouselPoint_type1_size2_active {
  box-shadow: 0 0 0 0.25rem #f8e9e9!important;
  background: #b7282d!important;
}
/* 横向幻灯片的轮播按钮 类型2：无阴影 */
.g_carouselPoint_type2 {
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(51, 51, 51, .3);
  border-radius: 50%;
  cursor: pointer;
}
.g_carouselPoint_type2:hover,
.g_carouselPoint_type2_active {
  background: #b7282d!important;
}

/* 公共轮播：按钮+箭头 arrowBox */
.slide {
  position: relative;
}
.g_arrow_box {
  position: absolute;
  bottom: 4rem;
  left: 10rem;
  display: flex;
  align-items: center;
  z-index: 222;
}
.g_arrow_box .arrow_left_x {
  margin-right: 1.5rem;
  width: 2.5rem;
  text-align: center;
}
.g_arrow_box .arrow_right_x {
  margin-left: 1.5rem;
  width: 2.5rem;
  text-align: center;
}
.g_arrow_box .icon_arrow_left,
.g_arrow_box .icon_arrow_right {
  width: 0.5rem;
}
.g_arrow_box .icon_arrow_left_active,
.g_arrow_box .icon_arrow_right_active {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.icon_arrow_left_active,
.icon_arrow_right {
  display: none;
}
.g_arrow_box .arrow_txt,
.g_arrow_box .arrow_txt_active {
  position: relative;
  padding-top: 1.25rem;
  cursor: pointer;
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}
.g_arrow_box .arrow_txt:hover,
.g_arrow_box .arrow_txt_active {
  color: #b7282d;
}
.g_arrow_box .arrow_txt:before,
.g_arrow_box .arrow_txt_active:before {
  position: absolute;
  left: 50%;
  top: 0.2rem;
  transform: translate( -50%, 0);
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  border-radius: 50%;
  z-index: 33;
  background: rgba(183,40,45, .16);
}
.g_arrow_box .arrow_txt:hover:before,
.g_arrow_box .arrow_txt_active:before {
  background: #b7282d;
}
.g_arrow_box .arrow_txt:hover:after,
.g_arrow_box .arrow_txt_active:after {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate( -50%, 0);
  width: 1rem;
  height: 1rem;
  content: "";
  border-radius: 50%;
  background: #f3dcdd;
  z-index: 22;
}


/* 公共底部 */
.g_footer_x {
  height: 17rem;
}
.g_footer_clear {
  height: 4rem;
  background: rgba(183, 40, 45, .01)!important;
}
.g_footer_img,
.g_footer_msg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 0.8rem;
  font-weight: 500;
}
.g_footer_img {
  height: 14rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  background: #b7282d;
}
.g_footer_img_logo {
  width: 8rem;
  height: 9rem;
  margin-left: 10rem;
}
.g_img_public_x {
  text-align: center;
  margin-right: 10rem;
  display: flex;
}
.g_img_public_desc {
  margin-left: 2rem;
}
.g_img_public {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.5rem;
  border-radius: .2rem;
}
.g_footer_msg {
  height: 3rem;
  background: #fff;
}
.g_footer_msg span {
  margin-left: 0.6rem;
}
.g_footer_msg p:nth-child(1) {
  margin-left: 10rem;
}
.g_footer_msg p:nth-child(2) {
  margin-right: 8.65rem;
}
.g_footer_msg a:hover {
  color: #b7282d;
}



