/* 悬浮窗 */
.float_window {
  width: 320px;
  height: 101px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  position: fixed;
  left: 20px;
  top: 140px;
  /* background: url(../images/float_window/float_window_bg_23_03_29.png) no-repeat center /
    100% 100%; */
  /* background: url(../../images/WechatIMG66.jpg) no-repeat center /
    100% 100%; */
  /* background: #083196; */
  overflow: hidden;
  text-align: center;
  /* box-shadow: 0 0 10px 2px #0a5996; */
  z-index: 9999;
}

.float_window * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.float_window .float_window_head {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 40px;
  cursor: all-scroll;
  font-size: 22px;
  color: #fff;
  padding-top: 10px;
}
.float_window .float_window_head .close_btn {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  position: absolute;
  right: 2px;
  top: 0;
  transform: translateY(-100%);
  cursor: pointer;
}
.float_window .float_window_head:hover .close_btn {
  transform: translateY(5px);
}

/* 开始征订 按钮 */
.float_window_start_btn {
  cursor: pointer;
  display: block;
  width: 100%;
  height: calc(100% - 44px);
  /* border-bottom: 0px solid #9032c0; */
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  transition: all 0.3s;
  line-height: 25px;
  text-align: left;
  padding: 10px;
  color: #fff;
  font-size: 18px;
}

.float_window_start_btn:hover {
  /*border-bottom: 3px solid #9032c0;*/
  /*width: 200px;*/
  color: #fff;
}