@charset "UTF-8";
/*  栏目海报 */
#column-poster {
  width: 100%;
  height: 26.041vw;
  margin-top: 4.583vw;
  background-image: url("../images/banner-manual.jpg");
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 1400px) {
  #column-poster {
    height: 400px !important;
  }
}

/* 海报文本 */
.szjr-poster-info {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.poster-info-box {
  width: 100%;
  height: 26.041vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  visibility: visible;
  animation-name: fontLag;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

@media screen and (max-width: 1400px) {
  .poster-info-box {
    height: 400px !important;
    padding: 0 20px;
  }
}

@keyframes fontLag {
  0% {
    opacity: 0;
    transform: scale3d(0.7, 0.7, 0.7);
  }
  100% {
    opacity: 1;
  }
}

.poster-info-en {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
  .poster-info-en {
    font-size: 1.2rem;
  }
}

.poster-info-txt {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
  .poster-info-txt {
    font-size: 1.5rem;
  }
}

.poster-info-txt-s {
  font-size: 1.2rem;
}

@media screen and (max-width: 1400px) {
  .poster-info-txt-s {
    font-size: 1rem;
    word-wrap: break-word;
    word-break: break-all;
  }
}

/* 版心 */
#container {
  max-width: 72.917vw;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  #container {
    width: 100%;
  }
}

/* 内容 */
.manual-content {
  padding: 3.125vw 0;
  background: #f5f5ff;
}

@media screen and (max-width: 1400px) {
  .manual-content {
    padding: 2.5vw 1.25vw;
  }
}


/* 表格内容 */
.manual-wrapper{
  background-color: #FFFFFF;
    padding: 1.563vw;
}


table {
  width: 100%;
  border-collapse: collapse;
  /* 整体边框颜色 */
  border: .052vw solid #D8D8D8;
}

th,
td {
  /* 每行边框 */
  border: .052vw solid #CFCFCF;
  text-align: center;
  font-size: .73vw;
}

th {
  /* 行高 */
  line-height: 1.875vw;
  /* 表头背景色 */
  background-color: #F4FAFF;
  color: #000;
}

td{
 /* 行高 */
 line-height: 1.46vw; 
}

/* 这次奇偶行用 class 来写 */
/* 偶数行浅灰色 */
/* tr.even {
  background-color: #eee;
} */

/* 鼠标悬停时的背景色:蓝色 */
tr:hover {
  background-color: #F8FEB1;
}

td a{
  color: #2d6737;
}

td a:hover{
  text-decoration: underline;
}

.table-title{
  text-align: center;
  font-size: 1.25vw;
  font-weight: 700;
  margin: 0.625vw 0px 1.25vw;
}

