/* 主页新闻模块样式 */
.newsBox {
  min-width: 1200px;
  padding: 0 100px 40px;
}

.newsHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.whiteBox {
  background-color: #fff;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
}

.tabNews {
  display: flex;
}

.tabNewsItem {
  margin-right: 10px;
  color: #1f2235;;
}

.newsActive {
  color: #fff;
  background-color: #1f2235;
}

.newsRightText {
  font-size: 16px;
}

.newsRightText a {
  color: #000;
  font-size: 16px;
}

.newsRightText a:hover {
  color: #2c7bb2;
}

.newsConentItem {
  background-color: #fff;
  padding: 30px 50px 20px;
  height: 480px;
  display: none;
}

.newsConentItem>div {
  flex: 1;
}

.newsTitle {
  display: inline-block;
  font-size: 16px;
  padding-bottom: 10px;
  cursor: pointer;
}

.newsInfo {
  line-height: 20px;
  padding-bottom: 10px;
  cursor: pointer;
  color: #000;
}

.newsConentItem .newsRightItem {
  display: flex;
  margin-bottom: 30px;
  cursor: pointer;
}

.newsConentItem .newsRightItem:last-child {
  margin-bottom: 0px;
}

.newsInfoBox {
  color: #000;
}

.newsInfoBox:hover .newsTitle {
  color: #2c7bb2;
}

.newsPoint {
  display: inline-block;
  height: 12px;
  width: 12px;
  background-color: #1f2235;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 3px;
}

.newsTime {
  color: #999;
  cursor: pointer;
}

.newsImg {
  display: block;
  margin-top: 30px;
  height: 300px;
  width: 600px;
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
}

.floatingBox {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 335px;
  z-index: 99999;
}

.floatingBox .floatingInfoBox {
  padding: 0 10px;
  width: 70px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.floatingBox .floatingInfoBox .floatingItem {
  height: 70px;
  text-align: center;
  background-color: #fff;
  color: #0f111b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: relative;
}

.floatingBox .floatingInfoBox .floatingActive:hover {
  background-color: #0f111b;
  color: #fff;
  box-shadow: 2px 3.46px 12px 4px rgb(11 125 245 / 50%);
}

.floatingBox .floatingInfoBox .floatingItem img {
  margin-bottom: 3px;
}

.floatingBox .floatingRadius {
  box-shadow: 0 0 13px 0 rgb(0 0 0 / 8%);
  border-radius: 8px;
  margin-bottom: 5px;
  background-color: #fff;
}

.floatingBox .floatTips {
  position: absolute;
  width: 170px;
  padding: 10px;
  top: 0;
  left: -185px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 0 13px 0 rgb(0 0 0 / 8%);
  display: none;
  color: #000;
}

.floatingBox .floatingInfoBox .floatingActive:hover .floatTips {
  display: block;
}

.floatingBox .floatTips::before {
  content: "";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: -18px;
  border: 10px solid transparent;
  border-left: 10px solid #fff;
}

.floatingBox .floatTips::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
}

.floatingBox .floatingSvg {
  height: 30px;
  width: 30px;
  background-size: 100% 100%;
  margin-bottom: 3px;
}

.floatingBox .floatPhone {
  background-image: url(../imgs/icon/black_phone.png);
}

.floatingBox .floatingInfoBox .floatingActive:hover .floatPhone {
  background-image: url(../imgs/icon/phone.png);
}

.floatingBox .floatCustomer {
  background-image: url(../imgs/icon/black_customer.png);
}

.floatingBox .floatingInfoBox .floatingActive:hover .floatCustomer {
  background-image: url(../imgs/icon/customer.png);
}

.floatingBox .floatBooking {
  background-image: url(../imgs/icon/black_booking.png);
}

.floatingBox .floatingInfoBox .floatingActive:hover .floatBooking {
  background-image: url(../imgs/icon/booking.png);
}

.floatingBox .floatWechat {
  background-image: url(../imgs/icon/black_wechat.png);
}

.floatingBox .floatingInfoBox .floatingActive:hover .floatWechat {
  background-image: url(../imgs/icon/wechat.png);
}

.floatingBox .floatUp {
  background-image: url(../imgs/icon/up.svg);
}

.floatingBox .floatBack {
  display: none;
}