body {
  background: #EFEFEF; }

.topBg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 305px;
  border-radius: 0 0 100px 100px; }

.logoPd {
  padding-left: 50px;
  padding-top: 64px; }

.logoBox {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: normal; }
  .logoBox .logoText {
    font-size: 36px;
    color: #fff; }
  .logoBox img {
    height: 64px; }

.root {
  margin-top: -100px; }

.toolRow {
  position: relative;
  z-index: 9;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 0 50px; }

.main {
  min-height: 500px;
  border-radius: 20px;
  border: 14px solid #f7f7f7;
  background-color: #fff;
  margin-top: -4px;
  position: relative;
  padding: 36px;
  z-index: 10; }

.nav {
  display: flex;
  align-items: center; }

.navItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 1;
  width: 277px;
  height: 78px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: .1s;
  background-image: url("../img/navbg.png");
  color: #636363; }
  .navItem:hover {
    transform: translateY(-4px); }
  .navItem ~ .navItem {
    margin-left: -20px; }
  .navItem.navActive {
    z-index: 2;
    color: #922A00;
    background-image: url("../img/navbgactive.png"); }

.search {
  display: flex;
  align-items: center;
  padding: 0 25px;
  background: #fff;
  height: 40px;
  border-radius: 40px;
  padding-right: 10px;
  border: 1px solid #ededed; }
  .search input {
    border: none;
    outline: none;
    flex: 1; }

.searchBox {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ededed; }

.searchImg {
  width: 16px;
  cursor: pointer; }

.footer {
  width: 100%;
  height: 150px;
  background: #434141;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  margin-top: 50px; }

.newsLi {
  margin-bottom: 30px; }
  .newsLi:last-child {
    margin-bottom: 0; }
  .newsLi:nth-child(2n) {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px dashed #d1d1d1; }

.newsItem {
  display: flex;
  align-items: center;
  height: 65px;
  width: 100%; }
  .newsItem:hover {
    color: var(--theme-link-color); }

.newsType {
  height: 100%;
  width: 65px;
  background: url("../img/type.png");
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #969696;
  font-weight: bold; }

.newsContent {
  width: calc(100% - 85px); }
  .newsContent p {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%; }
  .newsContent .text {
    margin-top: 10px; }

.disabled {
  opacity: .3;
  cursor: not-allowed !important; }

.tabsPhone {
  display: none; }

.pageBox {
  display: flex;
  align-items: center;
  gap: 10px; }
  .pageBox a {
    font-size: 14px;
    color: #000;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent; }
  .pageBox img {
    cursor: pointer;
    width: 16px; }
  .pageBox .pageActive {
    border: 1px solid var(--theme-red-color);
    border-radius: 4px;
    color: var(--theme-red-color); }

.navPhone {
  display: none; }

.phoneMenu {
  display: none; }

.mainTabs {
  display: flex;
  align-items: flex-start; }
  .mainTabs .tabContentTitle {
    width: 204px;
    background-image: url("../img/bgcircle.png");
    background-size: contain;
    background-position: 70% 70%;
    background-repeat: no-repeat;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-size: 30px;
    color: var(--theme-red-color);
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 30px; }
  .mainTabs .newsContent {
    width: 100%; }
  .mainTabs .tabs {
    flex: 1;
    border-right: 1px solid #ededed;
    margin-right: 45px;
    min-height: 400px;
    padding-left: 15px; }
  .mainTabs .tabItem {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold; }
    .mainTabs .tabItem .icon {
      width: 22px; }
    .mainTabs .tabItem .iconActive {
      display: none; }
    .mainTabs .tabItem.active {
      color: var(--theme-red-color); }
      .mainTabs .tabItem.active .iconActive {
        display: block; }
      .mainTabs .tabItem.active .iconDefault {
        display: none; }
  .mainTabs .content {
    width: calc(100% - 230px); }

.newsTypeRadius {
  border-radius: 0px 8px 0px 8px;
  border: 1px solid var(--theme-red-color);
  height: 27px;
  color: var(--theme-red-color);
  align-items: center;
  padding-left: 15px;
  display: inline-flex;
  padding-right: 15px;
  position: relative;
  margin-left: 5px; }
  .newsTypeRadius::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: var(--theme-red-color);
    left: 4px;
    top: 4px; }
  .newsTypeRadius::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: var(--theme-red-color);
    right: 4px;
    bottom: 4px; }

.detail * {
  max-width: 100%;
  line-height: 1.5;
  margin: 10px auto; }
.detail img {
  max-width: 80%;
  display: block; }

@media screen and (max-width: 1200px) {
  .app {
    padding: 15px; }

  body {
    padding-top: 65px; }

  .container {
    width: 100%; }

  .topBg {
    display: none; }

  .phoneMenu {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    top: 0;
    padding-left: 15px;
    left: 0;
    z-index: 100; }
    .phoneMenu p {
      font-size: 16px;
      color: #fff; }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    background: #fff; }
    .menu img {
      width: 33px;
      display: block;
      height: auto; }

  .toolRow {
    display: none;
    position: fixed;
    z-index: 100;
    top: 50px;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
    width: 100%;
    padding: 30px 20px; }
    .toolRow .nav {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start; }
    .toolRow .navItem {
      margin-left: 0;
      font-size: 16px;
      height: auto;
      margin-bottom: 15px;
      background: none;
      width: 100%;
      text-align: center;
      display: block; }
      .toolRow .navItem:hover {
        transform: translateY(0); }
      .toolRow .navItem ~ .navItem {
        margin-left: 0; }
    .toolRow .tabsPhone {
      display: block;
      width: 100%;
      text-align: center; }
      .toolRow .tabsPhone li {
        margin-bottom: 5px; }
      .toolRow .tabsPhone .navActive {
        color: var(--theme-red-color); }
      .toolRow .tabsPhone a {
        font-size: 14px; }

  .search {
    margin: 0 auto;
    margin-top: 15px;
    width: 100%; }

  .main {
    padding: 15px; }

  .footer {
    font-size: 12px; }

  .root {
    margin-top: 0; }

  .newsItem {
    height: auto;
    flex-direction: column;
    position: relative; }

  .newsType {
    height: auto;
    background: none;
    font-size: 14px;
    line-height: 1;
    position: absolute;
    display: block;
    width: 4em;
    left: 0;
    top: 0; }
    .newsType br {
      display: none; }

  .newsContent {
    width: 100%; }
    .newsContent .time {
      text-align: right;
      line-height: 1; }
    .newsContent .text {
      font-size: 14px;
      font-weight: bold; }
    .newsContent p {
      font-size: 14px; }

  .newsLi {
    margin-bottom: 30px; }
    .newsLi:nth-child(2n) {
      border-bottom: 0;
      margin-bottom: 30px;
      padding-bottom: 0; }

  .navPhone {
    display: block; }
    .navPhone .nav {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row; }
    .navPhone .navItem {
      width: 150px;
      height: 45px;
      font-size: 14px;
      background-size: 100% 100%; }
    .navPhone .navItem ~ .navItem {
      margin-left: 0; }

  .mainTabs {
    flex-direction: column; }
    .mainTabs .tabContentTitle {
      font-size: 18px;
      width: 160px;
      height: 30px;
      line-height: 30px; }
    .mainTabs .content {
      width: 100%; }
    .mainTabs .tabs {
      width: 100%;
      min-height: auto;
      border-right: 0;
      margin-bottom: 30px; }
      .mainTabs .tabs ul {
        display: flex;
        flex-wrap: wrap; }
      .mainTabs .tabs li {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
      .mainTabs .tabs .tabItem {
        font-size: 16px; }
        .mainTabs .tabs .tabItem .icon {
          width: 18px; }
    .mainTabs .time {
      display: flex;
      align-items: center;
      justify-content: space-between; }

  .tabsPc {
    display: none; } }

/*# sourceMappingURL=public.css.map */
