/* ================= 页面自定义样式 ================= */
body {
  background-color: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}

/* 辅助 Flex 类 */
.justify_between {
  justify-content: space-between;
}
.justify_center {
  justify-content: center;
}
.align_start {
  align-items: flex-start;
}
.align_center {
  align-items: center;
}
.row_reverse {
  flex-direction: row-reverse;
}

/* --- 1. 首屏 Banner 区域 --- */
.banner_wrap {
  width: 100%;
  min-width: 1200px;
  /* 背景建议使用切出的 1920 宽度的背景图，这里使用渐变色模拟 */
  background: url('../images/online/bg_banner.png') no-repeat center center;
  background-size: 100% 100%; /* 拉伸覆盖 */
  position: relative;
  overflow: hidden;
  height: 555px;
}
/* 顶部导航悬浮 */
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  background: transparent;
}
/* 页面滚动后导航变为白底 */
.header_wrap.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header {
  padding-top: 30px;
  padding-bottom: 20px; /* 增加底内边距，使悬浮时更好看 */
  height: 40px; /* 改为内容实际高度，总高度由 padding 撑开 */
  transition: padding 0.3s ease;
}

.header_wrap.scrolled .header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo img {
  height: 40px; /* 假设 logo 高度 */
}
.nav_item {
  font-size: 18px;
  color: #333;
  margin-left: 50px;
  position: relative;
}
.nav_item:hover {
  color: #0D74FE;
}
/* 导航下划线及高亮样式 */
.nav_item.active {
  color: #0D74FE; /* 激活时字体颜色 */
}
.nav_item::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 3px;
  background-color: #0D74FE;
  transition: width 0.3s ease;
}
.nav_item.active::after {
  width: 50%; /* 控制下划线长度 */
}

/* Banner 主体内容 */
.banner_main {
  padding: 111px 0 0;
}
.banner_text {
  width: 500px;
}
.banner_text h1 {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.banner_text h1 .orange_text {
  color: #ff8c00;
}
.banner_text .subtitle {
  font-size: 26px;
  color: #555;
  margin-bottom: 80px;
  letter-spacing: 1px;
}
.consult_btn {
  width: 180px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
  background: linear-gradient( 90deg, #4872FE 0%, #1EA5FF 100%);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(42, 130, 228, 0.3);
}

.banner_img {
  flex: 1;
  text-align: right;
  position: relative;
}
/* 手机群图，需替换为真实切图 */
.banner_img img {
  max-width: 100%;
  height: auto;
  margin-right: -50px; /* 适配手机图向右溢出一点的感觉 */
}

/* --- 2. 介绍文案区域 --- */
.intro_wrap {
  padding: 52px 0;
  background-color: #fff;
}
.intro_wrap .section_title {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.intro_wrap .section_desc {
  font-size: 22px;
  color: #666;
  letter-spacing: 1px;
}

/* --- 3. UI设计语言区域 --- */
.ui_wrap {
  padding: 52px 0;
  background: linear-gradient( 180deg, #F5F9FF 0%, #E9EFFF 100%);
}
.ui_text {
  width: 360px;
}
.ui_text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.ui_text p {
  font-size: 22px;
  color: #838896;
  line-height: 36px;
}

.ui_cards {
  gap: 46px;
}
.card_item {
  width: 206px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(206,200,255,0.15);
  transition: transform 0.3s;
}
.card_item:hover {
  transform: translateY(-10px);
}
.card_img {
  height: 168px;
  background-color: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card_info {
  padding: 12px 14px 16px;
}
.card_info h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid;
  margin-right: 8px;
}
.dot_orange {
  border-color: #ff8c00;
}
.dot_blue {
  border-color: #00e0ff;
}
.dot_purple {
  border-color: #8c52ff;
}

.card_info p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

/* --- 4. 全面重构体验升级 --- */
.upgrade_wrap {
  padding: 52px 0;
  background: url('../images/online/bg_sj.png') no-repeat center center;
  background-size: 100% 100%; /* 拉伸覆盖 */
}
.upgrade_inner {
  width: 950px;
  margin: 0 auto;
}
.upgrade_wrap .section_title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin-bottom: 48px;
}
.upgrade_card {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  box-shadow: 2px 0px 4px 0px rgba(189,209,255,0.25);
  align-items: stretch;
}
.upgrade_sidebar {
  width: 165px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.upgrade_sidebar li {
  height: 74px;
  line-height: 74px;
  font-size: 20px;
  color: #777;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.upgrade_sidebar li.active {
  background: linear-gradient( 270deg, #49CBFF 0%, #2F80FF 100%);
  color: #fff;
}
.upgrade_sidebar li:hover:not(.active) {
  background: rgba(255,255,255,0.3);
  color: #333;
}
.upgrade_sidebar1{position: absolute;top: 0;left: 0;width: 50px;opacity: 0;pointer-events: none;transition: all 0.3s;}
.upgrade_sidebar li.active .upgrade_sidebar1{
    opacity: 1;
}
.upgrade_content {
  flex: 1;
  background: linear-gradient( 270deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 57.21%, rgba(255,255,255,0.3) 100%);
}
.upgrade_text {
  flex: 1;
  padding: 40px 60px 20px 52px;
}
.upgrade_text h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 26px;
}
.upgrade_text .desc {
  font-size: 20px;
  color: #888;
  line-height: 30px;
  margin-bottom: 58px;
}
.upgrade_btns {
  gap: 20px;
  margin-bottom: 40px;
}
.upgrade_btns .btn_blue {
  display: inline-block;
  width: 106px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s;
  background: #FFFFFF;
  cursor: pointer;
  color: #777777;
}
.btn_blue:hover {
  opacity: 0.9;
  color: #2F80FF;
}
.upgrade_btns .btn_blue.act {
  background: linear-gradient( 270deg, #49CBFF 0%, #2F80FF 100%);
  color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(39,89,255,0.3);
}

.bottom_tips {
  font-size: 16px;
  color: #ADB1BC;
}
.upgrade_img {
  width: 220px;
  position: relative;
}
.upgrade_img1{
    position: absolute;top: 0;left: 0;width: 284px;height: 511px;max-width: none;
}
.upgrade_img2{
    position: relative;z-index: 2;
}
.upgrade_img3 {
  width: 100%;
  height: 450px;
}

/* --- 5. 全新功能上线 --- */
.new_feature_wrap {
  padding: 52px 0;
  background-color: #fff;
}
.new_feature_wrap .section_title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin-bottom: 18px;
}
.new_feature_wrap .section_desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}
.feature_tabs {
  gap: 30px;
  margin-bottom: 45px;
}
.feature_tabs .tab_item {
  width: 251px;
  height: 60px;
  line-height: 60px;
  background: #F4F5F9;
  border-radius: 6px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}
.feature_tabs .tab_item.active {
  background: linear-gradient( 64deg, #0D74FE 0%, #21B9FF 100%);
  color: #fff;
}

.feature_content {
  align-items: center;
  margin-top: 40px;
}
.feature_img {
  width: 652px; 
}
.feature_img img {
  width: 100%;
}
.feature_text {
  width: 458px;
  
}
.feature_text_title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.feature_text_title .num {
  font-size: 32px;
  color: #FF8C00;
  font-weight: bold;
  margin-right: 15px;
}
.feature_text_title h3 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
}
.feature_text .line {
  margin-bottom: 32px;
  border-bottom: 1px solid #ECECEC;
}
.feature_text .line1{
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #333;
}
.feature_list{
  min-height: 225px;
}
.feature_list li {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  font-size: 20px;
  color: #838896;
}
.feature_list li .check_icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* --- 6. 全面接入AI --- */
.ai_wrap {
  padding: 52px 0 0;
  background: linear-gradient( 359deg, #F5FCFF 0%, #EDFAFF 100%);
}
.ai_wrap .section_title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}
.ai_content {
  align-items: center;
}
.ai_text_area {
  width: 480px;
}
.ai_main_title {
  font-size: 34px;
  color: #333;
  margin-bottom: 50px;
}
.ai_main_title .orange_text {
  color: #FF9217;
}

.ai_list_wrap {
  position: relative;
  padding-left: 20px;
  margin-bottom: 60px;
}
.timeline_line {
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 20px;
  border: 1px dashed rgba(255,146,23,0.3);
}

.ai_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
  cursor: pointer;
}
.ai_list li:last-child {
  margin-bottom: 0;
}
.ai_list li .dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #FFDBB6;
  border-radius: 50%;
  z-index: 2;
  border: 0;
}
.ai_list li.active .dot {
  background-color: #FF9217;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}
.ai_list li h4 {
  font-size: 22px;
  color: #333;
  font-weight: normal;
  transition: all 0.3s;
  margin-bottom: 15px;
}
.ai_list li.active h4 {
  color: #FF9217;
}
.ai_list li p {
  font-size: 18px;
  color: #838896;
  line-height: 28px;
  display: none;
}
.ai_list li.active p {
  display: block;
}

.learn_more_btn {
  display: inline-block;
  width: 214px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: #FFAD50;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
.learn_more_btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ai_img_area {
  width: 578px;
  min-height: 598px;
  display: flex;
  align-items: flex-end;
}
.ai_img_area img {
  width: 100%;
}

/* --- 7. 全新业务员端及功能列表 --- */
.salesman_features {
  width: 100%;
}
.feature_row {
  padding: 36px 0;
  width: 100%;
}
.feature_row.bg_green{
  padding: 36px 0 0;
}
.bg_blue {
  background: linear-gradient( 359deg, #F5F9FF 0%, #E7F2FF 100%);
}
.bg_white {
  background: #FFFFFF;
}
.bg_green {
  background: linear-gradient( 359deg, #F5FCFF 0%, #EDFAFF 100%);
}
.feature_row .text_area{
  width: 420px;
}

.num_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.num_title .num {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
}
.num_title .div1 {
  font-size: 36px;
}
.num_title .div1 .green {
  color: #00D07F;
}
.num_title .blue {
  color: #0D74FE;
}
.num_title .orange {
  color: #FF8C00;
}
.num_title .green {
  color: #00D07F;
}

.feature_row .desc {
  font-size: 18px;
  color: #838896;
}

.feature_row .img_area{
  min-height: 567px;
  display: flex;
  align-items: flex-end;
}

/* 财务流水列表 */
.finance_list_wrap {
  position: relative;
  padding-left: 20px;
  margin-bottom: 50px;
}
.timeline_line_green {
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 20px;
  border: 1px dashed rgba(0,208,127,0.3);
}
.finance_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
  cursor: pointer;
}
.finance_list li:last-child {
  margin-bottom: 0;
}
.finance_list li .dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #A3EAD0;
  border-radius: 50%;
  z-index: 2;
  border: 0;
}
.finance_list li.active .dot {
  background-color: #00D07F;
  box-shadow: 0 0 0 4px rgba(0, 208, 127, 0.2);
}
.finance_list li h4 {
  font-size: 22px;
  color: #333;
  font-weight: normal;
  transition: all 0.3s;
  margin-bottom: 15px;
}
.finance_list li.active h4 {
  color: #00D07F;
}
.finance_list li p {
  font-size: 16px;
  color: #838896;
  line-height: 1.8;
  display: none;
}
.finance_list li.active p {
  display: block;
}

.learn_more_btn_green {
  display: inline-block;
  width: 200px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: #39D68A;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  box-shadow: 0px 8px 16px 0px rgba(57,214,138,0.3);
  transition: all 0.3s;
}
.learn_more_btn_green:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* --- 8. 体验焕新 --- */
.refresh_wrap {
  padding: 52px 0;
  background: #F1F7FF;
}
.refresh_wrap .section_title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}

.refresh_tabs {
  margin-bottom: 50px;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 5px;
  display: inline-flex;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
}
.refresh_tabs .tab_item {
  width: 112px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: #666;
  border-radius: 23px;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 42px;
}
.refresh_tabs .tab_item:last-child {
  margin-right: 0;
}
.refresh_tabs .tab_item:hover {
  color: #0D74FE;
}
.refresh_tabs .tab_item.active {
  background: linear-gradient( 64deg, #0D74FE 0%, #21B9FF 100%);
  color: #fff;
}

.refresh_content {
  align-items: flex-start;
}
.refresh_item {
  width: 320px;
}
.refresh_item .img_box {
  width: 100%;
  margin-bottom: 45px;
}
.refresh_item .img_box img {
  width: 100%;
  border-radius: 30px;
}
.refresh_item p {
  font-size: 24px;
  color: #333;
}

/* --- 9. 更多功能更新 --- */
.more_feature_wrap {
  padding: 60px 0;
  background: #F8FBFF;
}
.more_feature_wrap .section_title {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  margin-bottom: 45px;
}

.more_feature_list {
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}
.more_item {
  width: 292px;
  height: 318px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px 20px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px rgba(125,150,188,0.2);
  cursor: pointer;
  box-sizing: border-box;
}
.more_item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 14px 0px rgba(125,150,188,0.3);
}
.more_item .icon_box {
  width: 138px;
  height: 138px;
  margin-bottom: 14px;
}
.more_item .icon_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.more_item h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 14px;
}
.more_item p {
  font-size: 20px;
  color: #999;
}

/* --- 10. 打通美饿自发单 --- */
.integration_wrap {
  padding: 82px 0;
  background: url('../images/online/more_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.integration_wrap .section_title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.integration_wrap .subtitle {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.integration_wrap .tips {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}

/* --- 11. 底部咨询模块 --- */
.footer_consult_wrap {
  padding: 50px 0;
  background: url('../images/online/kefu_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.footer_consult_wrap .pagewd {
  gap: 200px;
}
.consult_form h2 {
  font-size: 46px;
  color: #333;
  margin-bottom: 45px;
  text-align: center;
}
.consult_form .input_box {
  width: 458px;
  height: 82px;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 0 20px;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
}
.consult_form .input_box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 30px;
  color: #333;
  background: transparent;
  text-align: center;
}
.consult_form .input_box input::placeholder {
  color: #999;
}
.qrcode_box {
  background: #fff;
  padding: 18px 14px 14px;
  border-radius: 18px;
}
.qrcode_box img {
  width: 192px;
  height: 192px;
  margin-bottom: 12px;
}
.qrcode_box p {
  font-size: 22px;
  color: #8D939B;
}


.footer{ background:#fafbfc; padding-top:35px;}
.footer .border_b{border-bottom: 1px solid #e6e6e6}
.footer .list_cont{ width:300px;float:left;font-size:14px;color:#666;padding-bottom:20px}
.footer .list_cont .tit{font-size:16px; color:#333;padding-bottom:15px;}
.footer .list_cont .border_200{width:200px;height:1px;background: #e6e6e6;margin-bottom:15px;}
.footer .list_cont .alink{font-size: 14px;color: #666}
.footer .list_cont .wx img{ width:130px; height:130px;}
.footer .list_cont .maincl{color:#108ee7}
.footer .list_cont .qq-cont{position: relative}
.footer .list_cont .qq-cont .xiaoQ{position: absolute;display: inline-block;width:38px;height: 38px;top:2px;left:165px;z-index:9;}

.footer_copy{background:#334450; text-align:center; padding:7px 0; font-size:16px; line-height:30px; color:#808c94;}

/*小屏幕底部*/
.footer_fixed_h{ width:100%; height:56px; display:none;}
.footer_fixed{ display:none; position:fixed; z-index:99; bottom:0; left:0; right:0; background:#fff; height:56px; border-top:1px solid #e6e6e6;}
.footer_fixed .list_box{ margin-right:28%; overflow:hidden;}
.footer_fixed .list{ float:left; width:33.33%; text-align:center;}
.footer_fixed .list a{ display:block; padding-top:10px;}
.footer_fixed .list .ico{ display:inline-block; width:16px; height:16px; background:url(../images/min/footerIco1.png) no-repeat center; background-size:contain;}
.footer_fixed .list .ico2{ background-image:url(../images/min/footerIco2.png);}
.footer_fixed .list .ico3{ background-image:url(../images/min/footerIco3.png);}
.footer_fixed .list p{ font-size:12px; line-height:24px;}
.footer_fixed .btn{ display:block; width:28%; height:56px; line-height:56px; font-size:14px; color:#fff; background:#288de1; text-align:center;}
/*底部结束*/

/*左侧浮动*/
.left_fixed{ width:150px; height:200px; background:url(../images/left_bj.png) no-repeat; position:fixed; z-index:99; top:60%; left:0;}
.left_fixed .colseIco{ display:inline-block; width:15px; height:15px; background:url(../images/left_colse.png) no-repeat; position:absolute; top:1px; right:1px;}
.left_fixed .link{ display:inline-block; width:112px; height:22px; text-align:center; line-height:22px; background:#1884fa; color:#fff; font-size:14px; position:absolute; left:19px; bottom:7px;}
/*左侧浮动*/

/*右侧浮动*/
.right_fixed{ position:fixed; z-index:99; top:50%; right:0; margin-top:-125px;}
.right_fixed .list_box{ position:relative;box-shadow: 0 3px 6px #aedafa}
.right_fixed .list_box li{background:#108ee7; width:48px; height:48px;text-align:center;}
.right_fixed .list_box li:hover{background:#007cd3;}
.right_fixed .list_box .ico{ display:inline-block; width:26px; height:26px;background-size:contain; vertical-align:middle; cursor:pointer; position:relative; z-index:100; margin-top:10px;margin-left:3px}
.right_fixed .list_box .ico1{ background:url(https://img01.jhcms.com/gw/images/newindex/c-phone.png) no-repeat center center; }
.right_fixed .list_box .ico2{background:url(https://img01.jhcms.com/gw/images/newindex/c-qq.png) no-repeat center center; }
.right_fixed .list_box .ico3{background:url(https://img01.jhcms.com/gw/images/newindex/c-sao.png) no-repeat center center; }

.right_fixed .list_box .cx_box{ display:none;position:absolute; z-index:99; right:50px; top:0px; width:160px; height:144px; background:#108ee7;padding:10px; transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;box-shadow: 0 3px 6px #aedafa}
/*.right_fixed .list_box .yuyue .close{ display:inline-block; width:16px; height:16px; background:url(../images/ico/closeIco.png) no-repeat center; background-size:contain; cursor:pointer;}*/
.right_fixed .list_box .yuyue p{ font-size:18px; text-align:center; color:#fff; line-height:30px; font-weight:normal;}
.right_fixed .list_box .yuyue input[type='text']{ width:100%; height:35px; background:#0e80cf; border:none; text-align:center; font-size:14px; outline:0; margin-top:5px;color:#fff;}
.right_fixed .list_box .yuyue input[type='text']::-webkit-input-placeholder{color:#fff;}
.right_fixed .list_box .yuyue input[type='text']:-moz-placeholder{color:#fff;}
.right_fixed .list_box .yuyue input[type='text']::-moz-placeholder{color:#fff;}
.right_fixed .list_box .yuyue input[type='text']:-ms-input-placeholder{color:#fff;}
.right_fixed .list_box .yuyue .btn{ width:100%; height:36px; background:#fff; text-align:center; font-size:14px; color:#108ee7; margin-top:12px; border:none; outline:0;border-radius: 3px}
.right_fixed .list_box .yuyue .close{position: absolute;width: 14px;height: 14px;background: url(/themes/default/statics/images/ico/closeIco.png) no-repeat center; background-size: contain; right: 4px;top: 4px; cursor: pointer;}
.right_fixed .list_box .qq_zx a{ display:block; height:60px;}
.right_fixed .list_box .wx img{ width:124px; height:124px;}
.right_fixed .gotoback{ display:block;background:#108ee7;width:48px; overflow:hidden;margin-top: 10px}
.right_fixed .gotoback .ico{display:block; width:100%; height:48px; background:url(/themes/default/statics/images/ico/ico14.png) no-repeat center; background-size:contain; cursor:pointer;}
.right_fixed .gotoback:hover{background:#007cd3;}
/*右侧浮动结束*/

.xuanfuFixNew{display:block;position: fixed;z-index: 99;top: 28%;right: 0;}

.friendLink{ background:#fff; padding:22px 0;}
.friendLink .bt{ font-size:15px; line-height:30px;}
.friendLink .link_box a{ display:inline-block; margin-right:25px; font-size:14px; line-height:30px; color:#666;}