@import url(./inner_sidebar.css);

/* ==========================================================================
   全局
   ========================================================================== */
.content {
  padding: 1rem 0 0;
  position: relative;
  min-height: 300px;
}

.content img {
  max-width: 100%;
}

.sub-banner {
  position: relative;
  height: 400px;
}

.bgtitle1 {
  position: relative;
  font-size: .36rem;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  padding-top: 15%;
}

.sub-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(9, 59, 110, .4);
}


@media only screen and (max-width:1536px) {
  .sub-banner {
    height: calc(400px / 1.25);
  }
}

@media only screen and (max-width:1440px) {
  .sub-banner {
    height: calc(400px * 0.75);
  }
}

@media only screen and (max-width:1280px) {
  .sub-banner {
    height: calc(400px / 1.5);
  }
}

@media only screen and (max-width:1024px) {
  .sub-banner {
    height: calc(400px / 1.875);
  }
}

@media only screen and (max-width:960px) {
  .sub-banner {
    height: calc(400px / 2);
  }
}

@media only screen and (max-width:768px) {
  .sub-banner {
    height: calc(400px / 2.5);
  }

  .content {
    padding: 20px 0 0;
  }
}

@media only screen and (max-width:500px) {
  .bgtitle1 {
    padding-top: 25%;
  }
}








/* ==========================================================================
   关于我们
   ========================================================================== */
.about_head {
  justify-content: space-between;
  align-items: center;
}


.about_title {
  font-weight: bold;
  font-size: .36rem;
  color: #212121;
}

.about_right {
  width: 7.2rem;
}

.about_right .num_list {
  justify-content: space-between;
}

.about_info {
  font-size: .18rem;
  color: #333333;
  line-height: 2;
  text-indent: 2em;
  margin: .6rem 0;
}

.large_screen .swiper-pagination-bullets {
  bottom: .4rem;
}

.large_screen .swiper-pagination-bullet {
  background-color: var(--primary);
  width: .12rem;
  height: .12rem;
  transition: all .3s;
  margin: 0 .05rem !important;
}

.large_screen .swiper-pagination-bullet-active {
  width: .4rem;
  background: #005FD4;
  border-radius: .12rem;
}



.honor {
  background: #FAFAFA;
  padding: 1rem 0;
}

.honor_list {
  margin-top: .6rem;
  padding: 0 1.15rem;
  position: relative;
}

.honor_list .swiper-button-next,
.honor_list .swiper-button-prev {
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: rgba(169, 169, 169, .5);
  transition: all .3s;
}

.honor_list .swiper-button-next {
  right: 0;
}

.honor_list .swiper-button-prev {
  left: 0;
}

.honor_list .swiper-button-next:after,
.honor_list .swiper-button-prev:after {
  font-size: .28rem;
  color: #fff;
}

.honor_list .swiper-button-next:hover,
.honor_list .swiper-button-prev:hover {
  background-color: var(--primary);
}

.honor_box {
  background: #fff;
  border-radius: .1rem;
  padding: .2rem;
  box-sizing: border-box;
}

.honor_title {
  font-size: .18rem;
  color: #333333;
  text-align: center;
  height: calc(.18rem * 3);
  margin-top: .2rem;
}

.culture {
  padding: 1rem 0;
}

.culture_desc {
  font-size: .18rem;
  color: #333333;
  line-height: 2;
  text-indent: 2em;
  margin: .6rem 0;
}

.culture_bg {
  width: 100%;
  background: url(../images/culture_bg.png) no-repeat 50% 0;
  background-size: 100%;
  position: relative;
  transition: all .3s;
}

.culture_bg:hover {
  background-size: 105%;
}

.culture_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 50, 98, .6);
}

.culture_list {
  position: relative;
}

.culture_list li {
  width: 20%;
  box-sizing: border-box;
}

.culture_list li:not(:last-of-type) {
  border-right: 1px solid rgb(250, 250, 250);
}

.culture_box {
  height: 33.33vw;
  flex-direction: column;
  transition: all .3s;
}

.culture_box:hover {
  background: rgba(0, 95, 212, .6);
}

.culture_name {
  font-weight: 500;
  font-size: .3rem;
  color: #FFFFFF;
  line-height: .36rem;
  margin-bottom: .3rem;
}

.culture_slogan {
  font-weight: 500;
  font-size: .18rem;
  color: #FFFFFF;
  line-height: 2;
  text-align: center;
  height: calc(.18rem * 4);
}


.news {
  padding: 1rem 0;
  background: #FAFAFA;
}

.news_box {
  background: #FFFFFF;
  border-radius: .1rem;
  overflow: hidden;
  transition: all .3s;
  margin: .05rem;
}

.news_box:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.news_box:hover .news_title {
  color: var(--primary);
}

.news_title {
  text-align: center;
  margin: .2rem;
  font-size: .18rem;
  line-height: 2;
  color: #333333;
  height: .72rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}


@media only screen and (max-width: 920px) {
  .about_right {
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {

  .culture_desc,
  .honor_title,
  .about_info {
    font-size: 12px;
  }

  .news_title {
    font-size: 12px;
    height: 48px;
  }
}

@media only screen and (max-width: 500px) {
  .culture_list {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .culture_bg {
    background-size: cover;
  }

  .culture_bg:hover {
    background-size: cover;
  }

  .culture_list li {
    width: 100%;
  }

  .culture_list li:not(:last-of-type) {
    border-bottom: 1px solid rgb(250, 250, 250);
    border-right: none;
  }

  .large_screen .swiper-pagination-bullets {
    bottom: 0;
  }
}









/* ==========================================================================
   新闻详情
   ========================================================================== */
.newsdetails {
  margin-top: .45rem;
}

.nd_left {
  width: calc(100% - 4.8rem);
  float: left;
}

.nd_right {
  float: right;
  width: 4.15rem;
  box-sizing: border-box;
}

.nd_area {
  border-bottom: 1px solid #e5e8ef;
  box-sizing: border-box;
  padding-bottom: .39rem;
}

.nd_title {
  color: rgb(0, 0, 0);
  font-size: .24rem;
  font-weight: 400;
  text-align: center;
}

.nd_intro {
  font-size: .16rem;
  color: #555555;
  margin-top: .24rem;
  text-align: center;
}

.nd_main {
  font-size: .16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #555555;
  line-height: .32rem;
  padding: .5rem .6rem;
  box-sizing: border-box;
}

.nd_main img {
  margin: .4rem 0;
}

.nd_toolbar {
  border-top: 1px solid #e5e8ef;
  padding: .3rem .6rem;
  align-items: center;
  justify-content: space-between;
}

.tool_left {
  width: calc(100% - 1.6rem);
}

.tool_right {
  flex-wrap: nowrap;
  width: 1.58rem;
}

.tool_toggle {
  font-size: .16rem;
  font-weight: 400;
  /* color: var(--primary); */
  color: rgb(153, 153, 153);
  line-height: .32rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.back_btn {
  width: 1.58rem;
  height: .53rem;
  font-size: .18rem;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(180.00deg, rgba(0, 104, 183, 0.95), rgba(0, 104, 183, 0.85) 100%);
}

.back_btn:hover {
  color: #fff;
}

.top_btn {
  margin-left: .2rem;
}



/*  */
.gdtj {
  background-color: rgb(246, 248, 250);
  height: .6rem;
  width: 100%;
  overflow: hidden;
  color: rgb(51, 51, 51);
  font-size: .2rem;
  font-weight: 400;
  align-items: center;
}

.gdtj img {
  margin: 0 .2rem 0 .3rem;
}

.gdtj_list {
  margin: .37rem .49rem 0 .28rem;
  border-left: 1px solid rgb(229, 232, 239);
  padding-bottom: .5rem;
}

.gdtj_list li {
  margin-bottom: .2rem;
}

.gdtj_date {
  color: rgb(85, 85, 85);
  font-size: .16rem;
  line-height: .32rem;
  position: relative;
  padding-left: .3rem;
}

.gdtj_date::before {
  content: "";
  position: absolute;
  left: -0.03rem;
  top: 50%;
  transform: translateY(-50%);
  width: .03rem;
  height: .16rem;
  background: var(--primary);
}

.gdtj_title {
  color: rgb(0, 0, 0);
  font-size: .16rem;
  line-height: .32rem;
  padding-left: .3rem;
}

.gdtj_title:hover {
  color: var(--primary);
}


@media only screen and (max-width: 920px) {
  .nd_right {
    display: none;
  }

  .nd_left {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .nd_main {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 500px) {
  .nd_main {
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .nd_toolbar {
    margin-top: 0;
  }

  .tool_left {
    width: 100%;
  }

  .tool_right {
    margin-top: 10px;
  }

  .nd_toolbar {
    flex-wrap: wrap;
  }

  .nd_toolbar {
    padding: 20px 0;
  }

  .tool_toggle {
    font-size: 12px;
    line-height: 2;
  }
}













/* ==========================================================================
   解决方案
   ========================================================================== */
.solve_list {
  margin: .6rem 0 .6rem -.4rem;
}

.solve_list li {
  margin-bottom: .4rem;
  margin-left: .4rem;
  width: calc(50% - .4rem);
}

.solve_box {
  box-sizing: border-box;
  padding: .3rem;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 100%;
}

.solve_info {
  font-size: .16rem;
  color: #666666;
  line-height: 1.75;
  margin-bottom: .2rem;
}

.solve_title {
  font-size: .24rem;
  color: #333333;
  margin-bottom: .15rem;
  font-weight: 600;
}

.solve_img {
  margin-top: auto;
  align-self: flex-end;
}

@media only screen and (max-width: 768px) {
  .solve_info {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .solve_title {
    font-size: 14px;
  }

  .solve_list li {
    margin-bottom: .4rem;
    margin-left: .4rem;
    width: 100%;
  }
}











/* ==========================================================================
   产品手册
   ========================================================================== */
.download {
  margin-bottom: .7rem;
}

.download_head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}

.handbook {
  position: relative;
  font-size: .2rem;
  color: #005FD4;
}

.handbook .fa {
  margin-left: .2rem;
}

.handbook::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: #005FD4;
}

.download_box {
  background: #FAFAFA;
  border-radius: 8px;
  padding: .3rem;
  box-sizing: border-box;
}

.download_list {
  margin-left: -.4rem;
}

.download_list li {
  width: calc(50% - .4rem);
  margin-left: .4rem;
  margin-bottom: .3rem;
}

.download_box {
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
}

.download_area {
  width: calc(100% - 50px);
}

.download_img {
  width: 42px;
  height: 42px;
  background: #E9EEF3;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .3s;
}

.download_img:hover {
  background: var(--primary);
}

.download_title {
  font-size: .2rem;
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download_date {
  font-size: .16rem;
  color: #666666;
  margin-top: .1rem;
}


.service_main {
  justify-content: space-between;
  align-items: center;
}

.service_right {
  width: calc(100% - 7.5rem);
}

.service_left {
  width: 6.6rem;
}

.service_box {
  background: #FAFAFA;
  border-radius: 10px;
  padding: .6rem .7rem .7rem;
  box-sizing: border-box;
}

.service_area {
  margin-bottom: .4rem;
}

.service_txt1 {
  font-size: .18rem;
  line-height: 2;
  color: #212121;
}

.service_txt2 {
  font-weight: bold;
  font-size: .24rem;
  color: #212121;
}

.service {
  margin-bottom: 1rem;
}



.feedback {
  background: #FAFAFA;
  border-radius: .1rem;
  padding: .8rem;
  margin-bottom: 1rem;
}

.feedback_box {
  margin-top: .6rem;
  border-top: .02rem solid rgb(221, 221, 221);
  padding-top: .4rem;
}

.red {
  color: red;
  margin-left: 5px;
}

.feedback_main .layui-form-item {
  margin-bottom: .3rem;
}

.feedback_main .layui-form-label {
  text-align: left;
  padding: 9px 0;
}

.feedback_main .layui-input-block {
  margin-left: 80px;
}

.feedback_main .layui-form-radio:hover *,
.feedback_main .layui-form-radioed,
.feedback_main .layui-form-radioed>i {
  color: var(--primary);
}

.input_list {
  margin-left: -.3rem;
}

.input_list li {
  width: calc(33.33% - .3rem);
  margin-left: .3rem;
}

.select_list .layui-input-block {
  margin-left: 0;
}

.select_list li {
  width: 1rem;
  margin-right: .3rem;
}

.label_red {
  font-size: 16px;
  color: #FF0000;
}

#feedback_pro .layui-input-block {
  width: 2rem;
}

.button_box {
  justify-content: flex-end;
}

.feedback_btn {
  border: 0;
  outline: none;
  background-color: transparent;
  border-radius: .08rem;
  background-color: rgb(13, 67, 215);
  width: 2rem;
  height: .44rem;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}

.feedback_btn:active {
  background: rgba(13, 67, 215, .8);
}


@media only screen and (max-width: 768px) {
  .service_left {
    margin: 20px 0;
  }

  .service_left,
  .service_right {
    width: 100%;
  }

  .input_list li {
    width: 100%;
  }

  .select_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  #feedback_pro .layui-input-block {
    width: 50%;
  }

}

@media only screen and (max-width: 500px) {
  .download_list li {
    width: calc(100% - .4rem);
  }

  .download_title {
    font-size: 14px;
  }

  .download_date {
    font-size: 12px;
  }

  .service_box {
    padding: 20px;
  }

  .service_txt1 {
    font-size: 12px;
  }

  .service_txt2 {
    font-size: 14px;
  }

  .feedback {
    padding: 10px 10px 40px;
  }

  .feedback_btn {
    font-size: 12px;
    height: 30px;
  }
}








/* ==========================================================================
   联系我们
   ========================================================================== */
.contact_main {
  margin: .6rem 0 1rem;
}

.contact_right {
  width: 10rem;
}

.contact_left {
  width: calc(100% - 10rem);
  padding: 0 .8rem 0 .2rem;
  box-sizing: border-box;
}

.contact_info {
  font-size: .18rem;
  color: #333333;
  line-height: .28rem;
}

.contact_title {
  font-size: .24rem;
  color: #333333;
  line-height: .3rem;
  margin: .25rem 0 .15rem;
  font-weight: 600;
}

.ewm_box {
  border-top: 1px solid#ECECEC;
  margin-top: .4rem;
  padding-top: .2rem;
}

.ewm_item {
  max-width: 1rem;
}

.ewm_img {
  box-shadow: 0px 4px 7.92px 0.08px rgba(6, 31, 54, 0.2);
}

.ewm_item:first-child {
  margin-right: .2rem;
}

.ewm_name {
  font-size: .16rem;
  color: rgb(51, 51, 51);
  text-align: center;
  margin-top: .15rem;
}

.job_bg {
  position: relative;
  background: url(../images/job.png) no-repeat 50% 0;
  background-size: cover;
  width: 100%;
  height: 4rem;
}

.job_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(11, 58, 115, .7);
  width: 100%;
  height: 100%;
}

.job_intro {
  flex-direction: column;
  position: relative;
  height: 100%;
}

.job_title {
  font-weight: bold;
  font-size: .36rem;
  color: #FFFFFF;
  margin-bottom: .35rem;
}

.treatment {
  font-size: .18rem;
  color: #FFFFFF;
}

.treatment:last-child {
  border-bottom: 1px solid #fff;
  margin-top: .25rem;
}


.job_main {
  background: rgb(250, 250, 250);
  padding: .6rem 0;
}

.job_list {
  padding: 0 1.15rem;
  position: relative;
}

.job_list .swiper-button-next,
.job_list .swiper-button-prev {
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: rgba(169, 169, 169, .5);
  transition: all .3s;
}

.job_list .swiper-button-next {
  right: 0;
}

.job_list .swiper-button-prev {
  left: 0;
}

.job_list .swiper-button-next:after,
.job_list .swiper-button-prev:after {
  font-size: .28rem;
  color: #fff;
}

.job_list .swiper-button-next:hover,
.job_list .swiper-button-prev:hover {
  background-color: var(--primary);
}

.job_box {
  background: #FFFFFF;
  border-radius: .1rem;
  box-sizing: border-box;
  padding: .45rem .25rem;
}

.job_name {
  font-size: .24rem;
  color: #333333;
}

.job_msg {
  margin-top: .35rem;
  font-size: .16rem;
  color: #333333;
  line-height: .28rem;
  height: calc(.28rem * 7);
  overflow: auto;
}


.leave_words {
  background: #F6F8FA;
  box-sizing: border-box;
  padding: .6rem .5rem;
  margin: 1rem 0;
}

.leave_head {
  padding-bottom: .2rem;
  border-bottom: 1px solid #dddddd;
}

.leave_title {
  color: #000000;
  font-size: .24rem;
  font-weight: 700;
  position: relative;
}

.leave_main {
  margin-top: .5rem;
  padding: 0 .5rem;
}

.input_list2 {
  margin-left: -0.34rem;
}

.input_list2 li {
  width: calc(33.33% - .34rem);
  margin-left: .34rem;
}

.leave_main .layui-form-label {
  text-align: center;
}

.leave_main .layui-form-item {
  margin-bottom: .34rem;
}

.button_box {
  margin-top: .5rem;
}

.tjfk_btn {
  border: 0;
  outline: none;
  background-color: transparent;
  border-radius: .08rem;
  background-color: rgb(13, 67, 215);
  width: 1.6rem;
  height: .45rem;
  color: rgb(255, 255, 255);
  font-size: .14rem;
  font-weight: 500;
  border-radius: 4px;
  margin-left: 110px;
}

.tjfk_btn:active {
  background: rgba(13, 67, 215, .8);
}



@media only screen and (max-width: 920px) {
  .input_list2 li {
    width: 100%;
  }

  .contact_left,
  .contact_right {
    width: 100%;
  }

  .contact_right {
    margin-top: 20px;
  }

}

@media only screen and (max-width: 768px) {

  .ewm_name,
  .contact_info {
    font-size: 12px;
  }

  .job_msg {
    font-size: 12px;
    line-height: 1.5;
    height: calc(12px * 9);
  }

  .ewm_item {
    max-width: 100px;
  }
}

@media only screen and (max-width: 500px) {
  .leave_main {
    padding: 0;
  }

  .leave_words {
    padding: 30px 10px;
  }

  .leave_main .layui-form-label {
    width: auto;
    padding: 8px 0;
  }

  .leave_main .layui-input-block {
    margin-left: 80px;
  }

  .tjfk_btn {
    margin-left: 80px;
  }
}









/* ==========================================================================
   产品中心
   ========================================================================== */
.pro {
  padding: .5rem 0;
  background: rgb(250, 250, 250);
}

.topnav {
  height: 1rem;
  align-items: center;
}

.breadcrumb {
  font-weight: 400;
  font-size: .18rem;
  color: #333333;
}

.breadcrumb a:hover {
  color: var(--primary);
}


/* 3级菜单栏 start */
.pro_main {
  justify-content: space-between;
}

.pro_left {
  width: 2.9rem;
}

.pro_right {
  width: calc(100% - 3.4rem);
}

.pro_toggle {
  position: relative;
  top: auto;
  left: auto;
  float: left;
  display: block;
  cursor: pointer;
  box-sizing: content-box;
  font-size: 20px;
  padding-left: 26px;
  height: 25px;
  display: none;
}

.pro_toggle span {
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
}

.pro_toggle span,
.pro_toggle span::before,
.pro_toggle span::after {
  position: absolute;
  left: 0;
  height: 2px;
  background: #182631;
  transition: all .1s ease
}

.pro_toggle span::before,
.pro_toggle span::after {
  content: '';
  width: 100%
}

.pro_toggle span::before {
  top: -8px
}

.pro_toggle span::after {
  bottom: -8px
}

.pro_toggle.toggle-open span {
  background: transparent;
  transform: rotate(45deg);
}

.pro_toggle.toggle-open span::before {
  transform: translate3d(0, 8px, 0)
}

.pro_toggle.toggle-open span::after {
  transform: rotate(-90deg) translate3d(8px, 0, 0)
}

.pro_toggle:hover span,
.pro_toggle:hover span::before,
.pro_toggle:hover span::after {
  background: var(--primary);
}


.siderbar {
  background: #FFFFFF;
  border-radius: .1rem;
  box-sizing: border-box;
  padding: .3rem;
}

.pro_menu {
  justify-content: space-between;
  align-items: center;
  padding-bottom: .15rem;
  border-bottom: 1px solid #CECECE;
}

.proList_title {
  font-weight: bold;
  font-size: .24rem;
  color: #333333;
}

.first_menu .first_item {
  margin-top: .2rem;
}


.third_box,
.second_box,
.first_box {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.first_title {
  font-size: .18rem;
  color: rgb(51, 51, 51);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item_icon {
  flex-shrink: 0;
  height: .27rem;
  width: .27rem;
  background: url(../images/arrow_w.png) no-repeat center;
  cursor: pointer;
  transition: all .3s;
}

.item_icon:hover {
  background: rgba(0, 95, 213, .9) url(../images/arrow_w.png) no-repeat center;
}

.third_menu {
  display: none;
}

.second_menu {
  display: none;
  margin: .1rem 0 0 .1rem;
}

.second_title {
  font-size: .16rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: .32rem;
}

.third_title {
  display: block;
  font-size: .14rem;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: .32rem;
}

.third_title::before {
  content: "•";
  margin-right: 5px;
}

.third_box.menu_on .third_title,
.second_box.menu_on .second_title,
.first_box.menu_on .first_title {
  color: var(--primary);
}

.first_box.menu_on .item_icon,
.second_box.menu_on .item_icon,
.third_box.menu_on .item_icon {
  background-image: url(../images/arrow_b.png);
}

@media only screen and (max-width: 768px) {

  .item_icon {
    width: 24px;
    height: 24px;
  }

  .pro_left,
  .pro_right {
    width: 100%;
  }

  .pro_right {
    margin-top: 20px;
  }

  .proList_title {
    font-size: 16px;
  }

  .submenu {
    display: none;
  }

  .first_title {
    font-size: 14px;
  }

  .second_title {
    font-size: 12px;
    line-height: 2;
  }

  .third_title {
    font-size: 12px;
    line-height: 2;
  }

  .pro_toggle {
    display: block;
  }
}

/* end */


.pro_head {
  font-weight: bold;
  font-size: .24rem;
  color: #005FD4;
  border-bottom: 4px solid #005FD4;
  padding-bottom: .2rem;
}

.pro_list {
  margin-left: -.3rem;
  margin-top: .35rem;
}

.pro_list li {
  width: calc(33.33% - .3rem);
  margin-left: .3rem;
  margin-bottom: .3rem;
}

.pro_box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: .2rem;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.pro_name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  font-size: .18rem;
  color: #333333;
  margin: .2rem 0 .1rem;
}

.pro_ckxq {
  font-size: .14rem;
  color: #999999;
  margin-top: auto;
}

.pro_box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pro_box:hover .pro_ckxq,
.pro_box:hover .pro_name {
  color: var(--primary);
}


@media only screen and (max-width: 768px) {
  .pro_list li {
    width: calc(50% - .3rem);
  }

  .pro_name {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .pro_ckxq {
    font-size: 12px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .pro {
    padding: 20px 0;
  }
}









/* ==========================================================================
   产品详情
   ========================================================================== */
.proDetails_main {
  background-color: #fff;
  margin-top: .35rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: .5rem 1rem;
  justify-content: space-between;
  align-items: center;
}

.proDetails_left {
  width: 3rem;
}

.proDetails_right {
  width: calc(100% - 4rem);
}

.pd_name {
  font-size: .36rem;
  color: #333333;
  margin-bottom: .4rem;
}

.pd_model {
  font-size: .3rem;
  color: #005FD4;
}

.pd_module {
  margin-top: .4rem;
  background: #fff;
}

.module_head {
  width: 100%;
  height: .64rem;

  background: #F1F5F9;
}

.module_title {
  display: inline-block;
  background: #D8E3EE;
  font-weight: bold;
  font-size: .24rem;
  line-height: .6rem;
  color: #333333;
  padding: 0 .4rem;
  border-bottom: .04rem solid rgb(0, 95, 212);
  box-sizing: border-box;
}

.module_main {
  padding: .4rem;
}

.module_main p {
  line-height: 2;
  font-size: .18rem;
}

/* .module_main p::before {
  content: "✔";
  color: #09C509;
  margin-right: 5px;
} */

.module_table {
  overflow-x: auto;
}

.module_table table {
  min-width: 768px;
}

.module_table td {
  color: rgb(51, 51, 51);
  font-size: .16rem !important;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: .1rem 0;
}

.module_table tr:nth-child(odd) {
  background: rgb(231, 237, 241);
}

.module_table::-webkit-scrollbar {
  height: 2px;
}

.module_table::-webkit-scrollbar-thumb {
  background: var(--primary);
}


.module_main li {
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  .module_main p {
    font-size: 12px;
  }

  .module_table td {
    font-size: 12px !important;
  }
}

@media only screen and (max-width: 500px) {

  .proDetails_right,
  .proDetails_left {
    width: 100%;
  }

  .proDetails_main {
    padding: 20px;
  }
}