.width1500 {
  max-width: 100%;
  min-width: 1260px;
  margin: 0px auto;
  box-sizing: border-box;
}

.width1200 {
  width: 1200px;
  margin: 0px auto;
}

.marginTop_10 {
  margin-top: 10px;
}
.marginTop_16 {
  margin-top: 16px;
}
.width_100 {
  width: 100%;
}
.bg_colorFFF {
  background-color: #fff;
}

/* ===== flex布局  start =====*/
.flex_spaceAround {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex_spaceBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_spaceBetweenStart {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex_spaceBetweenEnd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flex_spaceBetweenBaseline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex_start2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.flex_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex_baseline {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.flex_column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.flex_columnStart {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.flex_columnSpaceBetween {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
/* ===== flex布局  end =====*/
/* ====== 鼠标hover效果 start ======*/

.hover_style {
  transition: all 0.6s;
  cursor: pointer;
}

/* 放大效果 */

.hover_magnify:hover {
  transform: scale(1.05);
}

/* 向上移动效果 */

.hover_top:hover {
  transform: translateY(-20px);
}

/* ====== 鼠标hover效果 end ======*/

/* ====== 优化滚动条样式 start ====== */

body::-webkit-scrollbar {
  width: 0px;
}

.scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 90px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
  width: 4px;
  height: 10px;
  background-color: #e5e5e5;
  border-radius: 4px;
}

/* ====== 优化滚动条样式 end ====== */

/* ===== 富文本 start ======*/

.richText {
  overflow: hidden;
  padding-bottom: 60px;
}

.richText img {
  max-width: 100%;
  height: auto;
}

/* ===== 富文本 end ======*/

/* ====== 公共的类 ====== */

.fl {
  float: left;
}

.fr {
  float: right;
}

.fontWeightBold {
  font-weight: bold;
}

.public_boxShadow {
  box-shadow: 0px 10px 20px 0px rgba(201, 221, 241, 0.3);
}
.overflow {
  overflow: hidden;
}

/* ====== 公共的类 end ====== */

/* ====== 公共的头部 start ====== */

.public_header {
  position: relative;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}

.public_topMenu {
  background: #333333;
  overflow: hidden;
}
.public_topMenuList {
  padding: 8px 0px;
  box-sizing: border-box;
  overflow: hidden;
}

.public_topMenuList > ul {
  float: left;
  font-size: 12px;
  margin-top: 4px;
}

.public_topMenuList > ul li {
  float: left;
}
.public_topMenuList > ul li a {
  height: 12px;
  line-height: 12px;
  display: block;
}
.public_topMenuName a {
  color: rgba(255, 255, 255, 0.9);
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.9);
}

.public_topMenu_nav a {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.public_topMenu_nav + .public_topMenu_nav a {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.public_topLoginParent {
  overflow: hidden;
}
.public_topLoginParent a {
  width: 49px;
  height: 20px;
  border-radius: 3px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  text-decoration: none;
}
.public_topLoginParent a:focus,
.public_topLoginParent a:hover {
  text-decoration: none;
  display: flex;
}

.public_topLoginParent_01 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
}

.login-tip {
  color: #666;
}

.public_topLoginParent_01 a {
  width: 60px;
  height: 20px;
  border-radius: 3px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  text-decoration: none;
}

.public_topLogin {
  background: #ffffff;
  border: 1px solid #fff;
  color: #0a1364;
}
.public_topLogin:hover {
  color: #0a1364;
  border: 1px solid #fff;
}
.public_topReigster {
  border: 1px solid #f0f0f0;
  color: #fff;
  background: transparent;
  margin-left: 4px;
}
.public_topReigster:hover {
  border: 1px solid #f0f0f0;
}
/* ====== 公共的头部 end ====== */

/* ====== 公共的底部 start ====== */

.footerSlide {
  background: #333333;
  padding-bottom: 47px;
  padding-top: 64px;
  margin-top: 10px;
}
.publicFooter_qrcode {
  width: 280px;
  height: 170px;
}
.publicFooter_detail {
  margin-left: 40px;
  overflow: hidden;
}
.publicFooter_enterprise {
  width: 835px;
  padding-bottom: 15px;
  border-bottom: 1px solid #464646;
}
.publicFooter_enterprise a,
.publicFooter_enterprise span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  float: left;
  margin-right: 10px;
}
.publicFooter_enterprise a:hover {
  text-decoration: underline;
}
.publicFooter_menu {
  margin-top: 25px;
}
.publicFooter_menu ul li.publicFooter_menuListLabel {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 15px;
}
.publicFooter_menu ul {
  height: 116px;
}
.publicFooter_menu ul + ul {
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px dashed #979797;
}
.publicFooter_menu ul li a {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}
.publicFooter_menu ul li + li {
  margin-top: 10px;
}
.publicFooter_concat {
  margin-left: 45px;
  margin-top: 30px;
}
.publicFooter_concat img {
  width: 17px;
  height: 60px;
}
.publicFooter_concat ul {
  margin-top: 5px;
  margin-left: 15px;
}
.publicFooter_concat ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.publicFooter_concat ul li a.publicFooter_concatTel {
  color: #ffffff;
  font-size: 20px;
}
.publicFooter_copyRight {
  padding-top: 25px;
  border-top: 1px solid #464646;
}
.publicFooter_copyRight ul {
  text-align: center;
}
.publicFooter_copyRight ul + ul {
  margin-top: 10px;
}
.publicFooter_copyRight li a,
.publicFooter_copyRight li span,
.publicFooter_copyRight li {
  display: inline-block;
}
.publicFooter_copyRight li,
.publicFooter_copyRight li a {
  color: rgba(255, 255, 255, 0.5);
}
.publicFooter_copyRight li + li {
  margin-left: 5px;
}

.publicFooter_plice {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}
.publicFooter_pliceLabel {
  margin-right: 5px;
}
.publicFooter_copyRight li.publicFooter_copyRightPolice {
  line-height: 20px;
}
.publicFooter_copyRight li + li.publicFooter_copyRightBaidu {
  width: 67px;
  height: 18px;
  margin-left: 10px;
}

/* ====== 公共的底部 end ====== */
