﻿@charset "utf-8";

/*==========@@HTML默认 始====@@==========*/
/*基本*/
@media (max-width: 768px) {
  * {
    padding: 0px;
    margin: 0px;
  }

  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  legend,
  input,
  button,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }

  body {
    color: #000;
    margin: 0px auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    background: #fff;
  }

  div {
    margin: 0;
    padding: 0;
    border: 0;
  }

  img {
    margin: 0;
    padding: 0;
    border: 0;
  }

  p {
    margin: 0px;
    line-height: 1.8em;
  }

  b,
  strong {
    font-weight: bold;
  }

  /* 表格样式 */
  table {
    width: 100%;
    /* 表格宽度设置为100% */
    border-collapse: collapse;
    /* 边框合并为一个单一的边框 */
  }

  /* 表格边框样式 */
  table,
  th,
  td {
    border: 1px solid #dedede;
    /* 设置边框为1px黑色实线 */
  }

  /* 表头样式 */
  th {
    background-color: #f2f2f2;
    /* 设置背景色 */
    color: black;
    /* 设置文字颜色 */
    padding: 8px;
    /* 设置内边距 */
    text-align: left;
    /* 文本左对齐 */
  }

  /* 表格单元格样式 */
  td {
    padding: 8px;
    /* 设置内边距 */
    text-align: left;
    /* 文本左对齐 */
  }

  /* 鼠标悬停在表格行上的样式 */
  tr:hover {
    background-color: #f6f6f6;
    /* 鼠标悬停时改变背景色 */
  }

  li {
    list-style: none outside none;
  }

  /*链接*/
  a {
    text-decoration: none;
    color: #626262;
    background: transparent;
    outline: none;
  }

  a:visited {
    color: #aaa;
  }

  a:focus {
    outline: none;
  }

  a:hover {
    color: #000;
  }

  a:active {
    outline: none;
  }

  /*标题*/
  h1 {
    font-size: 1.3em;
    margin: 0;
  }

  h2 {
    font-size: 1.2em;
    margin: 0;
  }

  h3 {
    font-size: 1.17em;
    margin: 0;
  }

  h4 {
    font-size: 1em;
    margin: 0;
  }

  h5 {
    font-size: 0.83em;
    margin: 0;
  }

  h6 {
    font-size: 0.67em;
    margin: 0;
  }

  /*表单*/
  /*form {margin: 0;}*/
  /*button,input,select,textarea { font-size: 100%;margin: 3px; vertical-align: baseline; *vertical-align: middle; }*/
  /*button,select {text-transform: none;}*/
  /*input{padding:2px;background-color: #FFFFFF;border: 1px solid #ccc;width:99%;line-height: normal;}*/
  /*textarea{padding: 2px;color: #000000;background-color: #fff;width:99%;}*/
  /*其它*/
  blockquote {
    margin: 1em 40px;
  }

  dfn {
    font-style: italic;
  }

  hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
  }

  code,
  kbd,
  pre,
  samp {
    font-size: 1em;
  }

  pre {
    margin: 1em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  small {
    font-size: 80%;
  }

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    /* Prevent `sub` and `sup` affecting `line-height` in all browsers.*/
  }

  sup {
    top: -0.5em;
  }

  sub {
    bottom: -0.25em;
  }

  dl {
    margin: 1em 0;
  }

  dd {
    margin: 0 0 0 40px;
  }

  /*==========@@HTML默认  结束@@==========*/
  /*==========@@元件 始@@==========*/
  /*常用颜色*/
  .blue {
    color: #00f !important;
  }

  .green {
    color: #0f0 !important;
  }

  .red {
    color: #f00 !important;
  }

  .black {
    color: #000000 !important;
  }

  .white {
    color: #ffffff !important;
  }

  .gray {
    color: gray !important;
  }

  .purple {
    color: purple !important;
  }

  /* 导航 */
  .topNav {
    display: none;
  }

  .mobile-head {
    display: flex;
    justify-content: space-between;
    height: 70px;
    padding-top: 20px;
  }

  .mob-left {
    display: flex;
  }

  .mobile-head .firstLogo {
    height: 36px;
    margin-left: 8px;
    margin-right: 10px;
  }

  .mobile-head .secLogo {
    height: 36px;
  }

  .mobile-head .sdg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .mobile_menu {
    position: fixed; /* 固定定位 */
    z-index: 9999; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 全宽 */
    height: 100%; /* 全高 */
    overflow: auto; /* 启用滚动条 */
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    display: none;
  }

  .menu_content {
    width: 80%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    margin-left: 20%;
  }

  .menu_hide {
    color: rgba(0, 0, 0, 0.8);
    font-size: 25px;
  }

  .menu_info {
    flex: 1;
    width: 80%;
    height: calc(100vh - 70px);
    box-sizing: border-box;
    padding: 0 20px;
    margin-left: 20%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
  }

  .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
  }

  .item-child {
    width: 90%;
    margin-top: 5px;
    margin-right: 5px;
    text-align: left;
  }

  .top_title {
    margin-top: 10px;
    font-size: 20px;
    color: black;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
  }

  .mob-pics {
    margin-top: 30px;
    display: flex;
  }

  .mob-pics img {
    margin-right: 10px;
    width: 25px;
    height: 25px;
  }

  .mob-banners {
    margin-left: 16px;
    margin-right: 16px;
    flex: 1;
    padding-top: 18px;
    overflow: hidden;
    display: flex;
  }

  .mob-banners .item_banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 1560px; */
  }

  .mob-banners .itemLeft {
    width: 100%;
    overflow: hidden;
    /* border: 1px solid red; */
  }

  .mob-banners .itemTitle {
     min-height: 60px;
    height: auto;
    font-family: Arial;
    font-weight: bold;
    font-size: 21px;
    color: #010101;
    margin-top: 12px;
    padding-left: 1%;
  }

  .mob-banners .itemSlogan {
    margin-top: 15px;
    font-family: Arial;
    font-weight: 400;
    font-size: 22px;
    color: #010101;
  }

  .mob-banners .props {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    height: auto;
    padding-left: 1%;
  }

  .mob-banners .property {
    width: auto;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #000;
    font-family: Arial;
    font-weight: 400;
    font-size: 13px;
    color: #000;
    line-height: 30px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .mob-banners .itemRight {
    width: 100%;
    height: 335px;
    border-radius: 10px;
    /*background-image: url("/assets/addons/official/images/swiperbg.png");*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    position: relative;
    margin-left: 0;
    padding-left: 1%;
  }

  .mob-banners .bannerImg {
    position: absolute;
    margin-top: 50px;
    width: 110%;
    height: auto;
    margin-left: 0;
  }

  .proBans {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    margin-left: 0;
  }

  .banItem {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
  }

  .proSLeft {
     width: 90%;
    margin-left: 16px;
    margin-right: 16px;
    height: 220px;
    overflow: hidden;
  }

  .banPic {
    height: auto;
    width: 100%;
  }

  .leftPics {
    /*display: flex;*/
    display: none;
  }

  .leftPics .leftFirst {
    width: 24.5%;
    height: 100px;
  }

  .leftFirst:nth-child(2) {
    width: 21%;
    height: 100px;
    margin-left: 20px;
    margin-right: 40px;
    margin-top: 10px;
  }

  .leftFirst:nth-child(3) {
    width: 22%;
    height: 100px;
    margin-top:10px;
  }

  .proSRight {
    margin-top: 50px;
    margin-left: 16px;
    margin-right: 16px;
    background-image: url("/assets/addons/official/images/indexbg.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 0 2% 20px 2%;
    overflow: hidden;
    min-height: 220px;
    height: auto;
    width: 90%;
  }

  .rightTitle {
    font-family: Arial;
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
    line-height: 48px;
  }

  .rightContent {
    font-family: ArialMT;
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
  }

  .proBanDot {
    margin-left: 40px;
    margin-top: 14px;
    display: flex;
  }

  .proDotItem {
    width: 20px;
    height: 20px;
    border-radius: 12px;
    border: 2px solid #005ac9;
    color: #005ac9;
    text-align: center;
    line-height: 20px;
    margin-right: 20px;
  }

  .proDotActive {
    background-color: #005ac9;
    color: #ffff;
  }

  .proSub {
    width: 180px;
    height: 46px;
    background: #002c89;
    border-radius: 24px;
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    line-height: 48px;
    top: 450px;
    text-align: center;
    position: absolute;
    right: 6%;
    top: 43%;
  }

  /* 首页解决方案banner */
  .soluBans {
    width: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .soluItem {
    width: 100%;
    display: flex;
    margin-left: 16px;
  }

  .soluItemLeft {
    display: none;
  }

  .soluItemMid {
    width: 100%;
    height: 570px;
  }

  .soluTitle {
    font-family: Arial;
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    overflow: hidden;
  }

  .subheading {
    font-family: Arial;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
  }

  .soluBanItem {
    display: flex;
    flex-direction: column;
  }

  .itemTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 30px;
  }

  .soluBanItemLeft {
    display: flex;
    flex-direction: column;
    padding-bottom: 5px;
  }

  .soluBanItemLeftNo {
    padding-top: 35px;
  }

  .iteLeftProps {
    display: none;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-left: 30px;
  }

  .soluBanItem_active .iteLeftProps {
    display: flex;
    margin-left: 0px;
    flex-wrap: nowrap;
  }

  .active_icon1 {
    display: none;
  }

  .active_icon2 {
    position: relative;
    z-index: 9999;
  }

  .soluBanItem_active .active_icon1 {
    display: block;
  }

  .soluBanItem_active .active_icon2 {
    display: none;
  }

  .leftPropItem {
    font-family: Arial;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    border: 1px solid black;
    height: 30px;
    border-radius: 15px;
    padding: 0 10px;
    border: 1px solid #000000;
    line-height: 30px;
    margin-right: 20px;
    overflow: hidden;
  }

  .itemLeftTop {
    display: flex;
  }

  .soluBanItem_active .banTitle {
    color: #ffffff;
  }

  .soluBanItem img {
    width: 25px;
    height: 15px;
    margin-left: 10px;
    padding-top: 47px;
  }

  .banIndex {
    font-family: Arial-BoldMT;
    font-weight: bold;
    font-size: 17px;
    color: #010101;
    margin-right: 10px;
    line-height: 44px;
  }

  .banTitle {
    font-family: Arial-BoldMT;
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    max-height: 45px;
    color: #000000;
    background-color: #fff;
  }

  .line {
    height: 1px;
    background: linear-gradient(to right, #000, #fff);
    width: 80%;
  }

  .itemTopAct {
    color: #fff;
  }

  .soluItemRight {
    margin-left: 16px;
    margin-right: 16px;
    width: 90%;
    height: auto;
    overflow: hidden;
    /* box-sizing: border-box; */
     padding-right: 0px;
    margin-top:15px;
  }

  .soluItemRight img {
    display: none;
    height: 100%;
    width: 90%;
    object-fit: cover;
  }

  img.soluItemRight-active {
    display: block;
  }

  .soluDots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
  }

  .soluDot {
    width: 20px;
    height: 20px;
    border: 2px solid #002c89;
    color: #002c89;
    border-radius: 50%;
    margin-right: 20px;
    line-height: 16px;
    text-align: center;
  }

  .soluDot-active {
    background: #002c89;
    color: #ffffff;
  }

  .soluAct {
    color: #fff;
    background-color: #002c89;
  }

  /* aoout */
  .about {
    width: 94%;
    height: auto;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 0px;
    background-image: url("/assets/addons/official/images/aboutbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .aboutTitle {
    font-family: Arial;
    font-weight: bold;
    font-size: 28px;
    color: #f6d823;
    margin-top: 56px;
    margin-left: 0;
    position: relative;
  }

  .aboutLine {
    width: 400px;
    height: 1px;
    position: absolute;
    margin-top: 110px;
    background: linear-gradient(89deg, rgba(246, 216, 35, 0.98) 4%, rgba(255, 255, 255, 0.63) 85%);
    margin-left: 0;
  }

  .aboutIcons {
    margin-top: 0px;
    display: flex;
    margin-left: 0;
    position: relative;
  }

  .aboutIconsLeft {
    display: flex;
    margin-right: 0;
  }

  .aboutIconsLeft img {
    width: 40px;
    height: 38px;
  }

  .titles {
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }

  .titleTop {
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #f6d823;
  }

  .titleBottom {
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
  }

  .aboutContent {
    margin-top: 10px;
    width: 95%;
    font-family: Arial;
    font-weight: 400;
    font-size: 13px;
    color: #000;
    margin-left: 0px;
    position: relative;
    line-height: 23px;
  }

  .aboutContent span {
    font-size: 22px;
    color: #0066d9;
  }

  .aboutSub {
    margin-top: 10px;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    background-color: #005ac9;
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    margin-left: 0;
    position: relative;
  }

  /* news */
  .newsList-list {
    width: 94%;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 50px;
  }

  .newsTop {
    display: flex;
    margin-bottom: 15px;
  }

  .newsTopLeft {
    width: 33%;
    font-family: Arial;
    font-weight: bold;
    font-size: 28px;
    color: #000000;
    margin-left: 14%;
    margin-right: 7%;
  }

  .newsTopRight {
    width: 38%;
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    line-height: 26px;
  }

  .newsSub {
    width: 150px;
    height: 30px;
    background: #002c89;
    border-radius: 15px;
    margin-top: 20px;
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
  }

  .cate {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 14px;
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    color: #92979f;
    line-height: 9px;
  }

  .newsTit {
    font-family: Arial;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .newsDis {
    margin-top: 6px;
    font-family: Arial;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom:5px;
  }

  /* footer */
  .logosBottom {
    width: 95%;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
  }

  .logoLeft {
    width: 40px;
    height:32px;
  }

  .logoRight {
    height: 28px;
    padding: 0;
    margin-left: 10px;
    font-family: Arial;
    font-weight: bold;
    font-size: 26px;
    color: #172f6d;
    line-height: 28px;
  }

  .bottom {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
  }

  .bottom .bottomLeft {
    margin-top: 20px;
    width: 95%;
  }

  .bottom .address {
    display: flex;
  }

  .bottom .address img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
  }

  .bottom .address .addCon {
    width: 96%;
    height: auto;
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #010101;
    line-height: 24px;
    max-height: 190px;
  }
  .bottom .address .addCon2{
    font-size: 14px;
  }

  .email {
    display: flex;
    align-items: center;
    margin-top: 25px;
  }

  .email img {
    width: 30px;
    height: 25px;
    margin-right: 8px;
  }

  .email .emailCon {
    height: 22px;
    font-family: Arial;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
  }

  .email img.bottomPdf {
    height: auto;
    margin-right: 11px;
  }

  .company {
    margin-top: 40px;
    height: 41px;
    font-family: Arial;
    font-weight: bold;
    font-size: 17px;
    color: #000000;
  }

  .copy {
    height: 41px;
    font-family: Arial;
    font-size: 13px;
    color: #000000;
  }

  .bottomRight {
    display: none;
  }

  .mobbottomRight {
    width: 95%;
  }

  .rightTit {
    font-family: Arial;
    font-weight: bold;
    font-size: 28px;
    color: #010101;
    margin-bottom: 30px;
  }

  .probItem {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    word-wrap: break-word;
  }

  .probItem img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    margin-top: 10px;
  }

  .probItem .probTit {
    height: 45px;
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    color: #010101;
    line-height: 45px;
  }

  .probItem .itemAfter {
    display: none;
  }

  .probItem .line {
    width: 84%;
    height: 1px;
    background-color: #000000;
    margin-top: 10px;
    margin-left: 35px;
  }

  .probItem .answer {
    max-width: 95%;
    word-wrap: break-word;
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    color: #010101;
    line-height: 26px;
    margin-left: 35px;
    margin-top: 12px;
    margin-bottom: 25px;
  }

  .cookie {
    height: 13px;
    font-family: Arial;
    font-weight: 400;
    font-size: 17px;
    color: #000000;
    line-height: 36px;
    margin-top: 60px;
    text-align: right;
    margin-right: 100px;
  }

  /* prolist */
  .proList {
    margin-left: 16px;
    margin-right: 16px;
  }

  .proList .title {
    margin-top: 20px;
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    margin-left: 0px;
  }

  .proList .productlist {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
  }

  .proList .productlist li {
    width: 100%;
    margin-top: 30px;
  }

  .proList .productlist li .info_wrap {
    width: 90%;
    margin: 0 auto;
    display: block;
    background: url("/assets/addons/official/images/listbg.png");
    background-size: cover;
    border-radius: 20px;
    min-height: 450px;
    overflow: hidden;
  }

  .proList .productlist .InfoPicture {
    width: 90%;
    margin: 20px 5%;
    background: #ffffff;
    border-radius: 18px;
    display: inline-block;
    height: 226px;
    line-height: 226px;
  }

  .proList .InfoPicture img {
    width: 90%;
    margin: 0 5%;
    vertical-align: middle;
  }

  .proList .InfoWrap .InfoTitle {
    width: 90%;
    color: #ffffff;
    text-align: center;
    line-height: 28px;
    margin: 0 auto;
    height: auto;
    overflow: auto;
  }

  .proList .InfoWrap .list_button {
    width: 44%;
    background: #ffffff;
    color: #002c89;
    margin: 30px 28%;
    border-radius: 18px;
    line-height: 35px;
    border: 1px solid #ffffff;
    font-weight: bold;
    font-size: 18px;
  }

  /* prodet */
  .containe {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
  }

  .detSpace {
    width: 17%;
  }

  .detLeft {
    width: 100%;
    overflow: hidden;
    display: none;
  }

  .detLeft .leftItem {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .leftItem .itemTit {
    margin-left: 5px;
    height: 38px;
    font-family: Arial;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 38px;
  }

  .detLeft .active {
    background-color: #002c89;
    height: 38px;
    width: 93%;
    color: #fff;
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    border-radius: 19px;
    text-align: center;
  }

  .detRight {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .detRight .rightPic {
    width: 90%;
    height: auto;
    margin-left: 5%;
  }

  .detRight .rightCon {
    margin-left: 30px;
    margin-right: 40px;
  }

  .rightCon .conTit {
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    color: #002c89;
    line-height: 26px;
  }

  .rightCon .desc {
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
    color: #000000;
  }

  .rightCon .desc .descCon {
    font-size: 18px;
    line-height: 26px;
  }

  .rightSub {
    width: 160px;
    height: 48px;
    background: #002c89;
    border-radius: 24px;
    font-family: Arial;
    font-weight: bold;
    font-size: 26px;
    color: #ffffff;
    line-height: 48px;
    text-align: center;
    margin-top: 25px;
  }

  .detContents {
    margin-top: 60px;
    margin-left: 5%;
    width: 90%;
    overflow: hidden;
  }

  .detContents img {
    width: 100%;
  }

  .bottomTit {
    font-family: Arial;
    font-weight: bold;
    font-size: 26px;
    color: #002c89;
    margin-left: 5%;
    margin-top: 50px;
  }

  .bottomSwiper1 {
    width: 90%;
    margin-left: 0;
    margin-right: 50px;
    position: relative;
  }

  .bottomSwiper1 .swiper2 {
    margin-top: 50px;
  }

  .bottomSwiper1 .swiper2 .swiper-slide {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    /* border: 1px solid red; */
    height: 240px;
  }

  .bottomSwiper1 .swiper2 .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .bottomSwiper1 .swiper2 .swiper-slide .bottomDesc {
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    margin-top: 20px;
    height: 32px;
    color: #000000;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .bottomSwiper {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    width: 100%;
    height: 250px;
  }
  .bottomSwiper_mobile .swiper2_mobile .swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: contain;
  }

  .bottomSwiper_mobile .swiper2_mobile .swiper-slide .bottomDesc {
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    margin-top: 20px;
    height: 32px;
    color: #000000;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .newsDetails {
    margin-top: 60px;
    margin-left: 5%;
    margin-right: 5%;
  }
  .firstBottom {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }
  .firstBottom img{
    width: 100%;
    height: auto;
  }
  .firstBottom .firstCon{
    margin-left: 0;
    width: 100%;
    height: auto;
    line-height: 26px;
    font-size: 16px;
    margin-top:10px;
  }
  .detailContent{
    font-size: 16px;
  }
  .secondBottom{
    flex-direction: column;
  }
  .secondBottom .secondCon{
    margin-left: 0;
    width: 100%;
    height: auto;
    line-height: 26px;
    font-size: 16px;
  }
  .secondBottom img{
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    height: auto;
  }
  .thiedBottom{
    height: auto;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .thirdCon{
    display: flex;
    flex-direction: column;
  }
  .thirdCon .thirdRight{
    margin-top: 15px;
  }
  .thirdCon .thierLeft .leftTitle{
    margin-top: 20px;
  }
  .newsList{
    margin-left: 4%;
    margin-top:60px;
  }
  .newsList .title{
    margin-top: 60px;
    margin-left: 0;
    font-size: 22px;
  }
  .newsList .thumblist li .info_wrap{
    width: 50%;
  }
  .newsList .thumblist li .info_wrap .InfoTitle{
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
  }
  .newsList .thumblist li .info_wrap .InfoTime{
    margin-top:2px;
    margin-bottom: 2px;
  }
  .newsList .thumblist li .info_wrap p{
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 约等于 5 行 */
    text-overflow: ellipsis;
  }
  .bottomSwiper3{
    display: none;
  }
  .bottomSwiper3_mobile{
    display: block;
    width: 90%;
    margin-left: 5%;
    margin-top:10px;
  }
  .ContactInfo img{
    width: 100%;
  }
  .online{
    margin-left: 5%;
    margin-right: 5%;
  }
  .online .title {
    margin-top: 50px;
    font-family: Arial;
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
  }
  table, th, td {
    border: 1px solid #dedede;
  }

  .bottomSwiper1_mobile .swiper2_mobile .swiper-slide {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    /* border: 1px solid red; */
    height: 240px;
    margin-top: 10px;
  }

  .bottomSwiper1_mobile .swiper2_mobile .swiper-slide img {
    /*width: 100%;*/
    height: 180px;
    object-fit: contain;
  }
  .bottomSwiper1_mobile .swiper2_mobile .swiper-slide .bottomDesc {
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
    height: 72px;
    color: #000000;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .address2{
    margin-right: 10px;
  }
}
