body {
    margin: 0;
    padding: 0;
    font: 15px/1.5 Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

blockquote,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
}

button,
input {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}

small {
    font-size: 12px;
}

li {
    list-style-type: none;
}

a {
    font: inherit;
    text-decoration: none;
    outline: 0 none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    overflow: hidden;
    clear: both;
}
.animated {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
  z-index: 9;
}

.animated-bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.animated-bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

.animated-rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

.animated-shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.animated-bigShake {
  -webkit-animation-name: bigShake;
  animation-name: bigShake;
}

.animated-jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.animated-zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated-zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.animated-zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

.animated-zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

.animated-fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.animated-fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
}

.animated-fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated-lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated-scaleOut {
  -webkit-animation-name: scaleOut;
  animation-name: scaleOut;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: .15s;
  animation-duration: .15s;
}

.animated-scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: .15s;
  animation-duration: .15s;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bigShake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes bigShake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  25%, 50%, 75% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  12.5%, 37.5%, 62.5%, 87.5% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  25%, 50%, 75% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes scaleOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 1;
  }
}

body {
  position: relative;
  background-color: #fff;
  min-width: 1000px;
  color: #fff;
  line-height: 1.5;
}
.u-title1 {
  display: block;
  margin: 0 auto;
  padding: 70px 0 22px;
}
.u-title2 {
  display: block;
  margin: 0 auto;
}
.header {
  margin-top: 70px;
  position: relative;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/banner_pc.png") no-repeat top center;
  height: 500px;
  overflow: hidden;
}
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #09ac2a;
  z-index: 999;
}
.top-nav .m-top-nav-w {
  margin: 0 auto;
  width: 1000px;
}
.top-nav .m-top-nav-w:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.top-nav .top-nav-con {
  float: left;
}
.top-nav .top-nav-con:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.top-nav .top-nav-con li {
  float: left;
  margin-right: 40px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.top-nav .top-nav-con a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.top-nav .top-nav-con a:hover {
  font-weight: bold;
  color: #fff;
}
.top-nav .top-nav-con a:hover:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
}
.top-nav .top-nav-con .selected a {
  font-weight: bold;
  color: #fff;
}
.top-nav .top-nav-con .selected a:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
}
.top-nav .m-top-nav-blk2 {
  float: right;
}
.top-nav .m-top-nav-blk2 a {
  float: left;
  display: block;
  height: 70px;
}
.top-nav .m-top-nav-blk2 .u-top-nav1 {
  margin-right: 30px;
  width: 96px;
  background: url("../images/pc_pic01.png") no-repeat center center;
}
.top-nav .m-top-nav-blk2 .u-top-nav2 {
  margin-right: 36px;
  width: 28px;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic02.png") no-repeat center center;
}
.top-nav .m-top-nav-blk2 .u-top-nav3 {
  width: 40px;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic19.png") no-repeat center center;
}
.top-nav .m-top-nav-blk2 .u-top-nav4 {
  width: 40px;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic21.png") no-repeat center center;
}
.top-nav.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  margin-top: 0px;
  width: 100%;
  z-index: 999;
}
/*footer*/
.m-footer-w {
  width: 100%;
}
.m-footer-w .footer {
  text-align: center;
  line-height: 28px;
  margin: 0 auto;
  width: 1000px;
  font-size: 16px;
  padding: 30px 0;
  width: 100%;
  color: #fff;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_footer.png") no-repeat center center;
}
.m-footer-w .footer a:link,
.m-footer-w .footer a:visited {
  color: #fff;
}
.m-footer-w .footer a:hover {
  color: #fff;
}
.m-aside-nav2 {
  position: fixed;
  left: 50%;
  bottom: 10px;
  margin-left: 520px;
  z-index: 999;
}
.m-aside-nav2 .m-aside-item {
  display: block;
  margin-bottom: 5px;
  padding: 10px;
  width: 56px;
  height: 56px;
  line-height: 26px;
  text-align: center;
  color: #eaeafc;
  font-size: 22px;
  background-color: #00696F;
  border-radius: 4px;
}
.m-aside-nav2 .m-aside-item:hover {
  background-color: #007B83;
}
.m-aside-nav2 .item-wb3 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_nav1.png") no-repeat center center;
  background-color: #00696F;
}
.m-aside-nav2 .item-wx3 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_nav2.png") no-repeat center center;
  background-color: #00696F;
}
.m-aside-nav2 .item-top3 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_nav3.png") no-repeat center center;
  background-color: #00696F;
}
.m-thanks {
  margin: 0 auto;
  width: 100%;
  background: #F2F9F3;
}
.main {
  margin: 0 auto;
}
.main .m-title1 {
  margin: 0 auto;
  padding: 80px 0 24px;
  font-family: PingFangSC-Light;
  font-size: 36px;
  color: #ffffff;
  line-height: 36px;
  font-weight: 200;
  text-align: center;
}
.main .m-title2 {
  margin: 0 auto;
  padding: 80px 0 24px;
  height: 36px;
  font-family: PingFangSC-Light;
  font-size: 36px;
  color: #09ac2a;
  line-height: 36px;
  font-weight: 200;
  text-align: center;
}
.main .m-des1 {
  margin: -10px auto 0;
  height: 36px;
  font-family: PingFangSC-Light;
  font-size: 20px;
  color: #fff;
  font-weight: 200;
  text-align: center;
}
.main .m-des2 {
  margin: -10px auto 0;
  height: 36px;
  font-family: PingFangSC-Light;
  font-size: 20px;
  color: #09ac2a;
  font-weight: 200;
  text-align: center;
}
.en .top-nav .top-nav-con li {
  width: 60px;
  margin-right: 70px;
}

/*
 * @Author: lvjing
 * @Date: 2023-04-20 10:53:37
 * @LastEditTime: 2023-08-15 16:39:33
 * @Version: 1.0
 * @Description: 公用部分：广告，评委，价值模型，联系方式，相关报道
 * @Import: ../xx
 */
.m-judge .cont {
  margin: 0 auto;
  padding-top: 30px;
}
.m-judge .cont h3 {
  padding: 10px 0;
  line-height: 36px;
  color: #fff;
  text-align: center;
}
.m-judge .cont:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-judge .cont1 {
  margin-top: 30px;
}
.m-judge .m-judge-item {
  float: left;
  width: 20%;
  text-align: center;
  margin-bottom: 10px;
}
.m-judge .m-judge-item .m-img-box {
  position: relative;
  margin: 0 auto;
  border: 12px solid #fff;
  width: 136px;
  height: 136px;
  border-radius: 9999px;
  overflow: hidden;
}
.m-judge .m-judge-item img {
  display: block;
  width: 136px;
  height: 136px;
  text-align: center;
}
.m-judge .m-judge-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.m-judge .m-judge-item span {
  display: block;
  margin: 5px auto 0;
  width: 150px;
  font-size: 12px;
  height: 52px;
  line-height: 18px;
  color: #fff;
  overflow: hidden;
}
.m-judge .m-judge-more {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #ffffff;
  border-radius: 24px;
  font-family: PingFangSC-Regular;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
}
.m-judge .m-judge-more:hover {
  background: #fff;
  color: #09ac2a;
}
.en .m-judge .m-judge-item span {
  height: 126px!important;
}

/*
 * @Author: lvjing
 * @Date: 2023-07-07 15:09:31
 * @LastEditTime: 2023-09-15 18:39:29
 * @Version: 1.0
 * @Description: ESG
 * @Import: ../xx
 */
.m-money {
  margin: 30px auto;
  width: 1000px;
}
.m-money a {
  display: block;
}
#m_part1 {
  background: #06ad46;
  width: 100%;
}
.m-part1 {
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 50px;
  width: 1077px;
}
.m-part1 .m-meeting-blk ul:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-part1 .m-meeting-item {
  float: left;
  margin: 0 18px;
  padding-top: 100px;
  width: 322px;
}
.m-part1 .m-meeting-item p {
  font-family: PingFangSC-Regular;
  font-size: 14px;
  color: #ffffff;
  text-align: justify;
  font-weight: 400;
}
.m-part1 .m-meeting-icon1 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic03.png") no-repeat top center;
}
.m-part1 .m-meeting-icon2 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic04.png") no-repeat top center;
}
.m-part1 .m-meeting-icon3 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic05.png") no-repeat top center;
}
.m-part2 {
  margin: 0 auto;
  width: 1000px;
  padding-top: 24px;
}
.m-part2 .m-look-blk:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-part2 .m-look-item {
  float: left;
  padding-top: 100px;
  width: 25%;
  font-family: PingFangSC-Regular;
  font-size: 18px;
  color: #09ac2a;
  text-align: center;
  line-height: 18px;
  font-weight: 400;
}
.m-part2 .m-look-icon1 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic06.png") no-repeat top center;
}
.m-part2 .m-look-icon2 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic07.png") no-repeat top center;
}
.m-part2 .m-look-icon3 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic08.png") no-repeat top center;
}
.m-part2 .m-look-icon4 {
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic09.png") no-repeat top center;
}
.m-part3 {
  margin: 0 auto 40px;
  width: 1000px;
}
.m_tab_box {
  margin: 0 auto 24px;
  text-align: center;
}
.tab {
  display: inline-block;
  padding: 4px;
  height: 40px;
  line-height: 48px;
  border: 1px solid #09ac2a;
  border-radius: 24px;
}
.tab .tab-item {
  float: left;
  width: 152px;
  height: 40px;
  line-height: 40px;
  font-family: PingFangSC-Regular;
  font-size: 20px;
  color: #09ac2a;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
}
.tab .tab_selected {
  background: #09ac2a;
  border-radius: 24px;
  color: #fff;
}
#m_part4 {
  width: 100%;
  background: #f2f9f3;
}
.m-part4 {
  margin: 0 auto;
  width: 1000px;
  padding-bottom: 36px;
}
.m-part4 .m_blk4 {
  position: relative;
}
.m-part4 .m_blk4:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-part4 .m_blk4 .swiper {
  float: right;
  width: 538px;
  height: 358px;
}
.m-part4 .m_blk4 .swiper img {
  display: block;
  width: 538px;
}
.m-part4 .m_blk4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.m-part4 .m_blk4 .swiper-slide a {
  display: block;
  width: 538px;
  height: 358px;
}
.m-part4 .m_blk4 .swiper-pagination-bullet {
  opacity: 1;
  border: solid 2px #fff;
  width: 6px;
  height: 6px;
  background: none;
}
.m-part4 .m_blk4 .swiper-pagination-hot {
  bottom: 60px;
}
.m-part4 .m_blk4 .swiper-pagination-bullet-active {
  background: #fff;
}
.m-part4 .m_blk4 .u-hot-des {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  display: block;
  text-align: center;
  line-height: 50px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-part4 .m_blk4 .m-hot-box {
  float: left;
  width: 448px;
}
.m-part4 .m_blk4 .m-hot-item {
  display: block;
  margin-bottom: 10px;
  border-left: 6px solid #09ac2a;
  padding-left: 12px;
  width: 430px;
  height: 36px;
  line-height: 36px;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #09ac2a;
  font-weight: 400;
  border-radius: 0;
  opacity: 1;
  background: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-part4 .m_blk4 .m-hot-item a {
  color: #09ac2a;
}
.m-part4 .m_blk4 .m-hot-item:hover {
  background: #09ac2a;
}
.m-part4 .m_blk4 .m-hot-item:hover a {
  color: #fff;
}
.m-part5 {
  margin: 0 auto;
  width: 1000px;
}
.m-part5 .s_list dl {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #09ac2a;
  border-radius: 12px;
  padding: 30px 40px;
}
.m-part5 .s_list dt {
  width: 200px;
  float: left;
  font-family: PingFangSC-Regular;
  font-size: 18px;
  color: #09ac2a;
  line-height: 34px;
  font-weight: 400;
}
.m-part5 .s_list dd {
  float: left;
  width: 710px;
}
.m-part5 .s_list h3 {
  line-height: 34px;
  font-family: Helvetica;
  font-size: 18px;
  color: #09ac2a;
  font-weight: 400;
}
.m-part5 .s_list_top {
  font-size: 26px;
  text-align: center;
  line-height: 80px;
  color: #333;
}
.m-part5 .click_look {
  margin: -10px auto 20px;
  text-align: center;
  color: #888888 !important;
}
.m-part5 .s_list p {
  margin-bottom: 10px;
  font-size: 12px;
  color: #007b83;
}
.m-part5 .s_list p a {
  font-family: Helvetica;
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}
.m-part5 .s_list p strong {
  display: flex;
  font-size: 14px;
}
.m-part5 .s_list p strong img {
  height: 18px;
}
.m-part5 .s_list_top p {
  font-weight: bold;
  font-size: 18px;
  color: #007b83;
  line-height: 30px;
  text-align: center;
}
#m_part6 {
  width: 100%;
  background: #f2f9f3;
}
.m-part6 {
  margin: 48px auto 0;
  width: 1000px;
  padding-bottom: 36px;
}
.m-part6 .m-news-blk {
  overflow: hidden;
}
.m-part6 .m-news-blk .swiper-slide {
  margin-top: 15px;
  width: auto;
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.m-part6 .m-news-blk .swiper-pagination {
  position: relative;
  height: 26px;
  line-height: 26px;
  color: #999;
  bottom: 0;
  text-align: right;
}
.m-part6 .m-news-blk .swiper-pagination-fraction {
  right: 74px;
  width: auto;
  left: auto;
}
.m-part6 .m-news-blk .swiper-pagination-bullet-active {
  opacity: 1;
  background: #09ac2a;
}
.m-part6 .m-video-item {
  margin-right: 20px;
  width: 320px;
  cursor: pointer;
}
.m-part6 .m-video-item .m-video-box1 {
  position: relative;
  width: 320px;
  height: 240px;
}
.m-part6 .m-video-item .m-video-box1 img {
  width: 320px;
  height: 240px;
}
.m-part6 .m-video-item .m-video-box2 {
  position: relative;
  padding: 18px 15px;
  height: 74px;
  line-height: 20px;
  background: #fff;
  overflow: hidden;
}
.m-part6 .m-video-item .m-video-box2 h2 {
  margin-bottom: 10px;
  font-family: Helvetica;
  font-size: 14px;
  color: #09ac2a;
  font-weight: 400;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-part6 .m-video-item .m-video-box2 p {
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  font-weight: 400;
  text-align: left;
}
.m-part6 .m-video-item .m-video-box3 img {
  width: 320px;
  height: 350px;
}
.m-part6 .m-video-item:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-part6 .m-video-item:nth-last-child(1) {
  border: 0 none;
}
#m_part7 {
  width: 100%;
  background: url("//n1.sinaimg.cn/finance/2023esgqqldzdh/images/pc_pic16.png") no-repeat center center;
  background-size: 100% 100%;
}
.m-part7 {
  margin: 0 auto 0;
  width: 1000px;
  padding-bottom: 36px;
}
.m-part8 {
  margin: 48px auto ;
  width: 1000px;
}
.m-part8 .m-blk8 {
  position: relative;
}
.m-part8 .tab2 {
  position: absolute;
  top: 0;
  left: 536px;
  padding: 4px;
  width: 456px;
  height: 40px;
  margin: 0 auto 24px;
  line-height: 48px;
  border-radius: 24px;
}
.m-part8 .tab2 .tab-item2 {
  float: left;
  margin-right: 24px;
  border: 1px solid #09ac2a;
  width: 108px;
  height: 40px;
  line-height: 40px;
  font-family: PingFangSC-Regular;
  font-size: 20px;
  color: #09ac2a;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
  border-radius: 20px;
}
.m-part8 .tab2 .tab_selected {
  background: #09ac2a;
  color: #fff;
}
.m-part8 .m_history_blk {
  color: #09ac2a;
}
.m-part8 .m_history_blk:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  clear: both;
}
.m-part8 .m_history_blk .m-history-box1 {
  float: left;
}
.m-part8 .m_history_blk .m-history-box1 img {
  width: 500px;
  height: 282px;
}
.m-part8 .m_history_blk .m-history-box2 {
  float: right;
  padding-top: 76px;
  width: 464px;
}
.m-part8 .m_history_blk .m-history-box2 .u-history-des {
  margin-bottom: 15px;
  line-height: 20px;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #09ac2a;
  font-weight: 400;
}
.m-part8 .m_history_blk .m-history-box2 .u-history-des a {
  color: #09ac2a;
}
.en .tab .tab-item {
  font-size: 16px;
}
.m-part10 {
  margin: 0 auto 48px;
  width: 1000px;
}
.m-part10 .m-title2 {
  position: relative;
}
.m-part10 .m-book-zx {
  position: absolute;
  right: 0;
}
.m-part10 .recommend-content {
  width: 1000px;
  overflow: hidden;
  margin: 28px auto 38px;
}
.m-part10 .float-content {
  float: left;
}
.m-part10 .float-item {
  float: left;
  width: 260px;
  margin-right: 20px;
  cursor: pointer;
}
.m-part10 .float-item img {
  width: 260px;
  height: 260px;
}
.m-part10 .float-item p {
  font-family: PingFangSC-Regular;
  font-size: 18px;
  color: #09AC2A;
  text-align: center;
  line-height: 32px;
  font-weight: 400;
}
#m_part9{
    background: #06ad46;
    width: 100%;
    padding-bottom: 62px;
}
#m_part9 ul{
    display: flex;
    width: 1004px;
    justify-content: space-between;
    margin: 30px auto 0;
}
#myForm{
  width: 1004px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;

}
#myForm p{
  font-family: PingFang-SC-Bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 16px;
  font-weight: 700;
  margin: 16px 0 8px;
}
#myForm .left-part input{
  width: 320px;
  height: 50px;
  border: 1px solid rgba(255,255,255,1);
  padding: 10px;
  box-sizing: border-box;
}
.right-part textarea{
  width: 636px;
  height: 230px;
  border: 1px solid rgba(255,255,255,1);
  padding: 10px;
  box-sizing: border-box;
  background: #06ad46;
}
#myForm .right-part {
  width: 638px;
}
.right-part .submit-btn{
  width: 107px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 30px;
  font-size: 18px;
  color: #09AC2A;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  display: block;
  margin-top: 40px;
  float: right;
}
.icon-business{
    display: block;
    width: 49px;
    height: 41px;
    background: url(../images/icon-qiatan.png) 0/contain no-repeat;
}
.icon-media{
    display: block;
    width: 41px;
    height: 40px;
    background: url(../images/icon-media.png) 0/contain no-repeat;
}
.icon-guest{
    display: block;
    width: 42px;
    height: 39px;
    background: url(../images/icon-guest.png) 0/contain no-repeat;
}
#m_part9 h4{
    font-family: PingFang-SC-Bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 18px;
    font-weight: 700;
    margin: 12px 0 16px;
}
#m_part9 ul p{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 26px;
    font-weight: 400;
}