﻿*{padding:0;margin:0;}
html,body{font-size:12px;font-family:"微软雅黑";outline:none;color:#666;background:#fff;}
ul,ol{list-style:none;}
img{border:none;outline:none;}
a{color:#666;text-decoration:none;outline:none;}
a:hover{color:#e8431f;}

/*浮动客服*/
#floatDivBoxs{width:170px;background:#fff;position:fixed;top:100px;right:0;z-index:999;}
#floatDivBoxs .floatDtt{width:100%;height:45px;line-height:45px; background:#f08326;color:#fff;font-size:18px;text-indent:22px;position:relative;}
#floatDivBoxs .floatDqq{padding:0 14px;}
#floatDivBoxs .floatDqq li{height:45px;line-height:45px;font-size:15px;border-bottom:1px solid #e3e3e3; padding:0 0 0 50px;}
#floatDivBoxs .floatDtxt{font-size:18px;color:#333;padding:12px 14px;}
#floatDivBoxs .floatDtel{padding:0 0 15px 10px;}
#floatDivBoxs .floatDtel img{display:block;}
#floatDivBoxs .floatDbg{width:100%;height:20px;background:url("../images/online_botbg.jpg"/*tpa=http://wwv.rpmy.top/images/online_botbg.jpg*/) no-repeat;box-shadow:-2px 0 3px rgba(0,0,0,0.25);}
.floatShadow{ background:#fff;box-shadow:-2px 0 3px rgba(0,0,0,0.25);}
#rightArrow{width:50px;height:45px;background:url("../images/online_arrow.jpg"/*tpa=http://wwv.rpmy.top/images/online_arrow.jpg*/) no-repeat;position:fixed;top:100px;right:170px;z-index:999;}
#rightArrow a{display:block;height:45px;}

/* 基础样式 */
.social-share-container {
  position: fixed;
  left: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social-share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-share-btn i {
  font-size: 24px;
  color: white;
}

/* 微信按钮样式 */
.wechat-btn {
  background-color: #07C160;
}

/* QQ按钮样式 */
.qq-btn {
  background-color: #12B7F5;
}

/* 提示工具样式 */
.tooltip {
  position: absolute;
  left: 60px;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.social-share-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .social-share-container {
    right: 10px;
    bottom: 80px;
  }
  
  .social-share-btn {
    width: 44px;
    height: 44px;
  }
  
  .social-share-btn i {
    font-size: 20px;
  }
  
  .tooltip {
    font-size: 11px;
    padding: 4px 8px;
    right: 50px;
  }
}

/* 图标字体 - 可以使用实际项目中的图标库替换 */
@font-face {
  font-family: 'iconfont';
  src: url('http://at.alicdn.com/t/font_1234567_abcdefghijk.eot');
  src: url('http://at.alicdn.com/t/font_1234567_abcdefghijk.eot?') format('embedded-opentype'),
       url('http://at.alicdn.com/t/font_1234567_abcdefghijk.woff2') format('woff2'),
       url('http://at.alicdn.com/t/font_1234567_abcdefghijk.woff') format('woff'),
       url('http://at.alicdn.com/t/font_1234567_abcdefghijk.ttf') format('truetype'),
       url('http://at.alicdn.com/t/font_1234567_abcdefghijk.svg') format('svg');
}

.icon-wechat:before, .icon-qq:before {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wechat:before {
  content: "\e600"; /* 替换为实际的微信图标代码 */
}

.icon-qq:before {
  content: "\e601"; /* 替换为实际的QQ图标代码 */
}

/* 新增二维码弹窗样式 */
.qrcode-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.qrcode-content {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.close-btn:hover {
  color: #333;
}

.qrcode-title {
  margin-top: 0;
  color: #333;
  font-size: 18px;
}

.qrcode-image {
  margin: 15px auto;
  padding: 10px;
  background: white;
  border: 1px solid #eee;
}

.qrcode-image img {
  width: 100%;
  height: auto;
  display: block;
}

.qrcode-text {
  color: #666;
  margin: 10px 0 15px;
  font-size: 14px;
}

.copy-btn {
  background-color: #07C160;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: #06AD56;
}

/* 更新工具提示文本 */
.wechat-btn .tooltip {
  content: "点击显示微信二维码";
}

.qq-btn .tooltip {
  content: "点击显示QQ二维码";
}