@charset "utf-8";html,body,div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li,fieldset,form,label,input,legend,table,caption,tbody,tfoot,thead,tr,th,td,textarea,article,aside,audio,canvas,figure,footer,header,mark,menu,nav,section,time,video{margin:0;padding:0;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}body{font:12px/1 "Microsoft YaHei","Arial","sans-serif";-webkit-tap-highlight-color:rgba(0,0,0,0);}article,aside,dialog,figure,footer,header,hgroup,nav,section,blockquote{display:block;}ul,ol,li{list-style:none;}img{border:0 none;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}strong,em,i{font-style:normal;font-weight:normal;}ins{text-decoration:underline;}del{text-decoration:line-through;}mark{background:none;}input::-ms-clear{display:none !important;}input,select,textarea,button{vertical-align:middle;outline:none;border:0;}input{border-radius:0;box-shadow:none;}input[type="button"],input[type="submit"],input[type="reset"],button{-webkit-appearance:none;}a:link,a:visited{text-decoration:none;color:#333;}a:hover,a:active{text-decoration:none;}input:foucs{outline:none;}
html, body{
    position: relative;
    height: 100%;
    width: 100%;
}
body {
    overflow: hidden;
}
.container {
    position: absolute;
    width: 1800px;
    height: 960px;
    top: 50%;
    left: 50%;
    margin-top: -480px;
    margin-left: -900px;
}
@keyframes breatheBg {
  0% {
      transform: scale(1.04);
  }
  100% {
      transform: scale(1.14);
  }
}
.bg-wrap{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../images/bg.jpg") no-repeat center center;
    background-size: 100% 100%;
}
.bg-wrap.bg-animate{
    animation: breatheBg 5s ease-in-out .6s infinite alternate;
}
.content-wrap{
    position: relative;
    padding:  0 80px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 42px;
    box-sizing: border-box;
    overflow: hidden;
    border: solid 1px rgb(250 250 250 / 40%);
    box-shadow: inset 0px 0px 20px 20px rgb(250 250 250 / 0.2);
}

.content-wrap .header {
    margin: 0 auto;
    width: 994px;
    height: 120px;
    background: url(../images/header_bg.png) no-repeat;
    background-size: contain;
}
.calendar {
    position: absolute;
    top: 44px;
    left: 106px;
    width: 180px;
    height: 120px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.calendar .flipInY {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.calendar .day {
    font-size: 50px;
    line-height: 1.5;
    font-weight: bold;
}
.content-wrap .action-btn-wrap {
    position: absolute;
    top: 24px;
    right: 80px;
    height: 70px;
    display: flex;
}
.content-wrap .action-btn-wrap .action-btn {
    height: 70px;
    line-height: 1;
    margin-left: 20px;
    color: #fff;
    font-size: 70px;
    opacity: 0.6;
    transition: opacity .3s ease;
    cursor: pointer;
}
.content-wrap .action-btn-wrap .action-btn:hover,
.content-wrap .action-btn-wrap .action-btn.active {
    opacity: 1;
}

.content-wrap .body-wrap {
    position: relative;
    flex: 1;
    padding: 40px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* val-wrap */
.content-wrap .body-wrap .val-wrap {
    height: 224px;
    padding-top: 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    color: #aaec97;
}
.content-wrap .body-wrap .val-wrap .val-content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-wrap .body-wrap .val-wrap .val-box {
    padding: 0 10px;
    width:124px;
    text-align: center;
    font-family: "Times New Roman", "Times", serif;
    font-style: italic;
    font-weight: bold;
}
.content-wrap .body-wrap .val-wrap .val-box i {
    font-size: 68px;
    font-style: italic;
    font-weight: bold;
    text-shadow: 0px 0px 18px rgb(0 0 0 / 50%);
}
.content-wrap .body-wrap .val-wrap .val-box .unit-db {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}
.content-wrap .body-wrap .val-wrap .noise-icon {
    font-size: 160px;
    display: flex;
    align-items: center;
}
.content-wrap .body-wrap .val-wrap .right-icon {
    transform: rotate(180deg);
}
.content-wrap .body-wrap .val-wrap svg {
    filter: drop-shadow(0px 0px 15px rgb(0 0 0 / 0.3));
}

/* swiper-wrap */
.content-wrap .body-wrap .swiper-wrap {
    flex: 1;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.content-wrap .swiper-wrap .site-list-wrap {
    font-size: 28px;
    color: rgba(255, 255, 255, .8);
    font-weight: bold;
    width: 540px;
    height: 50px;
    overflow: hidden;
}
.content-wrap .swiper-wrap .swiper-wrapper li {
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.content-wrap .swiper-wrap .monitor-date {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}


/* table-wrap */
.content-wrap .body-wrap .table-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.body-wrap .chart-wrap {
    position: absolute;
    top: -260px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}
.chart-wrap.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.chart-wrap .chart-content {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.chart-wrap .site-name-wrap {
    padding: 26px 52px 16px 60px;
    margin-bottom: 0;
    font-size: 18px;
    text-align: left;
    color: #b96c00;
    border-radius: 6px 6px 0 0;
    background-color: rgba(255, 255, 255, 0.18);
}
.chart-wrap .site-name-wrap .site-name {
    font-weight: bold;
    margin-right: 8px;
}

.chart-wrap #popup-chart {
    margin: 4px auto 0;
    height: 190px;
    padding: 0 50px 26px;
    border-radius: 0 0 6px 6px;
    background-color: rgba(255, 255, 255, 0.18);
}


/*  */
.table-content {
    transition: opacity .3s ease;
}
.table-content.hide {
    opacity: 0;
}
.table-header {
    display: flex;
    justify-content: space-between;
    height: 56px;
    margin-bottom: 10px;
}
.table-header span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100%;
    color: #fec16b;
    font-size: 18px;
    text-align: center;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, .25);
}
.table-header span.w250 {
    width: 250px;
}
.table-header span.w600 {
    width: 600px;
}
.table-header span.w100 {
    width: 100px;
}
.table-header span.unit-db {
    flex-direction: column;
}
.table-header span.unit-db .unit {
    font-size: 14px;
}
.table-wrap .table-swiper {
    height: 214px;
    overflow: hidden;
}
.table-body {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-body li {
    display: flex;
    justify-content: space-between;
    height: 46px;
    cursor: pointer;
}

.table-body li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    text-align: center;
    color: #b96c00;
    font-size: 16px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.18);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.table-body .monitor24h {
    cursor: pointer;
    transition: all 0.3s ease;
}

/*.table-body li .monitor24h:hover {*/
/*    color: #fff;*/
/*    background-color: rgba(204, 140, 51, 0.6);*/
/*}*/
.table-body li span.site-name {
    font-size: 18px;
    font-weight: bold;
}
.table-body li span.w250 {
    width: 250px;
}
.table-body li span.w600 {
    width: 600px;
}
.table-body li span.w100 {
    width: 100px;
}

.table-body li span.noise-val {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.table-body li.hover span {
    background-color: rgba(255, 255, 255, 0.75);
}
.table-body li span.level-green {
    background-color: #aaec97;
}

.table-body li span.level-red {
    background-color: #e6551b;
}

.content-wrap .copyright {
    color: #f3e7d7;
    text-align: center;
    font-size: 12px;
    font-weight: lighter;
    width: 100%;
    padding-bottom: 10px;
    line-height: 18px;
}
.copyright img {
    vertical-align: top;
}
.copyright a {
    color: #f3e7d7;
    transition: color 0.3s ease-in;
    font-size: 12px;
}
.copyright a:hover {
    color: #f3e7d7;
    border-bottom: 2px solid #f3e7d7;
}
/*  */
/* 遮罩层样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    visibility: hidden;
    opacity: 0; /* 初始透明度为0 */
    transition: opacity 0.3s ease; /* 过渡动画 300ms */
}
.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0; /* 初始透明度为0 */
    transition: all 0.3s ease; /* 所有属性过渡 300ms */
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}
.close-modal:hover {
    color: #333;
}
.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
.modal-content.active {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* 缩放到正常大小 */
}
/*  */
.details_h3 {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 2px;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
.details_table {
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 993px) {
  .details_table {
    width: 760px;
  }
}
.details_table th,
.details_table td {
  border: 1px solid #d5ecff;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 2px;
  color: #333333;
}
.details_table thead {
  background-color: #e7f4ff;
}
.details_table tbody {
  background-color: #f4faff;
}
.details_btn,
.details_btn:link {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 36px;
    background-color: #0e52b6;
    border-radius: 4px;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 2px;
    color: #fff;
}


.noise-info-content {
    position: absolute;
    width: 1658px;
    top: 90px;
    left: -10px;
    z-index: 100;
    opacity: 0;
    transform: scale(1.2); /* 初始缩放为80% */
    visibility: hidden;
    transition: all 0.3s ease; /* 所有属性过渡 300ms */
}
.noise-info-content.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1); /* 缩放到正常大小 */
}
.noise-info-content .info-title {
    line-height: 50px;
    font-size: 30px;
    color: #b96c00;
    text-align: center;
}
.noise-info-content .sound-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}
.noise-info-content .sound-table thead th {
    background-color: rgba(0, 0, 0, .25);
    color: #fec16b;
    height: 56px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    border-radius: 6px;
}
.noise-info-content .sound-table tbody td {
    background-color: rgba(255, 255, 255, 0.18);
    color: #b96c00;
    height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
}
.noise-info-content .sound-table .row-header {
    background-color: #fff;
    color: #8b6b4a;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
}
.noise-info-content .sound-table .w230 {
    width: 230px;
}