:root {
  font-size: 16px;
  --siderWidth: 280px;
  --wrapWidth: 1340px;
  --mainboxWidth: 920px;
  --headerHeight: 60px;
  --fz-title-extra-large: 36px;
  --fz-title-large: 30px;
  --fz-title: 24px;
  --fz-title-sub: 18px;
  --fz-text: 16px;
  --fz-text-small: 14px;
  --fz-text-mini: 12px;
  --fz-text-mini-max: 10px;
  --fz48: 48px;
  --fz38: 38px;
  --fz28: 28px;
  --fz24: 24px;
  --fz20: 20px;
  --border-radius: 6px;
}
@media screen and (max-width: 768px) {
  :root {
    --wrapWidth: 90vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  :root {
    --wrapWidth: 728px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --wrapWidth: 872px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1720px) {
  :root {
    --wrapWidth: 1000px;
  }
}
@media screen and (min-width: 1720px) and (max-width: 1920px) {
  :root {
    --wrapWidth: 1334px;
  }
}
/* ckeditor 的 fontawesome 图标样式 */
* {
  box-sizing: border-box;
}
.fab,
.far,
.fas {
  display: inline-block;
  font-size: var(--fz-text-small);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  cursor: pointer;
}
.far,
.fas {
  font-family: "Font Awesome 6 Free";
}
.fab {
  font-family: "Font Awesome 6 Brands";
}
.far {
  font-weight: 400;
}
.fas {
  font-weight: 900;
}
.fab:before,
.far:before,
.fas:before {
  color: inherit;
}
#ckeditor-fa-icons {
  text-align: center;
  white-space: normal;
  width: 100%;
  height: 350px;
  overflow: auto;
}
#ckeditor-fa-icons a {
  display: inline-block;
  width: 72px;
  padding: 5px 0;
  text-align: center;
  vertical-align: top;
}
#ckeditor-fa-icons a span {
  font-size: 28px;
  display: block;
  text-align: center;
}
.faSelect {
  display: block !important;
}
/** 自定义内容模板的样式，前缀为 smart- **/
ul,
ol {
  padding-left: 20px;
}
.diy-item-body a {
  color: #343434;
}
.diy-item-body a:hover {
  color: #c89900;
}
img {
  max-width: 100%;
}
.cke_editable img {
  height: auto !important;
}
u {
  text-underline-position: under;
  text-decoration: underline;
}
hr {
  border-top: #dddddd;
}
.diy-wrap {
  font-size: 16px;
}
.diy-wrap * {
  margin: 0;
  padding: 0;
}
.diy-wrap ul,
.diy-wrap ol {
  padding-left: 20px;
}
.diy-wrap .smart-toggle-detail .detail-box {
  display: block !important;
  height: auto !important;
}
ul,
ol {
  padding-left: 20px;
}
.smart-margin-spacing {
  margin-top: 50px;
  margin-bottom: 50px;
}
.smart-marginb-spacing {
  margin-bottom: 50px;
}
.smart-pad-spacing {
  padding-top: 50px;
  padding-bottom: 50px;
}
/* 按钮样式 */
.smart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  text-align: center;
  margin-right: 15px;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--border-radius);
  padding: 11px 25px;
  margin-top: 5px;
  font-weight: bold;
  transition: 0.4s;
  line-height: 1.5;
  font-size: var(--fz-text);
}
.smart-btn img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  transition: 0.4s;
  max-width: 18px;
  max-height: 16px;
}
.smart-btn:hover {
  background-color: #c89900;
  color: #fff;
}
.smart-btn:hover img {
  transform: translateX(10px);
  transition: 0.4s;
}
.smart-btn:last-child {
  margin-right: 0;
}
.smart-btn.danger {
  background: #f00;
  color: #fff;
}
.smart-btn.danger:hover {
  background-color: #f00;
  opacity: 0.8;
}
.smart-btn.warning {
  background: #fabf01;
  color: #fff;
}
.smart-btn.warning:hover {
  background-color: #c89900;
}
.smart-btn.primary {
  background: #0070b8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .smart-btn {
    min-width: 80px;
  }
}
/* 标题 */
.smart-page-title {
  font-weight: 600;
  font-size: var(--fz-title);
  margin-bottom: 15px;
  line-height: 1.5;
}
.smart-page-subtit {
  font-weight: 600;
  font-size: var(--fz-title-sub);
  margin-bottom: 10px;
}
h2 {
  font-size: var(--fz-title);
}
h4 {
  font-size: var(--fz-title-sub);
}
h5 {
  font-size: var(--fz-text);
}
/*左文右图-垂直居中*/
.smart-text-image,
.smart-textimage {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.smart-text-image.align-center,
.smart-textimage.align-center {
  align-items: center;
}
.smart-text-image.reverse,
.smart-textimage.reverse {
  flex-direction: row-reverse;
}
.smart-text-image .imgbox,
.smart-textimage .imgbox {
  width: 48%;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.smart-text-image .imgbox img,
.smart-textimage .imgbox img {
  width: 100%;
  border-radius: var(--border-radius);
}
.smart-text-image .txtbox,
.smart-textimage .txtbox {
  width: 48%;
}
.smart-text-image .txtbox .title,
.smart-textimage .txtbox .title {
  font-weight: 600;
  font-size: var(--fz-title-sub);
  margin-bottom: 15px;
}
.smart-text-image .txtbox .info,
.smart-textimage .txtbox .info {
  line-height: 1.875rem;
}
.smart-text-image-64 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.smart-text-image-64.align-center {
  align-items: center;
}
.smart-text-image-64.reverse {
  flex-direction: row-reverse;
}
.smart-text-image-64 .imgbox {
  width: 40%;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.smart-text-image-64 .imgbox img {
  width: 100%;
}
.smart-text-image-64 .txtbox {
  width: 56%;
}
.smart-text-image-64 .txtbox .title {
  font-weight: 600;
  font-size: var(--fz-title-sub);
  margin-bottom: 15px;
}
.smart-text-image-64 .txtbox .info {
  line-height: 1.875rem;
}
/*左文右图-手机版在底下*/
.smart-textimage-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.smart-textimage-bottom.reverse {
  flex-direction: row-reverse;
}
.smart-textimage-bottom.align-center {
  align-items: center;
}
.smart-textimage-bottom .smart-list-data-half .li {
  padding: 30px 10px;
}
.smart-textimage-bottom .smart-list-data-half .li .title {
  font-size: 26px;
}
.smart-textimage-bottom .imgbox {
  width: 48%;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.smart-textimage-bottom .imgbox img {
  border-radius: var(--border-radius);
}
.smart-textimage-bottom .txtbox {
  width: 48%;
}
.smart-textimage-bottom .txtbox .title {
  font-weight: 600;
  font-size: var(--fz-title-sub);
  margin-bottom: 15px;
}
.smart-textimage-bottom .txtbox .info {
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .smart-textimage-bottom {
    flex-wrap: wrap;
  }
  .smart-textimage-bottom .imgbox,
  .smart-textimage-bottom .txtbox {
    width: 100%;
  }
  .smart-textimage-bottom .txtbox {
    margin-bottom: 20px;
  }
}
.smart-theme-box {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  gap: 10%;
}
.smart-theme-box .imgbox {
  flex: none;
  width: 48%;
  font-size: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.smart-theme-box .imgbox img {
  border-radius: var(--border-radius);
}
.smart-theme-box .txtbox {
  flex-grow: 1;
}
.smart-theme-box ul li {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .smart-theme-box {
    flex-wrap: wrap;
  }
  .smart-theme-box .imgbox,
  .smart-theme-box .txtbox {
    width: 100%;
    margin: 0;
  }
  .smart-theme-box .txtbox {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .smart-text-image-64,
  .smart-text-image,
  .smart-textimage,
  .smart-textimage-bottom {
    flex-wrap: wrap;
  }
  .smart-text-image-64 .imgbox,
  .smart-text-image .imgbox,
  .smart-textimage .imgbox,
  .smart-textimage-bottom .imgbox,
  .smart-text-image-64 .txtbox,
  .smart-text-image .txtbox,
  .smart-textimage .txtbox,
  .smart-textimage-bottom .txtbox {
    width: 100%;
  }
  .smart-text-image-64 .txtbox,
  .smart-text-image .txtbox,
  .smart-textimage .txtbox,
  .smart-textimage-bottom .txtbox {
    margin-bottom: 20px;
  }
  .smart-text-image-64 .smart-list-data-half .li,
  .smart-text-image .smart-list-data-half .li,
  .smart-textimage .smart-list-data-half .li,
  .smart-textimage-bottom .smart-list-data-half .li {
    padding: 20px 10px;
  }
  .smart-text-image-64 .smart-list-data-half .li .title,
  .smart-text-image .smart-list-data-half .li .title,
  .smart-textimage .smart-list-data-half .li .title,
  .smart-textimage-bottom .smart-list-data-half .li .title {
    font-size: var(--fz-title);
  }
  .smart-image-text {
    flex-wrap: wrap;
  }
  .smart-image-text .imgbox,
  .smart-image-text .txtbox {
    width: 100%;
  }
  .smart-image-text .txtbox {
    margin-top: 20px;
  }
}
/*左小图标右文本*/
.smart-lefticon-righttext {
  display: flex;
}
.smart-lefticon-righttext .iconbox {
  flex-shrink: 0;
  width: 60px;
  border-radius: var(--border-radius);
  background: linear-gradient(to bottom right, #987500, #fdc300);
  margin-right: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.smart-lefticon-righttext .iconbox img {
  max-width: 80%;
  max-height: 80%;
}
.smart-lefticon-righttext .txtbox {
  flex-grow: 1;
  border-radius: var(--border-radius);
  background-color: #e8ebf1;
  padding: 40px;
}
.smart-lefticon-righttext .txtbox * {
  background-color: #e8ebf1 !important;
}
@media screen and (max-width: 768px) {
  .smart-lefticon-righttext {
    flex-wrap: wrap;
  }
  .smart-lefticon-righttext .iconbox {
    width: 100%;
    height: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .smart-lefticon-righttext .txtbox {
    padding: 30px 20px;
  }
}
/* 	参观/预定横幅 */
.smart-banner-box {
  color: #fff;
  background: none;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.smart-banner-box .smart-page-title {
  color: #fff;
}
.smart-banner-box .desc {
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .smart-banner-box {
    min-height: 0;
  }
}
/* 联系方式 */
.smart-contact-item {
  margin-bottom: 30px;
  margin-top: 10px;
  background-color: #fff;
  display: flex;
  padding: 30px;
  border-radius: var(--border-radius);
}
.smart-contact-item.bggray {
  background-color: #f5f6f8;
}
.smart-contact-item:last-child {
  margin-bottom: 0;
}
.smart-contact-item .imgbox {
  flex-shrink: 0;
  margin-right: 4.6%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow: hidden;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-contact-item .imgbox img {
  max-width: 70%;
  max-height: 70%;
  width: auto !important;
  height: auto !important;
}
.smart-contact-item .txtbox {
  width: calc(100% - 100px - 3%);
}
.smart-contact-item .txtbox .name {
  font-size: var(--fz-text);
  font-weight: bold;
  margin-bottom: 10px;
}
.smart-contact-item .txtbox .company {
  font-size: var(--fz-text);
}
.smart-contact-item .txtbox .contactinfo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.smart-contact-item .txtbox .contactinfo .col {
  width: 50%;
  line-height: 1.8;
  font-size: var(--fz-text-small);
}
.smart-contact-item .txtbox .contactinfo .col .p {
  display: flex;
  margin-top: 10px;
  word-break: break-word;
}
.smart-contact-item .txtbox .contactinfo .col .p .label {
  white-space: nowrap;
  flex-shrink: 0;
}
.smart-contact-item .txtbox .contactinfo .col img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .smart-contact-item {
    padding: 20px 10px;
  }
  .smart-contact-item .imgbox {
    width: 70px;
    height: 70px;
    margin-right: 20px;
  }
  .smart-contact-item .txtbox {
    width: calc(100% - 70px - 3%);
  }
  .smart-contact-item .txtbox .contactinfo .col {
    width: 100%;
  }
}
/*列表*/
.smart-list-half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
.smart-list-half .li,
.smart-list-half li {
  width: 48%;
  margin-bottom: 20px;
  list-style: none;
}
.smart-list-half .li img,
.smart-list-half li img {
  max-width: 16px;
  max-height: 16px;
}
.smart-list-gou {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}
.smart-list-gou.half .li {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .smart-list-gou.half li {
    width: 100%;
  }
}
.smart-list-gou li {
  width: 48%;
  margin-bottom: 20px;
  padding-left: 26px;
  list-style: none;
  position: relative;
  box-sizing: border-box;
}
.smart-list-gou li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("https://img2.b-china.cn/images/journey/gou.png") no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
.smart-list-gou li img {
  max-width: 16px;
  max-height: 16px;
}
.smart-list-gou {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}
.smart-list-gou.half li {
  width: 48%;
}
.smart-list-gou li {
  width: 100%;
  margin-bottom: 20px;
  padding-left: 26px;
  list-style: none;
  position: relative;
  box-sizing: border-box;
}
.smart-list-gou li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("https://img2.b-china.cn/images/journey/gou.png") no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
.smart-list-gou li img {
  max-width: 16px;
  max-height: 16px;
}
@media screen and (max-width: 1024px) {
  .smart-list-gou.half li {
    width: 100%;
  }
}
ul.smart-list-disc {
  list-style: disc;
  padding-left: 20px;
}
ul.smart-list-disc li {
  list-style: disc;
}
ul.smart-list-disc-half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: disc;
  padding-left: 20px;
}
ul.smart-list-disc-half li {
  list-style: disc;
  width: 48%;
  margin-bottom: 15px;
}
ul.smart-list-column2 {
  -moz-column-count: 2;
  /* Firefox */
  -webkit-column-count: 2;
  /* Safari and Chrome */
  column-count: 2;
  -webkit-column-gap: 40px;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 40px;
  /* Firefox */
  column-gap: 40px;
}
@media screen and (max-width: 768px) {
  ul.smart-list-column2 {
    -moz-column-count: 1;
    /* Firefox */
    -webkit-column-count: 1;
    /* Safari and Chrome */
    column-count: 1;
    -webkit-column-gap: 0px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 0px;
    /* Firefox */
    column-gap: 0px;
  }
}
ul.smart-list-column2 li {
  margin-bottom: 15px;
}
.smart-list-data-half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.smart-list-data-half .li {
  background-color: #fff;
  width: 48%;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border: 1px solid #ddd;
}
.smart-list-data-half .li .title {
  font-size: var(--fz-title-extra-large);
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.smart-list-data-half .li .title .mini {
  font-size: var(--fz-text);
  font-weight: normal;
}
.smart-list-data-half .li .sub-title {
  color: #666;
  position: relative;
  z-index: 2;
}
.smart-list-data-half .li img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.smart-sponser-list {
  display: flex;
  flex-wrap: wrap;
}
.smart-sponser-list .li {
  width: calc((100% - 80px) / 3);
  margin-bottom: 30px;
  line-height: 1.875rem;
}
.smart-sponser-list .li:not(:nth-child(3n)) {
  margin-right: 40px;
}
.smart-sponser-list .li .imgbox {
  width: 100%;
  height: 140px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.smart-list-item-border {
  list-style: none;
  padding: 0;
}
.smart-list-item-border > li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d7dbe3;
}
.smart-list-item-border .tit {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: var(--fz-title-sub);
  position: relative;
  padding-left: 20px;
}
.smart-list-item-border .tit:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333333;
  position: absolute;
  top: 10px;
  left: 0;
}
.smart-list-item-border .tit2 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: var(--fz-title-sub);
}
.smart-list-item-border .tit2 img {
  margin-right: 10px;
}
.smart-list-item-border .info {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .smart-list-half .li {
    width: 100%;
  }
  ul.smart-list-disc-half li {
    width: 100%;
  }
  .smart-list-data-half .li {
    padding: 20px 10px;
    margin-bottom: 10px;
  }
  .smart-list-data-half .li .title {
    font-size: var(--fz-title);
  }
  .smart-sponser-list .li {
    width: calc((100% - 20px) / 2);
    margin-right: unset !important;
  }
  .smart-sponser-list .li:nth-child(odd) {
    margin-right: 20px !important;
  }
  .smart-list-item-border .tit {
    font-size: var(--fz-text);
  }
}
.smart-prompt {
  font-size: var(--fz-text-small);
}
.smart-prompt .title {
  margin-right: 10px;
  font-weight: 600;
  font-size: var(--fz-text);
  color: #c89900;
  margin-bottom: 10px;
}
.smart-prompt .title img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.smart-prompt .title svg {
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -3px;
}
.smart-prompt .title svg path {
  fill: #c89900;
}
.smart-prompt .desc {
  line-height: 1.8;
  font-size: var(--fz-text-mini);
}
.smart-prompt-wrap {
  border-radius: var(--border-radius);
  background-color: #f8f7ec;
  padding: 24px 30px;
  margin-bottom: 20px;
  font-size: var(--fz-text-small);
}
@media screen and (max-width: 768px) {
  .smart-prompt-wrap {
    padding: 20px;
  }
}
.smart-prompt-wrap .title {
  margin-right: 10px;
  font-weight: 600;
  font-size: var(--fz-text);
  color: #c89900;
  margin-bottom: 10px;
}
.smart-prompt-wrap .title img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.smart-prompt-wrap .desc {
  line-height: 1.8;
}
.smart-date-table .date-header,
.smart-date-table .row {
  display: flex;
  align-items: center;
}
.smart-date-table .date-body .row {
  background-color: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}
.smart-date-table .th,
.smart-date-table .td {
  padding: 20px;
  flex: 1;
}
.smart-date-table .th {
  padding: 10px 20px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .smart-date-table .th,
  .smart-date-table .td {
    padding: 10px;
  }
}
.smart-journey-list,
.journey-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
  list-style: none;
}
.smart-journey-list .item,
.journey-list .item {
  position: relative;
  margin-bottom: 25px;
  width: 48%;
  border-radius: var(--border-radius);
  aspect-ratio: 43/14;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.smart-journey-list .item.highlight > a:before,
.journey-list .item.highlight > a:before {
  background-color: transparent;
}
.smart-journey-list .item:hover,
.journey-list .item:hover {
  transition: all 0.4s;
}
.smart-journey-list .item:hover > a:before,
.journey-list .item:hover > a:before {
  background-color: #fabf01;
  transition: all 0.4s;
}
.smart-journey-list .item > a,
.journey-list .item > a {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.smart-journey-list .item > a:before,
.journey-list .item > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(173, 138, 44, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.smart-journey-list .item .title,
.journey-list .item .title {
  position: absolute;
  width: 90%;
  text-align: center;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: #fff;
  font-size: var(--fz-title-sub);
}
.smart-journey-list .item img,
.journey-list .item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: all 0.4s;
}
.smart-journey-list-three,
.journey-list-three {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.smart-journey-list-three .item,
.journey-list-three .item {
  position: relative;
  margin-bottom: 25px;
  width: calc((100% - 50px) / 3);
  border-radius: var(--border-radius);
  aspect-ratio: 43/14;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.smart-journey-list-three .item.highlight > a:before,
.journey-list-three .item.highlight > a:before {
  background-color: transparent;
}
.smart-journey-list-three .item:hover,
.journey-list-three .item:hover {
  transition: all 0.4s;
}
.smart-journey-list-three .item:hover > a:before,
.journey-list-three .item:hover > a:before {
  background-color: #fabf01;
  transition: all 0.4s;
}
.smart-journey-list-three .item:not(:nth-child(3n)),
.journey-list-three .item:not(:nth-child(3n)) {
  margin-right: 25px;
}
.smart-journey-list-three .item > a,
.journey-list-three .item > a {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.smart-journey-list-three .item > a:before,
.journey-list-three .item > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(173, 138, 44, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.smart-journey-list-three .item .title,
.journey-list-three .item .title {
  position: absolute;
  width: 90%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  color: #fff;
  font-size: var(--fz-title-sub);
  z-index: 2;
}
.smart-journey-list-three .item img,
.journey-list-three .item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .smart-journey-list-three,
  .journey-list-three {
    justify-content: space-between;
  }
  .smart-journey-list-three .item,
  .journey-list-three .item {
    width: 48%;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .smart-journey-list-three .item,
  .smart-journey-list .item,
  .journey-list-three .item,
  .journey-list .item {
    width: 100%;
    margin-bottom: 14px;
    aspect-ratio: auto;
    height: 140px;
  }
  .smart-journey-list-three .item:last-child,
  .smart-journey-list .item:last-child,
  .journey-list-three .item:last-child,
  .journey-list .item:last-child {
    margin-bottom: 0;
  }
  .smart-journey-list-three .item .title,
  .smart-journey-list .item .title,
  .journey-list-three .item .title,
  .journey-list .item .title {
    font-size: var(--fz-text);
  }
}
.smart-toggle-detail {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.smart-toggle-detail.active {
  border: 2px solid #c89900;
}
.smart-toggle-detail.active .title {
  color: #c89900;
}
.smart-toggle-detail.active .title:after {
  top: 29px;
  border-color: #c89900;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.smart-toggle-detail.active .detail-box {
  height: auto;
  padding: 20px;
  border-top: 1px solid #ddd;
  transition: all 0.4s ease;
}
.smart-toggle-detail .title {
  font-weight: bold;
  position: relative;
  font-size: var(--fz-text);
  cursor: pointer;
  padding: 20px;
  padding-right: 40px;
}
.smart-toggle-detail .title:hover {
  color: #c89900;
}
.smart-toggle-detail .title::after {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-width: 0 0 2px 2px;
  border-style: solid;
  right: 1em;
  top: 25px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}
.smart-toggle-detail .detail-box {
  height: 0px;
  overflow: hidden;
  padding: 0px 20px;
  line-height: 1.8;
  transition: all 0.4s ease;
}
.smart-toggle-detail .detail-box a {
  text-decoration: underline;
}
.smart-toggle-detail .detail-box a:hover {
  color: #c89900;
}
.smart-table-th-b {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius) 5px 0 0;
  overflow: hidden;
}
.smart-table-th-b th {
  background-color: #0070b8;
  color: #fff;
}
.smart-table-th-b th,
.smart-table-th-b td {
  padding: 10px 20px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.smart-table-th-b tr:first-child th:first-child,
.smart-table-th-b tr:first-child td:first-child {
  border-radius: var(--border-radius) 0 0 0;
}
.smart-table-th-b tr:first-child th:last-child,
.smart-table-th-b tr:first-child td:last-child {
  border-radius: 0 5px 0 0;
}
.smart-preview-img {
  position: relative;
}
.smart-preview-img .inner-box {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.smart-preview-img img {
  display: block;
  max-width: 100%;
  height: auto !important;
}
.smart-preview-img .scale-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background-color: #fabf01;
  color: #fff;
  text-align: center;
  line-height: 46px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.smart-preview-img .scale-btn img {
  max-width: 60%;
  max-height: 60%;
}
.smart-preview-img .scale-btn:hover {
  background-color: #c89900;
}
.smart-preview-img .tip {
  font-size: var(--fz-text-mini);
}
.smart-download-list {
  list-style: none;
  padding-left: 0;
}
.smart-download-list li {
  list-style: none;
  margin-bottom: 20px;
}
.smart-download-list li > a {
  display: block;
  padding: 30px;
  position: relative;
  padding-left: 70px;
  background-color: #f5f6f8;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
}
.smart-download-list li > a:before {
  content: "";
  display: block;
  width: 24px;
  height: 30px;
  background: url("https://img2.b-china.cn/images/icon/file-black.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.smart-download-list li > a:after {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background: url("https://img2.b-china.cn/images/icon/download.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.smart-download-list li > a:hover {
  background-color: #fffaeb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.smart-download-list li > a:hover:after {
  top: 55%;
  transition: all 0.4s;
}
@keyframes aniShake {
  0% {
    top: 45%;
  }
  100% {
    top: 55%;
  }
}
@media screen and (max-width: 768px) {
  .smart-download-list li > a {
    padding: 20px;
    padding-left: 45px;
    padding-right: 40px;
  }
  .smart-download-list li > a:before {
    width: 18px;
    left: 15px;
  }
  .smart-download-list li > a:after {
    width: 15px;
    right: 15px;
  }
}
.smart-download-list li .tit {
  display: block;
}
.smart-download-list li .size {
  font-size: var(--fz-text-small);
  color: #aaaaaa;
  display: block;
}
.smart-banner-right-list {
  display: flex;
  width: 100%;
  height: 365px;
}
.smart-banner-right-list .item {
  width: 14.8%;
  transition: all 0.5s;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.smart-banner-right-list .item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}
.smart-banner-right-list .item > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.smart-banner-right-list .item:not(:last-child) {
  margin-right: 15px;
}
.smart-banner-right-list .item .title {
  color: #fff;
  font-size: var(--fz-title);
}
.smart-banner-right-list .item .desc {
  color: #fff;
}
.smart-banner-right-list .item .text {
  position: relative;
  opacity: 0;
  left: 0;
  bottom: -1000px;
  z-index: 2;
  padding: 50px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: bottom 0.5s ease;
}
.smart-banner-right-list .item .tag-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 2;
  color: #fff;
  font-size: var(--fz-title);
  writing-mode: vertical-rl;
  transition: all 0.4s ease;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .smart-banner-right-list .item .tag-title {
    writing-mode: unset;
    bottom: 22px;
  }
}
.smart-banner-right-list .item.active {
  display: flex;
  width: 68%;
  transition: all 0.5s;
}
.smart-banner-right-list .item.active .tag-title {
  bottom: -1000px;
  opacity: 0;
}
.smart-banner-right-list .item.active .desc {
  display: block;
  margin-bottom: 25px;
}
.smart-banner-right-list .item.active .title {
  writing-mode: unset;
  margin-bottom: 10px;
}
.smart-banner-right-list .item.active .smart-btn {
  display: inline-flex;
  align-items: center;
}
.smart-banner-right-list .item.active .text {
  opacity: 1;
  left: 0;
  bottom: 0;
  transform: unset;
  display: block;
}
@media screen and (max-width: 1440px) {
  .smart-banner-right-list {
    flex-direction: column;
    height: auto;
  }
  .smart-banner-right-list .item {
    width: 100%;
    height: 80px;
    margin-right: 0 !important;
    margin-top: 10px;
  }
  .smart-banner-right-list .item.active {
    width: 100%;
    height: auto;
    min-height: 240px;
  }
  .smart-banner-right-list .item .title {
    writing-mode: unset;
  }
  .smart-banner-right-list .item .text {
    position: relative;
  }
}
@media screen and (max-width: 640px) {
  .smart-banner-right-list .item .text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.smart-follow-list {
  padding: 0;
  list-style: none;
}
.smart-follow-list .li {
  display: flex;
  align-items: center;
  padding: 30px;
}
.smart-follow-list .li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.smart-follow-list .li .title {
  font-weight: 600;
  font-size: var(--fz-title-sub);
  margin-bottom: 10px;
}
.smart-follow-list .li .img {
  flex: none;
  padding: 10px;
  margin-right: 35px;
  background-color: #eeeeee;
  width: 200px;
  font-size: 0;
}
.smart-follow-list .li ul {
  list-style: disc;
  margin-top: 20px;
  line-height: 1.8;
}
.smart-follow-list .li ul li {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .smart-follow-list .li {
    padding: 20px 0;
    align-items: flex-start;
  }
  .smart-follow-list .li .img {
    width: 100px;
    margin-right: 20px;
    padding: 4px;
  }
}
.smart-matrix-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.smart-matrix-list .li {
  display: flex;
  flex-direction: column;
  width: 20%;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  padding: 0 10px;
}
.smart-matrix-list .li:not(:nth-child(5n)) {
  border-right: 1px solid #ddd;
}
.smart-matrix-list .li .text {
  margin-top: 10px;
}
.smart-matrix-list .li .img {
  width: 80px;
  font-size: 0;
}
@media screen and (max-width: 1042px) {
  .smart-matrix-list .li {
    width: 25%;
  }
  .smart-matrix-list .li:not(:nth-child(4n)) {
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  .smart-matrix-list .li {
    width: 33%;
    margin-top: 25px;
    font-size: 14px;
  }
  .smart-matrix-list .li:not(:nth-child(3n)) {
    border-right: 1px solid #ddd;
  }
  .smart-matrix-list .li .img {
    width: 48px;
  }
}
.smart-index-banner {
  max-width: 550px;
  color: #fff;
}
.smart-index-banner .logo {
  width: 100px;
}
.smart-index-banner .title {
  margin: 40px 0 10px;
  font-size: var(--fz48);
  font-weight: 600;
  line-height: 1.2;
}
.smart-index-banner .sub-tit {
  font-size: var(--fz28);
  font-weight: bold;
  margin-bottom: 30px;
}
.smart-index-banner .desc {
  font-weight: bold;
  font-size: var(--fz-title);
  line-height: 1.5;
  text-align: justify;
}
.smart-index-banner .desc .date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1em;
}
.smart-index-banner .desc .address {
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .smart-index-banner {
    max-width: 460px;
  }
  .smart-index-banner .title {
    font-size: 40px;
  }
}
.smart-flex-three {
  display: flex;
  flex-wrap: wrap;
}
.smart-flex-three > div {
  width: 32%;
  margin-bottom: 20px;
}
.smart-flex-three > div:not(:nth-child(3n)) {
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .smart-flex-three > div {
    width: 100%;
    margin-right: 0 !important;
  }
}
.smart-scenic-item {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.smart-scenic-item .imgbox {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--border-radius) 5px 0 0;
}
.smart-scenic-item .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.smart-scenic-item .txtbox {
  padding: 20px;
}
.smart-scenic-item .txtbox .tit {
  font-size: var(--fz-title-sub);
  font-weight: 600;
  margin-bottom: 5px;
}
.smart-scenic-item .txtbox .desc {
  line-height: 1.8;
}
.smart-index-video {
  display: flex;
  justify-content: space-between;
}
.smart-index-video .left {
  width: 50%;
}
.smart-index-video .sub-title {
  line-height: 1.8;
  margin: 25px 0;
}
.smart-index-video .right {
  width: 40%;
}
.smart-index-video .video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.smart-index-video .video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .smart-index-video {
    flex-direction: column;
  }
  .smart-index-video .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .smart-index-video .right {
    width: 100%;
  }
  .smart-index-video .sub-title {
    margin: 20px 0 30px;
  }
}
.smart-index-exhibit-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.smart-index-exhibit-banner .text .smart-page-title {
  margin-bottom: 10px;
}
.smart-index-exhibit-banner .text .desc {
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 18px;
}
.smart-index-exhibit-banner .infobox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2%;
  margin-top: 10px;
}
.smart-index-exhibit-banner .infobox .item .tit {
  color: #ecd793;
  font-weight: bold;
  margin-bottom: 10px;
}
.smart-index-exhibit-banner .infobox .item .p {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}
.smart-index-exhibit-banner .infobox .item .p img {
  vertical-align: middle;
  max-width: 18px;
  max-height: 20px;
  margin-right: 10px;
}
.smart-index-exhibit-banner .infobox .item .p span {
  white-space: nowrap;
}
.smart-index-exhibit-banner .infobox .item .date {
  font-size: 18px;
}
.smart-index-exhibit-banner .infobox .item .address {
  font-size: 18px;
  text-decoration: underline;
  text-underline-position: under;
}
.smart-index-exhibit-banner .infobox .item a {
  color: #fff;
}
.smart-index-exhibit-banner .infobox .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 28%;
}
.smart-index-exhibit-banner .infobox .btns .link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: var(--border-radius);
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.4s;
  font-weight: bold;
}
.smart-index-exhibit-banner .infobox .btns .link.highlight {
  background: #fff;
  color: #343434;
}
.smart-index-exhibit-banner .infobox .btns .link.highlight img {
  filter: none;
}
.smart-index-exhibit-banner .infobox .btns .link img {
  vertical-align: middle;
  max-width: 18px;
  max-height: 20px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}
.smart-index-exhibit-banner .infobox .btns .link:hover {
  background: #fff;
  color: #343434;
}
.smart-index-exhibit-banner .infobox .btns .link:hover img {
  filter: none;
}
@media screen and (max-width: 1500px) {
  .smart-index-exhibit-banner .infobox {
    gap: 2%;
  }
  .smart-index-exhibit-banner .infobox .item {
    flex: auto !important;
  }
  .smart-index-exhibit-banner .infobox .btns {
    min-width: 30%;
  }
}
@media screen and (max-width: 1366px) {
  .smart-index-exhibit-banner .infobox .btns {
    min-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .smart-index-exhibit-banner .infobox {
    flex-wrap: wrap;
    gap: 20px;
  }
  .smart-index-exhibit-banner .infobox .item {
    width: 100%;
  }
}
.smart-index-text-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9%;
  flex-direction: row-reverse;
}
.smart-index-text-image .imgbox {
  width: 48%;
  flex: none;
}
.smart-index-text-image .imgbox img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .smart-index-text-image {
    gap: 20px;
    flex-direction: column;
  }
  .smart-index-text-image .imgbox,
  .smart-index-text-image .txtbox {
    width: 100%;
  }
}
