/* overlay.css ==============================================*/
.overlay_wrap {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(0);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overlay_wrap.trans {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.overlay_wrap.trans .overlay_content {
  opacity: 1;
}

.overlay_wrap.full > .overlay_close_btn {
  display: block;
  width: 50px;
  height: 50px;
}

.overlay_wrap.full > .overlay_close_btn:before, .overlay_wrap.full > .overlay_close_btn:after {
  background: #fff;
}

.overlay_wrap.in_close > .overlay_close_btn {
  display: none;
}

.overlay_content {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.overlay_bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: .9;
  cursor: url(../images/icon/mouse_icon_w.png), auto;
}

.overlay_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px 0;
  box-sizing: border-box;
}

.overlay_box {
  display: none;
  position: relative;
  z-index: 1;
}

.overlay_box.trans {
  display: block;
}

.overlay_close_btn {
  position: absolute;
  right: 10px;
  top: 4px;
  z-index: 30;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.overlay_close_btn:hover {
  transform: rotateZ(180deg) scale(1.2);
}

.overlay_close_btn:before, .overlay_close_btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 3px;
  background: #000;
}

.overlay_close_btn:before {
  transform: translate(-50%, -50%) rotateZ(45deg);
}

.overlay_close_btn:after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}

.overlay_slider_btn {
  display: block;
  position: fixed;
  top: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.overlay_slider_btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  width: 40px;
  height: 40px;
  transform: rotateZ(45deg);
}

.overlay_slider_btn:hover.prev {
  left: 30px;
}

.overlay_slider_btn:hover.next {
  right: 30px;
}

.overlay_slider_btn.prev {
  left: 40px;
}

.overlay_slider_btn.prev:before {
  left: 9px;
  border-bottom: 5px solid #D90000;
  border-left: 5px solid #D90000;
}

.overlay_slider_btn.next {
  right: 40px;
}

.overlay_slider_btn.next:before {
  right: 9px;
  border-top: 5px solid #D90000;
  border-right: 5px solid #D90000;
}

.notice_box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.5em;
  box-sizing: border-box;
}

.notice_box p {
  margin-bottom: 10px;
}

.notice_box p:last-child {
  margin-bottom: 0;
}

.notice_btn {
  display: inline-block;
  max-width: 150px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 2px 20px;
  background: #ddd;
  border-radius: 7px;
  border: 1px solid #ccc;
  color: #333;
  cursor: pointer;
  font-size: 16px;
}

.notice_btn:hover {
  background: #D90000;
  border-color: #ccc;
  color: #fff;
}




/*20210503 新增 START*/
.spec_wrap .s_tab_1 li { background: #ddd;}
.spec_wrap .item.model_number { margin: 20px 0; }
.spec_compare .head h3, .spec_compare .head a { display: inline-block;}
.spec_compare .head h3 { margin-right: 20px; }
.spec_compare .head a { padding: 5px 20px; margin-bottom: 10px; background: #A5CC38; color: #fff; }
.spec_compare .head a:before { display: none; }
.spec_compare .head a:hover { background: #999;}
.compare_overlay { width: 92%; margin: 0 auto;}
.compare_overlay .overlay_group { display: flex; width: 100%; padding: 30px 0; overflow-x: scroll; overflow-y: visible;  box-sizing: border-box; background: #fff; border-radius: 3px; }
.compare_overlay .spec_wrap { display: flex; flex-direction: column; width: 100%; }
.compare_overlay .spec_wrap .tab_head .col { font-size: 16px; color: #86aa27; }
.compare_overlay .spec_wrap .col { position: relative; width: 20%; min-width: 160px; }
.compare_overlay .spec_wrap .col:before { content: ""; display: block; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: #ddd; }
.compare_btn_wrap a.overlayFn_item { margin-right: 15px; background: #86aa27; color: #fff; border: none; }
/*20210503 新增 END*/
