@import url(./inner_sidebar.css);

/* ==========================================================================
   全局
   ========================================================================== */
.content {
  padding: 40px 0;
  position: relative;
  min-height: 300px;
}

.content img {
  max-width: 100%;
}

.sub-banner {
  --bannerH: 440px;
  height: var(--bannerH);
}

.sub-banner .wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
}

.bgtitle1 {
  color: rgb(255, 255, 255);
  font-size: .36rem;
  font-weight: 400;
  margin-bottom: .45rem;
}

.nav_list {
  margin: -0.25rem 0 0 -0.25rem;
}

.nav_item {
  margin: .25rem 0 0 .25rem;
}

.nav_link {
  color: rgb(255, 255, 255);
  font-size: .16rem;
  font-weight: 400;
  padding: .06rem .3rem;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 80px;
  transition: all .3s;
}

.nav_link:hover {
  background: rgb(248, 182, 45);
  font-weight: 700;
  border-color: rgb(248, 182, 45);
  color: #fff;
}

.nav_item.on .nav_link {
  background: rgb(248, 182, 45);
  font-weight: 700;
  border-color: rgb(248, 182, 45);
  color: #fff;
}


@media only screen and (max-width:1536px) {
  .sub-banner {
    height: calc(var(--bannerH) / 1.25);
  }
}

@media only screen and (max-width:1440px) {
  .sub-banner {
    height: calc(var(--bannerH) * 0.75);
  }
}

@media only screen and (max-width:1280px) {
  .sub-banner {
    height: calc(var(--bannerH) / 1.5);
  }
}

@media only screen and (max-width:1024px) {
  .sub-banner {
    height: calc(var(--bannerH) / 1.875);
  }
}

@media only screen and (max-width:960px) {
  .sub-banner {
    height: calc(var(--bannerH) / 2);
  }
}

@media only screen and (max-width:920px) {
  .nav_link {
    font-size: 12px;
  }

  .sub-banner .wrapper {
    padding-top: 20px;
    justify-content: initial;
  }
}

@media only screen and (max-width:768px) {
  .sub-banner {
    height: calc(var(--bannerH) / 2.5);
  }
}

@media only screen and (max-width:500px) {
  .sub-banner {
    padding: 0 0 20px;
    height: auto;
  }
}





/* ==========================================================================
   关于我们
   ========================================================================== */
.about {
  padding: .5rem 0 .8rem;
}

.about_heading {
  color: rgb(51, 51, 51);
  font-size: .36rem;
  font-weight: 400;
  position: relative;
}

.about_heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 1.9rem;
  height: .03rem;
  background: rgb(248, 182, 45);
}

.about_main {
  margin: 1.2rem 0 0;
  position: relative;
}

.about_box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 6.81rem;
  border-radius: .15rem .15rem 0px 0px;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  overflow: hidden;
  display: none;
}

.about_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.about_area {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_title {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: .36rem;
  line-height: 1;
  margin-bottom: .3rem;
}

.about_title::before {
  content: "";
  position: absolute;
  left: -0.36rem;
  bottom: 0;
  width: .62rem;
  height: .62rem;
  background: url(../images/circle.svg) no-repeat center;
  background-size: .6rem auto;
}

.about_info {
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
  overflow: auto;
  max-height: calc(.18rem * 21);
}

.about_info::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.about_info::-webkit-scrollbar-track {
  display: none;
}

.about_info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primary);
}

.about_list {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  bottom: 0;
  align-items: flex-end;
  cursor: pointer;
}

.about_item {
  width: 25%;
  height: .93rem;
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  transition: all .3s;
}

.about_list .about_item:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.about_item.about_on {
  background: rgb(38, 143, 130);
  height: 1.06rem;
  color: rgb(255, 255, 255);
  font-size: .36rem;
  border: none !important;
}

@media only screen and (max-width: 920px) {
  .about_box {
    padding: 0 50px;
  }

  .about_info {
    font-size: 12px;
    max-height: calc(12px * 15.75);
  }
}

@media only screen and (max-width: 768px) {
  .about {
    padding: 0;
  }

  .about_box {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 500px) {
  .about_item {
    font-size: 12px;
  }

  .about_item.about_on {
    font-size: 14px;
  }

  .about_info::-webkit-scrollbar {
    width: 3px;
  }

}










/* ==========================================================================
   企业文化
   ========================================================================== */
.culture {
  margin: 1.2rem 0 0;
}

.culture_main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  border-radius: .15rem;
  overflow: hidden;
}

.culture_main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.culture_list li {
  width: 33.33%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.culture_list li:nth-child(-n+3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.culture_list li:nth-child(3n) {
  border-right: none;
}

.culture_box {
  height: 3.41rem;
  position: relative;
}

.culture_cover {
  width: 100%;
  height: 100%;
  background: rgba(38, 143, 130, 0.9);
  flex-direction: column;
  opacity: 0;
  transition: all .3s;
}

.culture_title2 {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: .36rem;
  font-weight: 700;
  line-height: 1;
}

.culture_title2::before {
  content: "";
  position: absolute;
  left: -0.36rem;
  bottom: 0;
  width: .62rem;
  height: .62rem;
  background: url(../images/circle.svg) no-repeat;
  background-size: .6rem auto;
}

.culture_slogan {
  max-width: 60%;
  margin-top: .3rem;
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
  text-align: center;
}

.culture_title {
  position: absolute;
  left: .7rem;
  bottom: .5rem;
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  transition: all .2s;
}

.culture_box:hover .culture_cover {
  opacity: 1;
}

.culture_box:hover .culture_title {
  opacity: 0;
}

@media only screen and (max-width: 500px) {
  .culture_list li {
    width: 50%;
  }

  .culture_list li:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .culture_list li:nth-child(4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .culture_slogan {
    font-size: 12px;
    max-width: 90%;
  }
}

















/* ==========================================================================
   应用领域
   ========================================================================== */
.apply {
  padding: .5rem 0;
}

.domain_list {
  margin: 0 0 .9rem;
}

.domain_list li {
  width: 25%;
  transition: all .3s;
}

.domain_box {
  height: 4.77rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.domain_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.domain_cover {
  width: 100%;
  height: 100%;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all .3s;
}

.domain_txt2 {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 700;
  position: relative;
}

.domain_txt2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.25rem;
  width: 4em;
  height: .03rem;
  background: rgb(248, 182, 45);
}

.domain_desc {
  margin-top: .5rem;
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
  max-width: 66%;
}

.domain_txt1 {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  transition: all .2s;
}

@media only screen and (min-width: 501px) {
  .domain_list li:hover {
    width: 40%;
  }
}

.domain_list li:hover .domain_cover {
  opacity: 1;
}

.domain_list li:hover .domain_txt1 {
  opacity: 0;
}

.inner_heading {
  align-items: flex-start;
  justify-content: space-between;
}

.inner_title {
  position: relative;
  color: rgb(51, 51, 51);
  font-size: .36rem;
  font-weight: 400;
}

.inner_title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 4em;
  height: .03rem;
  background: rgb(248, 182, 45);
}

.inner_info {
  color: rgb(51, 51, 51);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
  width: 75%;
}


.apply_list {
  margin: .5rem 0 0 -0.5rem;
}

.apply_list li {
  width: calc(33.33% - .5rem);
  margin: .5rem 0 0 .5rem;
}

.apply_box .pic {
  border-radius: .15rem;
  cursor: pointer;
}

.apply_name {
  padding: .2rem 0 0;
  color: rgb(51, 51, 51);
  font-size: .18rem;
  font-weight: 400;
  text-align: center;
}

.apply_box:hover .apply_name {
  color: var(--primary);
}

@media only screen and (max-width: 768px) {
  .domain_desc {
    max-width: 80%;
  }

  .apply_name,
  .inner_info {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .domain_desc {
    display: none;
  }

  .domain_list {
    flex-wrap: wrap;
  }

  .domain_list li {
    width: 50%;
  }

  .domain_list li:nth-child(-n+3) {
    width: 33.33%;
  }

  .domain_box {
    height: 180px;
  }

  .inner_info {
    width: 100%;
    margin-top: 20px;
  }

  .inner_title::before {
    bottom: -5px;
  }

  .apply_list {
    margin: 20px 0 0 -20px;
  }

  .apply_list li {
    width: calc(50% - 20px);
    margin: 20px 0 0 20px;
  }

}














/* ==========================================================================
   核心能力
   ========================================================================== */
.core {
  padding: .5rem 0;
}

.core_list {
  margin: 1rem 0 0;
}

.core_list li:not(:last-of-type) {
  margin-bottom: .5rem;
}

.core_box {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  position: relative;
  height: 3.28rem;
  align-items: center;
  border-radius: .15rem;
  overflow: hidden;
  z-index: 1;
}

.core_box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90.00deg, rgb(38, 143, 130) 30.972%, rgba(38, 143, 130, 0) 100%);
  z-index: -1;
}

.core_area {
  padding-left: 1rem;
}

.core_title {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  margin-bottom: .325rem;
}

.core_link {
  color: rgb(255, 255, 255);
  font-size: .18rem;
  transition: all .3s;
}

.core_link img {
  width: .35rem;
  margin-left: .2rem;
}

.core_link:hover {
  transform: translateX(.1rem);
  color: #fff;
}


@media only screen and (max-width: 768px) {
  .core_link {
    font-size: 12px;
  }

  .core_link img {
    width: 24px;
  }
}

@media only screen and (max-width: 500px) {
  .core_area {
    padding-left: 20px;
  }

  .core_title {
    font-size: 16px;
  }
}











/* ==========================================================================
   核心能力详情
   ========================================================================== */
.core_details {
  margin: 1rem 0;
  padding: .3rem;
  border-radius: .15rem;
  background: rgb(38, 143, 130);
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
}

.coredt_left {
  width: calc(100% - 5.6rem);
}

.coredt_right {
  width: 4.76rem;
}

.coredt_area {
  padding-left: .45rem;
}

.coredt_title {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.coredt_msg {
  color: rgb(255, 255, 255);
  font-size: .16rem;
  font-weight: 400;
  line-height: 175%;
}

.coredt_right .swiper-button-next:after,
.coredt_right .swiper-button-prev:after {
  font-size: .2rem;
}

.coredt_right .swiper-button-next {
  width: .5rem;
  height: .5rem;
  margin-top: 0;
  top: auto;
  bottom: 0;
  right: 0;
  background: rgb(248, 182, 45);
  color: #fff;
}

.coredt_right .swiper-button-prev {
  width: .5rem;
  height: .5rem;
  margin-top: 0;
  top: auto;
  left: auto;
  bottom: 0;
  right: .5rem;
  background: rgb(248, 182, 45);
  color: #fff;
}

.category_title {
  position: relative;
  color: rgb(0, 0, 0);
  font-size: .24rem;
  font-weight: 400;
  padding-left: .4rem;
}

.category_title::before {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: 0;
  width: .62rem;
  height: .62rem;
  background: url(../images/circle.svg) no-repeat center;
  background-size: .6rem auto;
}

.coreCate {
  margin: .35rem 0 0;
  color: rgb(51, 51, 51);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
}

@media only screen and (max-width: 920px) {

  .coreCate,
  .coredt_msg {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .coredt_left {
    width: 100%;
  }

  .coredt_area {
    padding-left: 0;
  }

  .coredt_right {
    margin-top: 20px;
    width: 100%;
  }

  .category_title {
    font-size: 14px;
  }

  .coredt_title {
    font-size: 16px;
  }

  .core {
    padding: 0;
  }

  .core_details {
    margin: 30px 0;
  }
}














/* ==========================================================================
   服务支持
   ========================================================================== */
.service {
  padding: .5rem 0 .6rem;
}

.service_list {
  margin: .5rem 0 0 -0.5rem;
  padding-bottom: .3rem;
}

.service_list li {
  width: calc(50% - .5rem);
  margin: .5rem 0 0 .5rem;
}

.service_box {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: .15rem;
  background: rgb(255, 255, 255);
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}

.service_box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.download {
  width: 1.65rem;
  height: 1.65rem;
  flex-direction: column;
  border-radius: .15rem;
  background: rgb(38, 143, 130);
  color: rgb(255, 255, 255);
  font-size: .16rem;
}

.download:hover {
  color: #fff;
}

.download img {
  width: .72rem;
  margin-bottom: .05rem;
}

.service_area {
  width: calc(100% - 1.7rem);
  padding-left: .5rem;
}

.service_name {
  color: rgb(0, 0, 0);
  font-size: .18rem;
  font-weight: 400;
  margin-bottom: .1rem;
}

.service_date {
  color: rgb(136, 136, 136);
  font-size: .16rem;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  .service {
    padding: 0;
  }

  .service_list li {
    width: 100%;
  }

  .service_name {
    font-size: 14px;
  }

  .service_date {
    font-size: 12px;
  }

  .service_area {
    padding: 0 10px;
  }

  .service_list {
    margin: 0 0 0 -0.5rem;
  }
}
















/* ==========================================================================
   新闻中心
   ========================================================================== */
.news {
  padding: .5rem 0;
}

.news .inner_heading {
  align-items: center;
}

.news_select {
  position: relative;
  width: 2.92rem;
}

.news_select select {
  width: 100%;
  padding: .15rem .1rem .15rem .2rem;
  font-size: .18rem;
  color: rgb(136, 136, 136);
  border: 1px solid rgb(215, 215, 215);
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.news_select::after {
  content: "";
  position: absolute;
  right: .1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: .07rem solid transparent;
  border-right: .07rem solid transparent;
  border-top: .08rem solid #000;
}


.news_list {
  margin: 1rem 0 0;
}

.news_list li:not(:last-of-type) {
  margin-bottom: .5rem;
}

.news_box {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: .15rem;
  background: rgb(255, 255, 255);
  transition: all .3s;
}

.news_box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.news_left {
  width: 1.68rem;
}

.news_right {
  width: calc(100% - 1.68rem);
}

.news_date {
  flex-direction: column;
  background: rgb(38, 143, 130);
  border-radius: .15rem;
  padding: .35rem 0;
  height: 100%;
}

.news_month {
  color: rgb(255, 255, 255);
  font-size: .36rem;
  font-weight: 700;
}

.news_year {
  color: rgb(255, 255, 255);
  font-size: .45rem;
  font-weight: 300;
}

.news_area {
  padding: .4rem .5rem;
}

.news_title {
  color: rgb(0, 0, 0);
  font-size: .2rem;
  font-weight: 400;
  align-items: center;
}

.news_title img {
  margin-left: .15rem;
}

.news_box:hover .news_title {
  color: var(--primary);
}

.news_info {
  margin-top: .15rem;
  color: rgb(136, 136, 136);
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.news_list li:first-child .news_title {
  position: relative;
  padding-left: .5rem;
}

.news_list li:first-child .news_title::before {
  content: "置顶";
  position: absolute;
  left: 0;
  top: .025rem;
  padding: .05rem .09rem;
  border-radius: 63px;
  background: rgb(223, 16, 16);
  color: rgb(255, 255, 255);
  font-size: 9px;
}

@media only screen and (max-width: 1280px) {
  .news_info {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .news_select select {
    font-size: 12px;
  }

}

@media only screen and (max-width: 500px) {
  .news {
    padding: 0;
  }

  .news_list {
    margin-top: 20px;
  }

  .news_area {
    padding: 10px;
  }

  .news_title {
    font-size: 14px;
  }

  .news_list li:first-child .news_title {
    padding-left: 30px;
  }
}















/* ==========================================================================
   新闻详情
   ========================================================================== */
.news_details {
  padding: .2rem 0;
}

.nd_left {
  width: calc(100% - 5.3rem);
  float: left;
}

.nd_right {
  float: right;
  width: 3.85rem;
  box-sizing: border-box;
}

.nd_area {
  padding-bottom: .3rem;
  border-bottom: 1px solid #e5e8ef;
  box-sizing: border-box;
}

.nd_title {
  color: rgb(0, 0, 0);
  font-size: .24rem;
  font-weight: 400;
  text-align: center;
}

.nd_date {
  font-size: .16rem;
  color: rgb(85, 85, 85);
  margin: .1rem 0;
  text-align: center;
}

.nd_main {
  font-size: .16rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  line-height: 2;
  padding: .5rem 0;
  box-sizing: border-box;
}

.nd_main img {
  margin: .4rem 0;
}

.nd_toolbar {
  border-top: 1px solid #e5e8ef;
  padding: .4rem 0;
  align-items: center;
  justify-content: space-between;
}

.tool_left {
  width: calc(100% - 1.9rem);
}

.tool_right {
  width: 1.58rem;
}

.tool_toggle {
  font-size: .16rem;
  font-weight: 400;
  line-height: 2;
  align-items: center;
}

.tool_toggle span {
  flex-shrink: 0;
}

.tool_toggle a {
  color: rgb(51, 51, 51);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tool_toggle a:hover {
  color: var(--primary);
}

.back_btn {
  width: 1.58rem;
  height: .54rem;
  font-size: .18rem;
  color: #fff;
  border-radius: .05rem;
  background: linear-gradient(90.00deg, rgb(6, 41, 73), rgba(6, 41, 73, 0.6) 100%);
}

.back_btn:hover {
  color: #fff;
}

.top_btn {
  margin-left: .2rem;
}




/* ———————————————— 右边列表 ———————————————— */
.gdtj {
  border-radius: .08rem;
  background: linear-gradient(90.00deg, rgb(6, 41, 73), rgba(6, 41, 73, 0.8) 100%);
  height: .7rem;
  width: 100%;
  overflow: hidden;
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  align-items: center;
  justify-content: center;
}

.gdtj img {
  margin: 0 .25rem 0 .4rem;
}

.gdtj_list {
  margin: .37rem .49rem 0 .03rem;
  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: rgb(6, 41, 73);
}

.gdtj_title {
  color: rgb(0, 0, 0);
  font-size: .16rem;
  padding-left: .3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.gdtj_box:hover .gdtj_title {
  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) {

  .tool_toggle,
  .nd_main,
  .nd_date {
    font-size: 12px;
  }


}

@media only screen and (max-width: 500px) {
  .nd_main {
    padding: 20px 0;
    line-height: 1.5;
  }

  .tool_left {
    width: 100%;
  }

  .tool_right {
    margin-top: 10px;
  }

  .tool_toggle {
    line-height: 2;
  }

  .nd_title {
    font-size: 14px;
  }
}














/* ==========================================================================
   联系我们
   ========================================================================== */
.contact {
  padding: .5rem 0;
}

.contact_list {
  margin: 0 0 0 -0.54rem;
}

.contact_list li {
  width: calc(33.33% - .54rem);
  margin: 0 0 0 .54rem;
}

.contact_box {
  padding: .2rem .2rem .65rem .65rem;
  border-radius: .15rem;
  background: rgb(38, 143, 130);
  height: 100%;
}

.contact_flex {
  justify-content: space-between;
  align-items: flex-end;
}

.contact_title {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  padding-bottom: .2rem;
  border-bottom: .03rem solid #f8b62d;
}

.contact_img img {
  width: 1.7rem;
}

.contact_info {
  color: rgb(255, 255, 255);
  font-size: .2rem;
  font-weight: 400;
  margin-top: .2rem;
}


.contact_main {
  margin: .8rem 0 0 -0.55rem;
}

.contact_left {
  width: calc(50% - .55rem);
  margin-left: .55rem;
}

.contact_right {
  width: calc(50% - .55rem);
  margin-left: .55rem;
}

.district {
  display: inline-block;
  color: rgb(51, 51, 51);
  font-size: .36rem;
  font-weight: 400;
  padding-bottom: .3rem;
  border-bottom: .03rem solid rgb(248, 182, 45);
}

.contact_module {
  margin-top: .5rem;
}

.contact_table table thead th {
  background: rgb(38, 143, 130);
}

.contact_table table tr {
  color: rgb(0, 0, 0);
  font-size: .16rem;
  font-weight: 400;
}

.contact_table table thead th {
  color: #fff;
  padding: .12rem 0;
}

.contact_table table tbody td {
  text-align: center;
  padding: .12rem 0;
}

.contact_table table tbody td:nth-child(1) {
  width: 30%;
}

.contact_table table tbody td:nth-child(3) {
  width: 32%;
}

.contact_table table tbody tr:nth-child(even) {
  background: rgb(231, 231, 231);
  border-bottom: 1px solid rgb(215, 215, 215);
}


.abroad_box {
  border-bottom: 1px solid rgb(215, 215, 215);
  border-top: 1px solid rgb(215, 215, 215);
  padding: .32rem .4rem;
}

.abroad_title {
  color: rgb(38, 143, 130);
  font-size: .24rem;
  font-weight: 400;
  margin-bottom: .05rem;
}

.abroad_info {
  color: rgb(0, 0, 0);
  font-size: .16rem;
  font-weight: 400;
}

.abroad_list>li:not(:last-of-type) {
  margin-bottom: .45rem;
}

@media only screen and (max-width: 1280px) {
  .contact_box {
    padding: .2rem .2rem .4rem .4rem;
  }
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 0;
  }

  .contact_left {
    width: 100%;
  }

  .contact_right {
    margin-top: 20px;
    width: 100%;
  }

  .contact_table table tr {
    font-size: 12px;
  }

  .contact_box {
    padding: 10px 0px 15px 15px;
  }

  .abroad_info {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .contact_list li {
    width: 100%;
  }

  .contact_list li:not(:last-of-type) {
    margin-bottom: 20px;
  }

  .contact_info {
    font-size: 12px;
  }

  .contact_title {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .abroad_title {
    font-size: 16px;
  }
}














/* ==========================================================================
   产品介绍
   ========================================================================== */
.pro {
  padding: .5rem 0;
}

.pro_list {
  margin: -0.6rem 0 0 -0.5rem;
}

.pro_list li {
  width: calc(50% - .5rem);
  margin: .6rem 0 0 .5rem;
}

.pro_box {
  position: relative;
}

.pro_box .pic {
  border-radius: .15rem;
}

.pro_area {
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  width: 3.16rem;
  height: 1.24rem;
}

.pro_title {
  color: rgb(51, 51, 51);
  font-size: .24rem;
  font-weight: 400;
  position: relative;
}

.pro_title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 4em;
  height: .03rem;
  background: rgb(248, 182, 45);
}

.pro_contact {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.7rem;
  height: .78rem;
  color: rgb(255, 255, 255);
  font-size: .2rem;
  font-weight: 400;
  background: rgb(248, 182, 45);
}

.pro_contact img {
  margin-left: .15rem;
}


@media only screen and (max-width: 500px) {
  .pro {
    padding: 0;
  }

  .pro_list li {
    width: 100%;
  }

  .pro_title {
    font-size: 16px;
  }

  .pro_contact {
    font-size: 14px;
  }
}













/* ==========================================================================
   产品详情
   ========================================================================== */
.pro_details {
  align-items: flex-start;
}

.prodt_left {
  width: calc(100% - 3.66rem);
}

.prodt_right {
  width: 3.66rem;
  position: sticky;
  top: 1rem;
  margin-bottom: 20px;
}

.prodt_title {
  position: relative;
  color: rgb(0, 0, 0);
  font-size: .24rem;
  font-weight: 400;
  padding-left: .4rem;
}

.prodt_title::before {
  content: "";
  position: absolute;
  left: 0rem;
  bottom: 0;
  width: .62rem;
  height: .62rem;
  background: url(../images/circle.svg) no-repeat center;
  background-size: .6rem auto;
}

.prodt_foot {
  border-radius: .15rem;
  background: rgb(38, 143, 130);
  justify-content: space-between;
  align-items: center;
  padding: .45rem .68rem;
}

.prodt_link {
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
}

.prodt_link:hover {
  color: #fff;
  text-decoration: underline;
}

.prodt_link .fa-angle-double-left {
  margin-right: .15rem;
}

.prodt_link .fa-angle-double-right {
  margin-left: .15rem;
}

.prodt_column {
  background: rgb(38, 143, 130);
  padding: .6rem .8rem .8rem;
}

.prodt_locate {
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 700;
  padding-bottom: .25rem;
  border-bottom: .03rem solid rgb(248, 182, 45);

}

.prodt_locate img {
  margin-right: .15rem;
}

.prodt_list {
  margin-top: .35rem;
}

.prodt_list li {
  padding: .15rem 0;
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.prodt_list li a {
  color: #fff;
}

.prodt_list li:hover {
  border-color: #f8b62d;
}

.prodt_img {
  position: relative;
  margin-bottom: 1rem;
}

.prodt_img img {
  width: 100%;
}

.prodt_area {
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  width: 4.8rem;
  height: 1.6rem;
}

.prodt_name {
  color: rgb(51, 51, 51);
  font-size: .36rem;
  font-weight: 400;
  position: relative;
}

.prodt_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 4em;
  height: .03rem;
  background: rgb(248, 182, 45);
}

.prodt_intro {
  padding: .3rem .4rem .8rem;
  color: rgb(51, 51, 51);
  font-size: .18rem;
  font-weight: 400;
  line-height: 175%;
}


@media only screen and (max-width: 768px) {
  .prodt_title {
    font-size: 16px;
  }

  .prodt_intro {
    font-size: 12px;
  }

  .prodt_column {
    padding: 30px 40px;
  }

  .prodt_link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .prodt_right {
    display: none;
  }

  .prodt_left {
    width: 100%;
  }

  .prodt_area {
    height: 80px;
  }

  .prodt_title {
    font-size: 14px;
  }

  .prodt_link {
    font-size: 12px;
  }

  .prodt_foot{
    padding: 20px ;
  }
}












/* ==========================================================================
   向下滚动
   ========================================================================== */
.mouse_box {
  margin: .5rem 0 0;
  justify-content: center;
}

.mouse_roll {
  width: 4.68rem;
  height: .62rem;
  background: rgb(38, 143, 130);
}

.loading {
  color: #fff;
  font-size: .18rem;
  margin-left: .2rem;
}

.mouse_img {
  width: .2rem;
}

.load {
  animation: load 2.3s infinite;
}

@keyframes load {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  50% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@media only screen and (max-width: 500px) {
  .loading {
    font-size: 12px;
  }

  .mouse_img {
    width: 12px;
  }

  .mouse_roll {
    height: 36px;
  }
}














/* ==========================================================================
   右边侧边栏
   ========================================================================== */
.sideBar img {
  max-width: .25rem;
  max-height: .25rem;
}

.sideBar {
  position: fixed;
  right: .22rem;
  bottom: 20vh;
  z-index: 9;
}

.float_list li:not(:first-of-type) {
  margin-top: .1rem;
}

.float_box {
  position: relative;
  padding-left: 5px;
}

.float_link {
  width: .45rem;
  height: .45rem;
  background: rgb(38, 143, 130);
  border-radius: 50%;
}

.float_show {
  position: absolute;
  top: 50%;
  right: 100%;
  min-height: .45rem;
  background: rgb(248, 182, 45);
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translate(-10px, -50%);
  box-shadow: 0 10px 10px rgba(0, 0, 0, .05);
}

.float_box:hover .float_show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

.float_msg {
  min-height: .45rem;
  padding: 0 .1rem;
  min-width: 1.5rem;
  font-size: .18rem;
  color: #fff;
  font-weight: 500;
  /* white-space: nowrap; */
}

.goTop img {
  max-width: .22rem;
}

.goTop {
  transition: all .2s;
}

.hide {
  margin-top: -0.1rem;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 920px) {
  .sideBar {
    display: none;
  }
}
