@charset "utf-8";
/*!
by Sean Lu 20230320
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
*/
/* 全局变量设置 */
:root {
  --color-main: #3970ad;
  --color-white: #fff;
  --color-txt: #e70012;
  --color-bg: #f5f5f5;
  --color-0: #000;
  --color-3: #333;
  --color-6: #666;
  --color-9: #999;
  --color-border: #dedede;
  --fsize-base: 14px;
  --fsize-large: calc(var(--fsize-base) * 1.25);
  --fsize-txt: calc(var(--fsize-base) * 1.14);
  --fsize-small: calc(var(--fsize-base) * 0.85);
  --fsize-h1: calc(var(--fsize-base) * 2.6);
  --fsize-h2: calc(var(--fsize-base) * 2.15);
  --fsize-h3: calc(var(--fsize-base) * 1.7);
  --gap-base: 16px;
  --gap-mini: calc(var(--gap-base) * 0.25);
  --gap-small: calc(var(--gap-base) * 0.5);
  --gap-large: calc(var(--gap-base) * 1.5);
  --gap-h1: calc(var(--gap-base) * 5);
  --gap-h2: calc(var(--gap-base) * 4);
  --gap-h3: calc(var(--gap-base) * 3);
}
@media (max-width: 1440px) {
  :root {
    --fsize-base: 12px;
    --gap-base: 12px;
  }
}
@media (max-width: 800px) {
  :root {
    --fsize-base: 12px;
    --gap-base: 6px;
  }
}
.header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header {
    height: 60px;
  }
}
.header .wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.header .wrapper .logo {
  width: 200px;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header .wrapper .logo {
    width: 150px;
  }
}
.header .wrapper .logo a {
  display: block;
  width: 100%;
}
.header .wrapper .logo a img {
  display: block;
  width: 100%;
}
.header .wrapper .logo a img.l1 {
  display: block;
}
.header .wrapper .logo a img.l2 {
  display: none;
}
.header .wrapper .nav {
  height: 100%;
  margin: 0 50px;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header .wrapper .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    height: calc(100vh - 60px);
    background: var(--color-white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    margin: 0;
  }
  .header .wrapper .nav.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header .wrapper .nav .nul {
  display: flex;
  height: 100%;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul {
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 20px;
  }
}
.header .wrapper .nav .nul .nli {
  height: 100%;
  position: relative;
  margin: 0 var(--gap-base);
}
.header .wrapper .nav .nul .nli:last-child {
  margin-right: 0;
}
@media (max-width: 1440px) {
  .header .wrapper .nav .nul .nli {
    margin-right: 20px;
  }
  .header .wrapper .nav .nul .nli:last-child {
    margin-right: 0;
  }
}
.header .wrapper .nav .nul .nli .m {
  height: 100%;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli {
    border-bottom: 1px solid var(--color-border);
  }
  .header .wrapper .nav .nul .nli .m {
    display: flex;
    align-items: center;
  }
  .header .wrapper .nav .nul .nli .mo {
    width: 30px;
    height: 30px;
    display: flex;
    border-left: 1px solid var(--color-border);
    justify-content: center;
    align-items: center;
    color: var(--color-9);
    text-decoration: none;
  }
  .header .wrapper .nav .nul .nli .mo:before {
    content: "+";
  }
  .header .wrapper .nav .nul .nli.on .mo:before {
    content: "-";
  }
}
.header .wrapper .nav .nul .nli .na {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
@media (max-width: 1440px) {
  .header .wrapper .nav .nul .nli .na {
    font-size: var(--fsize-small);
  }
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli .na {
    padding: 15px 0;
    flex: 1;
    font-size: var(--fsize-large);
  }
}
.header .wrapper .nav .nul .nli .na:after {
  content: "";
  height: 3px;
  width: 0;
  background: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 2;
  transform: translateX(-50%);
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.header .wrapper .nav .nul .nli .sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: calc(100% + 1px);
  background: var(--color-white);
  white-space: nowrap;
  font-size: var(--fsize-small);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli .sub {
    position: relative;
    display: none;
    font-size: var(--fsize-large);
  }
}
.header .wrapper .nav .nul .nli .sub .sli {
  text-align: center;
}
.header .wrapper .nav .nul .nli .sub .sli .sa {
  display: block;
  text-decoration: none;
  padding: 15px 25px;
}
.header .wrapper .nav .nul .nli .sub .sli .sa:hover {
  background: rgba(136, 146, 161, 0.1);
}
.header .wrapper .nav .nul .nli:hover .na:after {
  width: 100%;
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli:hover .na:after {
    width: 0;
  }
}
.header .wrapper .nav .nul .nli:hover .sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli:hover .sub {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
  }
}
@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli.on .na:after {
    width: 100%;
  }
  .header .wrapper .nav .nul .nli.on .sub {
    display: flex;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    background: rgba(204, 204, 204, 0.2);
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  .header .wrapper .nav .nul .nli.on .sub .sli {
    width: 100%;
    text-align: left;
  }
  .header .wrapper .nav .nul .nli.on .sub .sli .sa {
    padding: 6px 15px;
  }
}
.header .wrapper .sea {
  margin-left: auto;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 30px;
  transition: all 0.3s;
}
.header .wrapper .sea form {
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .header .wrapper .sea {
    display: none;
  }
}
.header .wrapper .sea .key {
  background: transparent;
  border: 0;
  font-size: var(--fsize-small);
  width: 60px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.header .wrapper .sea .key:focus {
  cursor: auto;
  width: 120px;
}
.header .wrapper .sea .key::placeholder {
  color: #fff;
}
.header .wrapper .sea .btn {
  width: 20px;
  height: 30px;
  text-indent: -999px;
  display: block;
  border: 0;
  background: transparent url(../img/iconsearch.svg) no-repeat center;
  cursor: pointer;
}
.header .wrapper .sea:focus-within {
  border-color: var(--color-border);
  background-color: #fff;
}
.header .wrapper .sea:focus-within .key::placeholder {
  color: #999;
}
.header .wrapper .sea:focus-within .btn {
  background-image: url(../img/iconsearchs.svg);
}
.header .wrapper .menu {
  display: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 800px) {
  .header .wrapper .menu {
    display: flex;
  }
}
.header .wrapper .menu .i1 {
  display: block;
}
.header .wrapper .menu .i2 {
  display: none;
}
.header .wrapper .menu.on .i1 {
  display: none;
}
.header .wrapper .menu.on .i2 {
  display: block;
}
.header.fxdon,
.header.on,
.header.com {
  border-bottom-color: var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px) saturate(180%);
  height: 60px;
}
.header.fxdon .wrapper .logo,
.header.on .wrapper .logo,
.header.com .wrapper .logo {
  width: 150px;
}
.header.fxdon .wrapper .logo a img.l1,
.header.on .wrapper .logo a img.l1,
.header.com .wrapper .logo a img.l1 {
  display: none;
}
.header.fxdon .wrapper .logo a img.l2,
.header.on .wrapper .logo a img.l2,
.header.com .wrapper .logo a img.l2 {
  display: block;
}
.header.fxdon .wrapper .nav .nul .nli .na,
.header.on .wrapper .nav .nul .nli .na,
.header.com .wrapper .nav .nul .nli .na {
  color: #666;
}
.header.fxdon .wrapper .sea .key::placeholder,
.header.on .wrapper .sea .key::placeholder,
.header.com .wrapper .sea .key::placeholder {
  color: #999;
}
.header.fxdon .wrapper .sea .btn,
.header.on .wrapper .sea .btn,
.header.com .wrapper .sea .btn {
  background-image: url(../img/iconsearchs.svg);
}
.header.fxdon .wrapper .menu i path,
.header.on .wrapper .menu i path,
.header.com .wrapper .menu i path {
  fill: #666;
}
.footer {
  background: #2d3845;
  color: var(--color-white);
  padding: 60px 0;
  font-size: var(--fsize-small);
}
@media (max-width: 800px) {
  .footer {
    padding: 6vw 0;
    font-size: 3vw;
  }
}
.footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .wrapper a {
  color: var(--color-white);
  opacity: 0.8;
  margin: 0 10px;
}
.footer .wrapper a:hover {
  opacity: 1;
}
@media (max-width: 800px) {
  .footer .link {
    display: none;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  z-index: 199;
}
.loading .icon {
  width: 200px;
}
.loading .icon svg {
  stroke: #222;
  fill: #fff;
  stroke-dasharray: 1500 1500;
  stroke-dashoffset: -1500;
}
.loading .icon svg .st0 {
  stroke: rgba(0, 103, 218, 0.35);
  stroke-width: 1.5px;
  stroke-dashoffset: -1500;
  stroke-dasharray: 1500 1500;
  animation: animation-line 2s linear;
  animation-fill-mode: both;
  animation-delay: 0.06s;
}
@keyframes animation-line {
  0% {
    stroke-dashoffset: -1500;
    fill: #ffffff;
    stroke: #e00509;
  }
  50% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #e00509;
  }
  60% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #e00509;
  }
  70% {
    stroke-dashoffset: 0;
    fill: #e00509;
    stroke: #e00509;
  }
  to {
    stroke-dashoffset: 0;
    fill: #e00509;
    stroke: #e00509;
  }
}
.contactwrap {
  min-height: 100vh;
  background: url(../images/banner7.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 800px) {
  .contactwrap {
    padding-top: 200px;
    background-size: auto 300px;
    background-position: center top;
    box-sizing: border-box;
  }
}
.contactwrap .box {
  width: 46%;
  background: var(--color-white) url(../img/contactbg.jpg) no-repeat center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--gap-h3) var(--gap-h2);
  box-sizing: border-box;
  font-family: "Noto Serif SC";
}
@media (max-width: 800px) {
  .contactwrap .box {
    width: 100%;
    min-height: 50vh;
  }
}
.contactwrap .box .clogo {
  width: 300px;
  margin-top: var(--gap-h1);
}
@media (max-width: 800px) {
  .contactwrap .box .clogo {
    width: 200px;
    display: none;
  }
}
.contactwrap .box .clogo a {
  display: block;
}
.contactwrap .box .clogo img {
  display: block;
  width: 100%;
}
.contactwrap .box .ccont {
  font-family: microsoft yahei;
}
.contactwrap .box .ccont .tit {
  font-size: var(--fsize-h2);
  color: var(--color-3);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.contactwrap .box .ccont .tit img {
  width: 90px;
  display: block;
  margin-right: var(--gap-base);
}
@media (max-width: 800px) {
  .contactwrap .box .ccont .tit {
    font-size: var(--fsize-h3);
  }
}
.contactwrap .box .ccont .tel {
  line-height: 2;
  margin: var(--gap-large) 0;
}
.contactwrap .box .ccont .tel .tli {
  display: flex;
  font-size: calc(var(--fsize-large) * 1.2);
}
@media (max-width: 800px) {
  .contactwrap .box .ccont .tel .tli {
    font-size: var(--fsize-large);
  }
}
.contactwrap .box .ccont .tel .tli .th {
  flex: 1;
  color: var(--color-3);
  display: flex;
  align-items: center;
  margin-right: var(--gap-large);
}
.contactwrap .box .ccont .tel .tli .th img {
  margin-right: var(--gap-small);
}
@media (max-width: 800px) {
  .contactwrap .box .ccont .tel .tli .th img {
    width: var(--gap-h3);
  }
}
.contactwrap .box .ccont .tel .tli .tb {
  flex: 3;
  color: var(--color-3);
}
.contactwrap .box .ccont .mor {
  font-size: var(--fsize-large);
  color: var(--color-3);
  line-height: 2;
}
.contactwrap .box .ccont .qrc {
  margin-top: var(--gap-large);
  display: flex;
}
.contactwrap .box .ccont .qrc .qli {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--fsize-txt);
  color: var(--color-6);
}
.newshonor {
  margin: var(--gap-h1) 0;
  padding: 0 var(--gap-h1);
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px  ;
}
.newshonor .it {
  display: block;
  max-width: 260px;
  transition: all 0.3s;
  cursor: pointer;
}
.newshonor .it:hover {
  transform: scale(1.05);
}
.newshonor .it img {
  display: block;
  width: 100%;
}
.aboutbanner {
  height: 460px;
  background: url(../img/dimg/aboutbigimg.jpg) no-repeat center;
  background-size: cover;
  color: var(--color-white);
}
@media (max-width: 800px) {
  .aboutbanner {
    height: 260px;
  }
}
.aboutbanner .wrapper {
  height: 100%;
}
.aboutbanner .wrapper .box {
  height: 100%;
  display: flex;
  align-items: center;
}
.aboutbanner .wrapper .box .tit {
  font-family: "Noto Serif SC";
  font-weight: 700;
  font-size: calc(var(--fsize-h1) * 1.2);
  color: var(--color-white);
}
@media (max-width: 800px) {
  .aboutbanner .wrapper .box .tit {
    font-size: var(--fsize-h3);
  }
}
.aboutbox01 {
  display: flex;
  position: relative;
  padding-top: var(--gap-h1);
}
@media (max-width: 800px) {
  .aboutbox01 {
    flex-direction: column;
  }
}
.aboutbox01::after {
  content: "";
  width: 100%;
  height: 100px;
  background: url(../img/dimg/abougbox01img02.png) repeat-x center;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
@media (max-width: 800px) {
  .aboutbox01::after {
    height: 50px;
  }
}
.aboutbox01 .img {
  flex: 1;
}
.aboutbox01 .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutbox01 .con {
  flex: 1;
  padding: var(--gap-h2) var(--gap-h1);
  box-sizing: border-box;
}
.aboutbox01 .con .inf {
  font-family: "Noto Serif SC";
  font-size: var(--fsize-large);
  color: var(--color-3);
  line-height: 1.8;
  max-width: 760px;
  margin-top: var(--gap-h3);
}
.aboutbox01 .con .inf p {
  margin-bottom: var(--gap-large);
}
.aboutbox01 .con .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-base);
  max-width: 760px;
  margin-top: var(--gap-h3);
}
@media (max-width: 800px) {
  .aboutbox01 .con .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.aboutbox01 .con .list .it {
  background-color: var(--color-bg);
  display: flex;
  justify-content: space-between;
  padding: var(--gap-large);
  text-align: right;
  font-family: "Noto Serif SC";
  font-size: var(--fsize-large);
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 800px) {
  .aboutbox01 .con .list .it {
    padding: var(--gap-h3);
  }
}
.aboutbox01 .con .list .it:hover {
  transform: scale(1.05);
  background-color: rgba(172, 80, 135, 0.1);
}
.aboutbox01 .con .list .it:hover::after {
  background: #ac5087;
  bottom: -4px;
  content: " ";
  filter: blur(40px);
  height: 16px;
  left: 57px;
  opacity: 0.6;
  position: absolute;
  width: 270px;
}
.aboutbox01 .con .list .it .ih {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: var(--color-main);
}
.aboutbox01 .con .list .it .ih .num {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: 700;
  line-height: 1;
  margin-right: var(--gap-mini);
}
.aboutbox01 .con .list .it .ib {
  margin-top: var(--gap-mini);
}
.aboutbox02 {
  padding: var(--gap-h1) 0;
  background: url(../img/dimg/abougbox02bg.png) no-repeat center;
  background-size: cover;
}
.aboutbox02 .comtit {
  text-align: center;
  padding-top: var(--gap-h1);
}
.aboutbox02 .comtit .en {
  left: 50%;
  transform: translateX(-50%);
}
.aboutbox02 .txt {
  text-align: center;
  font-size: var(--fsize-large);
  color: var(--color-3);
  font-family: "Noto Serif SC";
  margin: var(--gap-large) 0;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .aboutbox02 .txt {
    padding: var(--gap-large);
  }
}
.aboutbox02 .holist {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-base);
  padding: 0 var(--gap-large);
}
@media (max-width: 800px) {
  .aboutbox02 .holist {
    flex-wrap: wrap;
  }
}
.aboutbox02 .holist .it {
  margin: 0 var(--gap-small);
  flex: 1;
  max-width: 260px;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 800px) {
  .aboutbox02 .holist .it {
    flex: 50%;
    margin: 0;
    padding: var(--gap-base);
    box-sizing: border-box;
  }
}
.aboutbox02 .holist .it:hover {
  transform: scale(1.05);
  box-shadow: 0 0 var(--gap-large) rgba(0, 0, 0, 0.1);
}
.aboutbox02 .holist .it img {
  display: block;
  width: 100%;
}
.aboutbox02 .holist.holist2 .it {
  max-width: 350px;
}
.comtit {
  font-family: "Noto Serif SC";
  position: relative;
}
.comtit .cn {
  font-size: var(--fsize-h1);
  font-weight: 700;
  color: var(--color-3);
}
@media (max-width: 800px) {
  .comtit .cn {
    font-size: var(--fsize-h3);
  }
}
.comtit .en {
  font-size: calc(var(--fsize-h1) * 2.8);
  color: var(--color-txt);
  font-weight: 700;
  opacity: 0.1;
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media (max-width: 800px) {
  .comtit .en {
    font-size: calc(var(--fsize-h1) * 1.8);
  }
}
.aboutbox03 {
  margin: var(--gap-large) 0;
}
.aboutbox03 .list .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.aboutbox03 .list .swiper-slide {
  padding: var(--gap-small) 0;
}
@media (max-width: 800px) {
  .aboutbox03 .list .swiper-slide {
    padding: var(--gap-small) 0;
  }
}
.aboutbox03 .list img {
  display: block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 var(--gap-large) rgba(0, 0, 0, 0.1);
}
@media (max-width: 800px) {
  .aboutbox03 .list img {
    border-radius: var(--gap-mini);
  }
}
.aboutbox04 {
  background: url(../img/dimg/abougbox04bg.png) no-repeat center;
  background-size: cover;
  padding: var(--gap-h1) 0 calc(var(--gap-h1) * 1.6);
}
.aboutbox04 .comtit {
  text-align: center;
  padding-top: var(--gap-h1);
}
.aboutbox04 .comtit .cn {
  color: var(--color-white);
}
.aboutbox04 .comtit .en {
  left: 50%;
  color: var(--color-white);
  transform: translateX(-50%);
}
.aboutbox04 .big {
  font-family: "Noto Serif SC";
  text-align: center;
  color: var(--color-white);
  margin: var(--gap-h3) 0 var(--gap-large);
}
.aboutbox04 .big .cn {
  font-weight: 700;
  font-size: calc(var(--fsize-h1) * 1.2);
}
@media (max-width: 800px) {
  .aboutbox04 .big .cn {
    font-size: var(--fsize-h2);
  }
}
.aboutbox04 .big .en {
  text-align: center;
}
@media (max-width: 800px) {
  .aboutbox04 .big .en {
    padding: 0 var(--gap-h1);
  }
}
.aboutbox04 .big .en img {
  width: 100%;
  max-width: 540px;
}
.aboutbox04 .txt {
  font-family: "Noto Serif SC";
  color: var(--color-white);
  text-align: center;
  font-size: var(--fsize-h3);
  line-height: 1.8;
}
@media (max-width: 800px) {
  .aboutbox04 .txt {
    font-size: var(--fsize-txt);
  }
}
.feedbackwrap {
  background: url(../img/dimg/feedbackbg.png) no-repeat center;
  background-size: cover;
  padding: var(--gap-h1) 0;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .feedbackwrap {
    padding-top: calc(var(--gap-h1) * 2.5);
  }
}
.feedbackwrap .fbb {
  flex: 1;
}
.feedbackwrap .comtit {
  text-align: center;
  padding-top: var(--gap-h1);
}
.feedbackwrap .comtit .cn {
  color: var(--color-white);
}
.feedbackwrap .comtit .en {
  left: 50%;
  color: var(--color-white);
  transform: translateX(-50%);
}
.feedbackwrap .box {
  background: var(--color-white);
  border-radius: var(--gap-large);
  margin-top: var(--gap-large);
  padding: var(--fsize-h1);
}
.messagecon {
  font-family: microsoft yahei;
  color: #333;
}
.messagecon p {
  margin-bottom: 20px;
}
.messagecon .messagetit {
  font-weight: bold;
  line-height: 30px;
  height: 30px;
}
@media (max-width: 800px) {
  .messagecon .messagetit {
    text-align: center;
    margin-top: 5px;
    font-size: 0.75rem;
  }
}
.messagecon .messagetarea {
  padding: 10px;
  border: 1px solid #dedede;
  font-size: 16px;
  line-height: 26px;
  font-family: microsoft yahei;
  color: #666;
  resize: none;
  width: 96%;
  height: 90px;
  transition: all 0.2s ease-in;
  background: #f8f8f8;
  margin-bottom: 20px;
}
.messagecon .messagetarea:focus {
  color: #333;
  outline: 0;
  background: #fff;
}
@media (max-width: 800px) {
  .messagecon .messagetarea {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.messagecon .messageinput {
  width: 27%;
  padding: 10px;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  border: 1px solid #dedede;
  margin: 0 5px 0 0;
  font-family: microsoft yahei;
  color: #666;
  transition: all 0.2s ease-in;
  background: #f8f8f8;
  margin-bottom: 20px;
}
.messagecon .messageinput:focus {
  color: #333;
  outline: 0;
  background: #fff;
}
@media (max-width: 800px) {
  .messagecon .messageinput {
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-bottom: 5px;
  }
}
.messagecon .messagebtn {
  width: 30%;
  text-align: center;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  border: 0;
  background: #b8c5ce;
  color: #2d3e50;
  border-radius: 4px;
  font-family: microsoft yahei;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .messagecon .messagebtn {
    margin: 5px auto 0;
    width: 80%;
    display: block;
  }
}
.messagecon .messagebtn.btnon {
  width: 50%;
  color: #fff;
  background-color: var(--color-main);
}
@media (max-width: 800px) {
  .messagecon .messagebtn.btnon {
    width: 80%;
  }
}
.messagecon .messagebtn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.messagecon .yanzhengma {
  display: inline;
}
@media (max-width: 800px) {
  .messagecon .yanzhengma {
    display: block;
    width: 20%;
    margin: 20px auto;
  }
}
@media (max-width: 800px) {
  .js-mouse-stalker {
    display: none;
  }
}
img {
  max-width: 100%;
}
.nprowrap {
  display: flex;
  margin: var(--gap-h1) 0;
}
@media (max-width: 800px) {
  .nprowrap {
    flex-direction: column;
  }
}
.nprowrap .side {
  flex: 1;
  margin-right: var(--gap-h3);
}
@media (max-width: 800px) {
  .nprowrap .side {
    margin-right: 0;
    margin-bottom: var(--gap-h3);
  }
}
.nprowrap .side .sbox {
  position: sticky;
  top: 80px;
}
.nprowrap .side .hd {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--gap-large) var(--gap-large);
  font-size: var(--fsize-large);
  font-weight: bold;
  color: var(--color-3);
}
.nprowrap .side .bd {
  padding: var(--gap-large) var(--gap-base);
  border: 1px solid var(--color-border);
  border-top: 0;
}
.nprowrap .side .bd .it {
  border-bottom: 1px dashed var(--color-border);
}
.nprowrap .side .bd .it:last-of-type {
  border-bottom: 0;
}
.nprowrap .side .bd .it .ia {
  display: flex;
  padding: var(--gap-base) var(--gap-base) var(--gap-base) var(--gap-small);
  font-size: var(--fsize-txt);
  text-decoration: none;
  align-items: center;
}
.nprowrap .side .bd .it .ia::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: url(../img/dimg/dots.svg) no-repeat center;
  margin-right: var(--gap-small);
}
.nprowrap .side .bd .it.on .ia {
  color: var(--color-main);
  font-weight: bold;
  background-color: var(--color-bg);
}
.nprowrap .main {
  flex: 3.5;
}
.nprowrap .main fieldset {
  border-width: 1px;
  border-color: var(--color-border);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  padding-left: var(--gap-large);
}
.nprowrap .main fieldset legend {
  font-size: var(--fsize-h2);
  color: var(--color-3);
  padding: 0 var(--gap-base);
}
@media (max-width: 800px) {
  .nprowrap .main fieldset legend {
    font-size: var(--fsize-h3);
  }
}
.nprowrap .main .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-base);
  margin: var(--gap-large) 0;
}
@media (max-width: 800px) {
  .nprowrap .main .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.nprowrap .main .list .it .ia {
  display: block;
  width: 100%;
  transition: all 0.3s;
}
.nprowrap .main .list .it .ia:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.nprowrap .main .list .it .img {
  background: url(../img/dimg/probg.jpg?4) no-repeat center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 80%;
  border: 1px solid var(--color-border);
  border-bottom: 0;
}
.nprowrap .main .list .it .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nprowrap .main .list .it .inf {
  border: 1px solid var(--color-border);
  padding: var(--gap-base);
  text-align: center;
  border-top: 0;
}
.nprowrap .main .list .it .inf .nam {
  font-size: var(--fsize-txt);
}
.footcontact {
  padding-bottom: var(--gap-large);
  margin-bottom: var(--gap-large);
  border-bottom: 1px solid var(--color-9);
  font-size: var(--fsize-txt);
  width: 100%;
  display: flex;
  opacity: 0.8;
}
.footcontact .hd {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.footcontact .hd img {
  display: block;
  margin-right: var(--gap-mini);
  width: var(--fsize-h3);
}
.footcontact .bd {
  margin-top: var(--gap-base);
  line-height: 1.8;
}
.newsbanner {
  height: 460px;
  background: url(../images/banner5.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
@media (max-width: 800px) {
  .newsbanner {
    height: 250px;
  }
}
.newsbanner.prob::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-0);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}
.newsbanner .wrapper {
  height: 100%;
}
.newsbanner .wrapper .box {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.newsbanner .wrapper .box .tit {
  font-family: "Noto Serif SC";
  font-weight: 700;
  font-size: calc(var(--fsize-h1) * 1.2);
}
@media (max-width: 800px) {
  .newsbanner .wrapper .box .tit {
    font-size: var(--fsize-h3);
  }
}
.aboutbigimg img {
  display: block;
  width: 100%;
}
.newslistwrap {
  margin: var(--gap-h3) 0;
}
.sean-newslist.sean-newslist-col3 {
  margin: var(--gap-large) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-h3);
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sean-newslist.sean-newslist-col3.sean-newslist-col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3.sean-newslist-col2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sean-newslist.sean-newslist-col3.sean-newslist-col4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3.sean-newslist-col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.sean-newslist.sean-newslist-col3 .sean-newslist-item {
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  background-color: var(--color-white);
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item {
    flex-direction: row;
    padding: 0 0 var(--gap-h3);
  }
}
.sean-newslist.sean-newslist-col3 .sean-newslist-item:last-child {
  border-bottom: 1px solid var(--color-border);
}
.sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img {
  width: 100%;
  margin-bottom: var(--gap-base);
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img {
    width: 30vw;
  }
}
.sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img a {
  padding-bottom: 65%;
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img a {
    padding-bottom: 75%;
  }
}
.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a {
  overflow: hidden;
}
.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a:after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: skewx(-25deg);
  opacity: 0.6;
}
.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a:hover:after {
  left: 120%;
  transition: 1s;
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item {
    flex-direction: column;
  }
  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item .sean-newslist-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--gap-base);
  }
  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item .sean-newslist-img a {
    padding-bottom: 65%;
  }
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-minftxt .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
    display: -webkit-box;
    margin-top: var(--gap-large);
  }
}
.sean-newslist.sean-newslist-alternate .sean-newslist-item:nth-child(2n) .sean-newslist-img {
  order: 2;
  margin-right: 0;
  margin-left: var(--gap-large);
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-alternate .sean-newslist-item:nth-child(2n) .sean-newslist-img {
    order: 0;
    margin-left: 0;
  }
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item {
  border: 0;
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img {
  width: 40%;
}
@media (max-width: 800px) {
  .sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img {
    width: 100%;
  }
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img a {
  padding-bottom: 60%;
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf {
  align-items: center;
  flex-direction: row;
  height: auto;
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con {
  height: auto;
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tit {
  font-size: var(--fsize-h3);
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl {
  background: var(--color-white);
  padding: 10px 30px;
  border: 1px solid var(--color-border);
  width: auto;
  height: auto;
  font-size: var(--fsize-base);
  text-decoration: none;
  border-radius: 30px;
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl:before {
  content: "阅读更多";
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl:hover {
  border-color: var(--color-main);
  color: var(--color-white);
  background-color: var(--color-main);
}
.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fr {
  display: none;
}
.sean-newslist.sean-newslist-imgright .sean-newslist-item .sean-newslist-img {
  order: 2;
  margin-right: 0;
  margin-left: var(--gap-large);
}
.sean-newslist .sean-newslist-item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 var(--gap-large);
  border-bottom: 1px solid var(--color-border);
}
.sean-newslist .sean-newslist-item:last-child {
  border-bottom: 0;
}
.sean-newslist .sean-newslist-item .sean-newslist-img {
  width: 220px;
  margin-right: var(--gap-large);
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-img {
    width: 30vw;
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-img a {
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 75%;
  position: relative;
}
.sean-newslist .sean-newslist-item .sean-newslist-img a img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-con {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit {
  font-size: var(--fsize-large);
  font-weight: bold;
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit {
    margin-bottom: var(--gap-base);
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit a {
  color: var(--color-3);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit a:hover {
  color: var(--color-main);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim {
  margin-top: var(--gap-base);
  color: var(--color-9);
  font-size: var(--fsize-base);
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim {
    margin-top: auto;
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span {
  margin-right: var(--gap-large);
  display: flex;
  align-items: center;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/seanui/seanui-icon-time.svg) no-repeat center;
  background-size: cover;
  margin-right: var(--gap-mini);
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span::before {
    width: 16px;
    height: 16px;
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span:nth-child(2)::before {
  background-image: url(../img/seanui/seanui-icon-nums.svg);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
  margin-top: var(--gap-base);
  color: var(--color-6);
  font-size: var(--fsize-base);
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 2;
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
    display: none;
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: var(--fsize-base);
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag {
    display: none;
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag a {
  margin-right: var(--gap-base);
  margin-top: var(--gap-base);
  color: var(--color-main);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag a:last-child {
  margin-right: 0;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub {
  margin-bottom: var(--gap-base);
  font-size: var(--fsize-base);
  color: var(--color-9);
  display: flex;
  align-items: center;
  margin-left: -4px;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub a {
  display: block;
  margin-right: var(--gap-base);
  color: var(--color-9);
  text-decoration: none;
  padding: 3px 4px;
  border-radius: var(--gap-mini);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-3);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool {
  margin-top: var(--gap-large);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool {
    margin-top: var(--gap-h3);
  }
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/seanui/seanui-icon-01.png) no-repeat center;
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a.sean-newslist-tool-fl {
  background-image: url(../img/seanui/seanui-icon-01.png);
}
.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a.sean-newslist-tool-fr {
  background-image: url(../img/seanui/seanui-icon-02.png);
}
.productwrap {
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
  height: 100vh;
  position: relative;
}
@media (max-width: 800px) {
  .productwrap {
    height: 110vh;
    box-sizing: border-box;
    padding-top: 10vh;
    background-attachment: fixed;
  }
}
.productwrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-0);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.productwrap .list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
}
@media (max-width: 800px) {
  .productwrap .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.productwrap .list .item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.productwrap .list .item .bigtit {
  width: 80%;
  position: absolute;
  right: 10%;
  bottom: 10%;
  text-align: right;
  color: var(--color-white);
  font-family: "Noto Serif SC";
}
@media (max-width: 800px) {
  .productwrap .list .item .bigtit {
    text-align: left;
    right: auto;
    left: 5%;
  }
}
.productwrap .list .item .bigtit .cn {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: 700;
}
@media (max-width: 800px) {
  .productwrap .list .item .bigtit .cn {
    font-size: var(--fsize-h1);
  }
}
.productwrap .list .item .bigtit .en {
  font-size: var(--fsize-large);
}
.productwrap .list .item .ia {
  box-sizing: border-box;
  padding: var(--gap-h3);
  display: block;
  position: relative;
  height: 100%;
  color: var(--color-white);
}
.productwrap .list .item .ia::before {
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background: linear-gradient(135deg, #1c589c, var(--color-main));
  content: "";
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.productwrap .list .item .ia:hover::before {
  right: auto;
  left: 0%;
  width: 100%;
}
.productwrap .list .item .ia:hover .tit {
  bottom: 40%;
}
@media (max-width: 800px) {
  .productwrap .list .item .ia:hover .tit {
    bottom: 20%;
  }
}
.productwrap .list .item .ia:hover .btn {
  bottom: 20%;
  opacity: 1;
}
.productwrap .list .item .ia .tit {
  width: 80%;
  position: absolute;
  right: 10%;
  bottom: 10%;
  text-align: right;
  font-family: "Noto Serif SC";
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 800px) {
  .productwrap .list .item .ia .tit {
    text-align: left;
    right: auto;
    left: 5%;
  }
  .productwrap .list .item .ia .tit .ico img {
    width: 60px;
  }
}
.productwrap .list .item .ia .tit .cn {
  font-weight: 700;
  font-size: var(--fsize-h2);
}
@media (max-width: 800px) {
  .productwrap .list .item .ia .tit .cn {
    font-size: var(--fsize-h3);
  }
}
.productwrap .list .item .ia .tit .en {
  font-size: var(--fsize-base);
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .productwrap .list .item .ia .tit .en {
    font-size: var(--fsize-small);
  }
}
.productwrap .list .item .ia .btn {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 165px;
  line-height: 48px;
  border: 1px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}
@media (max-width: 800px) {
  .productwrap .list .item .ia .btn {
    display: none;
  }
}
.productwrap .list .item .ia .btn:hover {
  background-color: var(--color-txt);
}
.productwrap .list .item .ia .btn span {
  font-family: "Noto Serif SC";
  font-size: var(--fsize-txt);
  margin-right: var(--gap-small);
}
.newsitembanner {
  height: 400px;
  background: url(../images/banner5.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
@media (max-width: 800px) {
  .newsitembanner {
    height: 250px;
  }
}
.newsitembanner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-0);
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
}
.newsitembanner .wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.newsitembanner .wrapper .box {
  padding-bottom: var(--gap-h3);
  color: var(--color-white);
}
.newsitembanner .wrapper .box .tit {
  font-family: "Noto Serif SC";
  font-weight: 700;
  font-size: var(--fsize-h1);
}
@media (max-width: 800px) {
  .newsitembanner .wrapper .box .tit {
    font-size: var(--fsize-h2);
  }
}
.newsitembanner .wrapper .box .inf {
  font-size: var(--fsize-base);
  margin-top: var(--gap-base);
}
.newsitembanner .wrapper .box .inf span {
  margin-right: var(--gap-large);
  opacity: 0.6;
}
.newsmain {
  display: flex;
  margin: var(--gap-h3) 0;
}
@media (max-width: 800px) {
  .newsmain {
    flex-direction: column;
  }
}
.newsitem {
  flex: 1;
  border-right: 1px solid var(--color-border);
  padding-right: var(--gap-large);
  min-height: 50vh;
}
@media (max-width: 800px) {
  .newsitem {
    border-right: 0;
    padding-right: 0;
  }
}
.newsitem .content {
  font-size: var(--fsize-large);
  line-height: 1.8;
  color: var(--color-3);
}
.newsitem .content p {
  margin-bottom: var(--gap-large);
}
.newsitem .content img {
  max-width: 100%;
}
.newsitem .mor {
  padding-top: var(--gap-large);
  margin-top: var(--gap-large);
  border-top: 1px solid var(--color-border);
  line-height: 2;
  font-size: var(--fsize-txt);
}
.newside {
  width: 400px;
}
@media (max-width: 800px) {
  .newside {
    display: none;
  }
}
.newside .tuibox .hd {
  font-size: var(--fsize-h2);
  font-weight: 700;
  color: var(--color-3);
  font-family: "Noto Serif SC";
  padding-left: var(--gap-large);
}
.newside .tuibox .bd {
  padding-left: var(--gap-large);
}
.newside .tuibox .bd .item {
  padding: var(--gap-large) 0;
  border-bottom: 1px solid var(--color-border);
}
.newside .tuibox .bd .item .img a {
  display: block;
}
.newside .tuibox .bd .item .img img {
  display: block;
  width: 100%;
}
.newside .tuibox .bd .item .inf {
  margin-top: var(--gap-small);
}
.newside .tuibox .bd .item .inf .nam {
  font-size: var(--fsize-txt);
}
.proitembanner {
  height: 460px;
  background: url(../img/dimg/proitembg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
@media (max-width: 800px) {
  .proitembanner {
    height: 400px;
  }
}
.proitembanner .wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.proitembanner .wrapper .img {
  max-width: 600px;
}
@media (max-width: 800px) {
  .proitembanner .wrapper .img {
    padding: 0 var(--gap-h3);
  }
}
.proitembanner .wrapper .img img {
  display: block;
  width: 100%;
}
.proitembanner .wrapper .box {
  position: absolute;
  left: 0;
  bottom: 35%;
  padding-left: var(--gap-large);
  color: var(--color-white);
  font-family: "Noto Serif SC";
}
@media (max-width: 800px) {
  .proitembanner .wrapper .box {
    padding-left: var(--gap-h3);
    padding-bottom: var(--gap-h3);
    bottom: 0;
  }
  .proitembanner .wrapper .box .ico img {
    display: block;
    width: 50px;
  }
}
.proitembanner .wrapper .box .tit {
  font-weight: 700;
  font-size: var(--fsize-h1);
}
@media (max-width: 800px) {
  .proitembanner .wrapper .box .tit {
    font-size: var(--fsize-h2);
  }
}
.proitembanner .wrapper .box .txt {
  font-size: var(--fsize-base);
  margin-top: var(--gap-mini);
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .proitembanner .wrapper .box .txt {
    font-size: var(--fsize-small);
  }
}
.proitemcon {
  margin: var(--gap-h3) 0;
}
.proitemcon .content {
  font-size: var(--fsize-large);
  line-height: 1.8;
  color: var(--color-3);
}
.proitemcon .content p {
  margin-bottom: var(--gap-large);
}
.proitemcon .content img {
  max-width: 100%;
}
.proitemcon .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-h3);
}
@media (max-width: 800px) {
  .proitemcon .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.proitemcon .list .item .img {
  background: url(../img/dimg/probg.jpg?4) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.proitemcon .list .item .img img {
  display: block;
  width: 100%;
  transition: all 0.3s;
}
.proitemcon .list .item .img img:hover {
  transform: scale(1.05);
}
.newbuju {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.newbuju::before {
  display: none;
}
.newbuju .col-lg-6 {
  width: 100% !important;
}
@media (max-width: 800px) {
  .cbdiv_a08ecb3c.envisionearthday {
    background-image: url(../img/dimg/mbanner01.jpg);
  }
  .cbdiv_6b39156e.rdcover {
    background-image: url(../img/dimg/mbanner06.jpg);
  }
  .cbdiv_6b39156e.energycover {
    background-image: url(../img/dimg/mbanner02.jpg);
  }
  .cbdiv_6b39156e.digtalcover {
    background-image: url(../img/dimg/mbanner03.jpg);
  }
  .cbdiv_6b39156e.venturescover {
    background-image: url(../img/dimg/mbanner04.jpg);
  }
  .cbdiv_98856235.fecover {
    background-image: url(../img/dimg/mbanner05.jpg);
  }
}
body {
  overflow-x: hidden;
}
body.fxd {
  overflow: hidden;
}
.wrapper {
  box-sizing: border-box;
  padding: 0 var(--gap-large);
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1660px) {
  .wrapper {
    width: 100%;
    padding: 0 var(--gap-h3);
  }
}
@media (max-width: 1440px) {
  .wrapper {
    width: 100%;
    padding: 0 var(--gap-h3);
  }
}
@-webkit-keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
.zoomInSmall {
  -webkit-animation-name: zoomInSmall;
  animation-name: zoomInSmall;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  box-shadow: 0px 0px 6px -3.5px rgba(0, 0, 0, 0.25) inset;
}
.lightGallery-white-theme .lg-sub-html {
  color: #333 !important;
}
.lightGallery-white-theme .lg-sub-html a {
  color: #2f2f2f !important;
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-thumb-item.active,
.lightGallery-white-theme .lg-thumb-item:hover {
  border-color: var(--color-main);
}
.lightGallery-white-theme .lg-progress-bar {
  background-color: #999;
}
.lightGallery-white-theme .lg-progress-bar .lg-progress {
  background-color: #333;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  background-color: #fcfcfc;
}
.lightGallery-white-theme .lg-next,
.lightGallery-white-theme .lg-prev {
  background-color: rgba(0, 0, 0, 0.03);
  color: #444;
}
.lightGallery-white-theme .lg-next:hover,
.lightGallery-white-theme .lg-prev:hover {
  color: #000;
}
.lightGallery-white-theme .lg-next:focus,
.lightGallery-white-theme .lg-prev:focus {
  outline: none;
  box-shadow: none;
}
.lightGallery-white-theme .lg-toolbar .lg-icon {
  color: #555;
}
.lightGallery-white-theme .lg-toolbar .lg-icon:hover {
  color: #000;
}
.lightGallery-white-theme .lg-counter {
  color: #555;
}
.lightGallery-white-theme .lg-outer .lg-thumb-item.active,
.lightGallery-white-theme .lg-outer .lg-thumb-item:hover {
  border: 2px solid var(--color-main);
}
/* 圆细滚动条样式 20180601 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-button:vertical {
  display: none;
}
::-webkit-scrollbar-track:vertical {
  background-color: black;
}
::-webkit-scrollbar-track-piece {
  background: #fff;
}
::-webkit-scrollbar-thumb:vertical {
  background-color: #c2c2c2;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #a0a0a0;
}
::-webkit-scrollbar-corner:vertical {
  background-color: #535353;
}
::-webkit-scrollbar-resizer:vertical {
  background-color: #ff6e00;
}
/* 拖选文字样式 20160628 */
::selection {
  background: var(--color-main);
  color: var(--color-white);
}
::-moz-selection {
  background: var(--color-main);
  color: var(--color-white);
}
/* 移动端全局控制reset */
body,
div,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
iframe,
input,
textarea,
select,
label,
article,
aside,
footer,
header,
menu,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
audio,
canvas,
video {
  display: block;
}
body {
  font-size: 100%;
  font-family: Helvetica, "PingFang SC", "Hiragino Sans GB", STHeiti, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--color-white);
}
textarea {
  resize: none;
}
iframe,
img {
  border: 0;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  outline: 0;
  -webkit-user-modify: read-write-plaintext-only;
}
/* input { -webkit-appearance: none; } */
a {
  text-decoration: none;
  color: #666;
}
a:hover {
  text-decoration: underline;
  color: var(--color-main);
}
