@import 'media.css';
@import 'reset.css';
@import 'base.css';
/* header */
header .top-bar {
  height: 3.7rem;
  background-color: #191919;
}
header .top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .top-bar .shortcut {
  display: flex;
}
header .top-bar .shortcut .iconfont {
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  margin-right: 1.8rem;
}
header .top-bar .shortcut .separtor {
  margin-right: 2rem;
}
header .top-bar .search {
  display: flex;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19ffffff, endColorstr=#19ffffff);
}
header .top-bar .search input {
  color: #fff;
  font-size: 1.2rem;
  width: 13.6rem;
  height: 2.6rem;
  border: 0;
  padding: 0 1rem;
  background: none;
}
header .top-bar .search button {
  color: #fff;
  font-size: 1rem;
  width: 3.4rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.2rem;
  background-color: #C11920;
}
header .top-bar .language {
  display: flex;
  color: #fff;
  font-size: 1.4rem;
  margin-left: 3rem;
}
header .top-bar .language span {
  cursor: pointer;
}
header .top-bar .language .separtor {
  margin: 0 1rem;
}
header nav {
  position: relative;
  height: 9.3rem;
}
header nav .container {
  display: flex;
  align-items: center;
  height: 100%;
}
header nav .logo {
  color: #C11920;
  font-size: 2.7rem;
}
header nav .main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
header nav .main-nav > li {
  font-size: 1.6rem;
  padding: 0 1.5rem;
}
header nav .main-nav > li > a {
  color: #000;
  font-weight: bold;
  padding: 1.5rem 1rem;
}
header nav .main-nav > li.active > a {
  color: #C11920;
}
header nav .main-nav > li > ul {
  display: none;
}
header nav .main-nav > .active-line {
  position: absolute;
  bottom: 0;
  content: '';
  height: 0.4rem;
  background-color: #C11920;
  transition: all ease 0.3s;
  z-index: -1;
}
header nav .hot-line {
  color: #000;
  font-size: 2rem;
  margin-left: 24rem;
}
header nav .icon-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  margin-left: 2rem;
  transition: color ease 0.3s, background-color ease 0.3s;
}
header nav .icon-menu:hover {
  color: #266AA0;
  background-color: rgba(38, 106, 160, 0.1);
}
header nav .sub-nav {
  position: absolute;
  left: 0;
  bottom: -5rem;
  display: none;
  width: 100%;
  height: 5rem;
  background-color: rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000, endColorstr=#7f000000);
  z-index: 88;
}
header nav .sub-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    text-align: center;
    transform: translateX(-50%);
}
header nav .sub-nav ul > li {
  display: inline-block;
  line-height: 5rem;
  margin: 0 1rem;
}
header nav .sub-nav ul > li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  color: #d8d8d8\0;
  font-size: 1.2rem;
  line-height: 5rem;
  padding: 0 1rem;
}
header nav .sub-nav ul > li a:hover {
  color: #fff;
}
header nav .sub-nav ul > li.active a {
  color: #fff;
  font-weight: bold;
}
/* footer */
footer {
  height: 12rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
footer .links ul li {
  margin-right: 2rem;
}
footer .links ul li a:hover {
  text-decoration: underline;
}
footer .links .copyright {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
footer .shortcut .iconfont {
  cursor: pointer;
  font-size: 3.2rem;
}
footer .shortcut .iconfont:not(:last-child) {
  margin-right: 1.2rem;
}
footer .qr-code dl dt {
  margin-right: 1.2rem;
}
footer .qr-code dl dd {
  position: relative;
  width: 6.2rem;
  height: 6.2rem;
}
footer .qr-code dl dd img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  transition: width ease 0.3s, height ease 0.3s;
}
footer .qr-code dl dd img:hover {
  width: 25.6rem;
  height: 25.6rem;
}
/* sitemap */
#sitemap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 300;
}
#sitemap .sitemap-box {
  float: right;
  width: 36rem;
  height: 100%;
  padding: 3.6rem 0 0 3.6rem;
  background-color: #266AA0;
  transform: translateX(100%);
  transition: transform ease 0.3s;
}
#sitemap .sitemap-box.active {
  transform: translateX(0);
}
#sitemap .sitemap-box > .icon-close {
  cursor: pointer;
  color: #fff;
  font-size: 2.8rem;
}
#sitemap .sitemap-box > h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#sitemap .sitemap-box > ul {
  display: flex;
  flex-wrap: wrap;
}
#sitemap .sitemap-box > ul > li {
  width: 33.33%;
  margin-bottom: 6rem;
}
#sitemap .sitemap-box > ul > li > a {
  color: #fff;
  font-size: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #fff;
}
#sitemap .sitemap-box > ul > li > ul {
  margin-top: 2rem;
}
#sitemap .sitemap-box > ul > li > ul > li {
  margin-bottom: 1.2rem;
}
#sitemap .sitemap-box > ul > li > ul > li > a {
  color: #fff;
  font-size: 1.3rem;
  padding: 0.6rem 0;
  opacity: 0.5;
  transition: opacity ease 0.3s;
}
#sitemap .sitemap-box > ul > li > ul > li > a:hover {
  opacity: 1;
}
/* home */
.topic {
  padding: 8rem 0 7rem 0;
  background-color: #f2f2f2;
}
.topic .container {
  display: flex;
  justify-content: space-between;
}
.topic a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topic a:not(:last-child) {
  margin-right: 1.6rem;
}
.topic a img {
  width: 100%;
}
.topic a label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  font-size: 2rem;
  font-weight: normal;
  width: 22rem;
  height: 8rem;
  margin-top: -4rem;
  background-color: #fff;
  transition: color ease 0.3s, background-color ease 0.3s;
}
.topic a:hover label {
  color: #fff;
  background-color: #C11920;
}
.latest-news {
  padding: 6rem 0 7rem 0;
}
.latest-news .container {
  display: flex;
  justify-content: space-between;
}
.latest-news dl {
  display: flex;
}
.latest-news dl dt {
  padding-right: 3.6rem;
}
.latest-news dl dt:after {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 1px;
  height: 7.2rem;
  background-color: #eee;
}
.latest-news dl dd {
  padding: 0 15rem 0 3.6rem;
}
.latest-news dl dd .news p {
  font-size: 1.2rem;
}
.latest-news dl dd .more span {
  font-size: 1.6rem;
}
.latest-news dl dd .more .icon-more {
  font-size: 1.2rem;
}
.latest-news dl dd .indicator {
  margin-top: 3rem;
}
.latest-news dl dd .indicator li {
  width: 1.4rem;
  height: 1.2rem;
  padding: 0.5rem 0;
  margin-right: 1rem;
}
.latest-news dl dd .indicator li:before {
  height: 0.2rem;
}
/* inner page */
.banner img {
  width: 100%;
}
.mainbody .page-title {
  font-size: 2.6rem;
}
.mainbody .page-title label {
  letter-spacing: 0.4rem;
  text-indent: 0.4rem;
  padding: 3rem 13rem 4rem 13rem;
}
.mainbody .news-title {
  font-size: 3.4rem;
  margin: 3rem 0;
}
.mainbody .news-title label {
  font-weight: normal;
  padding: 3rem 0 2rem 0;
}
.mainbody .news-title label:after {
  width: 8.2rem;
  height: 0.4rem;
}
.mainbody .sub-title {
  font-size: 1.8rem;
}
.mainbody .page-content {
  padding: 3rem 0;
}
.mainbody .page-content.tourism,
.mainbody .page-content.series,
.mainbody .page-content.intelligence {
  padding-top: 0;
}
.mainbody .page-content.manage,
.mainbody .page-content.culture {
  padding: 6rem 0 9rem;
}
.mainbody .news-detail .news-content p {
  font-size: 1.8rem;
  line-height: 3.6;
}
.mainbody a[name] {
  display: block;
  padding-top: 5.2rem;
  margin-top: -5.2rem;
}
#sub-nav {
  height: 6rem;
}
#sub-nav ul li {
  margin-right: 5rem;
}
#sub-nav ul li:hover a {
  color: #C11920;
}
#sub-nav.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  z-index: 100;
}
/* introduction */
.intro .intro-detail p {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
.intro .intro-detail .book {
  margin-left: 4rem;
}
.intro .intro-detail .collect {
  padding: 3rem 0;
}
.intro .intro-detail .collect dl dt {
  font-size: 4rem;
  line-height: 6rem;
}
.intro .intro-detail .collect dl dd {
  font-size: 1.6rem;
}
.course .course-detail .course-panel {
  width: 88rem;
  height: 15rem;
}
.course .course-detail .course-panel dt {
  flex-shrink: 0;
  width: 22rem;
}
.course .course-detail .course-panel dt a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-weight: normal;
  height: 100%;
  background-color: #266AA0;
}
.course .course-detail .course-panel dt a span {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
.course .course-detail .course-panel dt a .icon-more {
  font-size: 1.6rem;
}
.course .course-detail .course-panel dd {
  padding: 0 2rem 0 6rem;
}
.course .course-detail .course-panel dd strong {
  font-size: 4rem;
  line-height: 6rem;
}
.course .course-detail .course-panel dd p {
  font-size: 1.6rem;
}
.course .course-detail .timeline {
  margin-top: 5rem;
}
.course .course-detail .timeline:before {
  left: 6.5rem;
  right: 6.5rem;
  height: 0.3rem;
}
.course .course-detail .timeline .points {
  width: 107.2rem;
}
.course .course-detail .timeline .points ul li {
  width: 13.4rem;
}
.course .course-detail .timeline .points-en {
    width: 107.2rem;
}
.course .course-detail .timeline .points-en ul li {
    width: 13.4rem;
}
.vision .vision-detail {
  height: 44rem;
  padding: 6rem 55rem 6rem 6rem;
}
.vision .vision-detail .vision-title {
  font-size: 3rem;
  line-height: 4.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.vision .vision-detail p {
  line-height: 3.6rem;
}
.footprints {
  margin-bottom: 5rem;
}
.footprints .footprints-detail p {
  font-size: 1.6rem;
  text-align: left;
  line-height: 3.6rem;
  margin-top: 5rem;
}
.footprints .footprints-detail-left p {
  font-size: 1.6rem;
  text-align: left;
  line-height: 3.6rem;
  margin-top: 5rem;
}
.beliefs .beliefs-detail dl,
.purpose .purpose-detail dl {
  display: flex;
  height: 29rem;
  margin-bottom: 0;
  background-color: #fbfbfb;
}
.beliefs .beliefs-detail dl dt,
.purpose .purpose-detail dl dt {
  flex: 1;
  padding: 6rem;
  background: url(/imgs/intro_title_bg.png) left top / 100% 100% no-repeat;
}
.beliefs .beliefs-detail dl dt label,
.purpose .purpose-detail dl dt label {
  color: #fff;
  font-size: 3rem;
  font-weight: normal;
}
.beliefs .beliefs-detail dl dd,
.purpose .purpose-detail dl dd {
  flex: 1.5;
  padding: 4rem 6rem;
}
.beliefs .beliefs-detail dl dd p,
.purpose .purpose-detail dl dd p {
    font-size: 1.4rem;
    line-height: 3.6rem;
    margin: 0;
}
.projects h5 {
  padding: 0 2rem;
}
.projects h5 label {
  height: 6rem;
  line-height: 6rem;
}
.projects .tab-group .tab-item-list {
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}
.projects .tab-group .tab-item-list li {
  cursor: pointer;
  font-size: 1.8rem;
  width: 8rem;
  height: 3.2rem;
}
.projects .tab-group .tab-item-list li:hover {
  color: #C11920;
}
.projects .tab-group .tab-content-list .tab-content ol li {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 6rem;
  width: 25%;
}
/* culture */
.culture-wrapper {
  background: url(/imgs/brand_texture.png) right top no-repeat;
}
.culture-wrapper dl {
  display: flex;
}
.culture-wrapper dl.brand-badge,
.culture-wrapper dl.brand-flag {
  justify-content: space-between;
  align-items: center;
}
.brand .brand-detail dl.brand-badge dt,
.brand .brand-detail dl.brand-flag dt {
  margin-right: 20rem;
}
.brand .brand-detail dl.brand-badge dd,
.brand .brand-detail dl.brand-flag dd {
  width: 53rem;
}
.brand .brand-detail dl.brand-song {
  flex-wrap: wrap;
}
.brand .brand-detail dl.brand-song dt img {
  width: 100%;
}
.brand .brand-detail h3 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.brand .brand-detail .quot {
  margin-bottom: 4rem;
}
.brand .brand-detail p {
  font-size: 1.6rem;
  line-height: 4rem;
}
.brand .brand-detail .media {
  margin-bottom: 10rem;
}
.brand .brand-detail .media video {
  width: 80%;
}
.brand .brand-detail .media.audio-brand-song {
  margin-bottom: 0;
}
.brand .brand-detail .media.audio-brand-song audio {
  width: 100%;
}
.manage .manage-detail {
  position: relative;
  height: 54.6rem;
  background-image: url(/imgs/manage_bg1.png);
  background-position: right top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  transition: background-image ease 0.8s;
}
.manage .manage-detail .manage-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 84rem;
  height: 46rem;
  background-color: #266AA0;
}
.manage .manage-detail .manage-panel .swiper-slide {
  padding: 5rem 7rem;
}
.manage .manage-detail .manage-panel .swiper-slide h2 {
  margin-top: 0;
  margin-bottom: 3rem;
}
.manage .manage-detail .manage-panel .swiper-slide h2:after {
  display: inline-block;
  content: '';
  vertical-align: middle;
  width: 8.8rem;
  height: 1px;
  margin-left: 2.4rem;
  background-color: #fff;
}
.manage .manage-detail .manage-panel .swiper-slide p {
  font-size: 1.8rem;
  line-height: 4rem;
  letter-spacing: 0.2rem;
}
.manage .manage-detail .manage-panel .swiper-slide p label {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 1.5rem 0 0.5rem 0;
}
.manage .manage-detail .manage-panel .manage-swiper-pagination {
  position: absolute;
  text-align: right;
  padding-right: 5rem;
  margin-bottom: 2rem;
}
.manage .manage-detail .manage-panel .swiper-pagination {
  text-align: right;
  padding-right: 5rem;
  margin-bottom: 2rem;
}
.manage .manage-detail .manage-panel .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 1rem;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 1;
}
.manage .manage-detail .manage-panel .swiper-pagination-bullet-active {
  background-color: #fff;
}
.culture .culture-detail {
  height: 33.4rem;
}
.culture .culture-detail .culture-panel {
  right: 3.6rem;
  bottom: 3.6rem;
  width: 30.5rem;
  height: 32rem;
  padding: 4rem 0 0 6rem;
}
.culture .culture-detail .culture-panel h2 {
  font-size: 2rem;
}
.culture .culture-detail .culture-panel p {
  font-size: 1.6rem;
  line-height: 4rem;
  margin-bottom: 3rem;
}
.culture .culture-detail .culture-panel-en {
    right: 3.6rem;
    bottom: 3.6rem;
    width: 42rem;
    height: 32rem;
    padding: 4rem 0 0 6rem;
}
.culture .culture-detail .culture-panel-en h2 {
    font-size: 2rem;
}

.culture .culture-detail .culture-panel-en p {
    font-size: 1.6rem;
    line-height: 4rem;
    margin-bottom: 3rem;
}
.politics .politics-detail .section-title {
  font-size: 2.6rem;
}
.politics .politics-detail .section-title:before,
.politics .politics-detail .section-title:after {
  margin: 0 9rem;
}
.politics .politics-detail .politics-party-branch dl,
.politics .politics-detail .politics-labour-union dl {
  display: flex;
  margin: 8rem 0;
}
.politics .politics-detail .politics-party-branch dl dd,
.politics .politics-detail .politics-labour-union dl dd {
  flex-shrink: 0;
  color: #666;
  font-size: 1.6rem;
  line-height: 3.6rem;
  width: 44rem;
}
.politics .politics-detail .politics-party-branch dl dt,
.politics .politics-detail .politics-labour-union dl dt {
  position: relative;
  padding: 5rem 6rem;
}
.politics .politics-detail .politics-party-branch dl dt:before,
.politics .politics-detail .politics-labour-union dl dt:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: '';
  width: 50%;
  background-color: #266AA0;
}
.politics .politics-detail .politics-party-branch dl dt .img-wrapper,
.politics .politics-detail .politics-labour-union dl dt .img-wrapper {
  position: relative;
  z-index: 1;
  display: block;
  width: 64rem;
  height: 44.6rem;
}
.politics .politics-detail .politics-party-branch dl dt img,
.politics .politics-detail .politics-labour-union dl dt img {
  width: 100%;
  height: 100%;
}
.politics .politics-detail .politics-party-branch dl dd > ul {
  position: relative;
  width: 100%;
  height: 100%;
}
.politics .politics-detail .politics-party-branch dl dd > ul > li {
  position: absolute;
  top: 50%;
  left: 0;
  display: none;
  background-color: #fff;
  transform: translateY(-50%);
}
.politics .politics-detail .politics-party-branch dl dt:before {
  right: 0;
}
.politics .politics-detail .politics-party-branch dl dt .politics-swiper-pagination {
  position: relative;
  bottom: 5rem;
  text-align: left;
  padding-left: 3rem;
  z-index: 2;
}
.politics .politics-detail .politics-party-branch dl dt .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 0.9rem;
  opacity: 1;
}
.politics .politics-detail .politics-party-branch dl dt .swiper-pagination-bullet-active {
  background-color: #C11920;
}
.politics .politics-detail .politics-labour-union dl dt:before {
  left: 0;
}
.politics .politics-detail .politics-labour-union dl dd {
  display: flex;
  align-items: center;
}
.politics .politics-detail .politics-citizen ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6rem;
}
.politics .politics-detail .politics-citizen ul li {
  flex-shrink: 0;
  width: 56rem;
  margin-bottom: 7rem;
}
.politics .politics-detail .politics-citizen ul li dl {
  display: flex;
  width: 56rem;
  margin: 0;
}
.politics .politics-detail .politics-citizen ul li dl dt {
  margin-right: 1.4rem;
}
.politics .politics-detail .politics-citizen ul li dl dt img {
  width: 22.8rem;
  height: 17rem;
}
.politics .politics-detail .politics-citizen ul li dl dd h3 {
  font-size: 2.4rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.politics .politics-detail .politics-citizen ul li dl dd p {
  color: #666;
  font-size: 1.6rem;
}
.politics .politics-detail-article .article-text {
  color: #666;
  font-size: 1.8rem;
  text-indent: 2em;
  line-height: 4.8rem;
  margin-bottom: 3rem;
}
.politics .politics-detail-article .article-img {
  text-align: center;
  margin-bottom: 3rem;
}
.politics .politics-detail-article .article-img img {
  max-width: 80%;
  min-width: 60%;
}
.books .books-detail {
  padding: 3rem 0 6rem 0;
}
.books .books-detail a {
  padding: 0.7rem 0.7rem 0 0.7rem;
  margin-bottom: 6rem;
}
.books .books-detail a img {
  width: 19rem;
}
.mailbox .mailbox-detail {
  height: 60rem;
  background-size: 100% 100%;
}
.mailbox .mailbox-detail .pigeon-img {
  position: absolute;
  top: 5rem;
  left: 8rem;
  width: 20rem;
  transform: scaleX(-1);
}
.mailbox .mailbox-detail .mailbox-img {
  position: absolute;
  right: 10rem;
  bottom: 0;
  width: 35rem;
}
.mailbox .mailbox-detail .slogan {
  position: absolute;
  top: 30rem;
  left: 8rem;
}
.mailbox .mailbox-detail .slogan h3 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
.mailbox .mailbox-detail .slogan p {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.mailbox .mailbox-detail .mailbox-info {
  position: absolute;
  right: 10rem;
  top: 5rem;
}
.mailbox .mailbox-detail .mailbox-info img {
  width: 16.4rem;
  margin-bottom: 2rem;
}
.mailbox .mailbox-detail .mailbox-info p {
  font-size: 2rem;
}
.history-wrapper .mainbody {
  overflow-x: hidden;
}
.history-wrapper .history .history-detail > dl {
  display: flex;
}
.history-wrapper .history .history-detail > dl > dt {
  flex-shrink: 0;
  width: 42.2rem;
}
.history-wrapper .history .history-detail > dl > dt p {
  margin: 0;
  padding: 4rem 1.5rem;
  background: #fff;
  box-shadow: 0 0 6.2rem 0 rgba(0, 0, 0, 0.13);
}
.history-wrapper .history .history-detail > dl > dt p img {
  width: 100%;
  border: 1px dashed #000;
}
.history-wrapper .history .history-detail > dl > dd {
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.history-wrapper .history .timeline .points {
  position: relative;
  display: flex;
}
.history-wrapper .history .timeline .points:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  width: 100%;
  height: 0.2rem;
  background-color: #666;
  transform: translateY(-50%);
}
.history-wrapper .history .timeline .points > li {
  position: relative;
}
.history-wrapper .history .timeline .points > li > dl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 36rem;
  height: 16rem;
  margin: 0;
}
.history-wrapper .history .timeline .points > li > dl > dt {
  font-size: 4rem;
  font-weight: bold;
}
.history-wrapper .history .timeline .points > li > dl > dd {
  padding: 0 7.2rem;
}
.history-wrapper .history .timeline .points > li:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  font-size: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.5rem solid #fff;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.15);
  background-color: #000;
  transform: translate(-50%, -50%);
}
.history-wrapper .history .timeline .points > li.active > dl > dt {
  color: #266AA0;
}
.history-wrapper .history .timeline .points > li.active:before {
  background-color: #266AA0;
}

.history-wrapper .history .timeline .points-en {
    position: relative;
    display: flex;
}
.history-wrapper .history .timeline .points-en:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 100%;
    height: 0.2rem;
    background-color: #666;
    transform: translateY(-50%);
}
.history-wrapper .history .timeline .points-en > li {
    position: relative;
}
.history-wrapper .history .timeline .points-en > li > dl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 36rem;
    height: 20rem;
    margin: 0;
}
.history-wrapper .history .timeline .points-en > li > dl > dt {
    font-size: 4rem;
    font-weight: bold;
}
.history-wrapper .history .timeline .points-en > li > dl > dd {
    padding: 0 2rem 0 2rem;
}
.history-wrapper .history .timeline .points-en > li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    font-size: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 0.5rem solid #fff;
    box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.15);
    background-color: #000;
    transform: translate(-50%, -50%);
}
.history-wrapper .history .timeline .points-en > li.active > dl > dt {
    color: #266AA0;
}
.history-wrapper .history .timeline .points-en > li.active:before {
    background-color: #266AA0;
}

.history-wrapper .history .step {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  height: 3.4rem;
}
.history-wrapper .history .step .ctrl {
  user-select: none;
  cursor: pointer;
  position: relative;
  color: #eee;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.68rem;
  line-height: 3.4rem;
  width: 24rem;
  padding-left: 4.8rem;
  background-color: #266AA0;
}
.history-wrapper .history .step .ctrl.disabled {
  background-color: #c5c5c5;
}
.history-wrapper .history .step .prev {
  border-right: 1px solid #fff;
}
.history-wrapper .history .step .next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 2.4rem;
  height: 1px;
  margin-left: 4rem;
  background-color: #eee;
  transform: translate(-50%, -50%);
}
.history-wrapper .history .step .next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 5rem;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #eee;
  transform: translate(-50%, -50%) rotate(45deg);
}
/* responsibility */
.responsibility .headline {
  display: flex;
}
.responsibility .headline dt img {
  width: 48.7rem;
}
.responsibility .headline dd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 4rem;
}
.responsibility .headline dd h3 {
  font-size: 2.6rem;
}
.responsibility .headline dd p {
  font-size: 1.6rem;
}
.responsibility .headline dd .detail {
  justify-content: space-between;
}
.responsibility .headline dd .detail a {
  font-size: 1.6rem;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 2rem;
}
.responsibility .news-list {
  border-top: 1px solid #e4e4e4;
}
.responsibility .news-list li a {
  padding: 2.5rem 3rem;
}
.responsibility .news-list li a:hover {
  background-color: #266AA0;
}
.responsibility .news-list li a:hover strong,
.responsibility .news-list li a:hover span {
  color: #fff;
}
.responsibility .news-list li a .date {
  border-color: #fff;
}
.responsibility .news-list li a .title strong {
  font-size: 1.8rem;
}
.responsibility .news-list li a .title span {
  font-size: 1.4rem;
}
/* news */
.news-center .news-list li {
  margin-bottom: 4rem;
}
.news-center .news-list li dl {
  height: 15.4rem;
  background-color: #fbfbfb;
}
.news-center .news-list li dl dt {
  width: 22rem;
}
.news-center .news-list li dl dt label {
  font-size: 6rem;
}
.news-center .news-list li dl dt span {
  font-size: 1.8rem;
}
.news-center .news-list li dl dd {
  padding: 0 3rem;
}
.news-center .news-list li dl dd h3 {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
}
.news-center .news-list li dl dd h5 label {
  font-size: 1.4rem;
}
.news-center .news-list li dl dd h5 span {
  font-size: 1.4rem;
}
.news-center .news-list li dl dd p {
  font-size: 1.4rem;
}
.news-detail .back {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.news-detail .back .btn {
  font-size: 1.6rem;
  padding: 0.9rem 5rem;
  background-color: #C11920;
}
/* product */
.tourism .tourism-detail > p {
  font-size: 1.6rem;
  line-height: 4rem;
  margin-bottom: 4rem;
}
.tourism .tourism-detail dl {
  padding: 5.4rem 0;
}
.tourism .tourism-detail dl dt img {
  width: 68rem;
  height: 44.2rem;
}
.tourism .tourism-detail dl dd {
  top: 50%;
  right: 0;
  width: 60rem;
  height: 48.8rem;
  padding: 9rem 4.5rem 3rem 4.5rem;
  transform: translateY(-50%);
}
.tourism .tourism-detail dl dd h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.tourism .tourism-detail dl dd h5 {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.tourism .tourism-detail dl dd p {
  font-size: 1.8rem;
  line-height: 3rem;
}
.health .health-detail > p {
  font-size: 1.6rem;
  line-height: 4rem;
  margin-bottom: 4rem;
}
.health .health-detail > p > img {
  width: 100%;
}
.series .series-detail p {
  color: #999;
  font-size: 1.6rem;
  line-height: 4rem;
}
.series .series-detail .poster {
  display: flex;
  justify-content: space-between;
}
.series .series-detail .poster .map {
  flex-grow: 1;
  margin-right: 6rem;
}
.series .series-detail .poster .map img {
  width: 100%;
  margin: 4rem 0;
}
.series .series-detail .poster .slider {
  flex-shrink: 0;
  position: relative;
  width: 54rem;
}
.series .series-detail .poster .slider .imgs {
  position: relative;
  width: 46rem;
  height: 59.4rem;
}
.series .series-detail .poster .slider .imgs li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.series .series-detail .poster .slider .imgs li img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}
.series .series-detail .poster .slider .tabs {
  position: absolute;
  top: 0;
  right: 0;
  width: 18rem;
  background-color: #f6f6f6;
}
.series .series-detail .poster .slider .tabs li {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #266AA0;
  height: 8.2rem;
  transition: color ease 0.5s, background-color ease 0.5s;
}
.series .series-detail .poster .slider .tabs li h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.4rem 0;
}
.series .series-detail .poster .slider .tabs li h5 {
  font-size: 1.4rem;
  margin: 0.4rem 0;
}
.series .series-detail .poster .slider .tabs li.active {
  color: #C2E1FA;
  background-color: #266AA0;
}
.product-info-wrapper {
  position: relative;
  overflow: hidden;
  height: 52rem;
}
.product-info-wrapper > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  filter: blur(1rem);
}
.product-info-wrapper .container {
  display: flex;
  padding: 3rem 0;
}
.product-info-wrapper .container > img {
  position: relative;
  flex-shrink: 0;
  width: 69.2rem;
}
.product-info-wrapper .container .product-info {
  position: relative;
  background-color: #fff;
}
.product-info-wrapper .container .product-info .product-info-header {
  color: #fff;
  padding: 2rem 3rem;
  background-color: #266AA0;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title h2 {
  font-size: 3rem;
  width: 40rem;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title label {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 1rem;
  padding: 0 0.5rem;
  border-radius: 0.4rem;
  border: 1px solid #fff;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title dl {
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin: 0 0 0 1rem;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title dl dt {
  font-size: 2.4rem;
  font-weight: normal;
  margin-right: 0.5rem;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-title dl dd {
  font-size: 1.6rem;
  letter-spacing: 0.5rem;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-desc {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-tags {
  display: flex;
}
.product-info-wrapper .container .product-info .product-info-header .product-info-tags li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  width: 5.4rem;
  height: 2.6rem;
  margin-right: 1rem;
  border-radius: 0.4rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.product-info-wrapper .container .product-info .product-info-body {
  padding: 0 3rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-item-list {
  display: flex;
  height: 5rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-item-list .tab-item {
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 5rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-item-list .tab-item:hover {
  color: #266AA0;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-item-list .tab-item:not(:last-child) {
  margin-right: 6rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-item-list .tab-item.active {
  color: #266AA0;
  border-bottom: 0.3rem solid #266AA0;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content {
  display: none;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content > p {
  color: #999;
  font-size: 1.2rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-price label {
  font-size: 1.4rem;
  font-weight: normal;
  margin-right: 3rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-price strong {
  color: #C11920;
  font-size: 3rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-price span {
  font-size: 1.4rem;
  margin: 0 1rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-props {
  display: flex;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-props li {
  position: relative;
  font-size: 1.4rem;
  width: 33.33%;
  margin-right: 3rem;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-props li label {
  font-weight: normal;
  margin: 0;
}
.product-info-wrapper .container .product-info .product-info-body.tab-group .tab-content-list .tab-content .product-props li:not(:last-child):after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 1rem;
  background-color: #eee;
  transform: translateY(-50%);
}
.product-info-wrapper .container .product-info .product-info-body .product-sale {
  padding: 1.2rem 0;
}
.product-info-wrapper .container .product-info .product-info-body .product-sale li {
  font-size: 1.4rem;
}
.product-info-wrapper .container .product-info .product-info-body .product-sale li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.product-info-wrapper .container .product-info .product-info-body .product-sale li label {
  color: #999;
  font-weight: normal;
  width: 9rem;
  margin: 0;
}
.product-info-wrapper .container .product-info .product-info-footer {
  text-align: center;
}
.product-info-wrapper .container .product-info .product-info-footer button {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
  width: 28rem;
  height: 5rem;
  border: none;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, rgba(38, 106, 160, 0.5) 0%, #266aa0 100%);
}
.product-detail-wrapper {
  padding: 3rem 0;
  background-color: #f5f5f5;
}
.product-detail-wrapper .swiper-small {
  padding: 4rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.product-detail-wrapper .swiper-small .swiper-small-header {
  display: flex;
  align-items: center;
  padding: 0 5rem;
  margin-bottom: 3rem;
}
.product-detail-wrapper .swiper-small .swiper-small-header h2 {
  flex-grow: 1;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
}
.product-detail-wrapper .swiper-small .swiper-small-header .all {
  color: #999;
}
.product-detail-wrapper .swiper-small .swiper-small-header .all:hover {
  color: #266AA0;
}
.product-detail-wrapper .swiper-small .swiper-small-body {
  position: relative;
  padding: 0 5rem;
}
.product-detail-wrapper .swiper-small .swiper-slide {
  position: relative;
  width: 23.8rem;
  height: 23.8rem;
  overflow: hidden;
}
.product-detail-wrapper .swiper-small .swiper-slide img {
  position: relative;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.product-detail-wrapper .swiper-small .swiper-button-next,
.product-detail-wrapper .swiper-small .swiper-button-prev {
  color: #266AA0;
}
.product-detail-wrapper .product-types .swiper-slide {
  height: auto;
}
.product-detail-wrapper .product-types .swiper-slide .type-img {
  position: relative;
  width: 23.8rem;
  height: 23.8rem;
  padding: 1rem;
  background-color: #f0ebe4;
}
.product-detail-wrapper .product-types .swiper-slide .type-img img {
  position: relative;
  top: 50%;
  left: 50%;
  min-width: auto;
  min-height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.product-detail-wrapper .product-types .type-title {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-wrapper .product-types .type-title label {
  font-size: 1.6rem;
  margin: 0;
}
.product-detail-wrapper .product-types .type-title span {
  color: #266AA0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 0 0.4rem;
  margin-left: 0.5rem;
  border-radius: 0.2rem;
  background-color: rgba(38, 106, 160, 0.2);
}
.product-detail-wrapper .product-types .type-title span.disabled {
  color: #666;
  background-color: rgba(0, 0, 0, 0.1);
}
.product-detail-wrapper .product-types .type-info p {
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.product-detail-wrapper .product-types .type-info .type-info-price {
  color: #C11920;
  font-size: 1.4rem;
}
.product-detail-wrapper .product-types .type-info .type-info-price strong {
  font-size: 1.8rem;
}
#swiper-preview .swiper-container {
  width: 90rem;
  height: 70rem;
  padding: 5rem;
  background-color: #eee;
}
.intelligence .intelligence-detail p {
  color: #666;
  font-size: 1.6rem;
  line-height: 4rem;
  text-align: center;
}
.intelligence .intelligence-detail p strong {
  color: #C11920;
  font-weight: normal;
}
/* service */
.service .service-box {
  width: 120rem;
  height: 55.4rem;
  margin-top: -3.8rem;
  background: url(/imgs/service.png) center center / 100%;
}
.service .service-box-en {
    width: 120rem;
    height: 55.4rem;
    margin-top: -3.8rem;
    background: url(/imgs/service_en.png) center center / 100%;
}
/* cooperation */
.cooperation .cooperation-detail h3 {
  font-size: 2.2rem;
  margin-top: 4rem;
}
.cooperation .cooperation-detail p {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
.cooperation .cooperation-detail .remark {
  display: flex;
  align-items: center;
}
.cooperation .cooperation-detail .remark dl {
  flex-shrink: 0;
  justify-content: center;
  width: 33.33%;
  height: 12rem;
}
.cooperation .cooperation-detail .remark .separtor:after {
  height: 5.6rem;
}
.cooperation .cooperation-detail.partners-detail p {
  text-indent: 0;
}
.cooperation .cooperation-detail.partners-detail img {
  max-width: 100%;
}
.cooperation .tab-group .tab-item-list {
  justify-content: space-between;
}
.cooperation .tab-group .tab-item-list .tab-item {
  cursor: pointer;
  width: 37.4rem;
  height: 23rem;
  box-shadow: 0 0 1.4rem 0 rgba(0, 0, 0, 0.13);
  background-color: #fff;
}
.cooperation .tab-group .tab-item-list .tab-item i {
  width: 6.4rem;
  height: 6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon1 {
  background-position: 0 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon2 {
  background-position: -6.4rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon3 {
  background-position: -12.8rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon4 {
  background-position: -19.2rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon5 {
  background-position: -25.6rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon6 {
  background-position: -32rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item i.icon7 {
  background-position: -38.4rem 0;
}
.cooperation .tab-group .tab-item-list .tab-item label {
  font-size: 1.8rem;
  margin-top: 2rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active {
  background-color: #266AA0;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon1 {
  background-position: 0 -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon2 {
  background-position: -6.4rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon3 {
  background-position: -12.8rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon4 {
  background-position: -19.2rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon5 {
  background-position: -25.6rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon6 {
  background-position: -32rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active i.icon7 {
  background-position: -38.4rem -6.4rem;
}
.cooperation .tab-group .tab-item-list .tab-item.active label {
  color: #fff;
}
.cooperation .tab-group .tab-content-list .tab-content {
  display: none;
}
/* statement */
.statement .statement-detail h3 {
  font-size: 2.2rem;
  margin-top: 4rem;
}
.statement .statement-detail p {
  font-size: 1.6rem;
  line-height: 3.6rem;
}
.statement .tab-group .tab-item-list {
  justify-content: space-between;
  margin-bottom: 2rem;
}
.statement .tab-group .tab-item-list .tab-item {
  cursor: pointer;
  width: 20%;
  box-shadow: 0 0 1.4rem 0 rgba(0, 0, 0, 0.13);
  background-color: #fff;
}
.statement .tab-group .tab-item-list .tab-item label {
  cursor: pointer;
  font-size: 1.8rem;
  margin: 2rem;
}
.statement .tab-group .tab-item-list .tab-item.active {
  background-color: #266AA0;
}
.statement .tab-group .tab-item-list .tab-item.active label {
  color: #fff;
}
/* join */
.join-wrapper .join {
  position: relative;
}
.join-wrapper .join .join-search {
  position: absolute;
  top: -2.9rem;
  left: 50%;
  display: flex;
  width: 80.4rem;
  height: 5.8rem;
  transform: translateX(-50%);
  box-shadow: 0 0 1.4rem 0 rgba(0, 0, 0, 0.13);
  border-radius: 2.9rem;
  background-color: #fff;
}
.join-wrapper .join .join-search .icon-search {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 2rem;
  width: 5.8rem;
}
.join-wrapper .join .join-search .input-text {
  flex-grow: 1;
  display: flex;
}
.join-wrapper .join .join-search .input-text input {
  width: 100%;
  font-size: 1.8rem;
  padding: 0 1rem;
  border: none;
}
.join-wrapper .join .join-search button {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  width: 15rem;
  border: none;
  border-radius: 0 2.9rem 2.9rem 0;
  background-color: #C11920;
}
.join-wrapper .join .join-list {
  display: flex;
  padding: 5rem 0;
}
.join-wrapper .join .join-list .filters {
  flex-shrink: 0;
  width: 32rem;
  padding-right: 5rem;
  border-right: 1px solid #e4e4e4;
}
.join-wrapper .join .join-list .filters .filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  height: 4.5rem;
  border-bottom: 1px solid #e4e4e4;
}
.join-wrapper .join .join-list .filters .filters-header label {
  color: #666;
  font-weight: normal;
}
.join-wrapper .join .join-list .filters .filters-header a {
  color: #C11920;
}
.join-wrapper .join .join-list .filters h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 7.2rem;
  height: 7.2rem;
}
.join-wrapper .join .join-list .filters .filters-body > li {
  position: relative;
  padding-left: 1.5rem;
}
.join-wrapper .join .join-list .filters .filters-body > li:before {
  position: absolute;
  top: 2rem;
  left: 0;
  content: '';
  width: 0;
  height: 0;
  border-width: 0.3rem 0 0.3rem 0.4rem;
  border-style: solid;
  border-color: transparent transparent transparent #999;
}
.join-wrapper .join .join-list .filters .filters-body > li > ul {
  padding-left: 3rem;
}
.join-wrapper .join .join-list .filters .filters-body > li > ul > li {
  margin-bottom: 0;
}
.join-wrapper .join .join-list .results {
  flex-grow: 2;
  padding-left: 5rem;
}
.join-wrapper .join .join-list .results h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.join-wrapper .join .join-list .results li {
  cursor: pointer;
  font-size: 2rem;
  padding: 2.4rem;
  transition: all ease 0.3s;
}
.join-wrapper .join .join-list .results li:hover {
  background: #fff;
  box-shadow: 0 0 1.4rem 0 rgba(0, 0, 0, 0.13);
}
.join-wrapper .join .join-list .results li h3 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
}
.join-wrapper .join .join-list .results li h4 {
  color: #666;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.join-wrapper .join .join-list .results li .separtor {
  margin: 0 1.2rem;
}
.join-wrapper .join .join-list .results li .separtor:after {
  background-color: #e4e4e4;
}
.join-wrapper .join .join-list .results li p {
  color: #999;
  font-size: 1.4rem;
}
.join-wrapper .join .join-content {
  padding: 8rem 20rem;
}
.join-wrapper .join .join-content .join-title h3 {
  font-size: 3rem;
}
.join-wrapper .join .join-content h5 {
  font-size: 2.2rem;
}
.join-apply {
  color: #fff;
  font-size: 1.4rem;
  width: 12rem;
  height: 4rem;
  border-radius: 2rem;
  border: none;
  background-color: #C11920;
}
<!--ºÄÊ±1764132722.9853Ãë-->