@charset "utf-8";
/* CSS Document */
body{
    font-family: "SourceHanSansSC-Regular", "Microsoft YaHei", Arial, Helvetica, sans-serif, "SimSun";
}
/* 遮罩层样式 */
.window_mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
/* 弹窗样式调整 */
.window_cont {
  position: fixed; 
  display: block; /* 初始隐藏 */    
  width: 1100px;
  height: calc(100vh - 220px);
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  left: 50%;
  margin-left: -600px;
  top: 70px;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  padding: 0 50px 40px 50px;
}
.window_icon {
  background: url("../img/window_icon.png") no-repeat;
  display: block;
  background-size: cover;
  width: 110px;
  height: 110px;
  margin: -40px auto 6px auto;
}
.window_cont .tit {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.window_cont .window_article {
  font-size: 18px;
  color: #000;
  line-height: 36px;
  height: calc(100vh - 445px);
  overflow: auto;
  padding: 20px 20px;
  text-align: justify;
}
.window_cont .window_article p {
  padding-bottom: 10px;
  margin: 0;
}
.window_cont .window_article img {
  max-width: 94%;
  margin: 10px auto;
  text-align: center;
  display: block;
}
.window_cont .window_yy a {
  background: #df0629;
  color: #fff;
  font-size: 16px;
  padding: 8px 40px;
  border-radius: 30px;
  text-decoration: none;
}
.window_cont .window_yy a:hover {
  background: #d00626;
}
.window_cont .window_yy {
  text-align: center;
  margin: 35px auto 0 auto;
}
.window_cont .window_close a {
  background: url("../img/window_close.png") no-repeat;
  display: block;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin: 60px auto 0 auto;
}
/* 合同履约提示--弹窗遮罩层 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
    overflow: auto; 
}
/* 弹窗主体 */
.modal-container {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 100%;
    max-width: 740px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.95); 
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1); 
    }
}

/* 弹窗标题 */
.modal-header {
  background-color: #e4393c;
  color: white;
  padding: 10px 30px;
  position: relative;
}
.modal-title {
  font-size: 17px;
  font-weight: 600;
  padding-left: 35px;
  position: relative;
}
.modal-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background: url("../img/warin-ico.png") no-repeat center;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
}
.close-btn-tclv {
  position: absolute;
  top: 3px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.close-btn-tclv:hover {
  transform: rotate(90deg);
}
/* 弹窗内容 */
.modal-content {
  padding: 30px 30px 0 30px;
  max-height: 45vh;
  overflow-y: auto;
}
.reminder-section {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #dcdcdc;
}
.reminder-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.reminder-title {
  color: #df0629;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 32px;
  position: relative;
}
.reminder-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background: url("../img/time-warn.png") no-repeat center;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
}
/* 合同编号简化样式 */
.contract-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}
.contract-list ul {
  padding: 0;
  margin: 10px 0;
}
.contract-list li {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px 10px;
  border: 1px solid #eee;
  flex: 1 0 calc(25% - 12px);
  min-width: 180px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  float: left;
  margin: 5px 10px;
}
.contract-list li:hover {
  background: #fff5f5;
  border-color: #ffcccc;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.1);
}
.contract-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #d32f2f;
}
.warning-section .contract-item::before {
  background-color: #ff6b35;
}
/* 按钮区域 */
.modal-footer {
  padding: 12px 30px;
  background-color: #fafafa;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
}
.btn-htlv {
  padding: 8px 25px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  background-color: #e4393c;
  color: white;
}
.btn-htlv:hover {
  background-color: #dd2024;
}
/* 滚动条样式 */
.modal-content::-webkit-scrollbar {
  width: 12px;
}
.modal-content::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 0px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 0px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #a7a7a7;
}