@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, button, textarea, select, form {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

/* 普通文章样式 */
.article-content {
  overflow: hidden;
}
.article-content strong, .article-content b {
  font-weight: bold;
  font-size: inherit;
}
.article-content i, .article-content em {
  font-style: italic;
}
.article-content ol, .article-content ul, .article-content li {
  list-style: inherit;
  font-size: initial;
}
.article-content li {
  line-height: 1.8;
}
.article-content table {
  border-collapse: collapse;
  width: auto;
  word-break: break-all;
  max-width: 100%;
  table-layout: fixed;
}
.article-content table td, .article-content table th {
  word-break: break-all;
  border: 1px solid #f2f2f2;
  width: auto;
  padding: 5px 10px;
  vertical-align: middle;
}
.article-content iframe {
  max-width: 100%;
}
.article-content video, .article-content audio {
  max-width: 100%;
  height: auto;
}
.article-content p, .article-content span, .article-content div {
  word-break: break-word;
  text-align: justify;
}
.article-content p, .article-content pre {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content h1 {
  font-size: 20px;
}
.article-content h2 {
  font-size: 18px;
}
.article-content h3 {
  font-size: 16px;
}
.article-content h4, .article-content h5, .article-content h6 {
  font-size: 14px;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  padding: 15px 0;
  font-weight: bold;
}
.article-content a {
  color: #0b76ac;
  text-decoration: underline;
}
.article-content ol, .article-content ul {
  padding: 0 20px;
}
.article-content blockquote {
  padding-left: 10px;
  border-left: 3px solid #dbdbdb;
  font-size: 14px;
}
.article-content blockquote p {
  font-size: 14px;
}

html {
  min-height: 100%;
  height: 100%;
}
html body {
  line-height: 1.2;
  min-height: 100%;
  font: 12px "Microsoft YaHei", "Arial";
  color: #333;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
html body .page, html body main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
html body ol, html body ul, html body li {
  margin-bottom: 0;
  list-style: none;
}
html body a {
  text-decoration: none;
  cursor: pointer;
}
html body blockquote, html body q {
  quotes: none;
}
html body blockquote:before, html body blockquote:after,
html body q:before, html body q:after {
  content: none;
}
html body table {
  border-collapse: collapse;
  border-spacing: 0;
}
html body p {
  line-height: 1.5;
}
html body img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

input, button, textarea, select {
  border: 0;
}
input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
}

a {
  color: unset;
}

button {
  border: 0;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-cut {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-cut-2 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-cut-3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-cut-4 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

div.msgBoxBackGround {
  top: 0;
  left: 0;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
  z-index: 1000;
}

div.msgBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  position: fixed;
  z-index: 1050;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
}
div.msgBox .msgBoxTitle {
  width: 100%;
  border-bottom: 0;
  color: #333;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
}
div.msgBox .msgBoxImage {
  display: none;
}
div.msgBox .msgBoxContent {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
div.msgBox .msgBoxContent span {
  color: #333;
}
div.msgBox div.msgBoxButtons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border: solid 2px #fff;
  width: 5px;
  border-radius: 4px;
  background-color: #41B0DB;
}

::-webkit-scrollbar-corner {
  background-color: #fff;
}

::-webkit-scrollbar:horizontal {
  height: 9px;
}

::-webkit-selection {
  background: #41B0DB;
  color: #fff;
}

::-moz-selection {
  background: #41B0DB;
  color: #fff;
}

::selection {
  background: #41B0DB;
  color: #fff;
}

* {
  /* text-transform:capitalize; */
  font-family: "Microsoft YaHei", "Arial";
}

.header_ {
  height: 1.2rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header {
  background: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.08);
  min-height: 1.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.header > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.header .logo {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header .logo img {
  width: 2.86rem;
  display: block;
}
.header .right {
  margin-left: auto;
}
.header .right .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header .right .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
}
.header .right .nav ul li {
  position: relative;
  display: inherit;
}
.header .right .nav ul li .out-nav {
  background: rgba(2, 138, 188, 0.8);
  padding: 0.26rem 0.2rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header .right .nav ul li .out-nav .item {
  font-size: 0;
  text-align: center;
  margin-bottom: 0.26rem;
}
.header .right .nav ul li .out-nav a {
  font-size: 0.16rem;
  color: #fff;
  position: relative;
  white-space: nowrap;
}
.header .right .nav ul li .out-nav a::before {
  content: "";
  position: absolute;
  top: 136%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header .right .nav ul li .out-nav a:hover::before {
  width: 100%;
}
.header .right .nav ul li > a {
  font-size: 0.18rem;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  padding: 0.2rem 0.3rem;
}
.header .right .nav ul li:hover .out-nav {
  display: block;
  z-index: 2;
  opacity: 1;
}
.header .right .nav ul li:hover > a, .header .right .nav ul li.active > a {
  color: #3CABE5;
}
.header .right .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 0.24rem;
}
.header .right .top .search-box form .layout-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.36rem;
  height: 0.34rem;
  line-height: 0.34rem;
  background: #F5F5F5;
  border-radius: 0.18rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0.2rem;
}
.header .right .top .search-box form .layout-search input {
  display: block;
  font-size: 0.16rem;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% - 0.2rem);
}
.header .right .top .search-box form .layout-search button {
  background: transparent;
  font-size: 0;
}
.header .right .top .search-box form .layout-search button .iconfont {
  font-size: 0.18rem;
  color: #028ABC;
}
.header .right .top .entrance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 0.34rem;
  line-height: 0.34rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.12rem;
  background: #ED3915;
  color: #fff;
  border-radius: 0.18rem;
  margin-left: 0.15rem;
  font-size: 0.14rem;
}
.header .right .top .entrance .iconfont {
  margin-right: 0.1rem;
  font-size: 0.16rem;
  color: #fff;
}
.header .language {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0;
  position: relative;
}
.header .language::before {
  content: "";
  width: 1px;
  height: 0.12rem;
  background: #CCCCCC;
  margin-right: 0.3rem;
}
.header .language .iconfont {
  font-size: 0.18rem;
  margin-right: 0.05rem;
  color: #028ABC;
}
.header .language a {
  font-size: 0.16rem;
  line-height: 0.16rem;
  margin-right: 0.06rem;
}
.header .language a:last-child {
  margin-right: 0;
}
.header .language a:hover, .header .language a.active {
  color: #028ABC;
}
.header.en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header.en .language .iconfont {
  font-size: 0.28rem;
  margin-right: 0.17rem;
  color: #028ABC;
}
.header.en .language::before {
  display: none;
}
.header.en .language a {
  font-size: 0.24rem;
}

.page-index .topic_title {
  text-align: center;
}
.page-index .topic_title .h1 {
  font-size: 0.38rem;
  font-weight: bold;
  line-height: 0.48rem;
  text-transform: uppercase;
}
.page-index .topic_title .h1 font {
  font-size: 0.38rem;
  font-weight: bold;
  line-height: 0.48rem;
}
.page-index .topic_title .h2 {
  font-size: 0.24rem;
  color: #CCCCCC;
  margin-top: 0.12rem;
  line-height: 0.24rem;
  text-transform: uppercase;
}
.page-index .topic_title .h2 font {
  font-size: 0.24rem;
  color: #CCCCCC;
  margin-top: 0.12rem;
  line-height: 0.24rem;
  text-transform: uppercase;
}
.page-index .banner .swiper-slide {
  position: relative;
  pointer-events: auto;
  z-index: 1;
}
.page-index .banner .swiper-slide .img-box img {
  display: block;
  width: 100%;
}
.page-index .banner .swiper-slide .font {
  position: absolute;
  left: 10.9%;
  bottom: 0.97rem;
  z-index: 8;
  max-width: 15rem;
}
.page-index .banner .swiper-slide .font .h1 {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  line-height: 48px;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  opacity: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.page-index .banner .swiper-slide .font .h2 {
  font-size: 38px;
  color: #fff;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  opacity: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.page-index .banner .swiper-slide .font .more {
  display: block;
  width: 140px;
  color: #028ABC;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #fff;
  font-size: 0.18rem;
  margin-top: 50px;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  opacity: 0;
  position: relative;
  z-index: 1;
  pointer-events: none;
  font-size: 18px !important;
}
.page-index .banner .swiper-slide .font .more:hover {
  color: #2d92d9;
}
.page-index .banner .swiper-slide.active {
  z-index: 2;
}
.page-index .banner .swiper-slide.active .font {
  z-index: 9;
}
.page-index .banner .swiper-slide.active .font .h1 {
  -webkit-transition: all 0.5s ease 0.5s;
  -o-transition: all 0.5s ease 0.5s;
  transition: all 0.5s ease 0.5s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.page-index .banner .swiper-slide.active .font .h2 {
  -webkit-transition: all 0.5s ease 0.8s;
  -o-transition: all 0.5s ease 0.8s;
  transition: all 0.5s ease 0.8s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.page-index .banner .swiper-slide.active .font .more {
  -webkit-transition: all 0.5s ease 1.2s;
  -o-transition: all 0.5s ease 1.2s;
  transition: all 0.5s ease 1.2s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.page-index .banner .prev,
.page-index .banner .next {
  position: absolute;
  top: 50%;
  z-index: 3;
  cursor: pointer;
}
.page-index .banner .prev .iconfont,
.page-index .banner .next .iconfont {
  font-size: 0.62rem;
  color: #fff;
}
.page-index .banner .prev.swiper-button-disabled,
.page-index .banner .next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.page-index .banner .prev {
  left: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.page-index .banner .next {
  right: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.page-index .section2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #f7f7f7;
  overflow: hidden;
  position: relative;
}
.page-index .section2 .leftCont {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-index .section2 .leftCont img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .section2 .rightCont {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0.8rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  width: 6.56rem;
}
.page-index .section2 .rightCont .h1 {
  font-size: 0.38rem;
  font-weight: bold;
  line-height: 0.48rem;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section2 .rightCont .h1 span {
  color: #41B0DB;
  font-size: 0.38rem;
}
.page-index .section2 .rightCont .h2 {
  font-size: 0.24rem;
  color: #CCCCCC;
  margin-top: 0.15rem;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section2 .rightCont .word {
  font-size: 0.16rem;
  line-height: 0.38rem;
  margin-top: 0.54rem;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section2 .rightCont .word p {
  font-size: 0.16rem;
  line-height: 0.38rem;
}
.page-index .section2 .rightCont .moreCont {
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section2 .rightCont .more {
  display: block;
  width: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: transparent;
  font-size: 0.18rem;
  margin-top: 0.7rem;
  position: relative;
}
.page-index .section2 .rightCont .more::before {
  border: 2px solid #37474f;
  opacity: 0;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.page-index .section2 .rightCont .more::after {
  background: #028ABC;
}
.page-index .section2 .rightCont .more::after, .page-index .section2 .rightCont .more::before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-index .section2 .rightCont .more:hover {
  color: #028ABC;
}
.page-index .section2 .rightCont .more:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-width: 3px;
  border-color: #028ABC;
}
.page-index .section2 .rightCont .more:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.page-index .section2 .rightCont.normalanimate .h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.page-index .section2 .rightCont.normalanimate .h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.page-index .section2 .rightCont.normalanimate .word {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.page-index .section2 .rightCont.normalanimate .moreCont {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.page-index .section2:nth-child(odd) .rightCont {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  padding-left: 0;
  margin-left: auto;
  margin-right: 0.8rem;
}
.page-index .section2 .logo {
  width: 3.71rem;
  height: 3.74rem;
  background: url(/Public/images/pc/logo2.png) no-repeat center center;
  position: absolute;
  right: -0.6rem;
  bottom: -0.9rem;
  background-size: 100%;
}
.page-index .section2.en .rightCont {
  width: 8rem;
}
.page-index .section2.en .rightCont .word {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.page-index .section2.en .logo {
  display: none;
}
.page-index .section2:nth-child(even) .logo {
  display: block;
}
.page-index .section3 {
  padding: 0.8rem 0 0.6rem;
}
.page-index .section3 .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.4rem;
}
.page-index .section3 .cont .prev,
.page-index .section3 .cont .next {
  cursor: pointer;
}
.page-index .section3 .cont .prev .iconfont,
.page-index .section3 .cont .next .iconfont {
  font-size: 0.62rem;
  color: #3CABE5;
}
.page-index .section3 .cont .prev.swiper-button-disabled .iconfont,
.page-index .section3 .cont .next.swiper-button-disabled .iconfont {
  color: #CCCCCC;
}
.page-index .section3 .cont .prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: auto;
  margin-right: 0.8rem;
}
.page-index .section3 .cont .next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-right: auto;
  margin-left: 0.8rem;
}
.page-index .section3 .cont .founder .swiper-slide {
  padding: 30px 20px;
}
.page-index .section3 .cont .founder .box {
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.38rem 0.3rem 0.4rem;
  position: relative;
  overflow: hidden;
  min-height: 4.48rem;
  cursor: pointer;
}
.page-index .section3 .cont .founder .box .img-box {
  width: 1.98rem;
  height: 1.98rem;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid #eeeeee;
  overflow: hidden;
  position: relative;
  z-index: 3;
  -webkit-box-sizing: unset;
  -moz-box-sizing: unset;
  box-sizing: unset;
  font-size: 0;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.page-index .section3 .cont .founder .box .img-box img {
  display: block;
  position: absolute;
  max-width: none;
  max-height: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 106%;
  height: 106%;
}
.page-index .section3 .cont .founder .box .name {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.24rem;
  text-align: center;
  margin-top: 0.3rem;
  position: relative;
  z-index: 3;
}
.page-index .section3 .cont .founder .box .en {
  text-align: center;
  font-size: 0.18rem;
  margin-top: 0.1rem;
}
.page-index .section3 .cont .founder .box .desc {
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-top: 0.2rem;
  position: relative;
  z-index: 3;
}
.page-index .section3 .cont .founder .box .logo {
  position: absolute;
  width: 98%;
  bottom: -12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  height: 3.34rem;
  background: url(/Public/images/pc/logo2.png) no-repeat center center;
  background-size: 100%;
}
.page-index .section3 .cont .founder .box:hover {
  background: #41B0DB;
}
.page-index .section3 .cont .founder .box:hover .logo {
  background: url(/Public/images/pc/logo3.png) no-repeat center center;
  background-size: 100%;
}
.page-index .section3 .cont .founder .box:hover .name {
  color: #fff;
}
.page-index .section3 .cont .founder .box:hover .en {
  color: #fff;
}
.page-index .section3 .cont .founder .box:hover .desc {
  color: #fff;
}
.page-index .section4 .video-cont {
  position: relative;
}
.page-index .section4 .video-cont .poster {
  display: block;
  width: 100%;
}
.page-index .section4 .video-cont video {
  display: block;
  width: 100%;
  height: 7rem;
}
.page-index .section4 .video-cont .play {
  position: absolute;
  width: 1.08rem;
  height: 1.08rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 2.36rem;
  cursor: pointer;
}
.page-index .section4 .video-cont .play img {
  display: block;
  width: 100%;
}
.page-index .section4 .video-cont .font {
  position: absolute;
  width: 100%;
  background: rgba(65, 176, 219, 0.7);
  bottom: 0;
  overflow: hidden;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  height: 0;
}
.page-index .section4 .video-cont .font .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.page-index .section4 .video-cont .font .container .h1 {
  font-weight: bold;
  font-size: 38px;
  color: #fff;
  line-height: 0.48rem;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section4 .video-cont .font .container .h2 {
  font-size: 0.18rem;
  color: #fff;
  width: 9rem;
  margin-top: 0.1rem;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section4 .video-cont .font .container .more {
  display: block;
  width: 1.4rem;
  color: #41B0DB;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: transparent;
  font-size: 0.18rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section4 .video-cont .font .container .more::before {
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.page-index .section4 .video-cont .font .container .more::after {
  background: #fff;
}
.page-index .section4 .video-cont .font .container .more::after, .page-index .section4 .video-cont .font .container .more::before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-index .section4 .video-cont .font .container .more:hover {
  color: #fff;
}
.page-index .section4 .video-cont .font .container .more:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-width: 3px;
  border-color: #fff;
}
.page-index .section4 .video-cont .font .container .more:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.page-index .section4.normalanimate .video-cont .font {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  height: 1.75rem;
}
.page-index .section4.normalanimate .video-cont .font .container .h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.page-index .section4.normalanimate .video-cont .font .container .h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1.9s;
  -o-transition-delay: 1.9s;
  transition-delay: 1.9s;
}
.page-index .section4.normalanimate .video-cont .font .container .more {
  opacity: 1;
}
.page-index .section5 {
  padding: 0.88rem 0 0.5rem;
}
.page-index .section5 .container {
  margin-top: 0.5rem;
}
.page-index .section5 .container .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.45rem;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.page-index .section5 .container .item .img-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
}
.page-index .section5 .container .item .img-box img {
  display: block;
  width: 100%;
}
.page-index .section5 .container .item .rightCont {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section5 .container .item .rightCont .title {
  font-weight: bold;
  font-size: 0.24rem;
  line-height: 0.28rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section5 .container .item .rightCont .line {
  background: #71C3EE;
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.3rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section5 .container .item .rightCont .desc {
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.34rem;
  margin-top: 0.3rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section5 .container .item .rightCont .more {
  display: block;
  width: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #41B0DB;
  font-size: 0.18rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 0.4rem;
}
.page-index .section5 .container .item .rightCont .logo {
  position: absolute;
  width: 2.14rem;
  height: 2.05rem;
  right: -6%;
  bottom: -10%;
  background: url(/Public/images/pc/logo4.png) no-repeat center center;
  background-size: 100%;
}
.page-index .section5 .container .item:hover .rightCont {
  background: #41B0DB;
}
.page-index .section5 .container .item:hover .title {
  color: #fff;
}
.page-index .section5 .container .item:hover .line {
  background: #fff;
}
.page-index .section5 .container .item:hover .desc {
  color: #fff;
}
.page-index .section5 .container .item:hover .more {
  display: block;
  width: 1.4rem;
  color: #41B0DB;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #fff;
  font-size: 0.18rem;
}
.page-index .section5 .container .item:hover .logo {
  background: url(/Public/images/pc/logo3.png) no-repeat center center;
  background-size: 100%;
}
.page-index .section5 .container .item:nth-child(even) .rightCont {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.page-index .section5 .container.normalanimate .item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.page-index .section5 .container.normalanimate .item:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.page-index .section5 .container.normalanimate .item:nth-child(3) {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.page-index .section6 {
  padding: 0.8rem 0 0.98rem;
  background: #f7f7f7;
}
.page-index .section6 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-index .section6 .top .topic_title {
  text-align: left;
}
.page-index .section6 .top .more {
  display: block;
  width: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: transparent;
  font-size: 0.18rem;
  z-index: 2;
}
.page-index .section6 .top .more::before {
  border: 2px solid #41B0DB;
  opacity: 0;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.page-index .section6 .top .more::after {
  background: #41B0DB;
}
.page-index .section6 .top .more::after, .page-index .section6 .top .more::before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-index .section6 .top .more:hover {
  color: #41B0DB;
}
.page-index .section6 .top .more:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-width: 3px;
  border-color: #41B0DB;
}
.page-index .section6 .top .more:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.page-index .section6 .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 5.71rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.page-index .section6 .cont .item {
  width: 8.68rem;
  height: 2.7rem;
  overflow: hidden;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.06rem;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section6 .cont .item .img-box {
  width: 4rem;
  height: 2.7rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .section6 .cont .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .section6 .cont .item .font-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.3rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% - 4rem);
}
.page-index .section6 .cont .item .font-box .title {
  font-size: 0.2rem;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section6 .cont .item .font-box .date {
  font-size: 0.16rem;
  color: #999999;
  margin-top: 0.36rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section6 .cont .item .font-box .desc {
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
  margin-top: 0.36rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section6 .cont .item:nth-child(1) {
  height: 100%;
  width: 6rem;
  margin-left: 0;
  border-radius: 0.06rem;
  display: block;
}
.page-index .section6 .cont .item:nth-child(1) .font-box {
  width: 100%;
}
.page-index .section6 .cont .item:nth-child(1) .font-box .date {
  margin-top: 0.26rem;
}
.page-index .section6 .cont .item:nth-child(1) .font-box .desc {
  margin-top: 0.3rem;
}
.page-index .section6 .cont .item:nth-child(1) .img-box {
  width: 100%;
  height: 3.5rem;
  overflow: hidden;
}
.page-index .section6 .cont .item:nth-child(3n) {
  margin-top: 0.3rem;
}
.page-index .section6 .cont .item:hover {
  background: #41B0DB;
}
.page-index .section6 .cont .item:hover .title, .page-index .section6 .cont .item:hover .date, .page-index .section6 .cont .item:hover .desc {
  color: #fff;
}
.page-index .section7 {
  padding: 0.8rem 0;
}
.page-index .section7 .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.45rem;
}
.page-index .section7 .tab li {
  font-size: 0.22rem;
  line-height: 0.24rem;
  padding: 0.1rem 0.3rem;
  background: #F2F2F2;
  border-radius: 0.04rem;
  margin: 0 0.1rem;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-index .section7 .tab li.active, .page-index .section7 .tab li:hover {
  background: #41B0DB;
  color: #fff;
}
.page-index .section7 .partner-box {
  margin-top: 0.38rem;
}
.page-index .section7 .img-box {
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.15rem;
  border-radius: 0.08rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 1rem;
}
.page-index .section7 .img-box:hover {
  border: 1px solid #41B0DB;
}
.page-index .section7 .img-box img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.page-index .section7 .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 0.16rem;
}
.page-index .section7 .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.1rem;
  opacity: 1;
  border: 1px solid #41B0DB;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0.05rem;
  background: #fff;
}
.page-index .section7 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.6rem;
  background: #41B0DB;
  border: 1px solid #41B0DB;
}
.page-index .en-section1 {
  background: url(/Public/images/pc/bg1.jpg) no-repeat center center;
  background-size: cover;
  padding: 1rem 0 1.48rem;
}
.page-index .en-section1 .title {
  font-weight: bold;
  color: #fff;
  font-size: 0.38rem;
  text-align: center;
  text-transform: uppercase;
  max-width: 10.4rem;
  margin: 0 auto;
  line-height: 0.72rem;
}
.page-index .en-section1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.page-index .en-section1 .container .item {
  max-width: 4.2rem;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
.page-index .en-section1 .container .item .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  border: 3px solid #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-index .en-section1 .container .item .icon .iconfont {
  font-size: 0.52rem;
  color: #fff;
}
.page-index .en-section1 .container .item .name {
  font-size: 0.28rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0.46rem;
}
.page-index .en-section1 .container .item .desc {
  color: #fff;
  font-size: 0.22rem;
  line-height: 0.38rem;
  margin-top: 0.5rem;
}
.page-index .en-section1 .container.normalanimate .item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.page-index .en-section1 .container.normalanimate .item:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.page-index .en-section1 .container.normalanimate .item:nth-child(3) {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.page-index .en-section2 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-index .en-section2 .item .img-box {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .en-section2 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-index .en-section2 .item .rightCont {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3rem 0;
}
.page-index .en-section2 .item .rightCont .box {
  margin-left: 0.8rem;
  max-width: 6.56rem;
}
.page-index .en-section2 .item .rightCont .box .title {
  font-weight: bold;
  color: #41B0DB;
  line-height: 0.48rem;
  font-size: 0.3rem;
  text-transform: uppercase;
}
.page-index .en-section2 .item .rightCont .box .desc {
  font-size: 0.2rem;
  line-height: 0.48rem;
  margin-top: 0.7rem;
}
.page-index .en-section2 .item .rightCont .box .desc p {
  font-size: 0.2rem;
  line-height: 0.48rem;
}
.page-index .en-section2 .item:nth-child(even) .img-box {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.page-index .en-section2 .item:nth-child(even) .rightCont .box {
  margin-left: auto;
  margin-right: 0.8rem;
}

.footer .h1 {
  font-size: 0.22rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.3rem;
}
.footer .list ul li {
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 0.16rem;
}
.footer .list ul li:last-child {
  margin-bottom: 0;
}
.footer .list ul li a {
  color: #fff;
  font-size: 0.16rem;
}
.footer .top {
  background: url(/Public/images/pc/footer_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 0.6rem 0;
}
.footer .top .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .top .container .leftCont {
  width: 9.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #fff;
}
.footer .top .container .leftCont .list {
  margin-right: 1rem;
}
.footer .top .container .leftCont .list:last-child {
  margin-right: 0;
}
.footer .top .container .rightCont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 9.07rem);
}
.footer .top .container .rightCont .contact {
  margin-left: 1rem;
}
.footer .top .container .rightCont .contact .list {
  margin-bottom: 0.4rem;
}
.footer .top .container .rightCont .contact .follow .way {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .top .container .rightCont .contact .follow .way a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 0.2rem;
}
.footer .top .container .rightCont .contact .follow .way a .iconfont {
  font-size: 0.32rem;
  color: #fff;
}
.footer .top .container .rightCont .contact .follow .way a:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.footer .top .container .rightCont .wechatCode {
  margin-left: auto;
}
.footer .bottom {
  background: #33B1EC;
}
.footer .bottom .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.16rem;
  color: #fff;
  padding: 0.1rem 0;
}
.footer .bottom .container .copyRight {
  font-size: 0.16rem;
  color: #fff;
}
.footer.en .h1 {
  text-transform: uppercase;
}
.footer.en .list ul li {
  margin-bottom: 0.3rem;
}
.footer.en .top .container .leftCont {
  width: auto;
  border-right: none;
}
.footer.en .top .container .leftCont .list {
  margin-right: 1.6rem;
}
.footer.en .top .container .rightCont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto;
}
.footer.en .top .container .rightCont .contact {
  margin-left: 0;
  width: 6.58rem;
}
.footer.en .top .container .rightCont .contact .list {
  margin-bottom: 0.2rem;
}
.footer.en .top .container .rightCont .wechatCode .font {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-top: 0.2rem;
}

.page-search {
  padding-bottom: 1rem;
}
.page-search .banner {
  height: 4rem;
  background: #41B0DB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-search .banner .layout-search {
  width: 500px;
  height: 46px;
  border-radius: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0.2rem;
  background: #fff;
}
.page-search .banner .layout-search input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0.2rem 0 0.1rem;
}
.page-search .banner .layout-search button {
  background: #fff;
  font-size: 0;
}
.page-search .banner .layout-search button i {
  font-size: 0.24rem;
  color: #41B0DB;
}
.page-search .list {
  padding: 0.54rem 0 0.54rem;
}
.page-search .list .total {
  font-size: 16px;
  color: #999999;
}
.page-search .list .total span {
  color: #41B0DB;
  font-size: 16px;
}
.page-search .list .item {
  padding: 0.4rem 0 0.38rem;
  position: relative;
}
.page-search .list .item .title {
  font-size: 20px;
}
.page-search .list .item .desc {
  font-size: 14px;
  color: #666666;
  line-height: 0.26rem;
  margin-top: 0.16rem;
}
.page-search .list .item .date {
  color: #999999;
  font-size: 16px;
  margin-top: 0.16rem;
}
.page-search .list .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #F5F6F7;
}
.page-search .list .item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #41B0DB;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.page-search .list .item:hover .title {
  color: #41B0DB;
}
.page-search .list .item:hover::after {
  width: 100%;
}

.no-data {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  text-align: center;
  color: #666666;
}

.pagination-box {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination-box .page-buttom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination-box a {
  display: block;
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 18px;
  position: relative;
  margin: 0 4px;
  color: #666666;
  border-radius: 4px;
}
.pagination-box a.on, .pagination-box a:hover {
  background: #41B0DB;
  color: #fff;
}
.pagination-box a.on .iconfont, .pagination-box a:hover .iconfont {
  color: #fff;
}
.pagination-box .iconfont {
  font-size: 24px;
}
.pagination-box .prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 34px;
  padding: 0;
}
.pagination-box .next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 34px;
  padding: 0;
}
.pagination-box .disabled {
  background: #eeeeee !important;
}
.pagination-box .disabled .iconfont {
  color: #bfbfbf !important;
}
.pagination-box .page-count {
  font-size: 18px;
  color: #666666;
  margin-left: 10px;
}

.ny-banner {
  position: relative;
}
.ny-banner img {
  display: block;
  width: 100%;
}
.ny-banner .font {
  position: absolute;
  width: 100%;
  text-align: right;
  bottom: 20px;
  font-size: 0.42rem;
  font-weight: bold;
  color: #fff;
  padding-right: 40px;
}
.ny-banner .font font {
  font-size: 0.42rem;
  font-weight: bold;
  color: #fff;
}

.ny-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.7rem 0 1.4rem;
}
.ny-cont .left-menu {
  width: 220px;
}
.ny-cont .left-menu li {
  margin-bottom: 20px;
}
.ny-cont .left-menu li a {
  display: block;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 22px;
  background: #F8F8F8;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ny-cont .left-menu li a.with-en-title {
  padding: 16px 0;
  line-height: 24px;
}
.ny-cont .left-menu li a .en-title {
  font-size: 16px;
}
.ny-cont .left-menu li:hover a, .ny-cont .left-menu li.active a {
  background: #41B0DB;
  color: #fff;
}
.ny-cont .right-space {
  width: calc(100% - 260px);
  margin-left: auto;
}
.ny-cont .right-space .topic_title {
  color: #41B0DB;
  font-size: 0.36rem;
  line-height: 0.36rem;
  position: relative;
  padding-left: 0.22rem;
  font-weight: bold;
}
.ny-cont .right-space .topic_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #41B0DB;
  height: 100%;
  width: 0.06rem;
}
.ny-cont .right-space .richText {
  margin-top: 0.4rem;
}
.ny-cont .right-space .founder-list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ny-cont .right-space .founder-list .item {
  width: 460px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  background: #F8F8F8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.3rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.ny-cont .right-space .founder-list .item .img-box {
  border: 2px solid transparent;
  width: 180px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.ny-cont .right-space .founder-list .item .img-box img {
  display: block;
  position: absolute;
  max-width: none;
  max-height: none;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 180px;
  height: 220px;
}
.ny-cont .right-space .founder-list .item .rightCont {
  width: calc(100% - 200px);
  margin-left: auto;
}
.ny-cont .right-space .founder-list .item .rightCont .name {
  font-size: 30px;
  font-weight: bold;
}
.ny-cont .right-space .founder-list .item .rightCont .en {
  font-size: 18px;
  margin-top: 10px;
  color: #666666;
}
.ny-cont .right-space .founder-list .item .rightCont .desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
}
.ny-cont .right-space .founder-list .item:hover {
  background: #41B0DB;
}
.ny-cont .right-space .founder-list .item:hover .img-box {
  border: 2px solid #fff;
}
.ny-cont .right-space .founder-list .item:hover .rightCont .name {
  color: #fff;
}
.ny-cont .right-space .founder-list .item:hover .rightCont .en {
  color: #fff;
}
.ny-cont .right-space .founder-list .item:hover .rightCont .desc {
  color: #fff;
}
.ny-cont .right-space .member-list {
  margin-top: 0.4rem;
}
.ny-cont .right-space .member-list .positionName {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.24rem;
}
.ny-cont .right-space .member-list .section {
  margin-bottom: 0.1rem;
}
.ny-cont .right-space .member-list .section .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ny-cont .right-space .member-list .section .cont .item {
  width: 170px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #F8F8F8;
  margin-right: 22px;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ny-cont .right-space .member-list .section .cont .item .img-box {
  width: 150px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  overflow: hidden;
}
.ny-cont .right-space .member-list .section .cont .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.ny-cont .right-space .member-list .section .cont .item .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ny-cont .right-space .member-list .section .cont .item .name span {
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  padding: 10px 10px 4px;
  text-align: center;
}
.ny-cont .right-space .member-list .section .cont .item:hover {
  background: #41B0DB;
}
.ny-cont .right-space .member-list .section .cont .item:hover .name {
  color: #fff;
}
.ny-cont .right-space .member-list .section .cont .item:hover .name span {
  color: #fff;
}
.ny-cont .right-space .member-list .section .cont .item:nth-child(5n) {
  margin-right: 0;
}
.ny-cont .right-space .report-list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ny-cont .right-space .report-list .item {
  width: 210px;
  margin-right: 33px;
}
.ny-cont .right-space .report-list .item .img-box {
  position: relative;
}
.ny-cont .right-space .report-list .item .img-box .icont {
  position: absolute;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -20px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.15);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.15);
}
.ny-cont .right-space .report-list .item .img-box .icont .iconfont {
  font-size: 22px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.ny-cont .right-space .report-list .item .name {
  padding: 34px 10px 30px;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
}
.ny-cont .right-space .report-list .item:nth-child(4n) {
  margin-right: 0;
}
.ny-cont .right-space .report-list .item:hover .img-box .icont .iconfont {
  color: #41B0DB;
}
.ny-cont .right-space .report-list .item:hover .name {
  color: #41B0DB;
}
.ny-cont .right-space .joinUs_list {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ny-cont .right-space .joinUs_list .item {
  width: 460px;
  height: 380px;
  margin-right: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.ny-cont .right-space .joinUs_list .item .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.ny-cont .right-space .joinUs_list .item .text {
  font-size: 28px;
  font-weight: bold;
  z-index: 2;
  color: #fff;
}
.ny-cont .right-space .joinUs_list .item .more {
  display: block;
  width: 120px;
  color: #fff;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background: transparent;
  border: 2px solid #fff;
  font-size: 18px;
  z-index: 2;
  margin-top: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ny-cont .right-space .joinUs_list .item:nth-child(2) {
  margin-right: 0;
}
.ny-cont .right-space .joinUs_list .item:hover .more {
  background: #fff;
  color: #333;
}
.ny-cont .right-space .beVolunteer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.ny-cont .right-space .beVolunteer_list .item {
  margin-right: 20px;
  width: 300px;
  padding: 10px 10px 20px;
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
}
.ny-cont .right-space .beVolunteer_list .item .img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border: 1px solid #fff;
}
.ny-cont .right-space .beVolunteer_list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.ny-cont .right-space .beVolunteer_list .item .title {
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 10px;
  line-height: 24px;
}
.ny-cont .right-space .beVolunteer_list .item .bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}
.ny-cont .right-space .beVolunteer_list .item .bottom-box .date {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 14px;
  color: #999;
}
.ny-cont .right-space .beVolunteer_list .item:hover {
  background: #41B0DB;
}
.ny-cont .right-space .beVolunteer_list .item:hover .title {
  color: #fff;
}
.ny-cont .right-space .beVolunteer_list .item:hover .bottom-box .more {
  color: #fff;
}
.ny-cont .right-space .beVolunteer_list .item:hover .bottom-box .date {
  color: #fff;
}
.ny-cont .right-space .beVolunteer_list .item:nth-child(3n) {
  margin-right: 0;
}

.page-meeting {
  padding: 0.7rem 0 0.58rem;
}
.page-meeting .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  margin-bottom: 0.46rem;
  overflow: hidden;
}
.page-meeting .item .img-box {
  width: 600px;
  height: 278px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-meeting .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-meeting .item .rightCont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 600px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 26px 20px 38px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-meeting .item .rightCont .title {
  font-size: 22px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
}
.page-meeting .item .rightCont .desc {
  margin-top: 25px;
  font-size: 16px;
  color: #666666;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 34px;
}
.page-meeting .item .rightCont .more {
  display: block;
  width: 140px;
  color: #fff;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #41B0DB;
  font-size: 0.18rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 25px;
}
.page-meeting .item:hover .rightCont {
  background: #41B0DB;
}
.page-meeting .item:hover .rightCont .title {
  color: #fff;
}
.page-meeting .item:hover .rightCont .desc {
  color: #fff;
}
.page-meeting .item:hover .rightCont .more {
  display: block;
  width: 140px;
  color: #41B0DB;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #fff;
  font-size: 0.18rem;
}

.page-scientific {
  padding: 0.7rem 0 1rem;
}
.page-scientific .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-scientific .list .item {
  width: 380px;
  margin-right: 30px;
  border-radius: 4px;
  overflow: hidden;
}
.page-scientific .list .item:nth-child(3n) {
  margin-right: 0;
}
.page-scientific .list .item .img-box {
  height: 300px;
  overflow: hidden;
}
.page-scientific .list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-scientific .list .item .title {
  font-size: 16px;
  line-height: 25px;
  margin: 10px 0;
  padding: 0 30px;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-scientific .list .item:hover .title {
  color: #41B0DB;
}

.page-details {
  padding: 0.68rem 0 1.3rem;
}

.page-support {
  padding: 0.7rem 0 1rem;
}
.page-support .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-support .list .item {
  width: 380px;
  margin-right: 30px;
  border-radius: 4px;
  overflow: hidden;
}
.page-support .list .item:nth-child(3n) {
  margin-right: 0;
}
.page-support .list .item .img-box {
  height: 300px;
  overflow: hidden;
}
.page-support .list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-support .list .item .title {
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 12px;
  padding: 0 30px;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-support .list .item:hover .title {
  color: #41B0DB;
}

.achievement-list {
  margin-top: 0.4rem;
}
.achievement-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.achievement-list .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #41B0DB;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.achievement-list .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.achievement-list .item .img-box {
  width: 270px;
  height: 180px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.achievement-list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.achievement-list .item .rightCont {
  width: calc(100% - 295px);
  margin-left: auto;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.achievement-list .item .rightCont .title {
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.achievement-list .item .rightCont .line {
  width: 34px;
  height: 2px;
  background: #41B0DB;
  margin-top: 0.2rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.achievement-list .item .rightCont .desc {
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  margin-top: 0.16rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.achievement-list .item:nth-child(even):hover::after {
  left: 100%;
}
.achievement-list .item:nth-child(odd):hover::after {
  right: 100%;
  left: auto;
}
.achievement-list .item:hover .rightCont .title {
  color: #fff;
}
.achievement-list .item:hover .rightCont .line {
  background: #fff;
}
.achievement-list .item:hover .rightCont .desc {
  color: #fff;
}

.page-dinner {
  padding: 0.7rem 0;
}
.page-dinner .item {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.page-dinner .item .img-box {
  position: relative;
  z-index: 1;
}
.page-dinner .item .img-box img {
  display: block;
  width: 100%;
}
.page-dinner .item .img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 2;
}
.page-dinner .item .desc {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 3;
  width: 100%;
}
.page-dinner .item .title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-dinner .item .more {
  display: block;
  width: 140px;
  color: #41B0DB;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #fff;
  font-size: 0.18rem;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 5px;
  margin-left: 20px;
}
.page-dinner .item:hover .title {
  color: #41B0DB;
}
.page-dinner .item:hover .more {
  display: block;
  width: 140px;
  color: #fff;
  text-transform: uppercase;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: #41B0DB;
  font-size: 0.18rem;
}

.dinner-banner {
  position: relative;
}
.dinner-banner .img-box img {
  display: block;
  width: 100%;
}
.dinner-banner .font {
  position: absolute;
  height: 0;
  background: rgba(65, 176, 219, 0.8);
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.dinner-banner .font .normal-container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dinner-banner .font .title {
  font-size: 26px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}
.dinner-banner .font .desc {
  font-size: 18px;
  margin-top: 20px;
  line-height: 38px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}
.dinner-banner .font .moreCont {
  margin-top: 35px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}
.dinner-banner .font .moreCont .more {
  display: block;
  width: 1.4rem;
  color: #41B0DB;
  text-transform: uppercase;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.04rem;
  position: relative;
  background: transparent;
  font-size: 0.18rem;
  position: relative;
  z-index: 2;
}
.dinner-banner .font .moreCont .more::before {
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
}
.dinner-banner .font .moreCont .more::after {
  background: #fff;
}
.dinner-banner .font .moreCont .more::after, .dinner-banner .font .moreCont .more::before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dinner-banner .font .moreCont .more:hover {
  color: #fff;
}
.dinner-banner .font .moreCont .more:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  border-width: 3px;
  border-color: #fff;
}
.dinner-banner .font .moreCont .more:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.dinner-banner .font.on {
  height: 295px;
}
.dinner-banner .font.on .title {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.dinner-banner .font.on .desc {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.dinner-banner .font.on .moreCont {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.page-dinnerDetails .topic_title {
  font-size: 38px;
  line-height: 38px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-dinnerDetails .topic_title::before, .page-dinnerDetails .topic_title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #41B0DB;
}
.page-dinnerDetails .topic_title::before {
  margin-right: 30px;
}
.page-dinnerDetails .topic_title::after {
  margin-left: 30px;
}
.page-dinnerDetails .section1 {
  padding: 0.8rem 0 0.4rem;
}
.page-dinnerDetails .section1 .guestList {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-dinnerDetails .section1 .guestList .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 590px;
  padding: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F8F8F8;
  margin-top: 20px;
}
.page-dinnerDetails .section1 .guestList .item .img-box {
  width: 190px;
  height: 220px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  overflow: hidden;
}
.page-dinnerDetails .section1 .guestList .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-dinnerDetails .section1 .guestList .item .rightCont {
  margin-left: auto;
  width: calc(100% - 215px);
}
.page-dinnerDetails .section1 .guestList .item .rightCont .name {
  font-size: 30px;
  font-weight: bold;
}
.page-dinnerDetails .section1 .guestList .item .rightCont .desc {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.page-dinnerDetails .section1 .guestList .item:hover {
  background: #41B0DB;
}
.page-dinnerDetails .section1 .guestList .item:hover .name {
  color: #fff;
}
.page-dinnerDetails .section1 .guestList .item:hover .desc {
  color: #fff;
}
.page-dinnerDetails .section2 {
  padding: 0.4rem 0 0.8rem;
}
.page-dinnerDetails .section2 .cont {
  margin-top: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-dinnerDetails .section2 .cont .leftCont {
  width: 550px;
  border: 1px solid #EEEEEE;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 20px;
  border-radius: 6px;
  height: 481px;
}
.page-dinnerDetails .section2 .cont .leftCont .item .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-dinnerDetails .section2 .cont .leftCont .item .date {
  color: #999999;
  font-size: 16px;
  margin-top: 18px;
}
.page-dinnerDetails .section2 .cont .leftCont .item .desc {
  color: #666666;
  font-size: 14px;
  line-height: 28px;
  margin-top: 20px;
  padding-left: 12px;
  border-left: 1px solid #eeeeee;
}
.page-dinnerDetails .section2 .cont .leftCont .item .img-box {
  height: 260px;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 24px;
}
.page-dinnerDetails .section2 .cont .leftCont .item:hover .title {
  color: #41B0DB;
}
.page-dinnerDetails .section2 .cont .leftCont .item:hover .desc {
  border-left: 1px solid #41B0DB;
}
.page-dinnerDetails .section2 .cont .rightCont {
  margin-left: auto;
  width: 612px;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper {
  height: 480px;
  border-top: 1px solid #eeeeee;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .swiper-scrollbar-drag {
  background: #41B0DB !important;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  border-bottom: 1px solid #eeeeee;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item .title {
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item .bottom .desc {
  font-size: 14px;
  color: #666666;
  line-height: 28px;
  width: 510px;
  padding-right: 30px;
  border-right: 1px solid #eeeeee;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item .bottom .arrow {
  margin-left: auto;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item .bottom .arrow .iconfont {
  font-size: 34px;
  color: #cdcdcd;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item:hover {
  border-bottom: 1px solid #41B0DB;
}
.page-dinnerDetails .section2 .cont .rightCont .news-swiper .item:hover .title {
  color: #41B0DB;
}
.page-dinnerDetails .section3 {
  background: #F8F8F8;
  padding: 0.7rem 0;
}
.page-dinnerDetails .section3 .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}
.page-dinnerDetails .section3 .tab li {
  width: 150px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  background: #E4E4E4;
  border-radius: 4px;
  font-size: 22px;
  cursor: pointer;
  margin: 0 10px;
}
.page-dinnerDetails .section3 .tab li.active, .page-dinnerDetails .section3 .tab li:hover {
  background: #41B0DB;
  color: #fff;
}
.page-dinnerDetails .section3 .normal-container {
  margin-top: 40px;
}
.page-dinnerDetails .section3 .normal-container .album .img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.page-dinnerDetails .section3 .normal-container .album .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-dinnerDetails .section3 .normal-container .video-list {
  display: none;
}
.page-dinnerDetails .section3 .normal-container .video-list .img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.page-dinnerDetails .section3 .normal-container .video-list .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-dinnerDetails .section3 .normal-container .video-list .img-box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-dinnerDetails .section3 .normal-container .video-list .img-box .mask .play {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-dinnerDetails .section3 .normal-container .video-list .img-box:hover .mask {
  opacity: 1;
}
.page-dinnerDetails .section3 .normal-container .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 0.36rem;
}
.page-dinnerDetails .section3 .normal-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.1rem;
  opacity: 1;
  border: 1px solid #41B0DB;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0.05rem;
  background: #fff;
}
.page-dinnerDetails .section3 .normal-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.6rem;
  background: #41B0DB;
  border: 1px solid #41B0DB;
}
.page-dinnerDetails .section4 {
  padding: 0.7rem 0 0.5rem;
}
.page-dinnerDetails .section4 .topic_title {
  margin-bottom: 60px;
}
.page-dinnerDetails .section4 .parter-section {
  margin-top: 20px;
}
.page-dinnerDetails .section4 .parter-section .title {
  text-align: center;
  font-size: 20px;
  text-align: center;
  position: relative;
}
.page-dinnerDetails .section4 .parter-section .title span {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.page-dinnerDetails .section4 .parter-section .title::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 1px;
  background: #eeeeee;
}
.page-dinnerDetails .section4 .parter-section .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-dinnerDetails .section4 .parter-section .list .item {
  margin-right: 26px;
  margin-bottom: 30px;
}
.page-dinnerDetails .section4 .parter-section .list .item .img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 280px;
  height: 100px;
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 8px;
  padding: 15px;
}
.page-dinnerDetails .section4 .parter-section .list .item .img-box:hover {
  border: 1px solid #41B0DB;
}
.page-dinnerDetails .section4 .parter-section .list .item .img-box img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.page-dinnerDetails .section4 .parter-section .list .item:nth-child(4n) {
  margin-right: 0;
}

.union-ativity {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.union-ativity .item {
  width: 300px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.union-ativity .item:nth-child(3n) {
  margin-right: 0;
}
.union-ativity .item .img-box {
  overflow: hidden;
  width: 100%;
  height: 200px;
  border-radius: 4px;
}
.union-ativity .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.union-ativity .item .title {
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px;
  text-align: center;
}
.union-ativity .item:hover .title {
  color: #41B0DB;
}

.union-member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.union-member .item {
  width: 220px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.union-member .item .img-box {
  border: 1px solid #eeeeee;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.union-member .item .title {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  text-align: center;
}
.union-member .item:nth-child(4n) {
  margin-right: 0;
}
.union-member .item:hover .img-box {
  border: 1px solid #41B0DB;
}
.union-member .item:hover .title {
  color: #41B0DB;
}

.union-member-desc {
  padding: 10px 0;
  font-size: 16px;
  color: #41b0db;
  line-height: 28px;
}
.union-member-desc::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #f4f4f4;
  margin: 16px 0;
}

.news-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.news-list .item {
  margin-right: 20px;
  width: 300px;
  padding: 10px;
  border: 1px solid #eeeeee;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
}
.news-list .item .img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border: 1px solid #fff;
}
.news-list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-list .item .title {
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 16px;
  line-height: 24px;
  height: 48px;
}
.news-list .item .bottom-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-top: 25px;
}
.news-list .item .bottom-box .more {
  color: #41B0DB;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 14px;
}
.news-list .item .bottom-box .date {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 14px;
}
.news-list .item:hover {
  background: #41B0DB;
}
.news-list .item:hover .title {
  color: #fff;
}
.news-list .item:hover .bottom-box .more {
  color: #fff;
}
.news-list .item:hover .bottom-box .date {
  color: #fff;
}
.news-list .item:nth-child(3n) {
  margin-right: 0;
}

.details-banner {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid #F5F5F5;
}
.details-banner .title {
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  max-width: 750px;
  margin: 0 auto;
}
.details-banner .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}
.details-banner .bottom .date {
  font-size: 18px;
  color: #999999;
}
.details-banner .bottom .tag {
  border: 1px solid #31A7E6;
  background: #FFFFFF;
  padding: 2px 10px;
  font-size: 14px;
  color: #31A7E6;
  margin-left: 45px;
}

.page-newsDetails {
  padding: 0.5rem 0 1rem;
}

.page-contact {
  padding: 0.7rem 0 1.2rem;
}
.page-contact .logo {
  width: 278px;
}
.page-contact .logo img {
  display: block;
  width: 100%;
}
.page-contact .cont {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-contact .cont .iconfont {
  font-size: 28px;
  color: #41B0DB;
  margin-right: 10px;
}
.page-contact .cont .text {
  font-size: 18px;
}
.page-contact .cont .normal-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.page-contact .cont .address-item {
  margin-bottom: 28px;
}
.page-contact .cont .address-item .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.page-contact .cont .address-item .top .name {
  color: #41B0DB;
  font-size: 18px;
  line-height: 26px;
}
.page-contact .cont .address-item .text {
  padding-left: 38px;
  margin-bottom: 24px;
}
.page-contact .cont .rightCont {
  width: 600px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 70px;
}
.page-contact .cont .rightCont .addresTab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-contact .cont .rightCont .addresTab li {
  width: 150px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #fff;
  border: 1px solid #41B0DB;
  color: #41B0DB;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.page-contact .cont .rightCont .addresTab li.active {
  background: #41B0DB;
  color: #fff;
}
.page-contact .cont .rightCont .mapCont {
  width: 100%;
  height: 300px;
  margin-top: 10px;
}
.page-contact .cont .rightCont .mapCont img {
  max-width: none !important;
  max-height: none !important;
}

.page-video {
  padding: 0.7rem 0 1rem;
}
.page-video .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-video .list .item {
  width: 370px;
  margin-right: 45px;
  margin-bottom: 20px;
}
.page-video .list .item .img-box {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.page-video .list .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-video .list .item .img-box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-video .list .item .img-box .mask .play {
  width: 84px;
  height: 84px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-video .list .item:nth-child(3n) {
  margin-right: 0;
}
.page-video .list .item .title {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page-video .list .item:hover .img-box .mask {
  opacity: 1;
}
.page-video .list .item:hover .title {
  color: #41B0DB;
}

.video-container {
  width: 100%;
  height: 100%;
  background: #000000;
  margin: 0 auto;
  overflow: hidden;
}
.video-container video {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -o-object-fit: contain;
  object-fit: contain;
}

.video_desc {
  margin-top: 35px;
  font-size: 16px;
  color: #666;
}

.popup {
  position: fixed;
  z-index: 66;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.popup-video {
  position: fixed;
  z-index: 68;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  max-height: 90%;
  display: none;
}
.popup-video .closeBtn {
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  right: -30px;
  top: 0px;
}
.popup-video .closeBtn .iconfont {
  font-size: 30px;
  color: #fff;
}
.popup-video video {
  display: block;
  width: 100%;
  max-height: 550px;
}

.popup-video2 {
  position: fixed;
  z-index: 68;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 90%;
  display: none;
}
.popup-video2 .cont {
  background: #fff;
  padding: 0.45rem 0.45rem 0.4rem;
}
.popup-video2 .cont .title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.popup-video2 .cont .desc {
  font-size: 16px;
  color: #666666;
  margin-top: 10px;
}
.popup-video2 .closeBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.popup-video2 .closeBtn .iconfont {
  color: #fff;
  font-size: 0.4rem;
  cursor: pointer;
}

.toTop {
  position: fixed;
  z-index: 60;
  width: 0.84rem;
  height: 0.84rem;
  background: #41B0DB;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  box-shadow: 0px 4px 24px 0px rgba(31, 34, 34, 0.2);
  border-radius: 50%;
  right: 2%;
  bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
.toTop .iconfont {
  font-size: 0.46rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.founder-popup {
  position: fixed;
  z-index: 68;
  width: 600px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  padding: 30px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  display: none;
}
.founder-popup .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.founder-popup .top .img-box {
  width: 180px;
  height: 210px;
  overflow: hidden;
}
.founder-popup .top .img-box img {
  display: block;
  width: 100%;
  height: 100%;
}
.founder-popup .top .rightCont {
  width: calc(100% - 210px);
}
.founder-popup .top .rightCont .name {
  font-size: 30px;
  font-weight: bold;
}
.founder-popup .top .rightCont .en {
  font-size: 20px;
  color: #666666;
  margin-top: 10px;
}
.founder-popup .top .rightCont .tag {
  font-size: 26px;
  color: #41B0DB;
  margin-top: 14px;
}
.founder-popup .desc {
  font-size: 18px;
  color: #666666;
  line-height: 32px;
  margin-top: 20px;
  max-height: 380px;
  overflow-y: auto;
}
.founder-popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.founder-popup .close .iconfont {
  font-size: 30px;
  color: #666666;
}

.artwork_list {
  font-size: 0;
  margin-top: 0.4rem;
}
.artwork_list .item {
  margin-right: 20px;
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  display: inline-block;
  vertical-align: top;
  width: 300px;
}
.artwork_list .item .cont {
  padding: 10px 10px 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.artwork_list .item .cont .title {
  font-size: 22px;
  margin-top: 14px;
  font-weight: bold;
  min-height: 58px;
}
.artwork_list .item .cont .author {
  margin-top: 16px;
}
.artwork_list .item .cont .desc {
  color: #666;
  font-size: 16px;
}
.artwork_list .item .cont .donor {
  margin-top: 5px;
}
.artwork_list .item .cont .material {
  margin-top: 5px;
}
.artwork_list .item .cont .more {
  font-size: 16px;
  color: #41B0DB;
  margin-top: 16px;
}
.artwork_list .item .cont .img-box {
  width: 100%;
  overflow: hidden;
  background: #F9F9F9;
  height: 200px;
}
.artwork_list .item .cont .img-box img {
  display: block;
  margin: 0 auto;
}
.artwork_list .item .cont:hover {
  background: #41B0DB;
}
.artwork_list .item .cont:hover .title {
  color: #fff;
}
.artwork_list .item .cont:hover .desc {
  color: #fff;
}
.artwork_list .item .cont:hover .more {
  color: #fff;
}
.artwork_list .item:nth-child(3n) {
  margin-right: 0;
}

.news_style_parters {
  font-size: 0;
  margin-top: 0.4rem;
}
.news_style_parters .item {
  margin-right: 20px;
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  display: inline-block;
  vertical-align: top;
  width: 190px;
}
.news_style_parters .item .cont {
  padding: 10px 10px 16px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news_style_parters .item .cont .title {
  font-size: 22px;
  margin-top: 14px;
  font-weight: bold;
  min-height: 58px;
}
.news_style_parters .item .cont .desc {
  color: #666;
  font-size: 16px;
}
.news_style_parters .item .cont .org {
  height: 93px;
}
.news_style_parters .item .cont .org div {
  margin-top: 5px;
}
.news_style_parters .item .cont .more {
  font-size: 16px;
  color: #41B0DB;
  margin-top: 16px;
}
.news_style_parters .item .cont .img-box {
  width: 100%;
  overflow: hidden;
  background: #F9F9F9;
}
.news_style_parters .item .cont .img-box img {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 170px;
  height: 240px;
}
.news_style_parters .item .cont:hover {
  background: #41B0DB;
}
.news_style_parters .item .cont:hover .title {
  color: #fff;
}
.news_style_parters .item .cont:hover .desc {
  color: #fff;
}
.news_style_parters .item .cont:hover .more {
  color: #fff;
}
.news_style_parters .item:nth-child(4n) {
  margin-right: 0;
}

.artwork_details {
  padding: 60px 0;
}
.artwork_details .container {
  width: 776px;
  margin: 0 auto;
}
.artwork_details .container .title {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
.artwork_details .container .img-box {
  margin-top: 30px;
  text-align: center;
}
.artwork_details .container .img-box img {
  display: block;
  margin: 0 auto;
}
.artwork_details .container .img-box .size {
  font-size: 18px;
  margin-top: 20px;
}
.artwork_details .container .desc {
  margin-top: 30px;
}
.artwork_details .container .desc .item {
  font-size: 16px;
  margin-bottom: 5px;
}
.artwork_details .container .desc .item span {
  font-weight: bold;
}
.artwork_details .container .richText {
  margin-top: 30px;
}

.donor_list .section {
  padding: 34px 0 0;
}
.donor_list .section .section_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.donor_list .section .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.donor_list .section .list .item {
  width: 170px;
  padding: 19px 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  background: #f1f9fe;
  border: 1px solid #f1f9fe;
  margin-right: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.donor_list .section .list .item:nth-child(5n) {
  margin-right: 0;
}
.donor_list .section .list .item.img {
  background: transparent;
  border: 1px solid #f5f5f5;
}
.donor_list .section .list .item img {
  display: block;
  margin: 0 auto;
}
.donor_list .section .list::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #f4f4f4;
  margin-top: 20px;
}
.donor_list .section:last-child .list::after {
  display: none;
}
.donor_list .desc {
  padding: 10px 0;
  font-size: 16px;
  color: #41b0db;
  line-height: 28px;
}

.chooseYear {
  margin-top: 36px;
}
.chooseYear .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.chooseYear .wrap .item {
  padding: 6px 30px;
  font-size: 20px;
  color: #41b0db;
  border: 1px solid #41b0db;
  text-align: center;
}
.chooseYear .wrap .item.active {
  background: #41b0db;
  color: #fff;
}

@media (max-width: 1600px) {
  .ny-cont .right-space .founder-list .item .rightCont .desc {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .section3 .prev, .section3 .next {
    display: none;
  }

  .footer .top .container .leftCont {
    width: 10.06rem;
  }
  .footer .top .container .rightCont {
    width: calc(100% - 10.06rem);
  }
}
* {
  /* text-transform:capitalize; */
  font-family: "Microsoft YaHei", "Arial";
}

a, span, li, b, i, label, p, div, h1, h2, h3, h4, h5, h6, font, small, em {
  font-size: inherit;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.container {
  width: 15rem;
  margin: 0 auto;
}

.normal-container {
  width: 1200px;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */