/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: #1c337d;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

body {
  background: #fff;
  color: #666666;
  font-family: Microsoft YaHei, SimHei, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.8;
  background-size: cover;
  background-attachment: fixed;
}

a {
  color: #1c337d;
  text-decoration: none;
  transition: all .4s;
}

a:hover,
a:active,
a:focus {
  color: #007bff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.gray-bg {
  background: #f7fafc;
}

img {
  max-width: 100%;
}

.font-alt {
  font-family: "SimHei";
}

.white-bg {
  background: #fff;
}

.container {
  max-width: 1300px;
}

.dark-color {
  color: #111;
}

.box-shadow {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

.title {
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  margin: 0;
  color: #2a2e2e;
  padding: 30px;
  text-transform: uppercase;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

@media (max-width: 768px) {
  .title {
    font-size: 20px;
    padding: 16px;
  }
}

/*--------------
    淡入
*/
@keyframes fade-in {
  0% {
    opacity: 0;
  }

  /*初始状态 透明度为0*/
  100% {
    opacity: 1;
  }

  /*结束状态 透明度为1*/
}

@-webkit-keyframes fade-in {

  /*针对webkit内核*/
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade-in {

  /*针对FireFox内核*/
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fade-in {

  /*针对Opera内核*/
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadein {
  animation: fade-in;
  /*动画名称*/
  animation-duration: 1s;
  /*动画持续时间*/
  -webkit-animation: fade-in 1s;
  /*针对webkit内核*/
  -moz-animation: fade-in 1s;
  /*针对FireFox内核*/
  -o-animation: fade-in 1s;
  /*针对Opera内核*/
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  height: 29px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
  background-color: rgba(255, 255, 255, 1);
  color: #333;
  height: 70px;
  transition: all 0.5s;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (max-width:768px) {
  #header {
    height: 70px;
  }

  #header.header-scrolled {
    height: 60px;
  }

  #header #logo img {
    height: 25px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  transition: .4s;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 16px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}

.header-scrolled .navbar a,
.header-scrolled .navbar li:hover>a,
.header-scrolled .navbar a:hover {
  color: #333;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #1c337d;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar .active:before,
.navbar li:hover>a:before,
.navbar .active>a:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.3s;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul li:hover,
.navbar .dropdown ul .active:hover {
  background-color: #1c337d;
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #666666;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: static;
  /* overflow: hidden; */
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  right: 15px;
}

.navbar-mobile ul {
  width: 50%;
  display: block;
  position: absolute;
  top: 70px;
  right: 0px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 10;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 5px 20px;
  font-size: 15px;
  color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1c337d;
}

.navbar-mobile div a {
  margin-right: 16px;
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #eee;
  width: 100%;
}

.navbar-mobile .dropdown ul li {
  margin-left: 20px;
}

.navbar-mobile .dropdown ul a {
  padding: 5px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*---------------------------------
* 13. Footer Section
-----------------------------------*/

.social-icons {
  margin: 0;
  padding: 0;
}

li.social-icons {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  margin-right: 8px;
}

li.social-icons a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
}

li.social-icons a img {
  width: 100%;
}

.footer {
  background: #1a1a1a;
}

.footer-section {
  padding: 60px 100px 0 100px;
}

.footer-width {
  flex: 0 0 auto;
  width: 14.5%;
}

.footer-section .footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 20px;
}

.footer-section .footer-text p {
  width: 350px;
  max-width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, .5);
}

.footer-section .footer-text .er-code {
  display: flex;
  color: #fff;
  text-align: center;
}

.footer-section .footer-text .er-code .col-4 {
  padding-right: 67px;
}

.footer-section .footer-text .er-code.en .col-4 {
  padding-right: 0px;
}

@media (max-width: 1024px) {
  .footer-section .footer-text .er-code .col-4 {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .footer-width {
    width: 25%;
  }
}

.footer-section .footer-text .er-code img {
  width: 100px;
}

.footer-section .footer-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content li {
  margin-bottom: 8px;
}

.footer-content li a {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  transition: color .4s;
}

.footer-content li a:hover {
  color: #fff;
}

.footer-section p {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.footer-newsletter .m-btn:hover {
  background: #111;
  color: #fff;
}

.footer-newsletter .form-control {
  background: rgba(0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.19);
  color: rgba(255, 255, 255, .5);
  padding: 10px 15px;
  border-radius: 0;
  box-shadow: none !important;
  height: 50px;
}

.fot-copyright {
  margin-top: 26px;
  background-color: #252525;
}

.fot-copyright p {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  margin: 0;
  padding: 20px 0;
}

.fot-copyright p a {
  color: #007bff;
}

@media(max-width: 768px) {
  .footer-section {
    padding: 30px;
  }

  .fot-copyright {
    margin-top: 10px;
  }

  .footer-width {
    width: 50%;
  }

  .footer .m-15px-tb {
    margin-top: 0px;
  }

  .footer-section .footer-logo {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-section .footer-text p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer-section .footer-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-content ul,
  .footer-content li {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/

/* 主图 */
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/index/hero-bg.jpg) center;
  background-size: cover;
  position: relative;
}

#hero.hero-jr {
  background: url(../img/index/bg2023.jpg) center;
  background-size: cover;
}

#hero.hero-jr::before {
  background: none;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: linear-gradient(rgb(143 153 189 / 30%), rgb(18 30 49 / 30%));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  text-shadow: 3px 3px 5px #000;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 26px;
  font-weight: 700;
  text-shadow: 3px 3px 4px #000;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #1c337d;
  border: 2px solid #1c337d;
}

#hero .hero-container img {
  height: 70vh;
}

.hero-jr#hero .hero-container {
  animation: focus 15s infinite;
  background-size: auto 50vh;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes focus {
  0% {
    background-image: url("../img/index/pic2023-1.png");
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  45% {
    background-image: url("../img/index/pic2023-1.png");
    opacity: 0;
  }

  46% {
    background-image: url("../img/index/pic2023-2.png");
  }

  50% {
    background-image: url("../img/index/pic2023-2.png");
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  95% {
    background-image: url("../img/index/pic2023-2.png");
    opacity: 0;
  }

  96% {
    background-image: url("../img/index/pic2023-1.png");
  }

  100% {
    background-image: url("../img/index/pic2023-1.png");
    opacity: 1;
  }
}

.hero-jr#hero .hero-container img {
  height: 50vh;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h1.en {
    font-size: 24px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero h2.en {
    font-size: 16px;
  }

  #hero .btn-get-started {
    font-size: 12px;
  }

  .hero-jr#hero .hero-container {
    background-size: auto 35vh;
  }
}

/* 数字 */
.mainnum {
  background-color: #243f85;
  padding: 20px 50px;
  position: relative;
  display: block;
}

.mainnum-box {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.mainnum-box .row {
  align-items: center;
}

.mainnum-box .mainnum-row {
  margin: 15px 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.mainnum-box .mainnum-row .mainnum-data {
  text-align: left;
  border-radius: 5px;
}

.mainnum-box .mainnum-row .mainnum-data .count {
  color: #fff;
  font-size: 44px;
  line-height: 1.3;
  padding-right: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.mainnum-box .mainnum-row .mainnum-data .en {
  font-size: 40px;
}

.mainnum-box .mainnum-row .mainnum-data .count::after {
  content: '';
  width: 2px;
  height: 90px;
  background: rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 0;
  right: 9px;
  transform: rotate(20deg);
  bottom: 0;
  margin: auto;
}

.mainnum-box .mainnum-row .mainnum-data h6 {
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .mainnum {
    padding: 20px;
  }

  .mainnum-box .mainnum-row {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mainnum-box .mainnum-row .mainnum-data .count {
    font-size: 20px;
  }

  .mainnum-box .mainnum-row .mainnum-data .count::after {
    height: 50px;
  }

  .mainnum-box .mainnum-row .mainnum-data h6 {
    font-size: 12px;
  }
}

/* 业务范围 */
.service-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.service-container .title {
  padding-left: 0;
}

.mainservice-tag {
  overflow: hidden;
}

.mainservice-tag ul {
  padding-left: 0;
}

.mainservice-tag li {
  float: left;
  margin-right: 25px;
  font-size: 14px;
  color: #999;
  border-bottom: 4px solid #fff;
  padding-bottom: 20px;
  cursor: pointer;
  transition: all .4s;
}

.mainservice-tag li.on {
  color: #1c337d;
  border-bottom: 4px solid #1c337d;
  font-weight: bold;
}

.mainservice {
  margin-top: -24px;
}

.mainservice-box {
  position: relative;
  z-index: 3;
  overflow: hidden;
  height: 500px;
  display: none;
}

.mainservice-box.on {
  display: block;
}

.mainservice-box .mainservice-bd {
  float: left;
  position: relative;
  z-index: 2;
  width: 60%;
  height: 452px;
  margin-top: 24px;
  background: center no-repeat;
  background-size: cover;
}

.mainservice-box .mainservice-bd div {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 77px;
  background: #00000070;
  padding: 16px 30px;
}

.mainservice-box .mainservice-bd div p {
  float: left;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.mainservice-box .mainservice-bd div a span {
  float: right;
  display: block;
  width: 110px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  color: #333;
  background: #fff;
  border-radius: 24px;
  border: 1px solid transparent;
  transition: all .4s;
}

.mainservice-box .mainservice-bd div a:hover span {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.mainservice-box .mainservice-txt {
  float: left;
  width: 40%;
  height: 100%;
  padding: 118px 40px 0 40px;
  background: #1c337d;
  color: #fff;
}

.mainservice-box:nth-child(2) .mainservice-txt {
  background: #3f7f24;
}

@media (max-width: 768px) {
  .service-container {
    width: 100%;
  }

  .service-container .title {
    padding-left: 5px;
  }

  .mainservice-box {
    height: auto;
  }

  .mainservice-box .mainservice-bd {
    width: 100%;
  }

  .mainservice-box .mainservice-bd div {
    z-index: 3;
    padding: 24px 30px;
  }

  .mainservice-box .mainservice-bd div p {
    font-size: 16px;
  }

  .mainservice-box .mainservice-bd div a span {
    height: 30px;
    line-height: 30px;
    width: 90px;
  }

  .mainservice-box .mainservice-txt {
    display: none;
  }

  /* .mainservice-box .mainservice-txt {
    float: none;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: calc(100% - 24px - 77px);
    margin-top: 24px;
    padding-top: 50px;
    background: linear-gradient( rgb(63 127 36 / 90%), #66666670 150%);
  }

  .mainservice-box:nth-child(2) .mainservice-txt {
    background: linear-gradient(rgb(28 51 115 / 90%), #66666670 150%);
  } */
}

/* 新闻 */
.mainnews {
  background-image: linear-gradient(to bottom, #fff, #fafafa);
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.mainnews-title {
  padding-bottom: 30px;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mainnews-title h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
  margin: 0;
  color: #2a2e2e;
  text-transform: uppercase;
}

.mainnews-title .mainnews-more {
  position: absolute;
  top: 5px;
  right: 0;
  color: #3f7f24;
  border: 1px solid #3f7f24;
  background: 0 0;
  text-align: center;
  padding: 10px 0;
  min-width: 102px;
  font-size: 16px;
  line-height: 16px;
  transition: all .4s;
}

.mainnews-title .mainnews-more:hover {
  color: #fff;
}

.mainnews-title .mainnews-more::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #3f7f24;
  height: 100%;
  width: 0%;
  z-index: -1;
  transition: all 0.3s ease;
}

.mainnews-title .mainnews-more:hover::after {
  width: 100%;
}

.mainnews-title .mainnews-more span {
  position: relative;
  font-weight: 400;
}

.mainnews-body {
  width: 100%;
  max-width: 1200px;
  height: 160px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.mainnews-body .mainnews-row {
  margin-left: -45px;
}

.mainnews-body .mainnews-row .col-4 {
  padding-left: 45px;
  float: left;
}

.mainnews-item {
  display: block;
  color: #333;
  line-height: 22px;
}

.mainnews-item .mainnews-item-img {
  height: 221px;
  overflow: hidden;
}

.mainnews-item .mainnews-item-img img {
  vertical-align: top;
  width: 100%;
  transition: all .4s;
}

.mainnews-item:hover .mainnews-item-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.mainnews-item .mainnews-item-title {
  margin-top: 18px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  overflow: hidden;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all .4s;
}

.mainnews-item:hover .mainnews-item-title {
  color: #3f7f24;
}

.mainnews-item .mainnews-item-date {
  margin-top: 5px;
  font-size: 0;
  color: #000;
}

.mainnews-item .mainnews-item-date span {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {

  .mainnews-title h2,
  .mainnews-item .mainnews-item-title,
  .mainnews-item .mainnews-item-date {
    margin-left: 5px;
    font-size: 16px;
  }

  .mainnews {
    padding-top: 16px;
  }

  .mainnews-title {
    padding-bottom: 16px;
  }

  .mainnews-title a {
    margin-right: 5px;
  }

  .mainnews-title h2 {
    font-size: 20px;
  }

  .mainnews-body .mainnews-row .col-4 {
    flex: 0 0 auto;
    width: 100%;
  }

  .mainnews-item .mainnews-item-date {
    margin-bottom: 10px;
  }

  .mainnews-item .mainnews-item-img {
    height: 50vw;
  }
}

/* 联系我们 */
.maincontact {
  height: 610px;
  background: linear-gradient(rgb(255 255 255 / 40%), rgb(12 70 0 / 40%)), url(../img/index/yaodu.jpg) no-repeat center bottom;
  background-position: top;
  background-size: 1920px 610px;
  text-align: center;
  position: relative;
}

.maincontact .maincontact-body {
  position: absolute;
  bottom: 54px;
  left: 0;
  right: 0;
}

.maincontact .maincontact-body img {
  width: 5%;
}

.maincontact .maincontact-body strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #000;
}

.maincontact .maincontact-body .maincontact-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 0;
  min-width: 130px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
  background-color: #1c337d;
  position: relative;
}

.maincontact .maincontact-body .maincontact-btn:hover {
  color: #1c337d;
  background: transparent;
  font-weight: bold;
}

.maincontact-btn::before,
.maincontact-btn::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #1c337d;
  transition: all 0.3s ease;
}

.maincontact-btn span::before,
.maincontact-btn span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #1c337d;
  transition: all 0.3s ease;
}

.maincontact-btn::before {
  height: 0%;
  width: 2px;
}

.maincontact-btn:hover::before {
  height: 100%;
}

.maincontact-btn::after {
  width: 0%;
  height: 2px;
}

.maincontact-btn:hover::after {
  width: 100%;
}

.maincontact-btn span::before {
  height: 0%;
  width: 2px;
}

.maincontact-btn:hover span::before {
  height: 100%;
}

.maincontact-btn span::after {
  width: 0%;
  height: 2px;
}

.maincontact-btn:hover span::after {
  width: 100%;
}

@media (max-width: 768px) {
  .maincontact {
    margin-top: calc(100vw + 160px);
  }

  .maincontact .maincontact-body img {
    width: 75px;
  }

  .maincontact .maincontact-body strong {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
#in-hero {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  position: relative;
}

#in-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 91%;
  background: #68A4C4;
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#in-hero.job-hero::before,
#in-hero.news-hero::before {
  background: #6968c4;
}

#in-hero.about-hero::before {
  background: #5f9ce4;
}

#in-hero.contact-hero::before {
  background: #2d39b7;
}

#in-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 90%;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url(../img/hero-bg.jpg) center no-repeat;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

#in-hero.about-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/about/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero.service-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/service/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero.contact-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/contact/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero.news-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/news/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero.job-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/job/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero.invest-hero::after {
  background: linear-gradient(to right, rgba(30, 67, 86, 0.3), rgba(30, 67, 86, 0.1)), url(../img/invest/bg.png) center no-repeat;
  background-size: cover;
}

#in-hero div {
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
}

#in-hero div p {
  font-size: 32px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #in-hero {
    height: 30vh;
  }

  #in-hero::before,
  #in-hero::after {
    width: 150%;
  }

  #in-hero::before {
    left: 55%;
  }

  #in-hero div {
    font-size: 20px;
  }

  #in-hero div.en {
    letter-spacing: 0;
  }

  #in-hero div p {
    font-size: 16px;
  }
}

/* 公司简介 */
.intro-section {
  padding-top: 80px;
  padding-bottom: 75px;
  color: #3f3a3a;
  text-align: center;
  background: url(../img/about/bg1.jpg) no-repeat 0 0;
  background-size: cover;
  background-position: center;
}

.intro-section .intro-title {
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 8px;
  text-indent: 8px;
  text-transform: uppercase;
}

.intro-section .intro-title.en {
  letter-spacing: 0;
}

.intro-section .intro-title::after {
  display: block;
  width: 30px;
  height: 2px;
  margin: 38px auto 32px;
  background: #1c337d;
  content: "";
}

.intro-section .intro-detail {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 35px;
  text-align: justify;
}

.intro-section .intro-detail.en {
  line-height: 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .intro-section {
    padding-top: 40px;
    padding-bottom: 35px;
  }

  .intro-section .intro-title {
    font-size: 24px;
    line-height: 37px;
  }

  .intro-section .intro-title::after {
    margin: 24px auto 16px;
  }

  .intro-section .intro-detail {
    font-size: 14px;
    line-height: 24px;
  }
}

/* 企业文化 */
#culture {
  position: relative;
}

.culture-wrap {
  background: #FBFBFB;
  padding-left: 30px;
  box-sizing: border-box;
  width: auto;
  margin-left: 12px;
  margin-right: 12px;
}

.culture-box {
  width: 100%;
  overflow: hidden;
}

.culture-box .mess-box {
  width: 39.23%;
  float: left;
  margin-top: 56px;
}

.culture-box .mess-box .culture-title {
  width: auto;
  float: left;
}

.culture-box .mess-box .culture-title h3 {
  margin-bottom: 40px;
  font-size: 30px;
  color: #2a2e2e;
  font-weight: 700;
  text-transform: uppercase;
}

.culture-box .mess-box .culture-detail {
  width: 100%;
  padding-top: 0;
  overflow: hidden;
}

.culture-box .mess-box .culture-detail .culture-detail-item {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.culture-box .mess-box .culture-detail .culture-detail-item h5 {
  font-size: 24px;
  color: #2A2E2E;
  letter-spacing: 0;
  margin-bottom: 6px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.culture-box .mess-box .culture-detail .culture-detail-item p {
  font-size: 16px;
  color: #2A2E2E;
  letter-spacing: 0;
  line-height: 29px;
  margin: 0;
  padding: 0;
}

.culture-box .culture-img {
  float: right;
  width: 60.2%;
  min-height: 610px;
  padding-left: 1%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.culture-box .culture-img img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .culture-wrap {
    padding-left: 0;
    margin: 0;
  }

  .culture-box {
    padding: 0;
  }

  .culture-box .mess-box {
    margin-left: 10px;
  }

  .culture-box .mess-box .culture-title h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .culture-box .mess-box {
    width: 100%;
    margin-top: 10px;
  }

  .culture-box .culture-img {
    float: left;
    width: 100%;
    min-height: 50vw;
    padding-left: 0;
  }

  .culture-box .culture-img img {
    width: 100%;
    height: auto;
  }

  .culture-box .mess-box .culture-detail .culture-detail-item h5 {
    float: left;
    font-weight: 700;
    font-size: 16px;
  }

  .culture-box .mess-box .culture-detail .culture-detail-item p {
    line-height: 1.5;
    margin-left: 10px;
    float: left;
    font-size: 14px;
  }
}

/* 事记 */
#story {
  padding-top: 50px;
}

.about-d {
  height: 600px;
  overflow: hidden;
}

.about-dl {
  margin-left: 50px;
}

.about-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.375;
  margin-bottom: 12px;
}

.about-title span {
  color: #1c337d;
}

.about-dd {
  display: flex;
  position: relative;
  margin-bottom: 0;
}

.about-dd .about-sp {
  width: 70px;
  padding-right: 12px;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.375;
  flex-shrink: 0;
  margin-top: -5px;
}

.about-dd .about-i {
  position: relative;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  flex-shrink: 0;
}

.about-dd .about-i::before {
  content: "";
  display: block;
  width: 1px;
  background-color: #d8d8d8;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
}

.about-dd .about-i::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: #3f7f24;
  border-radius: 50%;
  position: relative;
}

.about-dd .about-in::after {
  background: transparent;
}

.about-dd .about-div {
  margin-left: 164px;
  font-size: 15px;
  font-weight: 400;
  color: #6C6D74;
  line-height: 2.2857;
  display: flex;
  padding-bottom: 35px;
  margin-top: -10px;
}

.story-shadow-bottom {
  background-color: #f7fafc;
  height: 50px;
  position: relative;
}

.story-shadow-bottom a {
  text-align: center;
  z-index: 10;
  height: 50px;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, .4) 40%, hsla(0, 0%, 100%, .9) 80%, #fff);
  transition: all .4s;
}

@media (max-width: 768px) {
  #story {
    padding-top: 0;
  }

  #story .title {
    padding-left: 0;
  }

  .about-dl {
    margin-left: 0;
  }

  .about-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .about-dd .about-sp {
    width: 40px;
    font-size: 16px;
  }

  .about-dd .about-div {
    margin-left: 10px;
  }
}

/* 荣誉资质 */
.award {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 561px;
}

.award-img {
  width: 50%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
}

.award-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.award-scroll {
  width: 50%;
  overscroll-behavior: contain;
  position: relative;
  overflow: hidden;
}

.scroll-shadow-top {
  z-index: 10;
  height: 83px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-image: linear-gradient(0deg, hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, .7) 40%, hsla(0, 0%, 100%, .9) 80%, #fff);
}

.scroll-shadow-bottom {
  z-index: 10;
  height: 83px;
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, .7) 40%, hsla(0, 0%, 100%, .9) 80%, #fff);
}

.award-scroll .scroll-box {
  position: absolute;
  left: 0;
  right: 0;
  padding-left: 82px;
  overflow: scroll;
  overflow-x: hidden;
}

.award-scroll .scroll-box:hover::-webkit-scrollbar {
  width: 6px;
  height: 0;
  background: #eee;
  border-radius: 6px;
}

.award-scroll .scroll-box::-webkit-scrollbar {
  width: 6px;
  height: 0;
  display: none;
}

.award-scroll .scroll-box:hover::-webkit-scrollbar-thumb {
  background: #9bcaff;
  border-radius: 10px;
}

.award-scroll .scroll-box::-webkit-scrollbar-thumb {
  background: transparent;
}

.award-scroll .scroll-trans {
  transition-timing-function: cubic-bezier(.165, .84, .44, 1);
  transition-duration: .4s;
}

.scroll-box .scroll-item-box {
  padding-bottom: 20px;
  width: 519px;
  cursor: pointer;
}

.scroll-box .scroll-item {
  font-size: 18px;
  padding-top: 20px;
  line-height: 46px;
  border-top: 1px solid #e8e7e7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  width: 519px;
  padding-bottom: 0;
  height: 112px;
}

.scroll-box .scroll-item-title {
  font-weight: 700;
  padding-right: 30px;
  position: relative;
  color: #181818;
}

.scroll-box .scroll-item-title::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 4px;
  width: 1px;
  height: 18px;
  background-color: #3d3d3d;
  box-sizing: inherit;
}

.scroll-box .scroll-item-detail {
  color: #3d3d3d;
}

.scroll-box .scroll-item-box:hover,
.scroll-box .scroll-item-box:hover .scroll-item-title,
.scroll-box .scroll-item-box:hover .scroll-item-title::after,
.scroll-box .scroll-item-box:hover .scroll-item-detail {
  color: #3f7f24;
}

@media (max-width: 768px) {
  .award {
    height: 80vh;
  }

  .award-img {
    height: 40vh;
    width: 100%;
  }

  .award-img img {
    object-fit: fill;
  }

  .award-scroll {
    height: 40vh;
    width: 100%;
  }

  .award-scroll .scroll-box {
    padding-left: 0;
  }

  .scroll-box .scroll-item {
    font-size: 16px;
    width: 96vw;
  }
}

/* 子公司 */
.subsi {
  width: 86%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 5;
}

.subsi-l {
  width: 20%;
}

.subsi-l .subsi-item:first-child {
  margin-top: 2.6em;
}

.subsi-l .subsi-item.on a {
  background-image: linear-gradient(to right, #25aac7, #71b155);
  color: #fff;
}

.subsi-l .subsi-item.on a::before {
  content: " ";
  position: absolute;
  right: 30px;
  top: 0;
  width: 7px;
  height: 100%;
  background: url(../img/about/sj.png) no-repeat center;
  background-size: 7px auto;
}

.subsi-l .subsi-item a {
  display: block;
  width: 200px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 40px;
  color: #222;
  position: relative;
}

.subsi-m {
  width: 55%;
  padding: 0 1.6em 0 2.2em;
}

.subsi-m .subsi-item.on,
.subsi-r .subsi-item.on {
  display: block;
}

.subsi-m .subsi-item,
.subsi-r .subsi-item {
  display: none;
}

.subsi-m .subsi-item #echart {
  min-height: 500px;
  margin-left: -70px;
  margin-top: -50px;
}

.subsi-r {
  width: 25%;
  margin-top: 1.25em;
}

.subsi-r .subsi-r-title {
  font-size: 24px;
  line-height: 34px;
}

.subsi-r .subsi-r-ul {
  margin-top: 20px;
  overflow: hidden;
  height: 346px;
  padding-left: 0;
}

.subsi-r .subsi-r-ul .subsi-r-list {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: 0;
  direction: ltr;
  max-height: none
}

.subsi-r .subsi-r-ul .subsi-r-list .subsi-r-div {
  position: relative;
  top: 0px;
  left: 0px;
  margin: 0;
  overflow: hidden;
  width: auto;
  height: auto;
}

.subsi-r .subsi-r-ul .subsi-r-list .subsi-r-div .subsi-r-li {
  overflow: hidden;
  margin-top: 14px;
}

.subsi-r .subsi-r-ul .subsi-r-list .subsi-r-div .subsi-r-li a {
  float: left;
  font-size: 16px;
  line-height: 26px;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 32px;
  background: url(../img/about/org-icon1.png) no-repeat left center;
  background-size: 13px 15px;
}

@media (max-width: 768px) {
  .subsi {
    width: 95%;
  }

  .subsi-l,
  .subsi-m,
  .subsi-r {
    width: 100%;
  }

  .subsi-l .subsi-item:first-child {
    margin-top: 0;
  }

  .subsi-l .subsi-item a {
    float: left;
    width: 90px;
    padding-left: 10px;
  }

  .subsi-l .subsi-item.en a {
    width: 150px;
  }

  .subsi-l .subsi-item.on a::before {
    right: 10px;
  }

  .subsi-m {
    padding: 0;
  }

  .subsi-m .subsi-item #echart {
    margin-left: 0;
    margin-top: 0;
    min-height: 300px;
  }

  .subsi-r {
    margin-top: 0;
  }

  .subsi-r .subsi-r-title {
    display: none;
  }

  .subsi-r .subsi-r-ul {
    height: auto;
    margin-top: 0;
  }
}

/* 合作伙伴 */
.partner-row {
  display: flex;
  flex-wrap: wrap;
}

.partner {
  text-align: center;
  position: relative;
}

.partner .partner-pic {
  overflow: hidden;
  height: 140px;
  line-height: 140px;
  border: 1px solid #e5e5e5;
}

.partner .partner-pic img {
  max-width: 100%;
}

.partner .partner-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 95, 161, .9);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  opacity: 0;
}

@media (min-width: 769px) {
  .partner-row div:nth-child(2n) .partner .partner-title {
    background: rgba(87, 171, 50, .9);
  }
}

@media (max-width: 768px) {
  .partner-row div:not(:nth-child(5n+1), :nth-child(5n-1)) .partner .partner-title {
    background: rgba(87, 171, 50, .9);
  }
}

.partner:hover .partner-title {
  opacity: 1;
}

.partner .partner-title span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -125px;
  margin-top: -12px;
  color: #eee;
  font-size: 24px;
  line-height: 24px;
  width: 250px;
}

/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/
.service {
  margin: 0 auto;
  min-height: 60vh;
  position: relative;
}

.mobile-lside {
  display: none;
  top: 30vh;
  left: 0;
  position: fixed;
  z-index: 100;
}

.service-left-main {
  width: 20%;
  padding-top: 15px;
  float: left;
  height: auto;
  overflow: auto;
  background: #fcfcfc;
  transition: all .4s;
}

.service-ltitle {
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  color: #000;
  border-bottom: 2px solid #1c337d;
}

.service-lside,
.service-rside {
  padding-top: 10px;
}

.service-rside p {
  text-align: justify;
}

.service-lside ul {
  padding: 0;
  margin-bottom: 0;
}


.service-lside .lside-title {
  display: block;
  line-height: 45px;
  font-size: 16px;
  padding-left: 20px;
  background-color: #f4f4f4;
  -moz-transition: all .4s;
  transition: all .4s;
  color: #666;
}

.service-lside .lside-title img {
  float: right;
  width: 25px;
  margin: 10px;
  transform: rotate(-90deg);
  transition: all .4s;
}

.service-lside .lside-list {
  display: none;
  padding-left: 36px;
  line-height: 36px;
  font-size: 14px;
  color: #000;
}

.service-lside .lside-list:hover,
.service-lside .active {
  background-color: #3f7f24;
  color: #fff;
}

.service-lside-img {
  padding-top: 10px;
  background: #fcfcfc;
}

.service-mobilel {
  display: none;
}

.service-right {
  float: right;
  width: 75%;
  transition: all .4s;
  margin-bottom: 50px;
}

.service-rtitle {
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #3f7f24;
  margin: 15px 0 0 0;
}

.rside-table {
  width: 100%;
}

.rside-table thead {
  line-height: 150%;
  padding: 10px 3px 10px 3px;
  text-align: center;
  background: #f9f9f9;
  height: 60px;
  border-bottom: 1px solid #eee;
}

.rside-table tbody tr {
  color: #999;
  transition: all .5s;
}

.rside-table tbody tr {
  border-bottom: 1px dashed #e6e6e6;
}

.rside-table tbody tr:hover {
  background-color: #eee;
  color: #000;
}

.rside-table tbody tr td {
  text-align: center;
  line-height: 150%;
  padding: 10px 3px;
}

.service-right .pagin {
  padding: 20px 0 0 0;
}

@media (max-width: 768px) {
  .service {
    height: auto;
  }

  .mobile-lside {
    display: block;
    transition: all .4s;
  }

  .service-left {
    display: none;
  }

  .service-left-main {
    width: 200px;
    margin-right: 20px;
    padding-top: 0;
  }

  .service-ltitle {
    font-size: 16px;
  }

  .service-lside .lside-title {
    font-size: 14px;
    line-height: 36px;
    position: relative;
    z-index: 101;
  }

  .service-lside .lside-title img {
    width: 16px;
  }

  .service-lside .lside-list {
    font-size: 12px;
    line-height: 30px;
  }

  .service-mobilel {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #1c337d;
    transform: rotate(90deg);
  }

  .service-mobilel img {
    position: absolute;
    top: 0;
  }

  .service-right {
    width: 100%;
  }

  .service-rside {
    overflow: auto;
    font-size: 12px;
  }

  .service-rside h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-rside p {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.contact-box {
  display: flex;
  padding: 0 30px;
}

.contact-box .contact-detail {
  background-color: #999;
  width: 40%;
  padding: 50px;
  color: #fff;
}

.contact-box.en .contact-detail {
  width: 50%;
}

.contact-box.en .contact-detail table td:first-child {
  width: 35%;
  text-align: right;
  padding-right: 5px;
}

.contact-box .contact-detail h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-box .contact-detail table td {
  vertical-align: top;
}

.contact-box .contact-detail div {
  width: 60%;
  text-align: center;
  margin: 20px auto;
  border: 1px solid #fff;
  font-size: 16px;
  padding: 5px;
}

.contact-box .contact-detail div a {
  color: #fff;
}

.contact-box .contact-img {
  width: 60%;
}

.contact-box .contact-img img {
  float: right;
  object-fit: cover;
  height: 100%;
}

.contact-map {
  width: 100%;
  height: 400px;
  padding: 30px;
}

@media (max-width: 1024px) {

  .contact-box.en .contact-detail,
  .contact-box .contact-detail {
    width: 100%;
  }

  .contact-box .contact-detail h3,
  .contact-box .contact-detail table {
    width: 60%;
    margin: 0 auto;
  }

  .contact-box .contact-detail h3 {
    margin-bottom: 30px;
  }

  .contact-box .contact-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact-box {
    padding: 0;
  }

  .contact-box .contact-detail {
    padding: 20px;
  }

  .contact-box .contact-detail h3,
  .contact-box .contact-detail table {
    width: 100%;
  }

  .contact-map {
    padding: 30px 0;
  }
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.news-type .news-type-tab {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.news-type-tab a {
  display: block;
  margin: 0px 24px 0px 0px;
  padding: 6px 0px;
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.news-type-tab a.active {
  border-bottom: 3px solid #1c337d;
  color: #1c337d;
}

.news-search-year,
.news-search-title {
  min-width: 300px;
  margin-left: 24px;
  position: relative;
}

.news-search-title input,
.news-search-year input {
  border: none;
  border-bottom: 1px solid #DDD;
  display: block;
  padding: 0px 12px;
  width: 100%;
  outline: none;
  background: none;
}

.news-search-title input {
  padding-left: 36px;
}

.news-search-year span {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  background: url(../img/news/delete.png) center no-repeat;
  background-size: 12px 12px;
  padding: 5px;
  cursor: pointer;
}

.news-search-title span {
  background: url(../img/job/search.png) center no-repeat;
  background-size: 26px 26px;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  cursor: pointer;
}

.news-list-select {
  margin: 0px 0px 0px auto;
  padding-left: 12px;
  border-left: 1px solid #5f6464;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.news-list-select a {
  margin: 0px 0px 0px 24px;
}

.news-list-select a img {
  width: 30px;
  height: 30px;
}

.news-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -24px;
}

.news-row .news-col {
  display: flex;
  margin-left: 24px;
  background: #FBFBFB;
  margin-bottom: 24px;
  box-shadow: 0px 1px 24px 0px rgb(186 186 186 / 20%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width:768px) {
  .news-row .news-col {
    width: calc(33.33% - 24px);
  }
}

.news-row .news-col:hover {
  box-shadow: 0px 1px 24px 0px rgb(186 186 186);
}

.news-row .news-col:hover h3 {
  color: #1c337d;
}

.news-row .news-col a {
  width: 100%;
}

.news-img {
  position: relative;
  overflow: hidden;
  border-bottom: #FFFFFF solid 1px;
}

.news-img::before {
  content: "";
  display: block;
  padding-bottom: 66.66%;
}

.news-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 0;
  transition: all 0.5s;
}

.news-row .news-col:hover .news-img img {
  transform: scale(1.06);
}

.news-body {
  padding: 36px 24px;
}

.news-body h3 {
  font-size: 1.2em;
  line-height: 1.4em;
  margin: 12px 0px;
  padding: 0px;
  color: #000;
}

.news-body p {
  font-size: 14px;
  line-height: 1.5em;
  margin: 12px 0px;
  padding: 0px;
  font-weight: normal;
  color: #6C6D74;
}

.news-body p:last-child {
  margin-bottom: 0;
}

.date {
  height: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 0.8rem;
  color: #888;
  display: inline-block;
  text-transform: uppercase;
}

.day {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #1c337d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: Bahnschrift;
}

.year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  line-height: normal;
}

.date::after {
  height: 2px;
  right: -60px;
  position: absolute;
  content: "";
  background: #1c337d;
  width: 1em;
  top: 50%;
}

.news-main h3 {
  margin: 10px auto;
  font-weight: bold;
}

.news-main h6 {
  font-size: 14px;
  color: #9b9b9b;
}

.news-mainli {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0px;
  padding: 10px 0;
  border-bottom: 1px solid #f4f4f4;
  color: #666;
}

.news-mainli:hover {
  color: #1c337d;
}

.news-mainli-l {
  width: calc(60% - 72px);
}

.news-mainli-l h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 24px;
  line-height: 1.4em;
  margin: 12px 0px;
  padding: 0px;
}

.news-mainli-l p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: 16px;
  line-height: 1.5em;
  margin: 12px 0px;
  padding: 0px;
  font-weight: normal;
}

.news-mainli-r {
  width: 40%;
}

.news-mainli-r div {
  position: relative;
  overflow: hidden;
  border-bottom: #FFFFFF solid 1px;
}

.news-mainli-r div::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}

.news-mainli-r div img {
  position: absolute;
  top: -20%;
  left: 0px;
  width: 100%;
  object-fit: cover;
}

.pagin {
  padding: 65px 0;
  text-align: center;
}

.pagin a {
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  background: rgba(247, 247, 247, 1);
  padding: 0 10px;
  color: #333;
  transition: all .4s;
}

.pagin a:hover {
  background: #3f7f24;
  color: #fff;
}

.pagin span {
  font-size: 14px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  background: #1c337d;
  color: #fff;
  padding: 0 10px;
}

@media (max-width:768px) {
  .news-type {
    margin: 20px auto;
  }

  .news-type-tab a {
    font-size: 14px;
  }

  .news-search-year,
  .news-search-title {
    margin-left: 0px;
    min-width: 100px;
  }

  .news-search-title input {
    width: 95%;
  }

  .news-list-select {
    border: none;
  }

  .news-list-select a img {
    width: 25px;
    height: 25px;
  }

  .news-row .news-col {
    width: calc(50% - 24px);
  }

  .news-body {
    padding: 24px;
  }

  .news-body h3 {
    font-size: 14px;
  }

  .news-body p {
    font-size: 12px;
    height: 2.4rem;
    overflow: hidden;
  }

  .day {
    font-size: 2.5rem;
  }

  .news-mainli-l h3 {
    font-size: 16px;
  }

  .news-mainli-l p {
    font-size: 12px;
    display: none;
  }

  .news-mainli-r {
    width: 50%;
  }

  .pagin {
    padding: 0;
  }
}

@media (max-width:450px) {
  .news-row .news-col {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# News Detail Page
--------------------------------------------------------------*/
.news-detail {
  width: 815px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.news-detail-title {
  font-size: 28px;
  color: #000;
}

.news-detail-date {
  font-size: 14px;
  color: #999;
  margin: 10px 0;
}

.news-detail-text {
  font-size: 16px;
  color: #000;
  line-height: 30px;
  min-height: 280px;
  padding: 30px 0 30px;
  text-align: justify;
}

.news-detail-text img {
  width: 70%;
  margin: 10px 15%;
}

.news-detail-page {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #999;
}

.news-detail-page a {
  color: #999;
}

.news-detail-page a:hover {
  color: #1c337d;
  text-decoration: underline;
}

@media (max-width:768px) {
  .news-detail {
    width: 100%;
    padding-top: 30px;
  }

  .news-detail-title {
    font-size: 18px;
  }

  .news-detail-date {
    font-size: 12px;
  }

  .news-detail-text {
    padding-top: 0;
  }

  .news-detail-text img {
    width: 100%;
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
# Job Page
--------------------------------------------------------------*/
/* 工作环境 */
.job-env-box1 {
  position: relative;
  display: flex;
  height: 300px;
  margin-bottom: 10px;
}

.job-env-box2 {
  position: relative;
  display: flex;
  height: 400px;
}

.job-env-box1 div {
  width: 33.33%;
}

.job-env-box1 div,
.job-env-box2 div {
  background-size: cover;
  background-position: center;
}

.job-env-box1 div:not(:last-child),
.job-env-box2 div:not(:last-child) {
  margin-right: 10px;
}

/* 福利待遇 */
.welfare {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
}

.welfare li {
  position: relative;
  width: 22%;
  height: 480px;
  padding: 24px;
  color: rgba(0, 0, 0, .65);
  font-size: 16px;
  background-size: cover;
  background-position: center;
  transition: width .3s ease;
}

.welfare .welfare-active {
  width: 34%;
  color: #fff;
}

.welfare li .welfare-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: hsla(0, 0%, 100%, .92);
}

.welfare .welfare-active .welfare-text {
  background-color: hsla(0, 0%, 0%, .3);
}

.welfare li .welfare-text .welfare-icon {
  width: 40px;
  height: 40px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.welfare .welfare-active .welfare-text .welfare-icon {
  filter: brightness(100);
}

.welfare li .welfare-text h3 {
  margin: 24px 0;
  font-weight: 500;
  font-size: 20px;
}

.welfare li .welfare-text .welfare-title {
  margin-top: 12px;
  line-height: 24px;
}

.welfare li .welfare-text .welfare-detail {
  display: none;
}

.welfare .welfare-active .welfare-text .welfare-detail {
  display: block;
  color: hsla(0, 0%, 100%, 1);
  font-size: 14px;
  line-height: 20px;
  text-shadow: 1px 1px #000;
}

/* 岗位列表 */
.job-list {
  margin: 0 auto;
}

.job-search {
  border-radius: 3px;
  background: #1c3371;
  margin: 0 0 20px;
}

.job-search .job-search-form {
  width: 60%;
  margin: 0 auto;
}

.job-search .job-search-div {
  width: 100%;
  background: #fff;
  border-radius: 23px;
  margin: 30px 0px 30px;
  padding: 5px 10px;
  border: 1px solid #e3e3e3;
  display: inline-block;
  position: relative;
}

.job-search .job-search-div input {
  width: 89%;
  line-height: 28px;
  border: 1px solid #fff;
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  outline: none;
  border-radius: 2px;
  box-sizing: content-box;
  position: absolute;
}

.job-search .job-search-div a {
  width: 22px;
  height: 22px;
  background: url(../img/job/search.png) no-repeat;
  border-radius: 3px;
  background-size: cover;
  margin: 5px;
  float: right;
}

.job-table {
  width: 100%;
}

.job-table thead {
  background: #3f7f24;
  padding: 10px 50px;
  border-radius: 5px 5px 0px 0px;
  height: 50px;
  text-align: center;
  color: #fff;
}

.job-table thead th {
  width: 25%;
}

.job-table tbody tr {
  background-color: #f6f6f6;
  font-size: 14px;
  border-bottom: 2px solid #fff;
  text-align: center;
  height: 50px;
}

.job-table tbody tr:hover {
  background: #f8f9fa;
}

.job-table tbody tr td a {
  color: #3f7f24;
  border: 1px solid #3f7f24;
  border-radius: 30px;
  padding: 3px 10px;
  font-size: 12px;
  background-color: #f6f6f6;
}

.job-table tbody tr td a:hover {
  color: #f6f6f6;
  background-color: #3f7f24;
}

.job-page .pagin a {
  background-color: #f6f6f6;
  border: 1px solid #ebedef;
  border-radius: 2px;
  color: #333;
}

.job-page .pagin a:hover {
  border-color: #3f7f24;
}

.job-page .pagin span {
  border-radius: 2px;
  border: 1px solid #ebedef;
}

@media (max-width: 768px) {
  .job-env-box1 {
    height: 20vh;
  }

  .job-env-box2 {
    height: 25vh;
  }

  .job-env-box1 div,
  .job-env-box2 div {
    transition: all .4s;
  }

  .job-env-box1 .job-env-img,
  .job-env-box2 .job-env-img {
    width: 100% !important;
  }

  .welfare {
    display: block;
    margin-bottom: 0;
  }

  .welfare .welfare-active {
    width: 100%;
    height: 240px;
  }

  .welfare li {
    height: 60px;
    width: 100%;
    transition: height .3s ease;
  }

  .welfare li .welfare-text {
    padding: 10px;
  }

  .welfare .welfare-active .welfare-text {
    background-color: rgba(70, 69, 69, 0.5);
  }

  .welfare li .welfare-text .welfare-icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .welfare li .welfare-text h3 {
    margin: 5px 0;
    font-size: 16px;
    display: inline;
  }

  .welfare li .welfare-text .welfare-title {
    margin-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }

  .welfare li .welfare-text .welfare-li {
    display: none;
  }

  .welfare .welfare-active .welfare-text .welfare-li {
    display: block;
  }

  .welfare .welfare-active .welfare-text .welfare-detail {
    font-size: 12px;
    line-height: 14px;
  }

  .job-search .job-search-form {
    height: 58px;
  }

  .job-search .job-search-div {
    margin: 10px 0px 10px;
  }

  .job-search .job-search-div input {
    line-height: 22px;
    width: 70%;
  }

  .job-search .job-search-div a {
    width: 16px;
    height: 16px;
  }

  .job-table tbody tr {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Job Detail Page
--------------------------------------------------------------*/
.job-container {
  position: relative;
  overflow-y: auto;
  padding: 0 50px;
}

.job-this {
  float: left;
  width: 80%;
  padding-right: 50px;
}

.job-title-box {
  border-bottom: 1px solid #999;
  padding-bottom: 24px;
}

.job-title-box .job-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.job-title-box .job-title span {
  font-size: 28px;
  color: #000;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: 700;
}

.job-title-box .job-share {
  font-size: 18px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 50px;
  color: #000;
  cursor: unset;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.job-title-box .job-title .job-share img {
  margin-right: 0;
  cursor: pointer;
  width: 18px;
}

.job-title-box .job-title .job-share div {
  padding-left: 8px;
  cursor: pointer;
}

.job-share-pad {
  position: absolute;
  right: 20%;
  margin-right: 80px;
  background: #fff;
  border: 1px solid #f2f2f2;
  box-shadow: 0 10px 14px 0 hsl(0deg 0% 89% / 50%);
  padding: 40px 52px;
  cursor: unset;
  display: none;
}

.job-share-pad p:nth-child(2) {
  margin-top: 26px;
  margin-bottom: 0;
  height: 20px;
  font-size: 14px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-width: 140px;
  text-align: center;
}

.job-share-pad p:nth-child(3) {
  margin-top: 8px;
  margin-bottom: 0;
  border-top: 1px solid #999;
  padding-top: 9px;
  font-size: 15px;
  color: #1c337d;
  cursor: pointer;
  text-align: center;
}

.copy-msg {
  position: absolute;
  width: 100%;
  top: 50px;
  text-align: center;
}

.copy-msg div {
  background-color: #fff;
  border-radius: 5px;
  width: 100px;
  margin: 0 auto;
  line-height: 1.5em;
  opacity: 0;
  transition-property: opacity, transform;
  transform: translate3d(0, -100px, 0);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}

.copy-msg div.show {
  opacity: 1;
  transform: translateZ(0);
}

.job-p {
  font-size: 24px;
  color: #000;
  margin-top: 36px;
  margin-bottom: 12px;
  font-weight: 700;
}

.job-place {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.job-detail {
  margin-top: 8px;
  line-height: 29px;
}

.job-detail p {
  margin: 0 0;
}

.job-join {
  margin-top: 38px;
  margin-bottom: 50px;
}

.job-join div {
  cursor: pointer;
  width: 177px;
  height: 50px;
  line-height: 50px;
  background: #1c337d;
  border-radius: 2px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.job-join div a {
  color: #fff;
}

.job-other {
  width: 20%;
  float: right;
}

.job-other .job-p {
  margin: 4px 0;
}

.job-other ul {
  position: relative;
  padding-left: 22px;
}

.job-other ul li {
  padding-bottom: 50px;
}

.job-other ul li::before {
  content: " ";
  background-image: url(../img/job/job-li.png);
  position: absolute;
  height: 28px;
  width: 28px;
  left: -6px;
}

.job-other ul li a h5 {
  margin-bottom: 5px;
}

.job-other ul li a {
  color: #333;
}

.job-other ul li a:hover {
  color: #3f7f24;
}

@media (max-width: 768px) {
  .job-container {
    padding: 0 30px;
  }

  .job-this {
    width: 100%;
    padding-right: 0;
  }

  .job-title-box {
    padding-bottom: 12px;
  }

  .job-title-box .job-title span {
    font-size: 20px;
  }

  .job-p {
    font-size: 18px;
  }

  .job-join {
    margin-top: 30px;
  }

  .job-join div {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .job-other {
    display: none;
  }
}

/*--------------------------------------------------------------
# Invest Page
--------------------------------------------------------------*/
.inv-rel {
  text-align: center;
  margin-bottom: 10px;
}

.inv-rel div:first-child {
  color: #1c337d;
  font-size: calc(36 * 100vw / 1920);
}

.inv-rel div:last-child {
  color: #333;
  font-size: calc(30 * 100vw / 1920);
}

.invest {
  margin: 0 auto;
}

.stock {
  width: 30%;
  float: left;
  background-color: #e6edf7;
  /* background-color: #f6f9ff; */
}

.stock-in {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #d8e0ee;
  padding: 40px 40px 0 0;
}

.stock-in .stock-rmb {
  float: right;
  font-size: 20px;
  line-height: 60px;
  margin-left: 10px;
  color: #41434c;
}

.stock-in .stock-num {
  font-size: 48px;
  padding-left: 60px;
  float: right;
  line-height: 60px;
}

.stock-in .up {
  background: url(../img/invest/up.png) no-repeat left;
  background-size: 60px;
  color: #db3338;
}

.stock-in .down {
  background: url(../img/invest/down.png) no-repeat left;
  background-size: 60px;
  color: #22ac38;
}

.stock-in .stock-info {
  text-align: right;
  color: #41434c;
  font-size: 14px;
  line-height: 20px;
}

.stock-in .stock-info strong {
  display: block;
  font-size: 16px;
  line-height: 30px;
}

.stock-box {
  text-align: right;
  padding: 40px 40px 0 0;
}

.stock-box p {
  color: #41434c;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

.stock-box p strong {
  display: block;
  font-size: 20px;
  line-height: 40px;
}

.company {
  width: 70%;
  height: 700px;
  float: right;
  padding: 0 38px;
  overflow: hidden;
  background-color: #f6f9ff;
  position: relative;
}

.company-box {
  transition: all .2s;
}

.company-div {
  padding-bottom: 30px;
}

.company-div .company-fl,
.company-div .company-fr {
  width: 50%;
}

.company-div .company-fl {
  float: left;
}

.company-div .company-fr {
  float: right;
}

.company-div p {
  padding-top: 30px;
  overflow: hidden;
  line-height: 28px;
  margin: 0;
}

.company-div p strong {
  display: block;
  font-size: 18px;
  color: #303860;
  line-height: 36px;
}

.company-div p.en span {
  font-weight: 700;
  font-size: 12px;
}

.ann-rtitle {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #1c337d;
  margin: 15px 0 0 0;
  text-align: right;
}

.ann-rtitle div {
  padding: 0 5px;
  display: inline-block;
}

.ann-rtitle .active {
  background-color: #1c337d;
  color: #fff;
}

.ann-div {
  margin-top: 20px;
  overflow: hidden;
}

.ann-div ul {
  padding-left: 0;
}

.ann-div li {
  width: 100%;
  height: 100px;
  padding: 20px;
  background: #e3e3eb;
  margin-bottom: 2px;
  line-height: 60px;
  transition: all .4s;
}

.ann-div li:hover {
  background: #e3e3e3;
}

.ann-div li a {
  display: flex;
}

.ann-div li span:first-child {
  font-size: 15px;
  color: #7a7a7a;
  width: 15%;
}

.ann-div li span {
  font-size: 14px;
  color: #303860;
  font-weight: bold;
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ann-div li div {
  width: 15%;
  background: url(../img/invest/pdf.png) no-repeat;
  background-position: right;
}

#fin {
  margin: 20px 0;
}

#fin div:first-child {
  margin-bottom: 20px;
  text-align: right;
}

#fin select {
  border: 1px solid #dcdfe6;
  border-radius: 5px;
  color: #999;
  background-color: #fff;
  padding: 5px;
  scrollbar-width: 0;
}

#fin select:focus-visible {
  outline: none;
}

#fin select::-webkit-scrollbar {
  display: none;
}

#fin select option {
  color: #606266;
  height: 34px;
  line-height: 34px;
}

#fin div span {
  font-weight: 700;
}

#fin .fintable {
  overflow-y: auto;
  height: 530px;
  scrollbar-width: 0;
}

#fin .fintable::-webkit-scrollbar {
  display: none;
}

#fin table {
  width: 100%;
}

#fin table td:first-child {
  width: 60%;
}

#fin tbody tr {
  width: 100%;
  height: 40px;
  text-align: center;
  border-top: 1px solid #ddd;
}

#fin tbody tr:last-child {
  border-bottom: 1px solid #ddd;
}

#fin tbody .trhead {
  font-weight: 700;
  background: #e3e3eb;
  border-top: none;
}

@media (max-width: 768px) {

  .stock,
  .company {
    width: 100%;
  }

  .stock-box,
  .stock-box+div,
  .inv-rel {
    display: none;
  }

  .stock-in {
    height: 150px;
    padding: 20px 20px 0 0;
  }

  .stock-in .stock-rmb {
    font-size: 14px;
    line-height: 50px;
  }

  .stock-in .down,
  .stock-in .up {
    background-size: 30px;
  }

  .stock-in .stock-num {
    font-size: 28px;
    padding-left: 30px;
    line-height: 50px;
  }

  .stock-in .stock-info {
    font-size: 12px;
  }

  .stock-in .stock-info strong {
    font-size: 14px;
  }

  .company {
    padding: 0 5px;
    height: auto;
  }

  .ann-rtitle {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 15px 0 0 0;
    text-align: center;
  }

  .company-div {
    padding: 5px 5px 20px 5px;
  }

  .company-div p {
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
  }

  .company-div p strong {
    font-size: 16px;
  }

  .ann-div li {
    height: 50px;
    padding: 5px;
    line-height: 40px;
  }

  .ann-div li span:first-child {
    font-size: 12px;
    width: 25%;
    text-align: center;
  }

  .ann-div li span {
    font-size: 12px;
  }

  .ann-div li div {
    width: 0%;
  }

  .company-box .pagin {
    padding: 0 !important;
  }

  .company-box .pagin a,
  .company-box .pagin span {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
  }

  #fin .fintable {
    height: auto;
  }
}