@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-10-11 10:51:48
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-10-13 13:49:36
 */

/* 字体 */
@import "../fonts/fonts.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 核心样式 */
@import "../css/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* 首页样式 */
.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.title>h2 {
  line-height: 38px;
  font-family: "Source Han Sans CN";
  font-size: 30px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.title>h3 {
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
  font-size: 12px;
  color: #d1d1d1;
  padding-bottom: 22px;
  background: url(../images/title-heng.png) no-repeat center bottom;
}
.title>div {
  text-align: center;
  line-height: 24px;
  margin-top: 15px;
  font-size: 16px;
  color: #707070;
}

@media (max-width: 767px) {
  .title>h2 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>h3 {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 12px;
    background: url(../images/title-heng.png) no-repeat center bottom;
    background-size: auto 10px;
  }
  .title>div {
    line-height: 20px;
    font-size: 12px;
    margin-top: 15px;
  }
}

/* 专业服务 */
.service {
  padding: 55px 0 40px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.service-list>li {
  width: 19%;
  border-right: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
}
.service-list>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-list>li>a .service-icon {
  width: 100%;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.service-list>li>a .service-icon>span {
  width: 42px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list>li>a .service-icon>span>img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  filter: drop-shadow(0 40px var(--color-hover));
  -webkit-filter: drop-shadow(0 40px var(--color-hover));
}
.service-list>li>a>h2 {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 22px;
  text-align: center;
  font-size: 18px;
  color: #212121;
}
.service-list>li:first-child {
  width: 12%;
  justify-content: flex-start;
}
.service-list>li:last-child {
  width: 12%;
  justify-content: flex-end;
  border-right: none;
}
.service-list>li>a:hover .service-icon>span {
  top: -40px;
}
.service-list>li>a:hover>h2 {
  font-weight: bold;
  color: var(--color-hover);
}

@media (max-width: 1280px) {
  .service-list {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .service {
    padding: 30px 0;
  }
  .service-list {
    margin-top: 20px;
  }
  .service-list>li {
    width: 18%;
  }
  .service-list>li:first-child,
  .service-list>li:last-child {
    width: 14%;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 15px 0;
  }
  .service-list {
    margin-top: 15px;
  }
  .service-list>li {
    width: calc(100% / 6) !important;
    justify-content: center !important;
  }
  .service-list>li>a .service-icon {
    height: 26px;
  }
  .service-list>li>a>h2 {
    margin-top: 10px;
    line-height: 20px;
    font-size: 12px;
  }
}

/* 审计 */
.index-audit {
  background-image: url(../images/index-bj1.jpg);
  overflow: visible;
  padding-top: 60px;
}
.index-audit-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
}
.index-audit-list>li {
  width: calc(calc(100% / 3) - 32px);
  margin: 0 16px 32px 16px;
}
.index-audit-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.index-audit-list>li>a::before {
  content: "";
  display: block;
  padding-top: 90.1477833%;
}
.index-audit-list>li>a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(6, 63, 136, 0.2);
  opacity: 0;
}
.index-audit-list>li>a .index-audit-hover {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.index-audit-list>li>a .index-audit-hover>h2 {
  line-height: 24px;
  font-size: 18px;
  color: #0e0e0e;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-audit-list>li>a .index-audit-hover>span {
  width: 100%;
  max-width: 88px;
  margin-top: 15px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  height: 30px;
  line-height: 28px;
  font-size: 12px;
  color: #9d9d9d;
  text-align: center;
}
.index-audit-list>li>a:hover>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.index-audit-list>li>a:hover::after {
  opacity: 1;
}
.index-audit-list>li>a:hover .index-audit-hover {
  background-color: rgba(6, 63, 136, 0.8);
}
.index-audit-list>li>a:hover .index-audit-hover>h2 {
  color: #fff;
}

@media (max-width: 1280px) {
  .index-audit {
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .index-audit {
    padding-top: 30px;
  }
  .index-audit-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .index-audit-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 20px 10px;
  }
  .index-audit-list>li>a .index-audit-hover {
    width: calc(100% - 20px);
    padding: 15px;
    bottom: 10px;
  }
  .index-audit-list>li>a .index-audit-hover>span {
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .index-audit {
    padding-top: 15px;
  }
  .index-audit-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .index-audit-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .index-audit-list>li>a .index-audit-hover {
    width: calc(100% - 10px);
    padding: 10px;
    bottom: 5px;
  }
  .index-audit-list>li>a .index-audit-hover>h2 {
    font-size: 14px;
  }
  .index-audit-list>li>a .index-audit-hover>span {
    max-width: 70px;
    margin-top: 10px;
    height: 26px;
    line-height: 24px;
  }
}

/* 特色服务 */
.fw {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.fw .swiper {
  width: 100%;
  margin-top: 40px;
}
.fw .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  display: flex;
  flex-direction: column;
}
.fw .swiper .swiper-slide>a .img::before {
  padding-top: 67.880795%;
}
.fw .swiper .swiper-slide>a .fw-box {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 25px 15px 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fw .swiper .swiper-slide>a .fw-box>h2 {
  width: 100%;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: #063f88;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.fw .swiper .swiper-slide>a .fw-box>span {
  width: 100%;
  margin-top: 12px;
  max-width: 88px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #dfdfdf;
  font-size: 12px;
  color: #9d9d9d;
}
.fw .swiper .swiper-slide>a:hover .img>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.fw .swiper .swiper-slide>a:hover .fw-box {
  background-color: var(--color-hover);
}
.fw .swiper .swiper-slide>a:hover .fw-box>h2 {
  color: #fff;
}
.fw .swiper .swiper-slide>a:hover .fw-box>span {
  background-color: #fff;
  color: var(--color-hover);
}

@media (max-width: 1280px) {
  .fw .swiper .swiper-slide>a .fw-box {
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  .fw .swiper {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .fw {
    padding: 15px 0;
  }
  .fw .swiper {
    margin-top: 15px;
  }
  .fw .swiper .swiper-slide>a .fw-box {
    padding: 10px;
  }
  .fw .swiper .swiper-slide>a .fw-box>h2 {
    line-height: 24px;
    font-size: 14px;
  }
  .fw .swiper .swiper-slide>a .fw-box>span {
    margin-top: 10px;
    max-width: 70px;
    height: 26px;
    line-height: 24px;
  }
}

/* 在线咨询 */
.hf {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.hf-left {
  width: 70.15625%;
  min-height: 146px;
  margin-top: 20px;
  background-color: #063f88;
  clip-path: polygon(0 0, 0 100%, 91% 100%, 100% 0);
  display: flex;
  align-items: center;
  padding: 40px;
}
.hf-hotline {
  display: block;
  padding-left: 70px;
  background: url(../images/hf-hotline.png) no-repeat left center;
  line-height: 28px;
  font-size: 17px;
  color: #fff;
}
.hf-hotline>span {
  display: block;
  line-height: 34px;
  font-size: 28px;
  font-family: "AlimamaShuHeiTi Bold";
}
.hf-right {
  width: 34.375%;
  min-height: 135px;
  background-color: #f37020;
  clip-path: polygon(17% 0, 0 100%, 100% 100%, 100% 0);
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}
.hf-right>a {
  width: 100%;
  max-width: 230px;
  height: 54px;
  font-size: 17px;
  color: #063f88;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
}
.hf-right>a>span {
  padding-left: 42px;
  background: url(../images/hf-icon.png) no-repeat left center;
}

@media (max-width: 991px) {
  .hf {
    margin-top: 20px;
  }
  .hf-left {
    padding: 20px;
  }
  .hf-hotline>span {
    line-height: 30px;
    font-size: 24px;
  }
  .hf-right {
    padding: 0 15px 0 40px;
  }
}
@media (max-width: 767px) {
  .hf {
    margin-top: 0;
    padding: 0 0 15px 0;
  }
  .hf-left {
    width: 100%;
    padding: 20px;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    min-height: initial;
    margin: 0;
  }
  .hf-hotline {
    padding-left: 60px;
    line-height: 26px;
    font-size: 14px;
  }
  .hf-hotline>span {
    line-height: 30px;
    font-size: 14px;
  }

  .hf-right {
    width: 100%;
    min-height: initial;
    position: relative;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    padding: 15px;
  }
  .hf-right>a {
    height: 40px;
    font-size: 14px;
  }
}

/* 为什么选择我们 */
.choose {
  background-image: url(../images/choose-bj.jpg);
  margin-top: -56px;
  padding-top: 122px;
}
.choose-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.choose-title>h2 {
  line-height: 54px;
  font-size: 48px;
  color: #fff;
  font-family: "Source Han Sans CN Medium";
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}
.choose-title>div {
  margin-top: 15px;
  line-height: 30px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-family: "Source Han Sans CN Normal";
  letter-spacing: 5px;
}
.choose-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.choose-list>li {
  width: 25%;
  border-right: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  display: flex;
}
.choose-list>li:last-child {
  border-right: none;
}
.choose-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #fff;
}
.choose-list>li>a .choose-icon {
  width: 100%;
  max-width: 106px;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.choose-list>li>a .choose-icon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.choose-list>li>a>h2 {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
  color: #050505;
}
.choose-list>li>a .choose-text {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  text-align: center;
  height: 120px;
  line-height: 24px;
  font-size: 14px;
  color: #4b4b4b;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.choose-list>li>a .choose-text .choose-hotline {
  display: block;
  overflow: hidden;
  color: #f37020;
  font-weight: bold;
}
.choose-list>li>a:hover {
  background-color: var(--color-hover);
}
.choose-list>li>a:hover>h2,
.choose-list>li>a:hover .choose-text {
  color: #fff;
}

.choose-box {
  width: 100%;
  padding-bottom: 75px;
}
.choose-box .choose-list {
  margin: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1280px) {
  .choose {
    padding-top: 100px;
  }
  .choose-list>li>a {
    padding: 25px;
  }
  .choose-box {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .choose {
    padding-top: 80px;
  }
  .choose-list {
    margin-top: 20px;
  }
  .choose-list>li>a {
    padding: 15px;
  }
  .choose-box {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .choose {
    margin-top: 0;
    padding-top: 15px;
  }
  .choose-title>h2 {
    line-height: 30px;
    font-size: 20px;
    padding-bottom: 5px;
  }
  .choose-title>div {
    margin-top: 5px;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 2px;
  }
  .choose-list {
    margin-top: 10px;
  }
  .choose-list>li {
    width: 50%;
  }
  .choose-list>li>a {
    padding: 10px;
  }
  .choose-list>li>a .choose-icon {
    max-width: 70px;
  }
  .choose-list>li>a .choose-icon>img {
    height: 30px;
  }
  .choose-list>li>a>h2 {
    margin-top: 10px;
    font-size: 14px;
  }
  .choose-list>li>a .choose-text {
    margin-top: 10px;
    height: auto;
    line-height: 20px;
    font-size: 12px;
    -webkit-line-clamp: initial;
  }
  .choose-list>li:nth-child(even) {
    border-right: none;
  }

  .choose-box {
    padding-bottom: 15px;
  }
}

/* 关于从信 */
.about {
  background-image: url(../images/about-bj.jpg);
  padding: 75px 0;
}
.about>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.about-left .img::before {
  padding-top: 71.09375%;
}

.about-right {
  width: 50%;
  position: relative;
  z-index: 3;
  padding: 30px 25px;
  padding-bottom: 45px;
}
.about-right::before {
  content: "";
  width: calc(100% + 30px);
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.about-title {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  font-family: "Source Han Sans CN";
  font-weight: bold;
}
.about-title>h2 {
  line-height: 36px;
  font-size: 30px;
  color: #262626;
}
.about-title>h2>span {
  color: var(--color-hover);
}
.about-title>h3 {
  line-height: 30px;
  font-size: 30px;
  color: #bdbdbd;
  text-transform: uppercase;
  margin-left: 10px;
	font-family: 楷体;
}
.about-text {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  height: 168px;
  line-height: 24px;
  font-size: 16px;
  color: #5b5b5b;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.about-more {
  display: flex;
  overflow: hidden;
  margin-top: 30px;
}
.about-more>a {
  width: 88px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--color-main);
  font-size: 12px;
  color: #fff;
}
.about-more>a:hover {
  background-color: #f37020;
}

@media (max-width: 1280px) {
  .about {
    padding: 50px 0;
  }
  .about-right {
    padding: 20px;
  }
  .about-text {
    margin-top: 15px;
  }
  .about-more {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-right {
    padding: 15px;
  }
  .about-title>h2 {
    line-height: 30px;
    font-size: 26px;
  }
  .about-title>h3 {
    line-height: 40px;
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
  }
  .about-right::before {
    width: 100%;
  }
  .about-title>h2 {
    line-height: 24px;
    font-size: 18px;
  }
  .about-title>h3 {
    line-height: 30px;
    font-size: 30px;
  }
  .about-text {
    margin-top: 10px;
    height: auto;
    line-height: 22px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about-more {
    margin-top: 10px;
  }
}

/* 新闻资讯 */
.news {
  padding: 60px 0 90px 0;
}
.news-nav {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.news-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.news-nav>li {
  position: relative;
  z-index: 5;
  margin: 0 25px;
}
.news-nav>li>a {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #000;
  padding-bottom: 25px;
  position: relative;
}
.news-nav>li>a::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--color-hover);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.news-nav>li.news-active>a::after,
.news-nav>li>a:hover::after {
  width: 100%;
}

.news-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.news-content>div{
  display: none;
}
.news-content>div:first-child{
  display: block;
}

.news-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-left {
  width: calc(50% - 20px);
  margin-top: 20px;
  display: flex;
}
.news-left>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.news-left>a::before {
  content: "";
  display: block;
  padding-top: 67.3633441%;
}
.news-left>a>h2 {
  width: 100%;
  line-height: 26px;
  padding: 35px 15px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.news-left>a:hover>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.news-list {
  width: calc(50% - 20px);
}
.news-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px dotted #bfbfbf;
}
.news-list>li>a {
  display: block;
  overflow: hidden;
  height: 62px;
  line-height: 62px;
  font-size: 16px;
  color: #383838;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a>em{
  float: right;
}
.news-list>li>a>span {
  float: left;
  color: #077eca;
  font-size: 12px;
  margin-right: 5px;
}
.news-list>li>a:hover {
  color: var(--color-hover);
}

@media (max-width: 1280px) {
  .news {
    padding: 60px 0;
  }
  .news-nav {
    margin-top: 35px;
  }
  .news-list>li>a {
    height: 50px;
    line-height: 50px;
  }
  .news-left>a>h2 {
    padding: 25px 15px;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-nav {
    margin-top: 20px;
  }
  .news-nav>li>a {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .news-content {
    margin-top: 20px;
  }
  .news-left {
    width: 50%;
    margin-top: 10px;
  }
  .news-left>a>h2 {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-nav {
    margin-top: 10px;
  }
  .news-nav>li {
    margin: 0 10px;
  }
  .news-nav>li>a {
    font-size: 14px;
    padding-bottom: 5px;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
    margin: 0;
  }
  .news-left>a>h2 {
    padding: 10px;
    font-size: 14px;
  }
  .news-list {
    width: 100%;
    margin-top: 10px;
  }
  .news-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

/* 他们都选择了从信 */
.partner {
  background-image: url(../images/partner-bj.jpg);
  padding: 70px 0;
}
.partner-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-family: "Source Han Sans CN";
}
.partner-title>h2 {
  line-height: 48px;
  font-size: 36px;
  color: #000;
  font-weight: bold;
}
.partner-title>h2>span {
  color: var(--color-hover);
}
.partner-title>div {
  line-height: 30px;
  margin-top: 10px;
  font-size: 18px;
  color: #565656;
}
.partner-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-top: 45px;
}
.partner-list>li {
  width: calc(20% - 24px);
  margin: 0 12px 24px 12px;
}
.partner-list>li>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.partner-list>li>a::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.partner-list>li>a:hover>img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 1280px) {
  .partner {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .partner {
    padding: 30px 0;
  }
  .partner-list {
    margin-top: 30px;
  }
  .partner-list>li {
    width: calc(25% - 24px);
    margin: 0 12px 24px 12px;
  }
}
@media (max-width: 767px) {
  .partner {
    padding: 15px 0;
  }
  .partner-title>h2 {
    line-height: 30px;
    font-size: 20px;
  }
  .partner-title>div {
    line-height: 28px;
    margin-top: 0px;
    font-size: 14px;
  }

  .partner-list {
    margin-top: 10px;
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  .partner-list>li {
    width: calc(calc(100% / 3) - 10px);
    margin: 0 5px 10px 5px;
  }
}

/* 友情链接 */
.links {
  width: 100%;
  overflow: hidden;
  background-color: #063f88;
  padding: 20px 0;
}
.links>.container {
  display: flex;
  flex-wrap: wrap;
}
.links-title {
  line-height: 34px;
  font-size: 18px;
  color: #fff;
}
.links-title>span {
  float: left;
  font-size: 30px;
  text-transform: uppercase;
  padding-right: 5px;
}
.links-content {
  flex: 1;
  line-height: 34px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
}
.links-content a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 10px;
}
.links-content a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .links {
    padding: 10px 0;
  }
  .links-title {
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 30px;
    font-size: 16px;
  }
  .links-title>span {
    font-size: 18px;
  }
  .links-content {
    width: 100%;
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
    padding: 0;
    text-align: center;
  }
  .links-content a {
    margin: 0 5px;
  }
}
/* END-首页样式 */

/* 关于从信 */
.main-company {
  width: 100%;
  overflow: hidden;
}
.company-title {
  display: block;
  overflow: hidden;
  font-family: "Source Han Sans CN";
  font-weight: bold;
  font-size: 26px;
  color: #030303;
  text-align: center;
  line-height: 32px;
  padding-bottom: 20px;
  position: relative;
}
.company-title::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media (max-width: 767px) {
  .company-title {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 5px;
  }
}

/* 从信简介 */
.blurb {
  padding: 70px 0;
}
.blurb-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #1e1e1e;
}
.blurb-content>img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1280px) {
  .blurb {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .blurb {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .blurb {
    padding: 15px 0;
  }
  .blurb-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}

/* 机构设置 */
.agency {
  background-color: #f2f2f2;
  padding: 70px 0;
}
.agency-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 40px;
}
.agency-left {
  width: 50%;
  overflow: hidden;
  position: relative;
  background-color: #e6ecf0;
}
.agency-left::before {
  content: "";
  display: block;
  padding-top: 61.5625%;
}
.agency-right {
  width: 50%;
  background-color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #272727;
  line-height: 24px;
}

@media (max-width: 1280px) {
  .agency {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .agency {
    padding: 30px 0;
  }
  .agency-content {
    margin-top: 20px;
  }
  .agency-right {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .agency {
    padding: 15px 0;
  }
  .agency-content {
    margin-top: 10px;
  }
  .agency-left {
    width: 100%;
  }
  .agency-right {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}

/* 精英团队 */
.team {
  padding: 70px 0;
}
.team-box {
  width: 100%;
  margin-top: 85px;
  background-color: var(--color-main);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 45px 35px 45px;
}
.team-img {
  width: 290px;
  border: 5px solid #fff;
  margin-top: -62px;
  overflow: hidden;
  position: relative;
}
.team-img::before {
  content: "";
  display: block;
  padding-top: 127.586207%;
}
.team-right {
  width: calc(100% - 290px);
  padding-left: 60px;
}
.team-right>h1 {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 24px;
  font-size: 18px;
  color: #fff;
}
.team-right>h1>span {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 24px;
  margin-bottom: 5px;
}
.team-text {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}

.team-content {
  display: flex;
  width: 100%;
  margin-top: 50px;
  position: relative;
}
.team-content .swiper-slide {
  background-image: linear-gradient(#f5f5f5, #f5f5f5, #fff);
  padding: 20px;
}
.team-content .swiper-slide>h1 {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 1px solid #8c8c8c;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: #181818;
}
.team-content .swiper-slide>h1>span {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 18px;
  color: #063f88;
  font-weight: bold;
}
.team-content .swiper-slide>div {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #595959;
}
.team-content .prev-button,
.team-content .next-button {
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-family: SimSun;
  font-size: 60px;
  color: #dadada;
  font-weight: bold;
  cursor: pointer;
}
.team-content .next-button {
  left: initial;
  right: -55px;
}
.team-content .prev-button::before {
  content: "<";
}
.team-content .next-button::before {
  content: ">";
}
.team-content .prev-button:hover,
.team-content .next-button:hover {
  color: var(--color-hover);
}

@media (max-width: 1400px) {
  .team-content {
    padding: 0 40px;
  }
  .team-content .prev-button,
  .team-content .next-button {
    left: 0;
  }
  .team-content .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1280px) {
  .team {
    padding: 50px 0;
  }
  .team-right {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .team {
    padding: 30px 0;
  }
  .team-box {
    padding: 0 20px 20px 20px;
  }
  .team-right {
    padding-left: 20px;
  }
  .team-right>h2 {
    margin-top: 20px;
  }
  .team-content {
    padding: 0 20px;
    margin-top: 30px;
  }
  .team-content .prev-button,
  .team-content .next-button {
    left: -20px;
  }
  .team-content .next-button {
    left: initial;
    right: -20px;
  }
}
@media (max-width: 767px) {
  .team {
    padding: 15px 0;
  }
  .team-box {
    padding: 10px;
    margin-top: 10px;
    display: block;
  }
  .team-img {
    width: 30%;
    float: left;
    border: 2px solid #fff;
    margin: 0 15px 0 0;
  }
  .team-right {
    width: auto;
    display: block;
    overflow: initial;
    padding: 0;
  }
  .team-right>h2 {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
  }
  .team-right>h2>span {
    line-height: 24px;
    font-size: 16px;
    margin: 0;
  }
  .team-text {
    overflow: initial;
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .team-content {
    padding: 0 10px;
    margin-top: 10px;
  }
  .team-content .swiper-slide {
    padding: 10px;
  }
  .team-content .swiper-slide>h2 {
    padding-bottom: 5px;
    line-height: 16px;
    font-size: 12px;
  }
  .team-content .swiper-slide>h2>span {
    line-height: 24px;
    font-size: 16px;
  }
  .team-content .swiper-slide>div {
    margin-top: 10px;
    font-size: 12px;
    line-height: 22px;
  }
  .team-content .prev-button,
  .team-content .next-button {
    font-size: 30px;
    left: -10px;
  }
  .team-content .next-button {
    left: initial;
    right: -10px;
  }
}

/* 资质证书 */
.certificate {
  background-image: url(../images/certificate-bj.jpg);
  padding: 70px 0;
}
.certificate .company-title {
  color: #fff;
}
.certificate .company-title::after {
  background-color: #fff;
}
#certify {
  margin-top: 60px;
}
#certify .swiper-slide {
  width: 100%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#certify .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 70%;
}

@media (max-width: 1280px) {
  .certificate {
    padding: 50px 0;
  }
  #certify {
    margin-top: 50px;
  }
  #certify .swiper-slide {
    width: 55.5%;
  }
}
@media (max-width: 991px) {
  .certificate {
    padding: 30px 0;
  }
  #certify {
    margin-top: 30px;
  }
  #certify .swiper-slide {
    width: 64%;
  }
}
@media (max-width: 767px) {
  .certificate {
    padding: 15px 0;
  }
  #certify {
    margin-top: 10px;
  }
  #certify .swiper-slide {
    width: 100%;
  }
}

/* 企业文化 */
.culture {
  padding: 70px 0;
}
.culture-list {
  display: flex;
  flex-direction: column;
}
.culture-list>li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.culture-list>li .culture-left {
  width: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  padding-left: 70px;
}
.culture-list>li .culture-left .culture-title {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  color: var(--color-main);
}
.culture-list>li .culture-left .culture-content {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 16px;
  color: #383838;
  margin-top: 30px;
}
.culture-list>li .culture-left .culture-content>b {
  color: #030303;
}
.culture-list>li .culture-right {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.culture-list>li .culture-right::before {
  content: "";
  display: block;
  padding-top: 52.8125%;
}
.culture-list>li:nth-child(even) {
  flex-direction: row-reverse;
}


@media (max-width: 1280px) {
  .culture {
    padding: 50px 0;
  }
  .culture-list>li .culture-left {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .culture {
    padding: 30px 0;
  }
  .culture-list>li .culture-left {
    padding: 25px;
  }
  .culture-list>li .culture-left .culture-content {
    line-height: 30px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .culture {
    padding: 15px 0;
  }
  .culture-list>li .culture-left {
    width: 100%;
    padding: 15px;
  }
  .culture-list>li .culture-left .culture-title {
    line-height: 30px;
    font-size: 20px;
  }
  .culture-list>li .culture-left .culture-content {
    line-height: 24px;
    font-size: 14px;
    margin-top: 10px;
  }
  .culture-list>li .culture-right {
    width: 100%;
  }
}

/* 员工风采 */
.staff {
  background-color: #f2f2f2;
  padding: 70px 0;
}
.staff-title {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  line-height: 22px;
  color: #353535;
}
.staff .swiper {
  width: 100%;
  margin-top: 45px;
}
.staff .swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.staff .swiper .swiper-slide .img::before {
  padding-top: 73.284314%;
}
.staff .swiper .swiper-slide .staff-text {
  width: 100%;
  flex: 1;
  display: block;
  overflow: hidden;
  padding: 30px 20px;
  line-height: 24px;
  font-size: 16px;
  color: #353535;
}

@media (max-width: 1280px) {
  .staff {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .staff {
    padding: 30px 0;
  }
  .staff .swiper {
    margin-top: 30px;
  }
  .staff .swiper .swiper-slide .staff-text {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .staff {
    padding: 15px 0;
  }
  .staff-title {
    margin-top: 5px;
    font-size: 14px;
    line-height: 20px;
  }
  .staff .swiper {
    margin-top: 10px;
  }
  .staff .swiper .swiper-slide .staff-text {
    padding: 10px;
    line-height: 22px;
    font-size: 14px;
  }
}

/* 典型案例 */
.case {
  padding: 70px 0;
}
.case .swiper {
  margin-top: 75px;
  padding-bottom: 50px;
}
.case .swiper .swiper-slide {
  border: 1px solid #ddd;
  padding: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
}
.case .swiper .swiper-slide>ul {
  width: 100%;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  flex: 1;
}
.case .swiper .swiper-slide>ul>li {
  display: block;
  overflow: hidden;
  padding: 5px 0;
}
.case .swiper .swiper-slide>ul>li>a {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
  color: #3c3c3c;
}
.case .swiper .swiper-slide>ul>li>a>span {
  float: left;
  color: #063f88;
  font-weight: bold;
}
.case .swiper .swiper-slide>h1 {
  display: flex;
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: 25px;
  padding-top: 50px;
  line-height: 26px;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.case .swiper .swiper-slide>h1::before {
  content: "";
  width: calc(100% + 42px);
  height: calc(100% + 21px);
  background: url(../images/case-li-bj.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  bottom: -21px;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.case .swiper .swiper-slide>ul>li>a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

.case .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 0;
}
.case .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #e1e1e1;
  opacity: 1;
  margin: 0 2px;
}
.case .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-hover);
}
.case .swiper-pagination-bullet:only-child {
  display: flex !important;
}

@media (max-width: 1280px) {
  .case {
    padding: 50px 0;
  }
  .case .swiper {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
  .case .swiper {
    margin-top: 30px;
    padding-bottom: 30px;
  }

}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case .swiper {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .case .swiper .swiper-slide {
    padding: 10px;
  }
  .case .swiper .swiper-slide>ul {
    margin-top: 0;
  }
  .case .swiper .swiper-slide>ul>li>a {
    line-height: 14px;
    font-size: 12px;
  }
  .case .swiper .swiper-slide>h2 {
    margin-top: 10px;
    padding-top: 30px;
    line-height: 24px;
    font-size: 14px;
  }
  .case .swiper .swiper-slide>h2::before {
    width: calc(100% + 22px);
    height: calc(100% + 11px);
    bottom: -11px;
  }

  .case .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
/* END-关于从信 */

/* 审计鉴证 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.main-bg {
  background-color: #f8f8f8;
}
.main>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main-left {
  width: 23.4375%;
}
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 1px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #f6f6f6;
  padding: 0 35px;
}
.menu-list>li>a>span {
  display: block;
  overflow: hidden;
  height: 70px;
  line-height: 70px;
  font-size: 18px;
  color: #000;
  padding-right: 20px;
  background: url(../images/menu-jiantou.png) no-repeat right center;
}
.menu-list>li>a:hover,
.menu-list>li.menu-active>a {
  background-color: var(--color-hover);
}
.menu-list>li>a:hover>span,
.menu-list>li.menu-active>a>span {
  color: #fff;
  background: url(../images/menu-jiantou-white.png) no-repeat right center;
}
.menu-hotline {
  display: block;
  overflow: hidden;
  margin-top: 35px;
  border-left: 3px solid var(--color-main);
  padding-left: 40px;
  line-height: 1;
  font-size: 16px;
  color: #0c0c0c;
}
.menu-hotline>span {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 22px;
  font-size: 20px;
  color: #063f88;
  font-weight: bold;
  padding-left: 25px;
  background: url(../images/menu-hotline.png) no-repeat left center;
}
.menu-hotline>span:first-child {
  margin-top: 15px;
}

.main-right {
  width: 70.3125%;
}
.place-title {
  width: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 30px;
}
.place-title>h2 {
  font-family: "Source Han Sans CN";
  font-weight: bold;
  line-height: 36px;
  font-size: 26px;
  color: #000;
}
.place-title>div {
  line-height: 16px;
  font-size: 12px;
  color: #d1d1d1;
  text-transform: uppercase;
}
.place-title>img {
  width: auto;
  height: auto;
  position: absolute;
  left: 120%;
  top: 8px;
}
.place-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
}
.place-text {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  line-height: 24px;
  font-size: 16px;
  color: #2f2f2f;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8d8d8;
  min-height: 185px;
}
.place-text img{
  display: block;
  max-width: 100%;
	height: auto;
	margin: 5px auto;
}
.place-content {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.place-content>h2 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 20px;
  color: #063f88;
  font-weight: bold;
}
.place-content>ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: 25px;
}
.place-content>ul>li {
  width: calc(25% - 10px);
  margin: 0 5px 10px 5px;
  display: flex;
}
.place-content>ul>li>a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cacaca;
  overflow: hidden;
  padding: 10px;
  line-height: 28px;
  font-size: 15px;
  color: #474747;
}
.place-content>ul>li>a>span {
  float: left;
  font-size: 12px;
  color: #f37020;
  margin-right: 15px;
}
.place-content>ul>li>a:hover {
  border-color: var(--color-hover);
  color: var(--color-hover);
}
.place-content>ul>li>a:hover>span {
  color: var(--color-hover);
}

.place-content>ul>li>a.on {
  border-color: var(--color-hover);
  color: var(--color-hover);
}
.place-content>ul>li>a.on>span {
  color: var(--color-hover);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 30px);
  margin: 0 15px 30px 15px;
  display: flex;
}
.product-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.product-list>li>a .img::before {
  padding-top: 69.01478%;
}
.product-list>li>a>h2 {
  display: block;
  overflow: hidden;
  text-align: center;
  height: 58px;
  line-height: 58px;
  font-size: 18px;
  color: #252525;
  font-weight: bold;
}

.product-details {
  display: block;
  overflow: hidden;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--colorC);
}
.product-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .main {
    padding: 50px 0;
  }
  .menu-list>li>a {
    padding: 0 25px;
  }
  .menu-hotline {
    padding-left: 20px;
  }
  .place-content>ul>li>a {
    line-height: 26px;
    font-size: 14px;
  }
  .place-content>ul>li>a>span {
    margin-right: 5px;
  }
  .product-list>li>a>h2 {
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 29%;
  }
  .menu-list>li>a>span {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .main-right {
    width: 69%;
  }
  .place-text {
    margin-top: 20px;
  }
  .place-content {
    margin-top: 20px;
  }
  .place-content>ul>li {
    width: calc(calc(100% / 3) - 10px);
  }
  .product-list>li>a>h2 {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .menu-title {
    width: calc(100% + 40px);
    margin-left: -20px;
    background-color: var(--color-main);
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    position: relative;
    text-align: center;
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
    margin-top: 1px;
  }
  .menu-list>li>a {
    padding: 0 15px;
  }
  .menu-list>li>a>span {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .main-right {
    width: 100%;
    padding: 15px 0;
  }
  .place-title {
    padding-bottom: 10px;
  }
  .place-title>h2 {
    line-height: 24px;
    font-size: 18px;
  }
  .place-text {
    margin-top: 10px;
    line-height: 22px;
    font-size: 14px;
    padding-bottom: 10px;
  }

  .place-content {
    margin-top: 10px;
  }
  .place-content>h2 {
    line-height: 24px;
    font-size: 16px;
  }
  .place-content>ul {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    justify-content: space-between;
  }
  .place-content>ul>li {
    width: calc(50% - 2px);
    margin: 0 0 4px 0;
  }
  .place-content>ul>li>a {
    padding: 8px 10px;
    line-height: 24px;
    font-size: 14px;
  }

  .main-bg {
    padding: 15px 0;
  }
  .product-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a>h2 {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .product-details-title {
    font-size: 16px;
  }
  .product-details-content {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-审计鉴证 */


/* 新闻中心 */


.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);}
  
.news-details-img{ width:100%; text-align:center; margin:10px auto;}
.news-details-img img{ max-width:100% !important; height:auto !important;}

.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1400px) {}
@media (max-width: 1200px) {}
@media (max-width: 991px) {}
@media (max-width: 767px) {

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact-main>.container {
  display: block;
}
.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contact-text {
  width: 40%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  background-color: var(--color-main);
  padding: 30px
}
.contact-text>p>span {
  /*display: block;*/
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}
.contact-text>p>span>em {
  font-size: 12px;
  font-weight: normal;
}
.contact-text>p:nth-child(2) {
  margin: 10px 0;
}

.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none
}
@media (max-width:767px) {
  .contact {
    padding: 15px 0;
  }
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-text>p:nth-child(2) {
    margin: 5px 0;
  }
  .contact-text>p>span {
    font-size: 14px;
    line-height: 24px;
  }

  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */

/*新闻咨询*/
.info-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.info-list>li{
  width: calc(50% - 15px);
  border-bottom: 1px dashed #bfbfbf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.info-list>li>a{
  width: 100%;
  display: flex;
}
.info-list>li>a .info-img{
  width: 30%;
  overflow: hidden;
  position: relative;
}
.info-list>li>a .info-box{
  width: 70%;
  padding: 10px 20px;
  padding-right: 0;
}
.info-list>li>a .info-box>h2{
  display: block;
  overflow: hidden;
  height: 30px;
  font-size: 16px;
  color: #383838;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.info-list>li>a .info-box .info-text{
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.info-list>li>a .info-box .info-time{
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 12px;
  color: #999;
}
.info-list>li>a:hover .info-box>h2{
  color: var(--color-hover);
}


.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width:1280px) {
  .info-list>li>a .info-img{
    width: 40%;
  }
  .info-list>li>a .info-box{
    width: 60%;
  }
}
@media (max-width:991px) {
  .info-list>li{
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width:767px) {
  .info-list{
    padding: 20px 0 10px 0;
  }
  .info-list>li{
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .info-list>li>a .info-box{
    padding: 5px 15px;
    padding-right: 0;
  }
  .info-list>li>a .info-box>h2{
    height: 24px;
  }
  .info-list>li>a .info-box .info-text{
    height: 60px;
    line-height: 20px;
    margin: 5px 0;
  }

  .news-details {
    padding: 20px 0 10px 0;
  }
  .news-details-title {
    font-size: 16px;
    line-height: 24px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/*END-新闻咨询*/