@charset "UTF-8";
:root {
  --text-primary: #303133;
  /* 主要颜色 */
  --text-second: #606266;
  /* 次要颜色 */
  --text-thirdly: #939399;
  --theme-primary: gold;
  --theme-second: gold;
  --theme-thirdly: #120820;
  --theme-black: #120820;
  --status-primary: #409eff;
  --status-success: #67c23a;
  --status-warning: #e6a23c;
  --status-danger: #f56c6c;
  --status-info: #909399;
  --hover-primary: gold;
  --header-height: 60px; }

html {
  font-size: 16px;
  color: var(--text-primary); }

@font-face {
  font-family: 'iconfont';
  src: url("../fonts/iconfont.ttf"); }

ul, ol, li {
  list-style: none; }

.container {
  margin-left: auto;
  margin-right: auto; }

.indent-hidden {
  text-indent: -9999px; }

body > .app {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh; }
  body > .app .header {
    width: 100%;
    height: var(--header-height); }
  body > .app .main {
    flex: 1 1 0;
    position: relative;
    display: flex;
    flex-direction: column; }

.en-btn {
  position: relative;
  padding: 0 10px !important;
  height: 60px;
  line-height: 60px;
  font-size: 18px !important;
  font-weight: 600 !important;
  font-family: Consolas, Arial; }

.en-btn::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%); }

/* footer */
.app > .footer {
  padding: .5rem;
  background-color: #1F2937; }
  .app > .footer .constant {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 13px;
    line-height: 20px;
    color: #f5f6f7; }
    .app > .footer .constant a:hover {
      color: var(--hover-primary); }
    .app > .footer .constant .wa .icon {
      display: inline-block;
      width: 1.1rem;
      height: 1.1rem;
      vertical-align: -4px;
      background-image: url("/static/common/images/beian.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
    .app > .footer .constant .credential {
      text-align: center; }

/* header */
.app .header {
  height: var(--header-height);
  padding: 0 .5rem;
  z-index: 1;
  box-shadow: 0 0 10px #bbb;
  background-color: white; }
  .app .header > .container {
    height: 100%; }
  .app .header-main {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center; }
  .app .header-logo {
    width: 224px;
    height: 50px;
    background-image: url("/static/base/ccp/image/logo.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
  .app .header-menu {
    width: 70%;
    max-width: 1070px;
    height: 100%;
    margin-left: 100px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: right;
    align-items: center; }
    .app .header-menu .menu-item {
      position: relative;
      padding: 0 1.25rem;
      line-height: 60px; }
      .app .header-menu .menu-item .link {
        display: block; }
        .app .header-menu .menu-item .link:before {
          content: "";
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%; }
      .app .header-menu .menu-item:not(:first-of-type):not(:last-of-type):before {
        content: "";
        position: absolute;
        width: 2px;
        height: 1.25rem;
        background-color: #454545;
        top: 20px;
        left: 0;
        transform: translateX(-50%); }
      .app .header-menu .menu-item .link:hover, .app .header-menu .menu-item.active .link {
        color: var(--theme-second); }
    .app .header-menu .language-button {
      position: relative;
      padding: 0 10px !important;
      height: 60px;
      line-height: 60px;
      font-size: 18px !important;
      font-weight: 600 !important;
      font-family: Consolas, Arial; }
      .app .header-menu .language-button .letter::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%; }
      .app .header-menu .language-button .letter::after {
        content: "";
        position: absolute;
        width: 28px;
        height: 28px;
        top: 50%;
        left: 50%;
        border: 2px solid currentColor;
        border-radius: 50%;
        transform: translate(-50%, -50%); }
  .app .header .mobile-menu-btn {
    display: none;
    position: relative;
    align-self: center;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    border: 1px solid #efefef;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0; }
    .app .header .mobile-menu-btn .item {
      position: absolute;
      left: 0.25rem;
      right: 0.25rem;
      height: 2px;
      background-color: var(--text-second);
      transition: all .3s ease-out; }
      .app .header .mobile-menu-btn .item:nth-of-type(1) {
        top: 6px; }
      .app .header .mobile-menu-btn .item:nth-of-type(2) {
        top: 14px; }
      .app .header .mobile-menu-btn .item:nth-of-type(3) {
        top: 22px; }
    .app .header .mobile-menu-btn.opened .item:nth-of-type(1) {
      top: 5px;
      transform: translateY(9px) rotate(45deg); }
    .app .header .mobile-menu-btn.opened .item:nth-of-type(2) {
      opacity: 0; }
    .app .header .mobile-menu-btn.opened .item:nth-of-type(3) {
      top: 23px;
      transform: translateY(-9px) rotate(-45deg); }

/* 移动端侧边栏 */
.app > .mobile-header {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 200px;
  height: calc(100vh - var(--header-height));
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  line-height: 2.5rem;
  user-select: none;
  color: var(--text-primary);
  background-color: #fff; }
  .app > .mobile-header.opened {
    transform: translateX(0); }
  .app > .mobile-header .menu-item.active:hover {
    color: inherit; }
    .app > .mobile-header .menu-item.active:hover .link {
      background-color: var(--theme-second);
      border-radius: 4px; }
  .app > .mobile-header .menu-item.active .menu-item-main::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 20px;
    background-color: var(--theme-second); }
  .app > .mobile-header .menu-item-main {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    cursor: pointer; }
    .app > .mobile-header .menu-item-main:hover .menu-item-main:hover {
      color: var(--theme-thirdly);
      background-color: var(--theme-second);
      border-radius: 4px; }
    .app > .mobile-header .menu-item-main .icon {
      margin-left: auto;
      margin-right: 12px; }
  .app > .mobile-header .menu-item:hover .icon {
    background-image: url("data:image/svg+xml;utf8,%3Csvg preserveAspectRatio='xMidYMid meet' viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E"); }
  .app > .mobile-header .level-1, .app > .mobile-header .level-2 {
    margin-top: 6px; }
  .app > .mobile-header .level-1 {
    padding: 0 0.5rem; }
  .app > .mobile-header .link {
    display: block;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px; }
    .app > .mobile-header .link:hover {
      background-color: var(--theme-second);
      border-radius: 4px; }
    .app > .mobile-header .link + .icon {
      background-image: url("data:image/svg+xml;utf8,%3Csvg preserveAspectRatio='xMidYMid meet' viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      width: 1.2rem;
      height: 1.2rem;
      display: inline-block; }
  .app > .mobile-header .menu-children {
    display: none; }
    .app > .mobile-header .menu-children .link {
      padding-left: 20px; }
  .app > .mobile-header .menu-sub.active > .menu-item-main::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 20px;
    background-color: var(--theme-second); }
  .app > .mobile-header .menu-sub .menu-item-main.opened .link {
    background-color: var(--theme-second);
    border-radius: 4px; }
  .app > .mobile-header .menu-sub .menu-item-main.opened .link::after {
    transform: rotate(180deg); }
  .app > .mobile-header .menu-sub > .menu-item-main .link::after {
    content: '';
    position: absolute;
    top: 10px;
    transition: transform 0.2s;
    right: 0.5rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg preserveAspectRatio='xMidYMid meet' viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    margin-right: 4px; }

/* banner 横幅 */
.main > .banner {
  height: 40vw;
  max-height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

/* 二级菜单 */
.main .second-menu {
  position: relative; }
  .main .second-menu-main {
    display: inline-flex;
    justify-content: center;
    position: absolute;
    top: -2.25rem;
    width: 100%;
    letter-spacing: 1px;
    color: #f5f5f5;
    font-weight: 600;
    font-family: "KaiTi", "Microsoft YaHei", "Microsoft Sans Serif";
    height: 2.25rem;
    line-height: 2.25rem;
    background-color: rgba(0, 0, 0, 0.65);
    top: -2.625rem;
    height: 2.625rem;
    line-height: 2.625rem; }
  .main .second-menu-item {
    font-size: 1.125rem;
    font-size: 1.25rem;
    display: inline-block; }
    .main .second-menu-item-main {
      display: block;
      padding: 0 0.325rem;
      padding: 0 0.5rem; }
      .main .second-menu-item-main.active {
        color: var(--theme-second); }
      .main .second-menu-item-main:hover {
        color: var(--theme-second); }

/* menu-detail ck-content*/
.menu-detail-main {
  padding: 0.25rem 0.5rem; }

.menu-detail .ck-content p {
  margin-top: 6px;
  text-align: justify;
  line-height: 1.75em;
  letter-spacing: 0.1px; }

/* event-list */
.pc-event-list {
  position: relative;
  background-color: #f5f5f5; }
  .pc-event-list-main {
    padding: 3.5rem 0; }
    .pc-event-list-main::before {
      content: "";
      position: absolute;
      left: 50%;
      width: 2px;
      height: calc(100% - 180px);
      border: 2px dashed var(--text-primary);
      transform: translateX(-50%); }
    .pc-event-list-main .event-item-wrap {
      max-width: 90%;
      margin: 0 auto; }
      .pc-event-list-main .event-item-wrap.left {
        --color: #00A79B;
        text-align: left; }
        .pc-event-list-main .event-item-wrap.left .event-item {
          padding-right: 65px; }
        .pc-event-list-main .event-item-wrap.left .event-time {
          right: 0;
          transform: translateX(50%); }
        .pc-event-list-main .event-item-wrap.left .event-description {
          border-top-right-radius: 0;
          margin-left: auto; }
          .pc-event-list-main .event-item-wrap.left .event-description::after {
            right: -16px;
            border-right-width: 16px; }
      .pc-event-list-main .event-item-wrap.right {
        --color: #D43434;
        text-align: right; }
        .pc-event-list-main .event-item-wrap.right .event-item {
          padding-left: 65px; }
        .pc-event-list-main .event-item-wrap.right .event-time {
          left: 0;
          transform: translateX(-50%); }
        .pc-event-list-main .event-item-wrap.right .event-description {
          border-top-left-radius: 0; }
          .pc-event-list-main .event-item-wrap.right .event-description::after {
            left: -16px;
            border-left-width: 16px; }
    .pc-event-list-main .event-time {
      position: absolute;
      top: -15px;
      font-size: 24px;
      width: 80px;
      color: #e5e6b6;
      background-color: var(--color);
      text-align: center;
      line-height: 1.625em;
      border-radius: 6px; }
    .pc-event-list-main .event-item {
      display: inline-block;
      position: relative;
      width: 50%;
      padding: 10px 25px 0 25px; }
    .pc-event-list-main .event-description {
      position: relative;
      padding: 15px 30px;
      max-width: 468px;
      text-align: left;
      border-radius: 15px;
      background-color: #fff;
      border: 2px solid var(--color); }
      .pc-event-list-main .event-description::after {
        content: "";
        position: absolute;
        top: -2px;
        width: 16px;
        height: 18px;
        border-color: transparent;
        border-top: 16px solid var(--color); }

.mobile-event-list {
  max-width: 525px;
  margin: 16px auto 32px;
  padding: 0.25rem 0.5rem; }
  .mobile-event-list .event-item {
    min-height: 2.5rem;
    margin-top: 6px;
    font-size: 16px;
    overflow: hidden; }
  .mobile-event-list .event-item:nth-child(odd) {
    --color: #d43434; }
  .mobile-event-list .event-item:nth-child(even) {
    --color: #00a79b; }
  .mobile-event-list .event-time {
    color: #e5e6b6;
    position: absolute;
    top: 0;
    left: 0;
    height: 1.625rem;
    width: 80px;
    text-align: center;
    font-weight: 900;
    line-height: 1.625rem;
    border-radius: 5px;
    background-color: var(--color); }
  .mobile-event-list .event-description {
    position: relative;
    padding: 3px 8px;
    margin-left: 97px;
    margin-top: 14px;
    border: 1px solid var(--color);
    background-color: #fff;
    border-radius: 0 15px 15px 15px; }
  .mobile-event-list .event-description::after {
    content: '';
    position: absolute;
    left: -14px;
    top: -1px;
    border-color: transparent;
    border-top: 16px solid var(--color);
    border-left-width: 14px; }

/* article-list */
.article-list {
  font-size: 14px;
  color: var(--text-second);
  margin: 12px auto 16px; }
  .article-list-main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    min-height: 260px; }
  .article-list .article-item {
    position: relative;
    display: flex;
    padding: 10px 6px 3px;
    height: 97px;
    width: 100%;
    margin: 0 8px; }
    .article-list .article-item:hover .article-item-main {
      transform: translateY(-3px); }
    .article-list .article-item-main {
      flex: 1 1 auto;
      padding: 8px 16px;
      transition: transform 0.3s ease-out;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .article-list .article-item-main .title {
        font-size: 1rem;
        color: #1f9c92;
        margin-bottom: 2px; }
        .article-list .article-item-main .title:hover {
          text-decoration: underline; }
      .article-list .article-item-main .description {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; }

/* article-detail */
.article-detail {
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem; }
  .article-detail-main {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto; }
    .article-detail-main .title {
      margin: 20px auto 16px;
      text-align: center;
      font-size: 22px;
      font-weight: 600;
      font-family: "KaiTi";
      letter-spacing: 1px; }
    .article-detail-main .content {
      margin-bottom: 24px; }
      .article-detail-main .content p {
        margin-top: 10px;
        text-indent: 2em;
        text-align: justify; }
        .article-detail-main .content p img {
          margin: 10px auto; }
      .article-detail-main .content .many-image {
        min-width: 335px;
        border: 4px solid transparent; }
  .article-detail .vacillate {
    font-size: 15px;
    line-height: 2; }
    .article-detail .vacillate .prev:hover, .article-detail .vacillate .next:hover {
      color: #1f9c92;
      text-decoration: underline; }

/* image-list */
.image-list {
  padding: 0.25rem 0.5rem;
  margin-left: auto;
  margin-right: auto; }
  .image-list-main {
    max-width: 1178px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .image-list-main:only-child {
      padding: 2rem 0; }
    .image-list-main:not(:only-child) {
      padding-top: 2rem; }
      .image-list-main:not(:only-child) + .pagination {
        padding-bottom: 2rem;
        margin-bottom: 0; }
    .image-list-main .image-item {
      width: 348px;
      margin: 0 auto; }
      .image-list-main .image-item .image-wrap {
        border: 1px solid #ccc;
        padding: 12px;
        background: #f5f6fc; }
      .image-list-main .image-item .title {
        padding: 0.375rem 0 0.625rem;
        text-align: center; }

/* product */
.product {
  padding: 0.25rem 0.5rem; }
  .product-main {
    overflow: auto;
    padding-top: 2rem;
    margin-bottom: 2rem; }
    .product-main table {
      min-width: 535px;
      max-width: 835px;
      font-size: 16px;
      text-align: center;
      margin: 0 auto; }
      .product-main table th, .product-main table td {
        padding: 8px;
        font-size: 14px;
        border: 1px solid #5a7d61; }
      .product-main table thead {
        color: #fff;
        background-color: #4b87af; }
      .product-main table tbody tr:nth-child(odd) {
        background-color: #dff7f4; }
      .product-main table tbody tr:nth-child(even) {
        background-color: #f8ffed; }

/* pagination 分页器 */
.pagination {
  margin: 12px 0 8px;
  text-align: center;
  font-family: "Consolas";
  font-size: 14px;
  /* 分页器翻页箭头 */ }
  .pagination .item {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e7e7e7;
    background: #fff;
    border-radius: 3px; }
    .pagination .item + .item {
      margin-left: 3px; }
    .pagination .item:first-of-type, .pagination .item:last-of-type {
      vertical-align: bottom; }
    .pagination .item:not([disabled]):hover, .pagination .item.active {
      color: #f5f5f5;
      background: var(--theme-second); }
    .pagination .item[disabled] {
      cursor: not-allowed;
      color: var(--text-thirdly);
      background: #f4f4f4; }
  .pagination .icon-arrow {
    display: block;
    width: 15px;
    height: 15px;
    border: transparent solid 4px;
    border-left-color: currentColor;
    border-bottom-color: currentColor;
    border-radius: 5px;
    margin-top: 6px; }
    .pagination .icon-arrow.left {
      margin-left: 8px;
      transform: rotate(45deg); }
    .pagination .icon-arrow.right {
      margin-left: 3px;
      transform: rotate(-135deg); }

/*# sourceMappingURL=base.css.map */