/* ************************************************************************************************/
/* 公共样式文件 */
/* ************************************************************************************************/
/* 主题色 */
.theme {
  color: #2888E8;
}

/* 超链接鼠标滑过颜色 */
a:hover {
  color: #2888E8;
}

/*禁止选中*/
.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently not supported by any browser */
}

/* 框架总宽度 */
.box {
  width: 75%;
  max-width: 1200px;
  margin: 0 auto;
}

/* *********************************************************************************************** */
/* 站底 */
/* *********************************************************************************************** */
footer {
  background-color: #fff;
  text-align: center;
  color: #666;
  padding-top: 50px
}

footer a {
  color: #666;
}

footer .foot .footMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

footer .foot .footMain .menu {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 1px solid #eee;
  padding-right: 50px;
}



footer .foot .footMain .menu .title {
  font-size: 18px;
  font-weight: 600;
  color: #010101;
  padding-bottom: 4px;
  margin-bottom: 4px;
  width: 40px;
  display: block;
  position: relative;
}
footer .foot .footMain .menu .title::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 50%;
  border-bottom: 2px solid #39c;
}

footer .foot .footMain .menu .item {
  white-space: nowrap;
  margin-right: 60px;
  width: 120px;
  flex: 1;
}

footer .foot .footMain .menu:first-child .item {
  margin-right: 0;
}

footer .foot .footMain .menu ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

footer .foot .footMain .menu ul li {
  white-space: nowrap;
}

footer .foot .footMain .ewm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
}

footer .foot .footMain .ewm img {
  width: 120px;
  display: block;
}

footer .foot .about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  height: 90px;
  border-top: 1px solid #eee;
}

footer .foot .about .contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

footer .foot .about .contact .logo {
  width: 100px;
}

footer .foot .about .contact .item {
  display: flex;
  align-items: center;
}

footer .foot .about .contact .item .icondianhua {
  font-size: 13px;
  color: #999;
  margin-right: 5px;
}

footer .foot .about .friend {
  position: relative;
  width: 130px;
  height: 40px;
}

footer .foot .about .friend .select {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  cursor: pointer;
}

footer .foot .about .friend .select em {
  font-size: 12px;
  position: relative;
  transform: rotate(-180deg) scale(0.8);
  font-weight: 700;
}

footer .foot .about .friend .option {
  flex-direction: column;
  position: absolute;
  left: 0px;
  bottom: 39px;
  border: 1px solid #eee;
  width: 130px;
  background-color: #fff;
  display: none;
}

footer .foot .about .friend.on .select em {
  transform: rotate(0deg) scale(0.8);
}

footer .foot .about .friend.on .option {
  display: flex;
}

footer .foot .about .friend .option a {
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  color: #666;
}

footer .foot .about .friend .option a:not(:last-child) {
  border-bottom: 1px solid #eee;
}


footer .bottom {
  width: 100%;
  height: 55px;
  background-color: #f4f4f4;
}

footer .bottom .fot {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  height: 100%;
  font-size: 14px;
  color: #999;
}

footer .bottom .fot a {
  color: inherit
}

/* *********************************************************************************************** */
/* 右下角，悬浮（含电话和置顶） */
/* *********************************************************************************************** */
.rbFix {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rbFix .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  color: #2888E8;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
  position: relative;
}

.rbFix .item.top {
  display: none;
}

.rbFix .item.top.flex {
  display: flex;
}

.rbFix .item.top:hover {
  background-color: #2888E8;
  color: #fff;
}

.rbFix .item .icontop {
  font-size: 26px;
  line-height: 0px;
  color: inherit;
  margin-top: 4px;
}


.rbFix .item.tel img {
  width: 24px;
  height: auto;
}

.rbFix .item.tel .pop {
  position: absolute;
  top: 0px;
  right: 80px;
  background-color: #fff;
  height: 70px;
  width: 180px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  cursor:default;
}

.rbFix .item.tel:hover .pop {
  display: flex;
}

.rbFix .item.tel .pop::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 6px solid;
  border-left-color: #fff;
  color: transparent;
}

.rbFix .item.tel .pop .label {
  color: #999;
  font-size: 14px;
}

.rbFix .item.tel .pop .value {
  font-size: 18px;
}

@media (max-width: 768px) {
  .rbFix {
    display: none;
  }
}

/* *********************************************************************************************** */