@charset "UTF-8";
/*新闻列表*/
.banner-bg {
  padding-top: 135px;
  box-sizing: border-box;
  height: 600px;
  /* background: url(../images/news/banner.jpg) no-repeat 50% 50%; */
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff; }
  .banner-bg strong {
    font-size: 50px;
    font-weight: bolder;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 3px 2px rgba(0, 0, 0, 0.3); }
    .banner-bg_en strong {
      font-size: 44px;
      line-height: 60px;
    }
  .banner-bg em {
    font-size: 24px;
    text-shadow: 0 3px 2px rgba(0, 0, 0, 0.3); }

@media screen and (max-width: 1200px) {
  .banner-bg {
    padding-top: 75px;
    height: 440px; }
    .banner-bg strong {
      font-size: 40px;
      margin-bottom: 8px; }
      .banner-bg_en strong {
        font-size: 34px;
        line-height: 40px;
      }
    .banner-bg em {
      font-size: 18px; } }
@media screen and (max-width: 750px) {
  .banner-bg {
    height: 260px; }
    .banner-bg strong {
      font-size: 20px;
      margin-bottom: 5px;
      letter-spacing: 0px; }
      .banner-bg_en strong {
        font-size: 20px;
        line-height: 28px;
      }
    .banner-bg em {
      font-size: 12px; } }
/* 最新新闻 */
.news-company {
  margin-top: 60px; }
  .news-company .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    .news-company .title .tab {
      display: flex; }
      .news-company .title .tab span {
        margin-right: 10px;
        display: flex;
        width: 36px;
        height: 36px;
        border: 1px #cacaca solid;
        justify-content: center;
        align-items: center;
        color: #cacaca;
        cursor: pointer; }
        .news-company .title .tab span:hover {
          color: #fff;
          background: -webkit-linear-gradient(left, #9d069d, #6600cc); }
        .news-company .title .tab span:last-child {
          margin-right: 0; }
  .news-company .content {
    margin-top: 30px;
    display: flex; }
    .news-company .content .left {
      width: 50%;
      /* width: 568px; */
      /* flex: 1; */
      padding: 40px;
      box-sizing: border-box;
      margin-right: 50px;
      transition: all 0.5s; }
      .news-company .content .left a {
        width: 100%;
        display: inline-block; }
      .news-company .content .left:hover {
        background: #f1f1f1; }
        .news-company .content .left:hover .img img {
          width: 110%; 
          /* width: 500px; */
        }
        .news-company .content .left:hover button {
          border: 1px #9b009b solid;
          color: #9b009b; }
      .news-company .content .left em {
        font-size: 24px;
        color: #cacaca;
        font-weight: bolder; }
      .news-company .content .left h4 {
        width: 100%;
        height: 24px;
        line-height: 24px;
        font-size: 20px;
        font-weight: bold;
        margin-top: 30px;
        color: #342c34;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .news-company .content .left p {
        color: #666666;
        margin-top: 30px;
        height: 48px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden; }
      .news-company .content .left .img {
        /* width: 500px; */
        width: 100%;
        height: 230px;
        margin-top: 30px;
        overflow: hidden;
        position: relative; 
      max-width: 500px;
      }
        .news-company .content .left .img img {
          width: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: all 0.5s; }
      .news-company .content .left button {
        margin-top: 30px;
        width: 140px;
        height: 40px;
        box-sizing: border-box;
        border-radius: 5px;
        text-align: center;
        background: #f1f1f1;
        transition: all 0.5s; }
    .news-company .content .right {
      width: calc(50% - 50px) ;
      /* width: 556px; */
      /* flex: 1; */
      border-top: 1px #cacaca solid;
      display: flex;
      flex-direction: column; }
      .news-company .content .right li {
        height: 180px; }
        .news-company .content .right li a {
          display: inline-block;
          padding: 0 20px;
          box-sizing: border-box;
          color: #333;
          width: 100%;
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          transition: all 0.5s;
          border-bottom: 1px #cacaca solid; }
          .news-company .content .right li a:hover {
            background: #f1f1f1; }
          .news-company .content .right li a .title {
            font-size: 18px;
            display: flex;
            justify-content: space-between; }
            .news-company .content .right li a .title h4 {
              font-size: 18px;
              width: 80%;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap; }
            .news-company .content .right li a .title em {
              color: #999;
              font-weight: bolder; }
          .news-company .content .right li a .desc {
            margin-top: 20px;
            color: #999;
            display: flex;
            justify-content: space-between;
            align-items: center; }
            .news-company .content .right li a .desc p {
              width: 90%;
              line-height: 24px;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2;
              overflow: hidden; }

@media screen and (max-width: 750px) {
  .news-company {
    margin-top: 15px; }
    .news-company .content {
      margin-top: 0;
      flex-direction: column; }
      .news-company .content .left {
        width: 100%;
        margin-right: 0;
        padding: 15px; }
        .news-company .content .left h4, .news-company .content .left p, .news-company .content .left .img, .news-company .content .left button {
          margin-top: 5px; }
      .news-company .content .right {
        width: 100%; }
        .news-company .content .right li {
          height: auto; }
          .news-company .content .right li a {
            padding: 15px 0; }
            .news-company .content .right li a .title h4 {
              height: 20px;
              line-height: 20px;
              font-size: 16px; } }
/* 新闻资讯 */
.news {
  margin: 60px auto; }
  .news .new-title {
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .news .new-title .right {
      display: flex;
      width: 390px; }
      .news .new-title .right li {
        flex-grow: 1;
        height: 50px;
        cursor: pointer;
        font-size: 18px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease; }
        .news .new-title .right li p {
          width: 100%;
          height: 30px;
          text-align: center;
          line-height: 30px; }
        .news .new-title .right li:nth-child(1) {
          border-top-left-radius: 25px;
          border-bottom-left-radius: 25px;
          border: 1px #666666 solid;
          border-right: none; }
        .news .new-title .right li:nth-child(2) {
          border-top-right-radius: 25px;
          border-bottom-right-radius: 25px;
          border: 1px #666666 solid;
          border-left: none; }
          .news .new-title .right li:nth-child(2) > p {
            border-right: none; }
        .news .new-title .right li:hover {
          background: #f1f1f1; }
        .news .new-title .right li.active {
          color: #fff;
          font-weight: bold;
          background: linear-gradient(to right, #b200ae, #8805af);
          border: none; }

@media screen and (max-width: 750px) {
  .news {
    margin-top: 30px;
    margin-bottom: 30px; }
    .news .new-title {
      margin-bottom: 0px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start; }
      .news .new-title .left {
        float: left; }
      .news .new-title .right {
        margin-top: 20px;
        width: 100%; } }

/*# sourceMappingURL=news.css.map */
/* 新增 */
.number	{
	width: 80px;
	display: flex;
	flex-direction: row;
	line-height: 38px;
}
.number b {
	display: inline-block !important;
	border: 0 !important;
	margin: 0 3px !important;
	line-height: 38px !important;
}

/*  新增 end */