@charset "utf-8";
/*----------------------------------------------------------------------------------
Basic information：
	--css   base.css  It's the basic style.
	--by    Marketing Web Designer&Front end Engineer Sivan
	--date  2025-01-14  

	--Tips  The files have been compiled. The CSS files have been directly overwritten by the generated LESS files. For detailed comments, please refer to the LESS files.
	--Responsive, 24 - column grid system: grid.min.css (already integrated into the base.less file)
	--Mainstream resolutions: 1920px, 1366px, 750px (PC - end prioritized)
	--Content width on the PC - end: 1424px, with front - end JS conversion: 100px = 1rem
------------------------------------------------------------------------------------
.
结构目录：
    0. 引入依赖文件、初始化
	1. 重定义浏览器默认样式
	2. 全局常用 CSS 样式
		x.1 字体图标FontIcon
		x.1 数字字体 num
	3. 栅格系统
	6. 头部
	6. 底部
	4. 在线客服
	5. 表单
	6. 提示/通知
	
	0. 页面布局以及通用的区块样式
	0. 列表样式
	0. 其他特定功能块
		1. 个人中心面板
		2. 简易编辑器
		3. 弹出菜单、弹出层及弹出窗口
		5. 登录和注册
		6. 其他
	*  待补充
	
-------------------------------------------------------------------------------------

LESS变量说明：

	主色：		.color_primary()	#00FFED	    高亮/强调，按钮、图标、链接等
	深色：		@color_dark			#181818		深色模式下，主要文字信息，如H1-H6标题
	浅色：		@color_white		#FFFFFF		深色模式下，文字信息颜色。
	辅色：		@color_secondary	#33B957     悬浮状态，辅色，主色同类色
	轻色：		@color_muted		#606A70     段落信息
	亮色：		@color_light		#C7D3DC     说明信息
	危险：		@color_danger		#FF4636     危险信息
	警告：		@color_warning		#FFB16C     警告信息
	信息：		@color_tips			#2B76FF     提示信息，辅色，主色相邻色
	主体：		@color_body			#F8F8F8     网站主体背景，搭配弥散式投影使用
	
函数说明：
	1.CSS3兼容性样式简写，盒子模型规则box-sizing 圆角radius、动画transition、

	最佳实践
	
	1.1 圆角函数
	.border_radius(@radius) { 
		-webkit-border-radius: @radius;
		-moz-border-radius: @radius;
		border-radius: @radius;
	}
	
	1.2 Less文件:
	.DEMO {
		.border_radius(4px);
	}

	1.3 输出CSS：
	.DEMO {
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}
		
-------------------------------------------------------------------------------------*/
/*全局变量 Less + root */
:root {
  --color_primary: #00ffed;
  --color_dark: #030a17;
  --color_white: #ffffff;
  --color_secondary: #f9ff92;
  --color_muted: #aab4bc;
  --color_light: #f8f8f8;
  --color_success: #33b957;
  --color_danger: #ff4636;
  --color_warning: #ffb16c;
  --color_tips: #2b76ff;
  --color_body: #030a17;
  --color_light_red: #fdf1f1;
  --color_light_orange: #faf0ea;
  --color_light_yellow: #faf4ed;
  --color_light_green: #e9f2ef;
  --color_light_blue: #eaf6fd;
  --color_light_indigo: #f5f3fb;
  --color_light_purple: #f3f4fb;
  --color_light_pink: #fef5fe;
  --ec_bg_light: #f8f9fb;
  --ec_bg_muted: #1f2a3e;
  --ec_bg_dark: #e0e7ec;
  --color_light_gray_bg: #f3f5f8;
  --banner_bg: #f3f5f8;
  --body_bg: #ffffff;
  --footer_bg: #030a17;
  --ec_red: #f1676f;
  --ec_orange: #f2882c;
  --ec_yellow: #f2aa41;
  --ec_green: #00ffed;
  --ec_blue: #2f85f9;
  --ec_indigo: #8186ef;
  --ec_purple: #8da2fa;
  --ec_pink: #f59bfb;
  --ec_teal: #3fc5e8;
  --ec_cyan: #25d6ca;
  --ec_white: #ffffff;
  --ec_gray: #f7f8fa;
  --ec_black: #000000;
  --ec_dark: #181818;
  --h1: 0.64rem;
  --h2: 0.48rem;
  --h3: 0.4rem;
  --h4: 0.36rem;
  --h5: 0.24rem;
  --h6: 18px;
  --h_18: 18px;
  --h_16: 16px;
  --h_14: 14px;
  --h_12: 12px;
  --small: 12px;
  --radius_xs: 0.04rem;
  --radius_sm: 0.08rem;
  --radius_md: 0.16rem;
  --radius_lg: 0.32rem;
  --radius_50: 50%;
  --radius_100: 100%;
  --max_width_100: 100%;
  --max_width_body: 25.6rem;
  --min_width_body: 2.4rem;
  --max_width_con: 19.2rem;
  --min_width_con: 2.4rem;
  --con_width_lg: 14.24rem;
  --con_width_md: 100%;
  --con_width_sm: 100%;
}
/*初始html根元素的初始字体大小为100px rem布局*/
html {
  font-size: 100px;
}
body {
  margin: 0;
  padding: 0;
  border: none;
  font: 14px/1.5 "Mier B Book", Microsoft YaHei, Helvetica, arial, sans-serif;
  min-width: 240px;
  max-width: 2560px;
  max-width: 25.6rem;
  margin: 0 auto;
  word-wrap: break-word;
}
/*盒子模型规则*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*--------------- 重定义浏览器默认样式 START ---------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
form,
input,
table,
tbody,
tr,
th,
td,
em,
input,
button,
img,
source,
picture,
p,
span,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: none;
}
body {
  min-width: 320px;
  font-family: "Mier B Book", Microsoft YaHei, Helvetica, arial, sans-serif;
  color: var(--color_white);
  font-size: 14px;
  max-width: var(--max_width_body);
  margin: 0 auto;
}
.no_scroll {
  overflow: hidden;
}
.mask_w {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  z-index: 3;
  background: rgba(120, 129, 147, 0.64);
}
.language_switch_w a {
  color: #000;
}
.mask_search {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -webkit-transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
.mask_w.active {
  display: block !important;
}
ul,
ol,
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
ul,
ol {
  list-style: none;
}
input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
  border: 0;
  border-radius: 0;
}

button,
textarea {
  -webkit-appearance: none;
  border: 0;
}
textarea {
  border: none;
  padding: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}
button:focus,
input:focus {
  outline: none;
}
table {
  border-collapse: collapse;
}
a,
.swiper_button {
  color: var(--color_primary);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  opacity: 0.9;
  color: var(--color_primary);
}
a:active,
a:focus {
  outline: none;
}
a:active,
a:focus {
  outline: none;
}
.img_w img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: auto;
  color: transparent;
}
select {
  padding: 4px 6px;
  border: none;
  border-radius: 4px;
  color: var(--color_muted);
  background-color: var(--ec_bg_light);
  outline: none;
  transition: border-color 0.3s;
}
select:hover {
  background-color: var(--ec_bg_light);
}
select:focus {
  border-color: var(--ec_bg_light);
}
.custom_language_select {
  padding: 0 8px;
}
/*--------------- 重定义浏览器默认样式 END ---------------- */
/*--------------- 全局常用样式 START ---------------- */
/*---字体图标---*/
@font-face {
  font-family: "icon";
}
.icon_w {
  font-family: "icon";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*---数字字体---*/
@font-face {
  font-family: "num";
  src: url("../font/num.woff") format("woff");
}
/*---特使专用字体---*/
@font-face {
  font-family: "ethnocentricregular";
  src: url("../font/e_font.woff2") format("woff2"),
    url("../font/e_font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*---专用字体 Mier字体3个字重 Bold BOOK Demi ---*/
@font-face {
  font-family: "Mier B Bold";
  src: url("../font/MierB-Bold.woff2") format("woff2"),
    url("../font/MierB-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*---专用字体 Mier字体3个字重 Bold BOOK Demi ---*/
@font-face {
  font-family: "Mier B Demi";
  src: url("../font/MierB-Demi.woff2") format("woff2"),
    url("../font/MierB-Demi.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/*---专用字体 Mier字体3个字重 Bold BOOK Demi ---*/
@font-face {
  font-family: "Mier B Book";
  src: url("../font/MierB-Book.woff2") format("woff2"),
    url("../font/MierB-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/*--------------- 表单及表单元素 START ---------------- */
/*--提交成功-失败图标--*/
.success_icon,
.success_error {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: block;
  margin: 0 8px;
  position: relative;
}
.success_error:after,
.success_error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 8px;
  height: 11px;
  top: 4px;
}
.success_error:after,
.success_error:before {
  transform: rotate(-45deg);
}
.success_icon:before,
.success_icon:after {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  top: 9px;
  left: 5px;
}
.success_icon:after {
  height: 6px;
  transform: rotate(-45deg);
}
.success_icon:before {
  height: 11px;
  transform: rotate(45deg);
}
/*--------------- 表单及表单元素 END ---------------- */
/*--------------- 按钮 START ---------------- */
.btn_demo {
  display: block;
  display: inline-block;
  text-align: center;
  background-color: var(--color_primary);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  /*---DEMO---*/
  color: var(--color_primary);
  background: #ffffff;
  margin: 0 0.08rem 0 0.8rem;
}
.btn_demo:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
/*按钮*/
.btn_w {
  margin: 0 -0.08rem;
}
.btn_w .btn {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_w .btn_w .icon_w {
  padding: 0 0.04rem;
}
.btn_w .btn_default {
  display: block;
  display: inline-block;
  min-width: auto;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  padding: 0 0.08rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_dark);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_default:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_primary {
  display: block;
  display: inline-block;
  min-width: auto;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 18px;
  padding: 0 0.08rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_primary);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_md_primary {
  display: block;
  display: inline-block;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_primary);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_md_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_readmore_primary {
  display: block;
  display: inline-block;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_readmore_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_primary_bg {
  display: block;
  display: inline-block;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-color: var(--color_primary);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_primary_bg:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_gradient_green {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-image: -moz-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
  background-image: -webkit-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
  background-image: -ms-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_gradient_green:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_gradient_green {
  display: block;
  display: inline-block;
  min-width: 160px;
  width: auto;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 16px 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #14cb65 0%, #5fdb77 100%);
  background-image: -webkit-linear-gradient(0deg, #14cb65 0%, #5fdb77 100%);
  background-image: -ms-linear-gradient(0deg, #14cb65 0%, #5fdb77 100%);
  -webkit-box-shadow: 0 8px 16px rgba(84, 190, 30, 0.16);
  -moz-box-shadow: 0 8px 16px rgba(84, 190, 30, 0.16);
  box-shadow: 0 8px 16px rgba(84, 190, 30, 0.16);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_gradient_green:hover {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.btn_w .btn_gradient_blue {
  display: block;
  display: inline-block;
  min-width: 160px;
  width: auto;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 16px 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #2f85f9 0%, #5fbced 100%);
  background-image: -webkit-linear-gradient(0deg, #2f85f9 0%, #5fbced 100%);
  background-image: -ms-linear-gradient(0deg, #2f85f9 0%, #5fbced 100%);
  -webkit-box-shadow: 0 8px 16px rgba(90, 180, 240, 0.16);
  -moz-box-shadow: 0 8px 16px rgba(90, 180, 240, 0.16);
  box-shadow: 0 8px 16px rgba(90, 180, 240, 0.16);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_gradient_blue:hover {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.btn_w .btn_black {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_dark);
  background-image: -moz-linear-gradient(180deg, #606a70 0%, #94a2ab 100%);
  background-image: -webkit-linear-gradient(180deg, #606a70 0%, #94a2ab 100%);
  background-image: -ms-linear-gradient(180deg, #606a70 0%, #94a2ab 100%);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_black:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_white {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-image: -moz-linear-gradient(180deg, #94a2ab 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(180deg, #94a2ab 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(180deg, #94a2ab 0%, #ffffff 100%);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_white:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_line {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_dark);
  border: 2px solid #94a2ab;
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_line:hover {
  color: var(--color_dark);
  border: 2px solid #94a2ab;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_line_white {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_dark);
  border: 2px solid var(--color_white);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_line_white:hover {
  border: 2px solid #94a2ab;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_line_primary {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_line_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_sm_line {
  display: block;
  display: inline-block;
  min-width: 100px;
  width: auto;
  height: 42px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_dark);
  border: 2px solid var(--color_dark);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_sm_line:hover {
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
}
.btn_w .btn_sm_line_light {
  display: block;
  display: inline-block;
  min-width: 100px;
  width: auto;
  height: 42px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_light);
  border: 2px solid var(--color_light);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_sm_line_light:hover {
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
}
.btn_w .btn_sm_line_primary {
  display: block;
  display: inline-block;
  min-width: 100px;
  width: auto;
  height: 42px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_sm_line_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_md_line_primary {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 52px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_md_line_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_sm_line_blue {
  display: block;
  display: inline-block;
  min-width: 100px;
  width: auto;
  height: 42px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #2f85f9;
  border: 2px solid #2f85f9;
  background: transparent;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_sm_line_blue:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_sm_default_primary {
  display: block;
  display: inline-block;
  min-width: 100px;
  width: auto;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #030a17;
  background-color: var(--color_primary);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_sm_default_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.btn_w .btn_md_default_primary {
  display: block;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 20px;
  min-width: 160px;
  width: auto;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 24px 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
  background-color: var(--color_primary);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.08rem 0 0.08rem;
}
.btn_w .btn_md_default_primary:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
/*--------------- 按钮 END ---------------- */
/*文字动画*/
.a_w {
  transform: translateY(8px);
  opacity: 1;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a2_w {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.a3_w {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.a4_w {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.a5_w {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.a6_w {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.a7_w {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.a7_w {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.active .a_w,
.swiper .on .a_w,
.swiper .swiper-slide-active .a_w {
  transform: translate(0px);
  opacity: 1;
}
/*---颜色---*/
/*颜色配置*/
.ec_blue {
  color: #2f85f9;
}
.ec_green {
  color: #00ffed;
}
.ec_yellow {
  color: #f2aa41;
}
.ec_orange {
  color: #f2882c;
}
.ec_red {
  color: #f1676f;
}
.ec_black {
  color: #000000;
}
.ec_gray {
  color: #f7f8fa;
}
/*基本背景配置*/
.ec_blue_bg {
  background-color: #2f85f9;
}
.ec_green_bg {
  background-color: #00ffed;
}
.ec_yellow_bg {
  background-color: #f2aa41;
}
.ec_orange_bg {
  background-color: #f2882c;
}
.ec_indigo_bg {
  background-color: #8186ef;
}
.ec_purple_bg {
  background-color: #8da2fa;
}
.ec_orange_bg:after {
  border-left: solid 4px #f2882c;
}
.ec_red_bg {
  background-color: #f1676f;
}
/*置顶*/
.sub_ticky {
  background-color: #f2882c;
}
.ec_black_bg {
  background-color: #000000;
}
.ec_grey_bg {
  background-color: #f7f8fa;
}
/*浅色背景配置*/
.bg_light_red {
  background-color: #fdf1f1;
}
.bg_light_orange {
  background-color: #faf0ea;
}
.bg_light_yellow {
  background-color: #faf4ed;
}
.bg_light_green {
  background-color: #e9f2ef;
}
.bg_light_blue {
  background-color: #eaf6fd;
}
.bg_light_indigo {
  background-color: #f5f3fb;
}
.bg_light_purple {
  background-color: #f3f4fb;
}
.bg_light_pink {
  background-color: #fef5fe;
}
/*渐变背景配置*/
.bg_gradient_red {
  background-image: -moz-linear-gradient(180deg, #f1676f 0%, #fa9387 100%);
  background-image: -webkit-linear-gradient(180deg, #f1676f 0%, #fa9387 100%);
  background-image: -ms-linear-gradient(180deg, #f1676f 0%, #fa9387 100%);
}
.bg_gradient_orange {
  background-image: -moz-linear-gradient(180deg, #f2882c 0%, #f2aa41 100%);
  background-image: -webkit-linear-gradient(180deg, #f2882c 0%, #f2aa41 100%);
  background-image: -ms-linear-gradient(180deg, #f2882c 0%, #f2aa41 100%);
}
.bg_gradient_yellow {
  background-image: -moz-linear-gradient(180deg, #f2aa41 0%, #00ffed 100%);
  background-image: -webkit-linear-gradient(180deg, #f2aa41 0%, #00ffed 100%);
  background-image: -ms-linear-gradient(180deg, #f2aa41 0%, #00ffed 100%);
}
.bg_gradient_green {
  background-image: -moz-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
  background-image: -webkit-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
  background-image: -ms-linear-gradient(180deg, ec_green 0%, #00ffed 100%);
}
.bg_gradient_blue {
  background-image: -moz-linear-gradient(180deg, #2f85f9 0%, #8186ef 100%);
  background-image: -webkit-linear-gradient(180deg, #2f85f9 0%, #8186ef 100%);
  background-image: -ms-linear-gradient(180deg, #2f85f9 0%, #8186ef 100%);
}
.bg_gradient_indigo {
  background-image: -moz-linear-gradient(180deg, #8186ef 0%, #8da2fa 100%);
  background-image: -webkit-linear-gradient(180deg, #8186ef 0%, #8da2fa 100%);
  background-image: -ms-linear-gradient(180deg, #8186ef 0%, #8da2fa 100%);
}
.bg_gradient_purple {
  background-image: -moz-linear-gradient(180deg, #8da2fa 0%, #f59bfb 100%);
  background-image: -webkit-linear-gradient(180deg, #8da2fa 0%, #f59bfb 100%);
  background-image: -ms-linear-gradient(180deg, #8da2fa 0%, #f59bfb 100%);
}
.bg_gradient_pink {
  background-image: -moz-linear-gradient(180deg, #f59bfb 0%, #8da2fa 100%);
  background-image: -webkit-linear-gradient(180deg, #f59bfb 0%, #8da2fa 100%);
  background-image: -ms-linear-gradient(180deg, #f59bfb 0%, #8da2fa 100%);
}
/*---标题---*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}
.h1,
h1 {
  font-size: var(--h1);
}
.h2,
h2 {
  font-size: var(--h2);
}
.h3,
h3 {
  font-size: var(--h3);
}
.h4,
h4 {
  font-size: var(--h4);
}
.h5,
h5 {
  font-size: var(--h5);
}
.h6,
h6 {
  font-size: var(--h6);
}
/*---排版规则---*/
.img_b {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
.f_l {
  float: left;
}
.f_r {
  float: right;
}
img {
  vertical-align: middle;
}
.img_r {
  display: block;
  max-width: 100%;
  height: auto;
  color: transparent;
}
.center_b {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.margin_r {
  display: block;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.img_radius {
  border-radius: 6px;
}
.load_more_w {
  margin-top: 0.64rem;
  margin-bottom: 0.64rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.placeholder {
  /* background-color: #1f2a3e; */
  height: 0;
  overflow: hidden;
  border-radius: 0.08rem;
}

.placeholder img {
  border-radius: 0.08rem;
}

.clearfix:before {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
.primary_c {
  color: var(--color_primary);
}
.switch_btn {
  position: absolute;
  z-index: 2;
  left: 8px;
  top: 8px;
}
/*面包屑导航*/
.breadcrumbs_w {
  position: relative;
  z-index: 1;
  font-size: var(--h_12);
  color: #5a6772;
  color: rgba(255, 255, 255, 0.64);
  margin: 0.24rem auto 0.08rem auto;
  overflow: hidden;
}
.breadcrumbs_w .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.breadcrumbs_w .lr_con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.breadcrumbs_w .l_w {
  flex: 1 0 auto;
}
.breadcrumbs_w .r_w {
  flex: none;
}
.breadcrumbs_w .turn_back {
  display: block;
  padding: 0 0rem;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  -webkit-border-radius: 0.24rem;
  -moz-border-radius: 0.24rem;
  border-radius: 0.24rem;
}
.breadcrumbs_w .turn_back:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  color: var(--color_primary);
}
.breadcrumbs_w a {
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--h_12);
}
.breadcrumbs_w a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  color: var(--color_primary);
}
.breadcrumbs_w .icon_slash {
  display: block;
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 0.16rem;
  background-color: rgba(255, 255, 255, 0.64);
  -webkit-opacity: 0.64;
  -moz-opacity: 0.64;
  opacity: 0.64;
  border-radius: 1px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
.breadcrumbs_w .icon_home {
  font-size: 16px;
}
.breadcrumbs_w .icon_back {
  font-size: 24px;
}

.breadcrumbs_w .tag_title {
  font-weight: normal;
}
.breadcrumbs_w .tag_em {
  font-weight: bold;
  color: var(--color_primary);
}

#header {
  min-height: 64px;
}
/*--------------- 全局常用样式 END ---------------- */
/*--------------- 24栅格系统 START ---------------- */
.pull_l {
  float: left !important;
}
.pull_r {
  float: right !important;
}
.pull_c {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 992px) {
  .con {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .con {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .con {
    width: 1200px;
  }
}
@media (min-width: 1400px) {
  .con {
    width: 1366px;
  }
}
@media (min-width: 1600px) {
  .con {
    width: 1424px;
  }
}
@media (min-width: 1920px) {
  .con {
    width: 1424px;
  }
}
@media (max-width: 992px) {
  .con {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .con {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .con {
    width: 1200px;
  }
}
@media (min-width: 1400px) {
  .con {
    width: 1366px;
  }
}
@media (min-width: 1600px) {
  .con {
    width: 1424px;
  }
}
@media (min-width: 1920px) {
  .con {
    width: 1424px;
  }
}
@media (min-width: 2560px) {
  .con {
    width: 1424px;
  }
}
.c_lg_1,
.c_lg_10,
.c_lg_11,
.c_lg_12,
.c_lg_13,
.c_lg_14,
.c_lg_15,
.c_lg_16,
.c_lg_17,
.c_lg_18,
.c_lg_19,
.c_lg_2,
.c_lg_20,
.c_lg_21,
.c_lg_22,
.c_lg_23,
.c_lg_24,
.c_lg_3,
.c_lg_4,
.c_lg_5,
.c_lg_6,
.c_lg_7,
.c_lg_8,
.c_lg_9,
.c_md_1,
.c_md_10,
.c_md_11,
.c_md_12,
.c_md_2,
.c_md_3,
.c_md_4,
.c_md_5,
.c_md_6,
.c_md_7,
.c_md_8,
.c_md_9,
.c_sm_1,
.c_sm_10,
.c_sm_11,
.c_sm_12,
.c_sm_13,
.c_sm_14,
.c_sm_15,
.c_sm_16,
.c_sm_17,
.c_sm_18,
.c_sm_19,
.c_sm_2,
.c_sm_20,
.c_sm_21,
.c_sm_22,
.c_sm_23,
.c_sm_24,
.c_sm_3,
.c_sm_4,
.c_sm_5,
.c_sm_6,
.c_sm_7,
.c_sm_8,
.c_sm_9,
.c_xs_1,
.c_xs_10,
.c_xs_11,
.c_xs_12,
.c_xs_13,
.c_xs_14,
.c_xs_15,
.c_xs_16,
.c_xs_17,
.c_xs_18,
.c_xs_19,
.c_xs_2,
.c_xs_20,
.c_xs_21,
.c_xs_22,
.c_xs_23,
.c_xs_24,
.c_xs_3,
.c_xs_4,
.c_xs_5,
.c_xs_6,
.c_xs_7,
.c_xs_8,
.c_xs_9 {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.08rem;
  padding-right: 0.08rem;
}
.c_xs_24 {
  flex: 0 0 100%;
  width: 100%;
}
.c_xs_23 {
  flex: 0 0 95.833333%;
  width: 95.833333%;
}
.c_xs_22 {
  flex: 0 0 91.666667%;
  width: 91.666667%;
}
.c_xs_21 {
  flex: 0 0 87.5%;
  width: 87.5%;
}
.c_xs_20 {
  flex: 0 0 83.333333%;
  width: 83.333333%;
}
.c_xs_19 {
  flex: 0 0 79.166667%;
  width: 79.166667%;
}
.c_xs_18 {
  flex: 75%;
  width: 75%;
}
.c_xs_17 {
  flex: 0 0 70.833333%;
  width: 70.833333%;
}
.c_xs_16 {
  flex: 66.6666667%;
  width: 66.6666667%;
}
.c_xs_15 {
  flex: 62.4%;
  width: 62.4%;
}
.c_xs_14 {
  flex: 58.333333%;
  width: 58.333333%;
}
.c_xs_13 {
  flex: 0 0 54.166667%;
  width: 54.166667%;
}
.c_xs_12 {
  flex: 0 0 50%;
  width: 50%;
}
.c_xs_11 {
  flex: 0 0 45.833333%;
  width: 45.833333%;
}
.c_xs_10 {
  flex: 0 0 41.66667%;
  width: 41.66667%;
}
.c_xs_9 {
  flex: 0 37.5%;
  width: 37.5%;
}
.c_xs_8 {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}
.c_xs_7 {
  flex: 0 0 29.1666666%;
  width: 29.1666666%;
}
.c_xs_6 {
  flex: 0 0 25%;
  width: 25%;
}
.c_xs_5 {
  flex: 0 0 20.8333333%;
  width: 20.8333333%;
}
.c_xs_4 {
  flex: 0 0 20.8333333%;
  width: 16.6666666%;
}
.c_xs_3 {
  flex: 0 0 20.8333333%;
  width: 12.5%;
}
.c_xs_2 {
  flex: 0 0 8.33333333%;
  width: 8.33333333%;
}
.c_xs_1 {
  flex: 0 0 4.166667%;
  width: 4.166667%;
}
@media (min-width: 768px) {
  .c_sm_24 {
    flex: 0 0 100%;
    width: 100%;
  }
  .c_sm_23 {
    flex: 0 0 95.833333%;
    width: 95.833333%;
  }
  .c_sm_22 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .c_sm_21 {
    flex: 0 0 87.5%;
    width: 87.5%;
  }
  .c_sm_20 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .c_sm_19 {
    flex: 0 0 79.166667%;
    width: 79.166667%;
  }
  .c_sm_18 {
    flex: 75%;
    width: 75%;
  }
  .c_sm_17 {
    flex: 0 0 70.833333%;
    width: 70.833333%;
  }
  .c_sm_16 {
    flex: 66.6666667%;
    width: 66.6666667%;
  }
  .c_sm_15 {
    flex: 62.4%;
    width: 62.4%;
  }
  .c_sm_14 {
    flex: 58.333333%;
    width: 58.333333%;
  }
  .c_sm_13 {
    flex: 0 0 54.166667%;
    width: 54.166667%;
  }
  .c_sm_12 {
    flex: 0 0 50%;
    width: 50%;
  }
  .c_sm_11 {
    flex: 0 0 45.833333%;
    width: 45.833333%;
  }
  .c_sm_10 {
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }
  .c_sm_9 {
    flex: 0 37.5%;
    width: 37.5%;
  }
  .c_sm_8 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .c_sm_7 {
    flex: 0 0 29.1666666%;
    width: 29.1666666%;
  }
  .c_sm_6 {
    flex: 0 0 25%;
    width: 25%;
  }
  .c_sm_5 {
    flex: 0 0 20.8333333%;
    width: 20.8333333%;
  }
  .c_sm_4 {
    flex: 0 0 20.8333333%;
    width: 16.6666666%;
  }
  .c_sm_3 {
    flex: 0 0 20.8333333%;
    width: 12.5%;
  }
  .c_sm_2 {
    flex: 0 0 8.33333333%;
    width: 8.33333333%;
  }
  .c_sm_1 {
    flex: 0 0 4.166667%;
    width: 4.166667%;
  }
}
@media (min-width: 992px) {
  .c_md_24 {
    flex: 0 0 100%;
    width: 100%;
  }
  .c_md_23 {
    flex: 0 0 95.833333%;
    width: 95.833333%;
  }
  .c_md_22 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .c_md_21 {
    flex: 0 0 87.5%;
    width: 87.5%;
  }
  .c_md_20 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .c_md_19 {
    flex: 0 0 79.166667%;
    width: 79.166667%;
  }
  .c_md_18 {
    flex: 75%;
    width: 75%;
  }
  .c_md_17 {
    flex: 0 0 70.833333%;
    width: 70.833333%;
  }
  .c_md_16 {
    flex: 66.6666667%;
    width: 66.6666667%;
  }
  .c_md_15 {
    flex: 62.4%;
    width: 62.4%;
  }
  .c_md_14 {
    flex: 58.333333%;
    width: 58.333333%;
  }
  .c_md_13 {
    flex: 0 0 54.166667%;
    width: 54.166667%;
  }
  .c_md_12 {
    flex: 0 0 50%;
    width: 50%;
  }
  .c_md_11 {
    flex: 0 0 45.833333%;
    width: 45.833333%;
  }
  .c_md_10 {
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }
  .c_md_9 {
    flex: 0 37.5%;
    width: 37.5%;
  }
  .c_md_8 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .c_md_7 {
    flex: 0 0 29.1666666%;
    width: 29.1666666%;
  }
  .c_md_6 {
    flex: 0 0 25%;
    width: 25%;
  }
  .c_md_5 {
    flex: 0 0 20.8333333%;
    width: 20.8333333%;
  }
  .c_md_4 {
    flex: 0 0 20.8333333%;
    width: 16.6666666%;
  }
  .c_md_3 {
    flex: 0 0 20.8333333%;
    width: 12.5%;
  }
  .c_md_2 {
    flex: 0 0 8.33333333%;
    width: 8.33333333%;
  }
  .c_md_1 {
    flex: 0 0 4.166667%;
    width: 4.166667%;
  }
}
@media (min-width: 1600px) {
  .c_lg_24 {
    flex: 0 0 100%;
    width: 100%;
  }
  .c_lg_23 {
    flex: 0 0 95.833333%;
    width: 95.833333%;
  }
  .c_lg_22 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .c_lg_21 {
    flex: 0 0 87.5%;
    width: 87.5%;
  }
  .c_lg_20 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .c_lg_19 {
    flex: 0 0 79.166667%;
    width: 79.166667%;
  }
  .c_lg_18 {
    flex: 75%;
    width: 75%;
  }
  .c_lg_17 {
    flex: 0 0 70.833333%;
    width: 70.833333%;
  }
  .c_lg_16 {
    flex: 66.6666667%;
    width: 66.6666667%;
  }
  .c_lg_15 {
    flex: 62.4%;
    width: 62.4%;
  }
  .c_lg_14 {
    flex: 58.333333%;
    width: 58.333333%;
  }
  .c_lg_13 {
    flex: 0 0 54.166667%;
    width: 54.166667%;
  }
  .c_lg_12 {
    flex: 0 0 50%;
    width: 50%;
  }
  .c_lg_11 {
    flex: 0 0 45.833333%;
    width: 45.833333%;
  }
  .c_lg_10 {
    flex: 0 0 41.66667%;
    width: 41.66667%;
  }
  .c_lg_9 {
    flex: 0 37.5%;
    width: 37.5%;
  }
  .c_lg_8 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .c_lg_7 {
    flex: 0 0 29.1666666%;
    width: 29.1666666%;
  }
  .c_lg_6 {
    flex: 0 0 25%;
    width: 25%;
  }
  .c_lg_5 {
    flex: 0 0 20.8333333%;
    width: 20.8333333%;
  }
  .c_lg_4 {
    flex: 0 0 20.8333333%;
    width: 16.6666666%;
  }
  .c_lg_3 {
    flex: 0 0 20.8333333%;
    width: 12.5%;
  }
  .c_lg_2 {
    flex: 0 0 8.33333333%;
    width: 8.33333333%;
  }
  .c_lg_1 {
    flex: 0 0 4.166667%;
    width: 4.166667%;
  }
}
/*--------------- 24栅格系统 END ---------------- */
/*--- 24栅格 内容宽度 & 间隔 & 边距--*/
.con {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.08rem;
  padding-right: 0.08rem;
}
.con_f {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.08rem;
  padding-right: 0.08rem;
}
.row {
  margin-left: -0.08rem;
  margin-right: -0.08rem;
}
.align_s_c {
  -webkit-align-self: center;
  -moz-align-self: center;
  align-self: center;
}
/*--- 断点 · 重制 · 内容宽度 · 边距 --*/
@media screen and (max-width: 2560px) {
  .con {
    width: 1424px;
  }
}
@media screen and (max-width: 1920px) {
  .con {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) {
  .con {
    width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .con {
    width: 100%;
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }
  .row {
    margin-left: -0.24rem;
    margin-right: -0.24rem;
  }
  .c_lg_1,
  .c_lg_10,
  .c_lg_11,
  .c_lg_12,
  .c_lg_13,
  .c_lg_14,
  .c_lg_15,
  .c_lg_16,
  .c_lg_17,
  .c_lg_18,
  .c_lg_19,
  .c_lg_2,
  .c_lg_20,
  .c_lg_21,
  .c_lg_22,
  .c_lg_23,
  .c_lg_24,
  .c_lg_3,
  .c_lg_4,
  .c_lg_5,
  .c_lg_6,
  .c_lg_7,
  .c_lg_8,
  .c_lg_9,
  .c_md_1,
  .c_md_10,
  .c_md_11,
  .c_md_12,
  .c_md_2,
  .c_md_3,
  .c_md_4,
  .c_md_5,
  .c_md_6,
  .c_md_7,
  .c_md_8,
  .c_md_9,
  .c_sm_1,
  .c_sm_10,
  .c_sm_11,
  .c_sm_12,
  .c_sm_13,
  .c_sm_14,
  .c_sm_15,
  .c_sm_16,
  .c_sm_17,
  .c_sm_18,
  .c_sm_19,
  .c_sm_2,
  .c_sm_20,
  .c_sm_21,
  .c_sm_22,
  .c_sm_23,
  .c_sm_24,
  .c_sm_3,
  .c_sm_4,
  .c_sm_5,
  .c_sm_6,
  .c_sm_7,
  .c_sm_8,
  .c_sm_9,
  .c_xs_1,
  .c_xs_10,
  .c_xs_11,
  .c_xs_12,
  .c_xs_13,
  .c_xs_14,
  .c_xs_15,
  .c_xs_16,
  .c_xs_17,
  .c_xs_18,
  .c_xs_19,
  .c_xs_2,
  .c_xs_20,
  .c_xs_21,
  .c_xs_22,
  .c_xs_23,
  .c_xs_24,
  .c_xs_3,
  .c_xs_4,
  .c_xs_5,
  .c_xs_6,
  .c_xs_7,
  .c_xs_8,
  .c_xs_9 {
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }
}
/*--------------- 头部导航 START ---------------- */
/*-----头部-----*/
/*--------------- 主体START ---------------- */
/*--------------- 主体END ---------------- */
/*--------------- 导航START ---------------- */

/*--------------- 客服 START ---------------- */

#tawk-chat-container,
.tawk-chat-icon {
  display: none !important;
}

.cs_w {
  display: none;
  position: fixed;
  z-index: 3;
  right: 8px;
  top: 50%;
  height: 320px;
  color: #ffffff;
  background-color: rgba(31, 42, 62, 0.64);
  -webkit-backdrop-filter: blur(32px);
  -moz-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0.08rem 0.64rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0.08rem 0.64rem rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0.08rem 0.64rem rgba(0, 0, 0, 0.08);
}
.cs_w .cs_bottom {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -4px;
}
@media screen and (max-width: 1200px) {
  .cs_w {
    display: none !important;
    margin-top: 0;
    top: auto;
    bottom: 3.2rem;
  }
}
.cs_w #switchCs {
  cursor: pointer;
  position: absolute;
  right: -8px;
  top: -8px;
  z-index: 100;
  display: block;
  width: 64px;
  height: 64px;
  background: #333;
}
.cs_w .open_cs {
  display: none;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  z-index: 999;
  border-radius: 60px;
  width: 90px;
}
.cs_w .close_cs {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 4px;
  z-index: 100;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--color_light);
}
.cs_w .close_cs:hover {
  color: var(--color_primary);
}
.cs_w .cs_con {
  width: 180px;
  height: 320px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  background: transparent url("../images/cs_light.png") no-repeat center center;
  background-size: cover;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}
.cs_w .cs_con h5 {
  display: block;
  height: 100px;
  text-align: justify;
  word-break: break-all;
  padding: 0.4rem 0.16rem 0.16rem 0.16rem;
  font-size: 20px;
  text-align: center;
  background-image: linear-gradient(to right, #fff, violet);
  background: linear-gradient(to right, #fff 0%, #fff 50%, #00ffed 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.cs_w .service_title h2 {
  font-size: 28px;
  font-weight: 500;
  word-spacing: 8px;
  letter-spacing: 2px;
  margin-top: 30px;
}
.cs_w .service_con {
  width: 180px;
  height: 145px;
  padding: 8px 8px 24px 8px;
}
.cs_w .service_con a {
  display: block;
  height: 48px;
  padding: 8px;
  position: relative;
  z-index: 1;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cs_w .service_con .em_w {
  display: inline-block;
  vertical-align: middle;
}
.cs_w .service_con .em_w svg {
  color: var(--color_white);
  border-radius: 100%;
  max-width: 48px;
  margin-left: aoto;
  margin-right: aoto;
  text-align: center;
}
.cs_w .service_con a:hover svg {
  box-shadow: 0px 8px 16px 0px rgba(29, 181, 92, 0.16);
}
.cs_w .service_con .btn_span {
  position: relative;
  display: inline-block;
  width: 88px;
  height: 38px;
  line-height: 38px;
  margin-left: 8px;
  color: var(--color_white);
  border-radius: 38px;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.cs_w .service_con a:hover .btn_span {
  color: var(--color_primary);
}
/*常规CS*/
.duoduo_pc {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#logo_dudouo_body path,
#logo_dudouo_text path,
#eye_l_ball,
#eye_r_ball,
#logo_dudouo_eye_ball_l,
#logo_dudouo_eye_ball_r,
#search_logo_body,
#search_logo_text,
#search_eyeball_l,
#search_eyeball_r,
#eye_body {
  fill: var(--color_primary) !important;
}
.cs_btn_o {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 48px;
  height: 64px;
  font-size: 14px;
  text-align: center;
  margin-top: -20px;
  border-radius: 8px 8px 32px 32px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-border-radius: 32px 32px;
  -moz-border-radius: 32px 32px;
  border-radius: 32px 32px;
  -webkit-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
  -webkit-transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1),
    height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
.cs_btn_o:hover {
  background-color: var(--color_primary);
}
.cs_btn_o b {
  font-weight: normal;
  display: block;
  width: 16px;
  margin: 0 auto;
  text-decoration: none;
}
/*咨询提示动画*/
@-webkit-keyframes msg-loading {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes msg-loading {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.msg_loading {
  width: 32px;
  height: 10px;
  margin: 0 auto;
}
.msg_loading span {
  display: inline-block;
  background-color: var(--color_primary);
  width: 3px;
  height: 3px;
  border-radius: 100%;
}
.msg_loading span {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: msg-loading 1.2s 0s infinite linear;
  animation: msg-loading 1.2s 0s infinite linear;
}
.msg_loading span:nth-child(2n-1) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.cs_w:hover .msg_loading span {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: msg-loading 0.7s 0s infinite linear;
  animation: msg-loading 0.7s 0s infinite linear;
}
.cs_w:hover .msg_loading span .msg_loading span:nth-child(2n-1) {
  -webkit-animation-delay: 0.35s !important;
  animation-delay: 0.35s !important;
}
.duoduo_m {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0.16rem 0 0.16rem auto;
  text-align: center;
  width: 48px;
  height: 48px;
}
.duoduo_m:hover {
  -webkit-opacity: 0.88;
  -moz-opacity: 0.88;
  opacity: 0.88;
  color: var(--color_primary);
}
#cs_w:hover #eye_l,
#cs_w:hover #eye_r,
#cs_w:hover #s_eye_l,
#cs_w:hover #s_eye_r {
  animation: eyeblink 0.24s ease-out 0s 1;
}
#cs_w:hover #eye_l_ball {
  transform: translate(-64.426px, -90.322px);
}
#cs_w:hover #eye_r_ball {
  transform: translate(-183.145px, -90.322px);
}
#cs_w:hover #eye_l_bg {
  transform: translate(-34.914px, -72.197px);
}
#cs_w:hover #eye_r_bg {
  transform: translate(-174.412px, -72.197px);
}
#eye_l,
#eye_r,
#s_eye_l,
#s_eye_r {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: eyemove 6s 0s infinite linear;
  animation: eyemove 6s 0s infinite linear;
}
#cs_w:hover #cs_text_w {
  fill: var(--color_primary);
}
@keyframes eyeblink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.01);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/*客服热线*/
.service_400 {
  height: 100px;
  color: #1f2a3e;
  padding: 16px 0 16px 0;
  font-family: "num", Helvetica, arial, sans-serif;
}
.service_400 h3 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 500;
  font-family: "num", Helvetica, arial, sans-serif;
}
.service_400 h3 a {
  line-height: 1;
  font-size: 12px;
  color: var(--color_dark);
}
.service_400 p {
  font-size: 12px;
  word-spacing: 4px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .duoduo_pc {
    display: none;
  }
  .duoduo_m {
    display: none !important;
  }
  #cs_dudouo_s {
    width: 48px !important;
  }
}
@media screen and (min-width: 1200px) {
  .duoduo_pc {
    display: flex;
  }
  .duoduo_m {
    display: none;
  }
}
/*--------------- 客服 END ---------------- */
/*-----返回顶部-----*/
.totop {
  display: block;
  display: none;
  margin: 0.16rem auto;
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 26px;
  color: var(--color_dark);
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-border-radius: 0.64rem;
  -moz-border-radius: 0.64rem;
  border-radius: 0.64rem;
  box-shadow: 0px 0.08rem 0.64rem rgba(0, 0, 0, 0.16);
  transition: opacity 0.64s ease;
}
.totop:hover {
  color: var(--color_dark);
  background-color: var(--color_primary);
}
@media screen and (max-width: 1200px) {
  .totop {
    display: none !important;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background-color: transparent;
    backdrop-filter: none;
    --webkit-backdrop-filter: none;
    box-shadow: none;
    margin: 0.16rem 0 0.16rem auto;
  }
  .totop:hover {
    color: var(--color_primary);
    background-color: transparent;
  }
}
/*-----slogan_w-----*/
.slogan_w {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 24px 64px 24px;
}
.slogan_w img {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
/*--------------- 底部 footer START ---------------- */
.footer {
  display: flex;
  flex-direction: column;
  min-height: 4.8rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  background-color: #0d1524;
  background-size: cover;
  color: #5a6772;
}
.footer h6 {
  font-size: 18px;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .footer .pc {
    display: blcok;
  }
  .footer .m {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer_call {
    color: var(--color_dark);
    background: transparent;
    display: none;
  }
  .footer .pc {
    display: none;
  }
  .footer .m {
    display: block;
  }
}
.footer .footer_w {
  font-size: 14px;
  color: #5a6772;
  font-family: num, Helvetica, arial, sans-serif;
  padding: 1.04rem 0;
}
.footer .footer_w .footer_logo {
  font-size: 14px;
  padding-bottom: 0.88rem;
}
.footer .footer_w .logo_box {
  color: #fff;
}
.footer .footer_w .logo_text {
  max-width: 3.2rem;
  padding: 0.32rem 0 0.64rem 0;
  color: #5a6772;
  line-height: 2;
}
@media screen and (max-width: 992px) {
  .footer .footer_w .footer_logo {
    padding: 0.64rem 0;
    text-align: center;
  }
  .footer .footer_w .logo_text {
    max-width: 100%;
  }
}
.footer .footer_w .footer_contact {
  font-size: 14px;
  padding: 0.08rem 0 0.08rem 0;
}
@media screen and (max-width: 992px) {
  .footer .footer_w {
    text-align: center;
  }
  .footer .footer_w .footer_contact {
    text-align: center;
  }
}
.footer .footer_w .contact_text {
  padding: 0.24rem 0 0.48rem 0;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .footer .footer_w .contact_text {
    max-width: 90%;
    margin: 0 auto;
  }
}
.footer .footer_w .fotter_fllow {
  font-size: 14px;
  padding: 0.08rem 0 0.08rem 0;
}
.footer .footer_w .fllow_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.32rem 0 0.16rem 0;
  margin: 0 -0.16rem;
}
@media screen and (max-width: 992px) {
  .footer .footer_w .fotter_fllow {
    text-align: center;
  }
  .footer .footer_w .fllow_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
  }
}
.footer .footer_w .fllow_list li {
  padding: 0 0.16rem;
  padding: 0 0.16rem 0.24rem 0.16rem;
}
.footer .footer_w .fllow_list a:hover {
  opacity: 0.9;
}
.footer .copyright_w {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  color: var(--color_muted);
  background-color: #050d10;
}
.footer .copyright_w .copyright_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer .copyright_w .copyright_box {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .footer .copyright_w .copyright_l {
    text-align: center;
  }
  .footer .copyright_w .copyright_r {
    display: none;
  }
}
.footer .copyright_w .icon_interval {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 4px;
  padding: 0;
  vertical-align: center;
  background-color: rgba(0, 0, 0, 0.16);
}
.footer .copyright_w a {
  padding-left: 0.04rem;
  padding-right: 0.04rem;
  color: var(--color_muted);
}
.footer .copyright_w a:hover {
  color: var(--color_primary);
}
.footer .f_language {
  display: inline-block;
  position: relative;
  z-index: 1;
  top: 6px;
  /*语言下拉*/
}
.footer .f_language:hover {
  background-color: var(--color_white);
  border-radius: 8px;
}
.footer .f_language .btn_language {
  display: block;
  width: 100px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  margin: 0 auto;
  border-radius: 8px;
}
.footer .f_language .btn_language .icon_w {
  vertical-align: middle;
  background-size: auto auto;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.footer .f_language .btn_language:hover .icon_bottom {
  transform: translateX(0);
}
.footer .f_language .icon_bottom {
  vertical-align: middle;
  background-size: auto auto;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.footer .f_language .btn_language:hover .icon_bottom {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.footer .f_language .dropdown_con {
  display: none;
  width: 100px;
  min-width: 40px;
  margin: auto;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 38px;
  padding: 10px 16px 8px 16px;
  text-align: center;
  background-color: var(--color_white);
  border-radius: 8px 8px 0 0;
}
.footer .f_language:hover .dropdown_con {
  display: block;
}
.footer .f_language .dropdown_con a {
  display: block;
  padding: 4px 0;
}
.footer .f_language .dropdown_con a:hover {
  color: var(--color_primary);
}
.footer .f_fllow {
  padding-top: 0.64rem;
}
.footer .f_fllow .nav_fllow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 24px;
}
.footer .f_fllow .nav_fllow a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-left: 8px;
  margin-right: 8px;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  border-radius: 48px;
  color: var(--color_primary);
  background-color: var(--color_white);
}
.footer .f_fllow .nav_fllow a:hover {
  color: var(--color_white);
  background-color: var(--color_primary);
}
.fllow_con {
  width: 240px;
  padding: 0.32rem 0.24rem;
  text-align: center;
  border-radius: 0.08rem;
}
.fllow_con h6 {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color_dark);
  padding-bottom: 0.08rem;
}
.fllow_con p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color_dark);
  margin: 8px auto 24px auto;
}
.fllow_con img {
  width: 200px;
  filter: brightness(100%);
}
@media screen and (min-width: 1200px) {
  .top_bar {
    display: none !important;
  }
}
.top_bar {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.04);
}
.top_bar .con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.top_bar .readmore_a {
  text-decoration: underline;
}
.top_bar .readmore_a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.top_bar .close_btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 100;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--color_light);
}
.top_bar .close_btn:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .top_bar .close_btn {
    top: 14px;
    right: 14px;
  }
}
.top_bar .bar_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.top_bar img {
  max-width: 56px;
  padding-right: 0.08rem;
}
@media screen and (max-width: 1200px) {
  .top_bar img {
    max-width: 56px;
    padding-right: 0.08rem;
    margin-left: -13px;
  }
}
@media screen and (max-width: 1200px) {
  .top_bar .btn_w {
    margin: 0 32px;
  }
  .top_bar .btn_view_now {
    display: block;
    display: inline-block;
    min-width: 80px;
    width: auto;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    padding: 0 16px 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #ffffff;
    background-color: var(--color_primary);
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 0.08rem 0 0.08rem;
  }
}
/*--------------- 底部 footer END ---------------- */
/**通知插件**/
@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: var(--color_white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 24px;
}
.notyf__icon--error,
.notyf__icon--success {
  height: 18px;
  width: 18px;
  background-color: var(--color_white);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
}
.notyf__icon--error:after,
.notyf__icon--error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 8px;
  height: 11px;
  top: 4px;
}
.notyf__icon--error:after {
  transform: rotate(-45deg);
}
.notyf__icon--error:before {
  transform: rotate(45deg);
}
.notyf__icon--success:after,
.notyf__icon--success:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
}
.notyf__icon--success:after {
  height: 6px;
  transform: rotate(-45deg);
  top: 9px;
  left: 5px;
}
.notyf__icon--success:before {
  height: 11px;
  transform: rotate(45deg);
  top: 5px;
  left: 9px;
}
.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: auto;
  -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
  animation: notyf-fadeinup 0.3s ease-in forwards;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  padding: 0 24px;
  border-radius: 6px;
  max-width: 600px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0;
}
.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.notyf__toast--disappear .notyf__icon,
.notyf__toast--disappear .notyf__message {
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  opacity: 1;
  transform: translateY(0);
}
.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright 0.3s forwards;
  animation: notyf-fadeoutright 0.3s forwards;
  opacity: 1;
  transform: translateX(0);
}
.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.notyf__toast--upper {
  margin-bottom: 20px;
}
.notyf__toast--lower {
  margin-top: 20px;
}
.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}
.notyf__ripple {
  height: 800px;
  width: 800px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple 0.4s ease-out forwards;
  animation: ripple 0.4s ease-out forwards;
}
.notyf__wrapper {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 24px;
  border-radius: 3px;
  position: relative;
  z-index: 10;
}
.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  margin-right: 4px;
}
.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 32px;
  margin-right: -24px;
  -webkit-animation: notyf-fadeinleft 0.3s forwards;
  animation: notyf-fadeinleft 0.3s forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  opacity: 0;
}
.notyf__dismiss-btn {
  background-color: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  opacity: 0.88;
  height: 100%;
  width: 100%;
}
.notyf__dismiss-btn:after,
.notyf__dismiss-btn:before {
  content: "";
  background-color: var(--color_white);
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
}
.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}
.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}
.notyf__dismiss-btn:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.15);
}
.notyf__dismiss-btn:active {
  opacity: 0.8;
}
.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  line-height: 1.5em;
}
@media only screen and (max-width: 480px) {
  .notyf {
    padding: 0.64rem;
    border-radius: 0.16rem;
  }
  .notyf__ripple {
    height: 600px;
    width: 600px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .notyf__toast {
    border-radius: 0.16rem;
    overflow: hidden;
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
    width: 100%;
  }
  .notyf__dismiss {
    width: 56px;
  }
}
/*爱番番-客服自定义样式-强覆盖*/
body #newBridge .nb-invite-wrap-base .nb-invite-btn-base {
  width: 280px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
}
body #nb_invite_wrap {
  width: 600px !important;
  height: 420px !important;
}
body #newBridge .nb-invite-skin-0 {
  display: block;
  width: 600px !important;
  height: 420px !important;
  background: transparent url(../images/bdcs/cs_bg_c.png) no-repeat center
    center !important;
  background-size: contain;
  overflow: hidden;
  border-radius: 32px;
}
/*稍后咨询-按钮*/
body #newBridge .nb-invite-wrap-base .nb-invite-cancel-base {
  display: inline-block;
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #14bf57 !important;
  cursor: pointer;
  font-size: 18px;
  color: #14bf57 !important;
  background: transparent !important;
  border-radius: 24px;
  box-shadow: 0px 16px 24px 0px rgba(86, 209, 128, 0.16);
}
body #newBridge .nb-invite-wrap-base .nb-invite-cancel-base:hover {
  opacity: 0.9;
}
/*马上咨询-按钮*/
body #newBridge .nb-invite-wrap-base .nb-invite-ok-base {
  display: inline-block;
  width: 130px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--color_white) !important;
  background-color: #14bf57 !important;
  box-shadow: 0px 16px 24px 0px rgba(86, 209, 128, 0.24);
  border-radius: 24px;
}
body #newBridge .nb-invite-wrap-base .nb-invite-ok-base:hover {
  opacity: 0.9;
}
/*关闭-按钮*/
body #newBridge .customer-invite-style .nb-invite-tool {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 88px;
  top: 100px;
  left: auto;
  bottom: auto;
  cursor: pointer;
  opacity: 0.64;
}
/*右下角对话框皮肤*/
body #newBridge #nbwlStatusBar {
  height: 46px;
  background-color: #14bf57;
  cursor: move;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 8px 8px 0 0;
}
/*表单提交成功&失败反馈*/
#success_tips {
  display: none;
}
#error_tips {
  display: none;
}
.tips_mask {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  height: 100%;
  max-width: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.64);
  overflow: hidden;
}
.tips_con {
  position: relative;
  padding: 64px 0;
  margin: 16% auto;
  width: 450px;
  height: 250px;
  border-radius: 16px;
  background-color: var(--color_white);
  box-shadow: 0px 32px 88px 0px rgba(0, 0, 0, 0.24);
  text-align: center;
}
.tips_icon {
  max-width: 120px;
  margin: auto;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}
.tips_con p {
  font-size: 18px;
  padding: 10px 0 24px 0;
}
.tips_btn {
  display: block;
  display: inline-block;
  margin: 0 8px;
  width: auto;
  height: 44px;
  line-height: 44px;
  padding: 0 48px 0 48px;
  font-size: 18px;
  text-align: center;
  color: var(--color_white);
  background-color: #14bf57;
  background-image: -moz-linear-gradient(180deg, #00b831 0%, #6dc937 100%);
  background-image: -webkit-linear-gradient(180deg, #00b831 0%, #6dc937 100%);
  background-image: -ms-linear-gradient(180deg, #00b831 0%, #6dc937 100%);
  -webkit-border-radius: 64px;
  -moz-border-radius: 64px;
  border-radius: 64px;
}
.tips_btn:hover {
  opacity: 0.9;
}
.tips_close {
  position: absolute;
  right: 16px;
  top: 8px;
  z-index: 10;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.tips_close:hover,
.tips_close:focus {
  opacity: 0.9;
}
.switch_sidebar_btn .icon_w {
  font-size: 16px;
  color: #94a2ab;
}
.switch_sidebar_btn.on .icon_w {
  color: var(--color_primary);
}
.fancybox_message_w {
  min-width: 4rem;
  min-height: 2rem;
  padding: 0.32rem 0.24rem;
  text-align: center;
  border-radius: 0.08rem;
}
.fancybox_message_w h6 {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color_dark);
  padding-bottom: 0.08rem;
}
.fancybox_message_w p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color_dark);
  margin: 16px auto 24px auto;
}
.fancybox_message_w img {
  max-width: 200px;
  filter: brightness(100%);
  margin-left: auto;
  margin-right: auto;
}
.share_weixin_code {
  width: 240px;
  padding: 0.32rem 0.24rem;
  text-align: center;
  border-radius: 0.08rem;
}
.share_weixin_code h6 {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color_dark);
  padding-bottom: 0.08rem;
}
.share_weixin_code p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color_dark);
  margin: 16px auto 24px auto;
}
.share_weixin_code img {
  width: 200px;
  filter: brightness(100%);
}
.cookie_tips {
  margin: auto;
  position: fixed;
  z-index: 3;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 24px 0;
  width: 100%;
  min-height: 64px;
  color: var(--color_white);
  background-color: rgba(31, 42, 62, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
}
.cookie_tips .con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cookie_tips .readmore_a {
  color: var(--color_primary);
  text-decoration: underline;
}
.cookie_tips .readmore_a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.cookie_tips .btn_agree {
  color: var(--color_dark);
}
.cookie_tips .btn_agree:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.cookie_tips .close_btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 100;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--color_light);
}
.cookie_tips .close_btn:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .cookie_tips .close_btn {
    display: block !important;
  }
}
.cookie_tips .cookie_con {
  line-height: 1.6;
  padding: 8px;
}
@media screen and (max-width: 1200px) {
  .cookie_tips .btn_w {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Cookie设置-内页 */
.cookie_settings {
  padding: 0.32rem;
  margin: 0.32rem auto 0.32rem auto;
  background-color: rgba(31, 42, 62, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
  border-radius: 0.16rem;
  /* Cookie设置项-自定义点选框样式 */
}
.cookie_settings .btn_w {
  margin: 0.24rem -0.08rem 0.24rem -0.08rem;
}
.cookie_settings .btn_sm_default_primary {
  color: var(--color_dark);
}
.cookie_settings .btn_sm_default_primary:hover {
  opacity: 0.8;
}
.cookie_settings .cookie_title {
  padding-bottom: 0.24rem;
}
.cookie_settings .cookie_info {
  padding-bottom: 0.24rem;
}
.cookie_settings .cookie_item {
  padding-bottom: 0.24rem;
}
.cookie_settings .cookie_desc {
  font-size: 14px;
  padding-top: 0.08rem;
}
.cookie_settings .cookie_item label {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}
.cookie_settings .cookie_item input[type="checkbox"] {
  display: none;
}
.cookie_settings .cookie_item input[type="checkbox"] + label:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: #fff;
  border: 1px solid #ccc;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 0.02rem;
  text-align: center;
}
.cookie_settings .cookie_item input[type="checkbox"]:checked + label:before {
  font-family: "icon" !important;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  content: "\e6fb";
  line-height: 20px;
  color: var(--color_dark);
  background-color: var(--color_primary);
  border-color: var(--color_primary);
}
/* Cookie设置-弹出 */
#cookie_settings_modal {
  width: 500px;
  max-width: 90%;
  max-height: 90%;
  padding: 0.32rem;
  color: var(--color_white);
  background-color: rgba(31, 42, 62, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
  border-radius: 0.16rem;
  /* Cookie设置项-自定义点选框样式 */
}
#cookie_settings_modal .btn_w {
  margin: 0.16rem -0.08rem 0.24rem -0.08rem;
}
#cookie_settings_modal .btn_sm_default_primary {
  color: var(--color_dark);
}
#cookie_settings_modal .btn_sm_default_primary:hover {
  opacity: 0.8;
}
#cookie_settings_modal .cookie_title {
  padding-bottom: 0.24rem;
}
#cookie_settings_modal .cookie_info {
  padding-bottom: 0.24rem;
}
#cookie_settings_modal .cookie_item {
  padding-bottom: 0.24rem;
}
#cookie_settings_modal .cookie_desc {
  font-size: 14px;
  padding-top: 0.08rem;
}
#cookie_settings_modal .cookie_item label {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
#cookie_settings_modal .cookie_item input[type="checkbox"] {
  display: none;
}
#cookie_settings_modal .cookie_item input[type="checkbox"] + label:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: #fff;
  border: 1px solid #ccc;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 0.02rem;
  text-align: center;
}
#cookie_settings_modal
  .cookie_item
  input[type="checkbox"]:checked
  + label:before {
  font-family: "icon" !important;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  content: "\e6fb";
  line-height: 20px;
  color: var(--color_dark);
  background-color: var(--color_primary);
  border-color: var(--color_primary);
}
@media screen and (min-width: 1200px) {
  .top_bar {
    display: none !important;
  }
}
.top_bar {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.04);
}
.top_bar .con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.top_bar .readmore_a {
  text-decoration: underline;
}
.top_bar .readmore_a:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.top_bar .close_btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 100;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--color_light);
}
.top_bar .close_btn:hover {
  color: var(--color_primary);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .top_bar .close_btn {
    top: 14px;
    right: 14px;
  }
}
.top_bar .bar_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.top_bar img {
  max-width: 56px;
  padding-right: 0.08rem;
}
@media screen and (max-width: 1200px) {
  .top_bar img {
    max-width: 56px;
    padding-right: 0.08rem;
    margin-left: -13px;
  }
}
@media screen and (max-width: 1200px) {
  .top_bar .btn_w {
    margin: 0 32px;
  }
  .top_bar .btn_view_now {
    display: block;
    display: inline-block;
    min-width: 80px;
    width: auto;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    padding: 0 16px 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #ffffff;
    background-color: var(--color_primary);
    border-radius: 32px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 0.08rem 0 0.08rem;
  }
}
/*--------------- 底部 footer END ---------------- */
@media screen and (min-width: 992px) {
  .m_fixed_bar {
    display: none !important;
  }
}
.m_fixed_bar {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  line-height: 1.2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0rem 0.16rem 0.64rem rgba(0, 0, 0, 0.08);
}
.m_fixed_bar::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 0.3rem;
  background-color: var(--color_light);
}
.m_fixed_bar a {
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  white-space: nowrap;
  text-align: center;
  margin: 0 auto;
}
.m_fixed_bar .icon_w {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}
@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: var(--color_white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 24px;
}
.notyf__icon--error,
.notyf__icon--success {
  height: 18px;
  width: 18px;
  background-color: var(--color_white);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
}
.notyf__icon--error:after,
.notyf__icon--error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 8px;
  height: 11px;
  top: 4px;
}
.notyf__icon--error:after {
  transform: rotate(-45deg);
}
.notyf__icon--error:before {
  transform: rotate(45deg);
}
.notyf__icon--success:after,
.notyf__icon--success:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
}
.notyf__icon--success:after {
  height: 6px;
  transform: rotate(-45deg);
  top: 9px;
  left: 5px;
}
.notyf__icon--success:before {
  height: 11px;
  transform: rotate(45deg);
  top: 5px;
  left: 9px;
}
.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: auto;
  -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
  animation: notyf-fadeinup 0.3s ease-in forwards;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  padding: 0 24px;
  border-radius: 6px;
  max-width: 600px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0;
}
.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.notyf__toast--disappear .notyf__icon,
.notyf__toast--disappear .notyf__message {
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  opacity: 1;
  transform: translateY(0);
}
.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright 0.3s forwards;
  animation: notyf-fadeoutright 0.3s forwards;
  opacity: 1;
  transform: translateX(0);
}
.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.notyf__toast--upper {
  margin-bottom: 20px;
}
.notyf__toast--lower {
  margin-top: 20px;
}
.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}
.notyf__ripple {
  height: 800px;
  width: 800px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple 0.4s ease-out forwards;
  animation: ripple 0.4s ease-out forwards;
}
.notyf__wrapper {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 24px;
  border-radius: 3px;
  position: relative;
  z-index: 10;
}
.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  margin-right: 4px;
}
.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 32px;
  margin-right: -24px;
  -webkit-animation: notyf-fadeinleft 0.3s forwards;
  animation: notyf-fadeinleft 0.3s forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  opacity: 0;
}
.notyf__dismiss-btn {
  background-color: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  opacity: 0.88;
  height: 100%;
  width: 100%;
}
.notyf__dismiss-btn:after,
.notyf__dismiss-btn:before {
  content: "";
  background-color: var(--color_white);
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
}
.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}
.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}
.notyf__dismiss-btn:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.15);
}
.notyf__dismiss-btn:active {
  opacity: 0.8;
}
.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  line-height: 1.5em;
}
@media only screen and (max-width: 480px) {
  .notyf {
    padding: 0.64rem;
    border-radius: 0.16rem;
  }
  .notyf__ripple {
    height: 600px;
    width: 600px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .notyf__toast {
    border-radius: 0.16rem;
    overflow: hidden;
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
    width: 100%;
  }
  .notyf__dismiss {
    width: 56px;
  }
}
/*爱番番-客服自定义样式-强覆盖*/
body #newBridge .nb-invite-wrap-base .nb-invite-btn-base {
  width: 280px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
}
body #nb_invite_wrap {
  width: 600px !important;
  height: 420px !important;
}
body #newBridge .nb-invite-skin-0 {
  display: block;
  width: 600px !important;
  height: 420px !important;
  background: transparent url(../images/bdcs/cs_bg_c.png) no-repeat center
    center !important;
  background-size: contain;
  overflow: hidden;
  border-radius: 32px;
}
/*稍后咨询-按钮*/
body #newBridge .nb-invite-wrap-base .nb-invite-cancel-base {
  display: inline-block;
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #14bf57 !important;
  cursor: pointer;
  font-size: 18px;
  color: #14bf57 !important;
  background: transparent !important;
  border-radius: 24px;
  box-shadow: 0px 16px 24px 0px rgba(86, 209, 128, 0.16);
}
body #newBridge .nb-invite-wrap-base .nb-invite-cancel-base:hover {
  opacity: 0.9;
}
/*马上咨询-按钮*/
body #newBridge .nb-invite-wrap-base .nb-invite-ok-base {
  display: inline-block;
  width: 130px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--color_white) !important;
  background-color: #14bf57 !important;
  box-shadow: 0px 16px 24px 0px rgba(86, 209, 128, 0.24);
  border-radius: 24px;
}
body #newBridge .nb-invite-wrap-base .nb-invite-ok-base:hover {
  opacity: 0.9;
}
/*关闭-按钮*/
body #newBridge .customer-invite-style .nb-invite-tool {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 88px;
  top: 100px;
  left: auto;
  bottom: auto;
  cursor: pointer;
  opacity: 0.64;
}
/*右下角对话框皮肤*/
body #newBridge #nbwlStatusBar {
  height: 46px;
  background-color: #14bf57;
  cursor: move;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 8px 8px 0 0;
}
/*表单提交成功&失败反馈*/
#success_tips {
  display: none;
}
#error_tips {
  display: none;
}
.tips_mask {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  height: 100%;
  max-width: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.64);
  overflow: hidden;
}
.tips_con {
  position: relative;
  padding: 64px 0;
  margin: 16% auto;
  width: 450px;
  height: 250px;
  border-radius: 16px;
  background-color: var(--color_white);
  box-shadow: 0px 32px 88px 0px rgba(0, 0, 0, 0.24);
  text-align: center;
}
.tips_icon {
  max-width: 120px;
  margin: auto;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}
.tips_con p {
  font-size: 18px;
  padding: 10px 0 24px 0;
}
.tips_btn {
  display: block;
  display: inline-block;
  margin: 0 8px;
  width: auto;
  height: 44px;
  line-height: 44px;
  padding: 0 48px 0 48px;
  font-size: 18px;
  text-align: center;
  color: var(--color_white);
  background-color: #14bf57;
  background-image: linear-gradient(180deg, #00b831 0%, #6dc937 100%);
  border-radius: 64px;
}
.tips_btn:hover {
  opacity: 0.9;
}
.tips_close {
  position: absolute;
  right: 16px;
  top: 8px;
  z-index: 10;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.tips_close:hover,
.tips_close:focus {
  opacity: 0.9;
}
.switch_sidebar_btn .icon_w {
  font-size: 16px;
  color: #94a2ab;
}
.switch_sidebar_btn.on .icon_w {
  color: var(--color_primary);
}
.fancybox_message_w {
  min-width: 4rem;
  min-height: 2rem;
  padding: 0.32rem 0.24rem;
  text-align: center;
  border-radius: 0.08rem;
}
.fancybox_message_w h6 {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color_dark);
  padding-bottom: 0.08rem;
}
.fancybox_message_w p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color_dark);
  margin: 16px auto 24px auto;
}
.fancybox_message_w img {
  max-width: 200px;
  filter: brightness(100%);
  margin-left: auto;
  margin-right: auto;
}
.share_weixin_code {
  width: 240px;
  padding: 0.32rem 0.24rem;
  text-align: center;
  border-radius: 0.08rem;
}
.share_weixin_code h6 {
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color_dark);
  padding-bottom: 0.08rem;
}
.share_weixin_code p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color_dark);
  margin: 16px auto 24px auto;
}
.share_weixin_code img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: auto;
  color: transparent;
}
.navigation .nav-previous a,
.navigation .nav-next a {
  border: none;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  outline: none;
  width: 120px;
  height: 42px;
  margin: 0 16px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--color_primary);
  box-shadow: 0 8px 16px rgba(84, 190, 30, 0.16);
}
.navigation .nav-previous a:hover,
.navigation .nav-next a:hover {
  box-shadow: 0px 8px 24px 0px rgba(121, 136, 246, 0.24);
}
.numeric-pagination > .page-numbers {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.numeric-pagination li {
  margin: 0 8px;
}
.numeric-pagination .page-numbers:not(ul) {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  justify-content: center;
  background-color: var(--ec_bg_muted);
  border-radius: 24px;
}
.numeric-pagination .page-numbers:not(ul).current {
  background-color: var(--color_primary);
  color: #fff;
  box-shadow: 0 8px 16px rgba(84, 190, 30, 0.16);
}
.numeric-pagination .mdi {
  font-size: 18px;
  width: 18px;
  height: 36px;
  background-size: auto;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.numeric-pagination .mdi-chevron-right {
  background-size: auto;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
}
.navigation .nav-links {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding: 0.32rem 0;
}
.navigation .screen-reader-text {
  display: none;
}
.navigation.comment-navigation .nav-previous,
.navigation.comment-navigation .nav-next {
  margin-left: 10px;
  margin-right: 10px;
}
.paged-previous.paged-next .navigation .nav-next {
  margin-right: 2px;
}
.infinite-scroll-status {
  /*! display: none; */
  text-align: center;
}
.infinite-scroll-request {
  font-size: 14px;
  cursor: default;
  color: var(--color_muted);
  border-radius: 22px;
  height: 42px;
  line-height: 42px;
  margin: 0.4rem auto;
  min-width: 140px;
  max-width: 100%;
  background-color: transparent;
}
.infinite-scroll-last {
  font-size: 14px;
  cursor: default;
  color: var(--color_muted);
  border-radius: 22px;
  height: 42px;
  line-height: 42px;
  margin: 0.4rem auto;
  min-width: 140px;
  max-width: 100%;
  background-color: transparent;
}
.infinite-scroll-error {
  font-size: 14px;
  cursor: default;
  color: var(--color_muted);
  border-radius: 22px;
  height: 42px;
  line-height: 42px;
  margin: 0.4rem auto;
  min-width: 140px;
  max-width: 100%;
  background-color: transparent;
}
.infinite-scroll-action {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .infinite-scroll-action {
    margin-top: 20px;
  }
}
.infinite-scroll-button {
  min-width: 250px;
}
.button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.navigation .nav-previous a:hover,
.navigation .nav-next a:hover {
  opacity: 0.9;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button.transparent,
input[type="submit"].transparent,
button[type="submit"].transparent,
.navigation .nav-previous a.transparent,
.navigation .nav-next a.transparent {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.navigation .btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: none;
  background: white;
  cursor: pointer;
  display: block;
}
.infinite-scroll-button {
  width: 140px;
  min-width: 140px;
  max-width: 180px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  margin: 0 auto;
}
.infinite-scroll-button {
  border: none;
  border-radius: 32px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  outline: none;
  width: 160px;
  height: 52px;
  margin: 0 24px;
  line-height: 52px;
  text-align: center;
  color: var(--color_dark);
  background-color: var(--color_primary);
  background: linear-gradient(-90deg, #00ffed 0%, #f8f9fb 100%);
  box-shadow: 0px 8px 16px rgba(45, 182, 166, 0.16);
}
@media screen and (max-width: 768px) {
  .infinite-scroll-button {
    max-width: 2.2rem;
    min-width: 2rem;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.22rem;
    padding: 0 0.1rem;
    margin: 0.1rem 0.1rem;
    margin: 0 0.2rem 0.2rem 0.2rem;
    overflow: hidden;
  }
}
.post_poster {
  display: none;
  overflow: hidden;
  margin: 0 auto !important;
  padding: 0 !important;
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.04);
  border-radius: 0.08rem;
}
.post_poster .poster_popover_box {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.post_poster .poster_download_btn {
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto -48px auto;
  border-radius: 0;
  padding: 10px 24px;
  width: 100%;
  font-size: 14px;
  border: 0;
  border-radius: 0 0 4px 4px;
  border: 0px solid transparent;
  color: #fff;
  background: var(--color_primary);
  margin: 0 auto;
  text-align: center;
  padding: 16px;
}
.post_poster .poster_download_btn:hover {
  opacity: 0.9;
}
.post_poster img {
  display: block;
  max-width: 100%;
  height: auto !important;
  color: transparent;
  border-radius: 0.08rem;
}
.post_poster .effect_bg.active {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #181818;
  background-color: rgba(255, 255, 255, 0.24);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(200, 212, 208, 0.2) 37%,
    rgba(217, 242, 234, 0.2) 63%
  );
  backdrop-filter: blur(0.16rem);
  --webkit-backdrop-filter: blur(0.16rem);
  background-size: 400% 100%;
  background-position: 100% 50%;
  animation: skeleton-loading 1.4s ease infinite;
}
.page_main {
  padding-top: 0.32rem;
}
.list_nav_w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  border-radius: 0.08rem;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  border-radius: 0.64rem;
  backdrop-filter: blur(0.64rem);
  --webkit-backdrop-filter: blur(0.64rem);
}
.list_nav_w ul {
  min-width: 3.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
}
.list_nav_w .current-menu-item a {
  color: #050d10;
  background-color: #00ffed;
}
.list_nav_w .current-menu-item a:hover {
  color: #050d10;
  background-color: #00ffed;
  opacity: 0.95;
}
.list_nav_w li a {
  color: var(--color_white);
  display: block;
  font-size: 14px;
  min-width: 1rem;
  max-width: 2.4rem;
  text-align: center;
  margin-right: auto;
  white-space: nowrap;
  word-break: break-all;
  white-space: pre-wrap;
  padding: 0.16rem 0.24rem;
  border-radius: 0.64rem;
}

.list_nav_w .switch_sidebar_btn {
  color: var(--color_white);
  display: block;
  font-size: 14px;
  max-width: 2.4rem;
  text-align: center;
  margin-right: auto;
  white-space: nowrap;
  word-break: break-all;
  white-space: pre-wrap;
  padding: 0.16rem 0 0.16rem 0.16rem;
  border-radius: 0.64rem;
}

.list_nav_w a:hover {
  opacity: 0.8;
}
.list_nav_w a.active {
  color: #050d10;
  background-color: #00ffed;
}
.list_nav_w .current-cat a {
  color: #050d10;
  background-color: #00ffed;
}
.list_nav_w li a {
  position: relative;
  z-index: 1;
  min-width: 1.4rem;
}
.news_list_nav li a {
  background-color: #2c374c;
}
.nav_category_select {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  flex: 0 0 auto;
}
.select_nav {
  position: relative;
  display: inline-block;
  min-width: 100px;
  text-transform: capitalize;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  margin: 0 0.08rem;
  font-size: 12px;
}
.select_nav .icon_bottom_s {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 20;
  line-height: 32px;
  pointer-events: none;
}
.select_nav .active_nav {
  cursor: pointer;
  position: relative;
  z-index: 10;
  padding: 8px 16px;
  color: var(--color_muted);
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  text-align: left;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select_nav .select_w {
  display: flex;
  align-items: center;
  min-width: 56px;
}
.select_nav .select_w i {
  font-size: 14px;
  display: inline-block;
  width: 16px;
  border-radius: 24px;
}

.select_nav .active_nav em {
  font-size: 14px;
  padding: 0 8px 0 4px;
}

.select_nav .options i {
  display: block;
  border-radius: 24px;
}
.select_nav .active_nav .select_w i {
  display: inline-block;
  line-height: 18px;
  border-radius: 24px;
}
.select_nav .options_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 48px;
  max-width: 48px;
}
.select_nav ul i {
  display: block;
  border-radius: 24px;
}
.select_nav .options i {
  font-size: 12px;
  margin-right: 8px;
  border-radius: 24px;
}
.select_nav:hover .options_nav {
  border-top: 0;
  background-color: rgba(44, 55, 76, 0.98);
  box-shadow: 0px 8px 24px 0px rgba(35, 35, 35, 0.08);
}
.select_nav .options {
  min-width: 1.5rem;
  pointer-events: none;
  display: none;
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 0;
  left: 0;
  bottom: auto;
  padding: 0;
  font-weight: 400;
  text-align: left;
  padding: 0.16rem;
  border-radius: 8px;
  border-top: 0;

  background-image: linear-gradient(
    to bottom,
    rgb(55, 67, 88, 1),
    rgb(66, 80, 102, 1)
  );
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  -moz-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
}
.select_nav:hover .options {
  display: block;
}
.select_nav .options .option {
  cursor: pointer;
  display: block;
  height: 40px;
  line-height: 40px;
}
.select_nav .options .option a {
  padding: 0 0 0 16px;
  display: block;
  display: flex;
  align-items: center;
}
.select_nav .options .option:hover {
  color: var(--color_primary);
}
.select_nav .options .option a em {
  font-size: 12px;
  min-width: 24px;
  position: relative;
}
.selects_mob .options .icon_w {
  display: inline-block;
  padding: 4px;
}
.selects_mob .selected a {
  color: var(--color_primary);
}
.select_nav .options .option.selected {
  color: var(--color_primary);
}
.select_nav .options .option:hover a,
.select_nav .options .option.selected a {
  color: var(--color_primary);
}
.select_nav:hover .options {
  pointer-events: all;
  display: block;
}
.select_nav.closed .options {
  display: none !important;
}
#gird_list_switch_btn {
  cursor: pointer;
  padding: 0 0.32rem;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
}
#gird_list_switch_btn .icon_w {
  font-size: 16px;
}
#gird_list_switch_btn a {
  font-size: 14px;
  padding: 0;
}
#gird_list_switch_btn .current {
  color: var(--color_primary);
}
.selects_mob {
  display: block;
  z-index: 2;
  border-radius: 0.08rem;
  margin: 0.16rem auto;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .list_nav_mob {
    display: none;
  }
  .list_nav_pc {
    display: flex;
  }
}
@media (max-width: 1200px) {
  .list_nav_mob {
    display: block !important;
  }
  .list_nav_pc {
    display: none !important;
  }
}
.selects_mob .items {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0.32rem 0.16rem;
}
.selects_mob .cat-item-all {
  flex: 0 0 100%;
  width: 33.3333%;
  padding: 0.08rem;
  text-align: center;
}
.selects_mob .selects_tt {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-radius: 0.08rem;
  gap: 0.24rem;
}
.selects_mob .selects_tt span {
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  line-height: 56px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255, 0.16);
  border-radius: 0.08rem;
}
.selects_mob .selects_tt .color_w {
  font-size: 14px;
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 14px;
  border-radius: 24px;
  margin-right: 10px;
}
.selects_mob selects_tt.options a {
  line-height: 42px;
  height: 42px;
  text-align: center;
  background-color: #2c374c;
  -webkit-border-radius: 0.64rem;
  border-radius: 0.64rem;
  width: 100%;
  padding: 0 0.24rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 4px 0.32rem 4px 0.32rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.selects_mob .selects_tt span.current {
  color: var(--color_primary);
}
.selects_mob .selects_tt .icon_w {
  display: inline-block;
  padding: 4px;
}
.selects_mob .selects_tt .current .icon_bottom {
  color: var(--color_primary);
  -webkit-transform: rotate(90deg);
  transform: rotate(180deg);
}
.selects_mob .selects_con {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  padding: 0.16rem;
  border-radius: 0.16rem;
}
.selects_mob .selects_con.show {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 68px;
  background-image: linear-gradient(
    to bottom,
    rgb(55, 67, 88, 0.64),
    rgb(66, 80, 102, 0.32)
  );
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  -moz-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-transition: all 0.32s ease, opacity 0.32s ease;
  -o-transition: all 0.32s ease, opacity 0.32s ease;
  -moz-transition: all 0.32s ease, opacity 0.32s ease;
  transition: all 0.32s ease, opacity 0.32s ease;
}
.selects_mob .selects_con .items.current {
  display: block;
}
.selects_mob .selects_con .items .order_dl,
.selects_mob .selects_con .items .category_menu_mob {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.selects_mob .selects_con .items li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 6px;
}
.selects_mob li a,
.selects_mob li a,
.selects_mob .selects_con li a {
  display: block;
  font-size: 16px;
  color: var(--color_muted);
  line-height: 56px;
  height: 56px;
  text-align: center;
  -webkit-border-radius: 0.64rem;
  border-radius: 0.64rem;
  width: 100%;
  padding: 0 0.64rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.selects_mob .options .option {
  width: 33.33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 6px;
}
.selects_mob .options a {
  font-size: 16px;
  line-height: 56px;
  height: 56px;
  text-align: center;
  color: var(--color_muted);
  -webkit-border-radius: 0.64rem;
  border-radius: 0.64rem;
  width: 100%;
  padding: 0 0.24rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 4px 0.32rem 4px 0.32rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.selects_mob .selected a {
  color: var(--color_primary);
}
.select_color.options .option:hover {
  color: var(--color_primary);
}
.selects_mob .selects_con li a.current,
.selects_mob .selects_con .items .current-cat a,
.selects_mob .selects_con .items span.current a,
.selects_mob .selects_con .menu-item.current-menu-item a {
  /* background-color: var(--color_primary);
  color: var(--color_dark); */

  color: var(--color_primary);
}
.selects_mob li a:hover,
.selects_mob li a:hover,
.selects_mob .selects_con li a:hover {
  color: var(--color_primary);
}
.all_page {
  padding: 0.32rem;
  margin: 0.32rem auto 0.88rem auto;
  background-color: #2c374c;
  -webkit-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0.16rem 0.64rem rgba(0, 0, 0, 0.06);
  border-radius: 0.08rem;
}

.notyf-dark-text .notyf__message,
.notyf-dark-text .notyf__icon,
.notyf-dark-text .notyf__dismiss-btn {
  color: #2c374c;
}
.notyf-dark-text .notyf__dismiss-btn:before,
.notyf-dark-text .notyf__dismiss-btn:after {
  background-color: rgba(255, 255, 255, 0.24);
  content: "";
  background-color: var(--color_dark);
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
  opacity: 0.8;
}

/* 极致缓和但保持生动的动画 */
#box_right {
  transition: opacity 0.32s ease-out,
    transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

/* 关闭状态：淡出+轻微右移 */
.box_right.close_box {
  opacity: 0;
  transform: translateX(64px);
  pointer-events: none;
  width: 0 !important; /* 确保实际占位消失 */
}
