:root {
  --theme-color: #003f88;
  --noticeColor: #d41c1c;
  --warnColor: #e6a23c;
  --gray-f4: #f4f4f4;
  --c-33: #333;
  --c-66: #666;
  --c-99: #999;
  --c-cc: #ccc;
}

:root {
  --theme-color: #003f88;
  --noticeColor: #d41c1c;
  --warnColor: #e6a23c;
  --gray-f4: #f4f4f4;
  --c-33: #333;
  --c-66: #666;
  --c-99: #999;
  --c-cc: #ccc;
}

.main,
.wrapper,
.layout {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 1560px;
  margin: 0 auto;
  max-width: -webkit-calc(100% - 1.6rem);
  max-width: -moz-calc(100% - 1.6rem);
  max-width: calc(100% - 1.6rem);
}
@media screen and (max-width: 1440px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 1.2rem);
    max-width: -moz-calc(100% - 1.2rem);
    max-width: calc(100% - 1.2rem);
  }
}
@media screen and (max-width: 1280px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 0.8rem);
    max-width: -moz-calc(100% - 0.8rem);
    max-width: calc(100% - 0.8rem);
  }
}
@media screen and (max-width: 768px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 0.52rem);
    max-width: -moz-calc(100% - 0.52rem);
    max-width: calc(100% - 0.52rem);
  }
}

.layout .crumbs.mobile {
  display: none;
}
.layout .breadcrumbs {
  margin-bottom: 0.29rem;
  height: 0.72rem;
  font-size: 0.18rem;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid #E8EEFB;
}
.layout .breadcrumbs h4 {
  margin-right: 0.2rem;
  margin-top: 0;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.3rem;
}
.layout .breadcrumbs > * {
  margin-top: 0.04rem;
}
.layout .breadcrumbs .pic {
  margin-left: auto;
  margin-right: 0.07rem;
  width: 0.23rem;
  height: 0.23rem;
  background: url(../images/icons/position.png) no-repeat center/contain;
}
.layout .breadcrumbs a,
.layout .breadcrumbs span {
  color: var(--c-99);
  font-size: 0.16rem;
}
.layout .breadcrumbs .next {
  display: inline-block;
  margin: 0 0.07rem;
}
.layout .breadcrumbs .possplit {
  content: "";
  margin: 0.04rem 0.05rem 0;
  width: 0.15rem;
  background: url(../images/icons/next.png) no-repeat center/contain;
}
.layout .breadcrumbs.crumbslastnone .next:last-of-type {
  display: none;
}

@media screen and (max-width: 550px) {
  .layout .breadcrumbs a,
  .layout .breadcrumbs span {
    font-size: 0.18rem;
  }
}
#search {
  width: 100%;
  height: 100vh;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: height 1s ease, opacity 0.5s ease;
  -o-transition: height 1s ease, opacity 0.5s ease;
  -moz-transition: height 1s ease, opacity 0.5s ease;
  transition: height 1s ease, opacity 0.5s ease;
}
#search.hide {
  height: 0;
  overflow: hidden;
}
#search.hide form {
  opacity: 0;
  pointer-events: none;
}
#search form {
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  margin: auto;
  width: 100%;
  text-align: center;
  height: 0.5rem;
  font-size: 0;
}
#search form input {
  min-width: 2rem;
  width: 25%;
  height: 100%;
  font-size: 0.16rem;
  padding: 0 0.1rem;
  border: none;
  color: #959595;
  background-color: #fff;
}
#search form button {
  padding: 0 0.15rem;
  height: 100%;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 0.14rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#search form button:hover {
  background-color: var(--sub-theme-color);
}

.no-data {
  font-size: 16px;
  padding: 0 0 0.3rem;
  text-indent: 2em;
}
@media screen and (max-width: 1024px) {
  .no-data {
    font-size: 14px;
  }
}

.timeBox {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 0.94rem;
  height: 0.81rem;
  background-color: var(--theme-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.timeBox .day {
  font-size: 0.3rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.timeBox .month {
  font-size: 0.16rem;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 900px) and (min-width: 800px) {
  .timeBox,
  .timeBox {
    width: 0.85rem;
    height: 0.75rem;
  }
}