* {
  margin: 0;
  padding: 0;
}
.home .header .right ul li a span  {
position: absolute;
    left: 50%;
    top: -21px;
    text-transform: uppercase;
    font-size: 14px;
    transform: translateX(-50%);
}
a {
  color: black;
}

body::-webkit-scrollbar {
  width: 1px;
}

body::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.home {
  position: relative;
  width: 100%;
}
.home .leave {
  position: fixed;
  right: 1.2%;
  bottom: 20%;
  z-index: 999;
}
.home .leave .liuyan {
  height: 50px;
  width: 50px;
  background-color: #00A0E9;
  text-align: center;
  z-index: 100;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.home .leave .liuyan img {
  width: 25px;
  height: 25px;
}
.home .leave .zixun {
  height: 50px;
  width: 50px;
  background-color: #00A0E9;
  text-align: center;
  z-index: 100;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 20px;
}
.home .leave .zixun img {
  width: 25px;
  height: 25px;
}
.home .zixunDialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.home .zixunDialog .allItems {
  width: 30%;
  background-color: white;
  margin: 180px auto;
  padding: 60px 30px;
  position: relative;
}
.home .zixunDialog .allItems .t1 {
  text-align: center;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .zixunDialog .allItems .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.home .zixunDialog .allItems .close img {
  width: 25px;
  height: 25px;
}
.home .zixunDialog .allItems .item a, .home .zixunDialog .allItems .item p {
  color: black;
}
.home .zixunDialog .allItems .item p:nth-child(1) {
  font-family: "Oswald-Stencil.otf";
  font-size: 18px;
}
.home .zixunDialog .allItems .item p:nth-child(2), .home .zixunDialog .allItems .item a {
  font-family: "SOURCEHANSANSCN-LIGHT";
}
.home .liuyanDialog {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.home .liuyanDialog .allItems {
  width: 30%;
  background-color: white;
  margin: 180px auto;
  padding: 60px 30px;
  position: relative;
}
.home .liuyanDialog .allItems .t1 {
  text-align: center;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .liuyanDialog .allItems .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.home .liuyanDialog .allItems .close img {
  width: 25px;
  height: 25px;
}
.home .liuyanDialog .allItems .item a, .home .liuyanDialog .allItems .item p {
  color: black;
}
.home .liuyanDialog .allItems .item p:nth-child(1) {
  font-family: "Oswald-Stencil.otf";
  font-size: 18px;
}
.home .liuyanDialog .allItems .item p:nth-child(2), .home .liuyanDialog .allItems .item a {
  font-family: "SOURCEHANSANSCN-LIGHT";
}
.home .header {
  width: 90%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 20px 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 600ms;
    padding-top: 30px;
}
.home .header .l {
  width: 133px;
  height: 38px;
}
.home .header .l img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .header .right {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.home .header .right ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .header .right ul li {
  margin-right: 60px;
}
.home .header .right ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "SOURCEHANSANSCN-LIGHT";
  font-size: 14px;
  transition: all 600ms;
  position: relative;
}
.home .header .right ul li a::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: white;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 600ms;
}
.home .header .right ul li a:hover {
  color: white;
}
.home .header .right ul li a:hover::after {
  transform: translateX(-50%) translateY(13px);
  opacity: 1;
}
.home .header .right ul .active a {
  color: white;
}
.home .header .right ul .active a::after {
  transform: translateX(-50%) translateY(13px);
  opacity: 1;
}
.home .header .right .search {
  position: relative;
  cursor: pointer;
}
.home .header .right .search::before {
  width: 1px;
  height: 80%;
  background-color: #FFFFFF;
  opacity: 0.2;
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 10%;
  content: "";
}
.home .hasBg {
  background-color: black;
}
.home .goTop {
  position: fixed;
  right: 20px;
  bottom: 10%;
  z-index: 100;
  opacity: 0;
  transition: all 600ms;
  transform: translateY(60px);
}
.home .goTop img {
  width: 50px;
  cursor: pointer;
}
.home .goShow {
  opacity: 1;
  transform: translateY(0);
}
.home .wrap_3t1rH .topInfo_FmT7I {
  position: relative;
  height: 680px;
  overflow: hidden;
}
.home .wrap_3t1rH .topInfo_FmT7I .bg_lfECL {
  width: 100%;
  height: 100%;
  background: url("../images/nBanner.png") no-repeat;
  animation: big 32s forwards linear;
  background-size: cover;
}
@keyframes big {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.home .wrap_3t1rH .topInfo_FmT7I .txtCon_3I_jh {
  width: 520px;
  height: 520px;
  -webkit-background-size: 520px 520px;
  -moz-background-size: 520px 520px;
  background-size: 520px 520px;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.home .wrap_3t1rH .topInfo_FmT7I .txtCon_3I_jh .con2_opMQO {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.home .wrap_3t1rH .topInfo_FmT7I .txtCon_3I_jh .subscript_ZGVMD {
  display: block;
  margin: 20px auto 30px;
  height: 4px;
  width: 41px;
  background-color: #0781FD;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.home .wrap_3t1rH .topInfo_FmT7I .txtCon_3I_jh .con3_PlTcx {
  font-size: 18px;
  color: #fff;
  margin-bottom: 200px;
  letter-spacing: 2px;
  text-align: center;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
  font-family: "it";
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ div {
 height: 100px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
transition: all 600ms;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .space_2QOnR {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7 {
  width: 20%;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  -moz-transition: height 0.5s;
  transition: height 0.5s;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  letter-spacing: 2px;
margin-right:10px;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7 .icon_2X_Lm {
  display: block;
  margin: 0 auto;
  color: #fff;
  opacity: 0.4;
  width: 20px;
  transition: all 600ms;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7 .label_2DjJN {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  margin-top: 15px;
  transition: all 600ms;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7:hover {
  height: 120px;
  background-color: #0781FD;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7:hover .icon_2X_Lm {
  transform: scale(2);
  opacity: 1;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7:hover .label_2DjJN {
  opacity: 1;
  font-size: 20px;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .active_a5xuM {
  height: 120px;
  background-color: #0781FD;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .active_a5xuM .icon_2X_Lm {
  transform: scale(2);
  opacity: 1;
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .active_a5xuM .label_2DjJN {
  opacity: 1;
  font-size: 20px;
}
.home .main {
  width: 100%;
}
.home .main .allItems {
  width: 70%;
  margin: 100px auto;
}
.home .main .allItems .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 100px;
}
.home .main .allItems .item .pic {
  width: 30%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.home .main .allItems .item .pic p {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  z-index: 2;
  transform: translate(-300%, -50%);
  width: 40%;
  padding: 5px 0;
  color: #fff;
  background: #0781FD;
  opacity: 0;
  transition: all 600ms;
}
.home .main .allItems .item .pic p i {
  font-size: 30px;
}
.home .main .allItems .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .main .allItems .item .pic:hover p {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.home .main .allItems .item .pic:hover img {
  transform: scale(1.05);
}
.home .main .allItems .item .intro {
  width: 65%;
  position: relative;
}
.home .main .allItems .item .intro .t1 {
  margin-top: 0;
  font-weight: bold;
  overflow: hidden;
  line-height: 24px;
  font-size: 20px;
  cursor: pointer;
  transition: all 600ms;
}
.home .main .allItems .item .intro .t1:hover {
  color: #00A0E9;
}
.home .main .allItems .item .intro .t2 {
  color: #999;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-top: 15px;
}
.home .main .allItems .item .intro .time {
  color: #999;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-top: 15px;
}
.home .main .allItems .item .intro .t3 {
  position: absolute;
  bottom: 0;
  font-family: "SOURCEHANSANSCN-LIGHT";
  font-size: 14px;
  line-height: 28px;
}
.home .main .more {
  width: 307px;
  height: 58px;
  background: #0781FD;
  border-radius: 6px;
  text-align: center;
  line-height: 58px;
  display: block;
  margin: 60px auto;
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  transition: all 600ms;
  border: 3px solid #0781FD;
}
.home .main .more:hover {
  background-color: transparent;
  color: #0781FD;
}
.home .foot {
  width: 80%;
  background-color: #333333;
  padding: 0 10%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 80px;
}
.home .foot .l {
  width: 38%;
  border-right: 1px solid rgba(233, 233, 233, 0.2);
}
.home .foot .l .t1 {
  font-size: 20px;
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
  margin-bottom: 20px;
}
.home .foot .l .address {
  color: white;
  font-family: "SOURCEHANSANSCN-LIGHT";
  line-height: 42px;
  opacity: 0.4;
  font-size: 14px;
}
.home .foot .r {
  width: 55%;
}
.home .foot .r ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .foot .r ul li {
  width: 20%;
}
.home .foot .r ul li p {
  font-size: 14px;
  color: white;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-bottom: 5px;
}
.home .foot .r ul li div {
  display: flex;
  flex-direction: column;
}
.home .foot .r ul li div a {
  color: #777777;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
  transition: all 600ms;
}
.home .foot .r ul li div a:hover {
  color: #0781FD;
}
.home .foot .beian {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(233, 233, 233, 0.08);
}
.home .foot .beian p, .home .foot .beian a {
  color: #777777;
  font-size: 15px;
  font-family: "SOURCEHANSANSCN-LIGHT";
}
.home .foot .beian a {
  margin-left: 5px;
  transition: all 600ms;
}
.home .foot .beian a:hover {
  color: #0781FD;
}
.pHeader{
display:none;
}
 .menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 100%;
  top: 0;
  background-color: #00A0E9;
  z-index: 1000;
  opacity: 0;
  transition: all 600ms;
  border-radius: 100%;
}
@media screen and (max-width: 1440px) {
.home .header .right {
    width: 73%;
}
  .home .main .allItems {
    width: 85%;
  }
}
@media screen and (max-width: 1000px) {
.home .zixunDialog .allItems {
    width: 80%;
    margin: 100px auto;
}
 .menu .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  align-items: center;
  height: 100%;
  display: none;
  position: relative;
}
 .menu .content .lNav {
width: 90%;
  animation-delay: 200ms;
}
 .menu .content .lNav div a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  color: white;
font-size: 20px;
  font-family: "ITCAvantGardeStd-Bk";
  margin-bottom: 40px;
  padding-bottom: 5px;
}
 .menu .content .lNav div a::before, .home .menu .content .lNav div a::after {
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 2px;
  content: "";
  width: 100%;
  position: absolute;
  transition: transform 0.2s ease-in-out 0s;
  background-color: white;
}
 .menu .content .lNav div a::before {
  opacity: 0;
  transform: translateX(-100%);
}
 .menu .content .lNav div a::after {
  opacity: 1;
  transform: translateX(100%);
}
.menu .content .lNav div a:hover::before {
  opacity: 1;
  transform: translateX(0px);
}
 .menu .content .lNav div a:hover::after {
  opacity: 0;
  transform: translateX(0%);
}
 .menu .content .address {
  width: 35%;
  animation-delay: 200ms;
}
 .menu .content .address p {
  color: white;
  font-size: 25px;
  font-family: "ITCAvantGardeStd-Bk";
}
 .menu .content .address .links {
  width: 100%;
  margin: 10px auto;
  margin-bottom: 60px;
}
.menu .content .address .links a {
  display: inline-block;
  margin-right: 15px;
}
 .menu .content .address .links a i {
  color: white;
  font-size: 20px;
}
 .menu .content .address .emails {
  margin: 10px 0;
  margin-bottom: 60px;
}
 .menu .content .address .emails a {
  color: white;
  font-size: 20px;
  font-family: "ITCAvantGardeStd-Bk";
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 5px;
}
.menu .content .address .emails a::before, .home .menu .content .address .emails a::after {
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 2px;
  content: "";
  width: 100%;
  position: absolute;
  transition: transform 0.2s ease-in-out 0s;
  background-color: white;
}
 .menu .content .address .emails a::before {
  opacity: 0;
  transform: translateX(-100%);
}
 .menu .content .address .emails a::after {
  opacity: 1;
  transform: translateX(100%);
}
 .menu .content .address .emails a:hover::before {
  opacity: 1;
  transform: translateX(0px);
}
 .menu .content .address .emails a:hover::after {
  opacity: 0;
  transform: translateX(0%);
}
 .menu .content .close {
  position: absolute;
  right: 0;
  top: 3%;
  height: 33px;
  width: 33px;
  cursor: pointer;
  z-index: 10000;
}
.menu .content .close div {
  position: absolute;
  left: 0;
  top: 15px;
  height: 3px;
  width: 100%;
  background-color: white;
}
 .menu .content .close div:nth-of-type(1) {
  transform: rotate(45deg);
}
 .menu .content .close div:nth-of-type(2) {
  transform: rotate(135deg);
}
 .activeMenu {
  left: 0;
  opacity: 1;
  border-radius: 0;
}
 .activeMenu .content {
  display: flex;
}
 .pHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 80%;
  padding: 15px 10%;
background-color: rgba(0,0,0,.5);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 600ms;
  transform: translateY(0);
  display: flex;
}
.pHeader .r .lines {
  width: 18px;
  position: relative;
  cursor: pointer;
  height: 25px;
  margin-top: 6px;
}
.pHeader .r .lines div {
  width: 100%;
  top: 0;
  background-color: #ffffff;
  height: 1px;
  position: absolute;
  left: 0;
  animation: 2s long infinite linear;
}
.pHeader .r .lines div:nth-child(2) {
  top: 6px;
  width: 50%;
  animation: 2s long2 infinite linear;
}
.pHeader .r .lines div:nth-child(3) {
  top: 12px;
  width: 25%;
  animation: 2s long3 infinite linear;
}
@keyframes long {
  0% {
    width: 50%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 50%;
  }
}
@keyframes long2 {
  0% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 25%;
  }
}
@keyframes long3 {
  0% {
    width: 0;
  }
  50% {
    width: 25%;
  }
  100% {
    width: 0;
  }
}
.home .wrap_3t1rH .topInfo_FmT7I .business_3MnCZ .item_2nVn7{
width: 100%;
}
.home .header{
flex-direction: column;
display:none;
}
.home .main .join .nr {
    width: 80%;
}
.home .main .allItems {
    width: 90%;
}
.home .main .allItems .item .l .num {
    font-size: 20px;
}
.home .main .allItems .item .l .title {
    font-size: 20px;
}
.home .foot .beian{
flex-wrap: wrap;
}
.home .wrap_3t1rH .topInfo_FmT7I{
height:500px;
}
.home .foot{
padding-top:30px;
}
.home .foot .beian{
margin-top:30px;
}
.home .foot .l{
width:100%;
border:none;
}
.home .goTop {
    right: 2px;
}
.home .foot .r{
display:none;
}
.home .wrap_3t1rH .topInfo_FmT7I .txtCon_3I_jh .con2_opMQO{
font-size:20px;
}
.home .main .allItems .item{
flex-direction: column;
margin-bottom: 30px;
}
.home .main .allItems .item .pic,.home .main .allItems .item .intro{
width:100%;
    margin-bottom: 20px;
}
.home .main .allItems .item .intro .t1{
    margin: 20px 0;
}
.home .main .allItems .item .intro .t3{
position: static;
margin-top:20px;
}
}

/*# sourceMappingURL=news.css.map */
