@import url(./inner_sidebar.css);

/* ==========================================================================
   全局
   ========================================================================== */
.content {
  padding: .4rem 0;
  position: relative;
  min-height: 300px;
}

.content img {
  max-width: 100%;
}

.sub-banner {
  --bannerH: 400px;
  height: var(--bannerH);
}

.sub-banner .wrapper {
  height: 100%;
}

@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:768px) {
  .sub-banner {
    height: calc(var(--bannerH) / 2.5);
  }
}

.logo {
  width: 1.48rem;
  background-size: 1.48rem auto;
}



/* ==========================================================================
   common
   ========================================================================== */
.inner_head {
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.inner_h2 {
  color: rgb(255, 255, 255);
  font-size: .4rem;
  font-weight: 500;
  margin-bottom: .15rem;
}

.inner_h4 {
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 400;
  max-width: 935px;
}

.side_icon {
  width: 40px;
  height: 48px;
}







/* ==========================================================================
   右侧菜单
   ========================================================================== */
.inner_wrapper {
  padding-left: 237px;
  transition: all .3s;
}

.expression {
  align-items: flex-start;
}

.expression_left {
  width: 71.6%;
}

.expression_right {
  position: sticky;
  top: 1.5rem;
  width: 28.4%;
}

.rightSidebar {
  margin: 0 auto;
  width: 80%;
  padding: .15rem;
  background: #fff;
  border-radius: .2rem;
}

.rightSidebar .sidebar_item:not(:first-of-type) {
  margin-top: .25rem;
  padding-top: .2rem;
  border-top: 1px solid rgba(175, 218, 240, 0.45);
}

.sidebar_title {
  align-items: center;
  /* color: rgb(0, 134, 209); */
  color: #fff;
  font-size: .18rem;
  font-weight: 400;
  margin: .1rem 0 .3rem;
  padding: .05rem 0 .05rem;
  border-radius: .04rem;
  background: rgb(0, 134, 209) linear-gradient(270.00deg, rgba(0, 164, 156, 0.5), rgba(0, 134, 209, 0.5) 100%);
}

.sidebar_title img {
  margin: 0 .2rem 0 .07rem;
}




.first_item {
  margin-bottom: .1rem;
}

.bg_on {
  border-radius: .04rem;
  background: rgb(230, 245, 247);
}

.first_title {
  align-items: center;
  color: rgb(51, 51, 51);
  font-size: .16rem;
  font-weight: 400;
  line-height: 120%;
  padding: .07rem .15rem;
}

.first_title.bg_on {
  color: rgb(0, 164, 156);
}

.first_title em {
  flex-shrink: 0;
  margin-right: .15rem;
  width: 10px;
  height: 10px;
  background: url(../images/arrow_right.svg) no-repeat center;
}

.first_item.drop_active .first_title em {
  background-image: url(../images/arrow_down.svg);
}


/* 二级 */
.second_item {
  margin-bottom: .05rem;
}

.second_title {
  align-items: center;
  color: rgb(102, 102, 102);
  font-size: .14rem;
  font-weight: 400;
  line-height: 120%;
  padding: .05rem .15rem .05rem .2rem;
}

.second_title.bg_on {
  color: #00A49C;
}

.second_title em {
  flex-shrink: 0;
  margin-right: 5px;
  width: .16rem;
  height: .16rem;
  background: url(../images/check.svg) no-repeat center;
}

.second_title.bg_on em {
  background-image: url(../images/check_g.svg);
}

.menu_title {
  font-size: 20px;
  padding: 5px 10px;
  background: #fff url(../images/arr_list.svg) no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 5px;
  display: none;
}

.menu_title.on {
  background: #fff url(../images/arr_list2.svg) no-repeat;
  background-position: right 10px center;
}



@media only screen and (max-width: 768px) {
  .inner_wrapper {
    padding: 0 20px;
  }

  .expression {
    flex-direction: column-reverse;
  }

  .expression_left {
    width: 100%;
  }

  .expression_right {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .rightSidebar {
    width: 100%;
    border-radius: 4px;
    display: none;
  }

  .menu_title {
    display: block;
  }

  .sidebar_title {
    font-size: 16px;
  }

  .first_title {
    font-size: 14px;
  }

  .second_title {
    font-size: 12px;
  }


}

@media only screen and (max-width: 500px) {

  .menu_title {
    font-size: 16px;
  }
}








/* ==========================================================================
   字体大小
   ========================================================================== */
:root {
  --fontSize14: .14rem;
  --fontSize16: .16rem;
  --fontSize18: .18rem;
}

@media only screen and (max-width: 1200px) {
  :root {
    --fontSize14: 12px;
    --fontSize16: 12px;
    --fontSize18: 12px;
  }
}




/* ==========================================================================
   关于我们
   ========================================================================== */
.about_heading {
  margin: 0 0 .6rem 0;
}

.inner_title {
  position: relative;
  color: rgb(0, 134, 209);
  font-size: .36rem;
  font-weight: 700;
}

.inner_title.inner_center {
  text-align: center;
}

.inner_title::before {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: .8rem;
  height: 1px;
  background: rgb(0, 164, 156);
}

.inner_title.inner_center::before {
  left: 50%;
  transform: translateX(-50%);
}


/* —————————— 1 —————————— */
.about_first {
  padding: .8rem 0 1.2rem;
}

.company_flex {
  justify-content: space-between;
  align-items: center;
}

.company_left {
  width: calc(100% - 4.7rem);
  position: relative;
  padding: .5rem;
  z-index: 1;
}

.company_left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 1.15rem);
  height: 100%;
  border-radius: .04rem;
  background: rgb(240, 245, 248);
  z-index: -1;
}

.company_right {
  width: 4.2rem;
  position: relative;
  z-index: 1;
}

.company_intro {
  overflow: auto;
  color: rgb(0, 0, 0);
  font-size: .16rem;
  font-weight: 400;
  line-height: 2.4;
  max-height: calc(.16rem * 21.6);
  padding-right: .1rem;
}

.company_intro::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.company_intro::-webkit-scrollbar-track {
  display: none;
}

.company_intro::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 134, 209, 0.5);
}

.company_right .pic {
  border-radius: .04rem;
  filter: drop-shadow(-3px 5px 7px rgba(8, 54, 91, 0.3));
}

.video_layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#play-landing-animation {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  width: .84rem;
  height: .84rem;
  cursor: pointer;
  transition: all .3s;
}

#play-landing-animation:hover {
  transform: scale(1.2);
}

#play-landing-animation:before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  height: 140%;
  width: 140%;
  border-radius: 150%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@keyframes fx-plyr-play-button {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5)
  }

  to {
    opacity: 0
  }
}

.company_right:hover #play-landing-animation:before {
  animation: fx-plyr-play-button 1.6s ease-out infinite;
  border: .04rem solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}


/* —————————— 2 —————————— */
.about_second {
  padding: 1.15rem 0 1.3rem;
  background: url(../images/about02.png) no-repeat;
  background-size: cover;
}

.vision_title {
  position: relative;
  padding-left: .6rem;
  color: rgb(255, 255, 255);
  font-size: .2rem;
  font-weight: 400;
}

.vision_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .4rem;
  height: 1px;
  background: #fff;
}

.vision_info {
  color: rgb(255, 255, 255);
  font-size: .3rem;
  font-weight: 600;
  margin: .3rem 0 .6rem;
}


.vision_list {
  margin: .8rem 0 0;
}

.vision_list li {
  width: 25%;
}

.vision_list li:not(:last-of-type) {
  border-right: 1px solid rgb(149, 187, 233);
}

.vision_box {
  flex-direction: column;
  align-items: center;
}

.vision_icon {
  width: 1rem;
  height: 1rem;
}

.vision_icon img {
  max-width: 100%;
  max-height: 100%;
  transition: all 1s;
}

.vision_name {
  margin-top: .3rem;
  color: rgb(255, 255, 255);
  font-size: .24rem;
  font-weight: 500;
}

.vision_box:hover .vision_icon img {
  transform: rotateY(360deg);
}


/* —————————— 3 —————————— */
.about_third {
  padding: 1.2rem 0 1rem;
}

.history {
  padding-top: .15rem;
  align-items: center;
}

.history_left {
  width: 1.48rem;
  margin-right: .4rem;
}

.history_right {
  width: calc(100% - 1.9rem);
}

.year_swiper {
  position: relative;
  padding: 0 .4rem;
}

.year_swiper::before {
  content: "";
  position: absolute;
  left: .8rem;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 1.6rem);
  height: 1px;
  background: #BADEF2;
}

.history_year {
  color: rgb(102, 102, 102);
  font-size: .24rem;
  font-weight: 400;
  background: #fff;
  padding: 0 .4rem;
  text-align: center;
  cursor: pointer;
}

.year_swiper .swiper-slide-thumb-active .history_year {
  color: rgb(0, 134, 209);
  font-weight: 600;
}


.history_bottom {
  margin-top: .6rem;
  position: relative;
}

.history_right .swiper-button-next:after,
.history_right .swiper-button-prev:after {
  display: none;
}

.history_right .swiper-button-next,
.history_right .swiper-button-prev {
  width: .28rem;
  height: .28rem;
  margin-top: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: .28rem;
}

.history_right .swiper-button-prev {
  background-image: url(../images/history_arr.png);
  left: 0;
}

.history_right .swiper-button-next {
  background-image: url(../images/history_arr2.png);
  right: 0;
}

.history_box {
  position: relative;
  padding: 0 0 .2rem 1.9rem;
}

.history_box::before {
  content: "";
  position: absolute;
  left: .1rem;
  bottom: 0;
  width: 2.72rem;
  height: 2.1rem;
  background: url(../images/20.png) no-repeat center;
  background-size: 2.72rem auto;
}

.history_area {
  border-radius: .04rem;
  background: rgb(240, 245, 248);
  padding: .6rem .75rem .6rem 1.45rem;
}

.history_time {
  position: absolute;
  left: 1.05rem;
  top: .4rem;
  color: rgb(0, 129, 197);
  font-size: .72rem;
  line-height: 1;
  font-weight: 400;
}

.history_info {
  color: #333333;
  font-size: .18rem;
  font-weight: 400;
  line-height: 2;
  margin-top: .4rem;
  height: calc(.18rem * 8);
  overflow-y: auto;
}

.history_info::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}

.history_info::-webkit-scrollbar-track {
  display: none;
}

.history_info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primary);
}


.history_info p {
  position: relative;
  padding-left: .2rem;
}

.history_info P::before {
  content: "";
  position: absolute;
  left: .08rem;
  top: .16rem;
  width: .04rem;
  height: .04rem;
  border-radius: 50%;
  background: #333333;
}


@media only screen and (max-width: 1200px) {
  .company_intro {
    font-size: 12px;
    line-height: 2;
    max-height: calc(12px* 18);
  }

  .history_info {
    font-size: 12px;
    height: calc(12px * 8);
  }

  .history_info p {
    padding-left: 14px;
  }

  .history_info p::before {
    width: 2px;
    height: 2px;
    left: 6px;
    top: 11px;
  }
}

@media only screen and (max-width: 500px) {
  .company_left {
    width: 100%;
    padding: 20px;
  }

  .company_right {
    margin-top: 20px;
    width: 100%;
  }

  .history_right .swiper-button-next,
  .history_right .swiper-button-prev {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }

  .vision_title {
    font-size: 14px;
  }

  .company_left::before {
    width: 100%;
  }

  .about_first {
    padding: 20px 0;
  }

  .about_third {
    padding: 30px 0 20px;
  }

  .history_box::before {
    display: none;
  }

  .history_box {
    padding: 0 0 0 30px;
  }

  .history_time {
    left: 0;
    font-size: 26px;
  }

  .history_area {
    padding: 20px 20px 20px 35px;
  }
}













/* ==========================================================================
   新闻资讯
   ========================================================================== */
.news_first {
  background: url(../images/news_bg.png) no-repeat;
  background-size: cover;
  padding: 1.2rem 0 1.4rem;
}

.hotNews_left {
  width: 4.2rem;
}

.hotNews_right {
  width: 1.32rem;
  align-self: center;
}

.hotNews_mid {
  width: calc(100% - 5.52rem);
  padding: 0 1rem;
}

.hotNews_ckxq {
  border-radius: .08rem;
  /* background: linear-gradient(252.26deg, rgb(0, 178, 215) 10.099%, rgb(5, 114, 216) 52.583%, rgb(0, 88, 255) 89.901%); */
  background: rgb(0, 178, 215);
  padding: .25rem .35rem;
  text-align: center;
}

.hotNews_ckxq h2 {
  color: rgb(255, 255, 255);
  font-size: .36rem;
  line-height: 1;
  font-weight: 500;
}

.hotNews_ckxq h6 {
  color: rgb(255, 255, 255);
  font-size: .16rem;
  font-weight: 500;
  margin: .15rem 0;
}

.hotNews_ckxq h5 {
  color: rgb(255, 255, 255);
  font-size: .14rem;
  font-weight: 400;
}

.hotNews_jxtj {
  color: rgb(0, 134, 209);
  font-size: .16rem;
  font-weight: 400;
}

.hotNews_title {
  color: rgb(0, 0, 0);
  font-size: .2rem;
  font-weight: 600;
  margin: .15rem 0 .3rem;
}

.hotNews_info {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  color: rgb(153, 153, 153);
  font-size: .14rem;
  line-height: 2;
  font-weight: 400;
}

.hotNews_left .pic {
  border-radius: .04rem;
  box-shadow: 0px 2px 10px 0px rgba(144, 154, 162, 0.25);
}

.news_second {
  padding: 1.2rem 0;
}

.news_swiper .swiper-pagination-bullet {
  width: .14rem;
  height: .14rem;
  border: 1px solid rgb(0, 134, 209);
  background: rgb(255, 255, 255);
  opacity: 1;
  margin: 0 5px;
}

.news_swiper .swiper-pagination-bullet-active {
  border-color: rgb(0, 134, 209);
  background: rgb(0, 134, 209);
}

.news_swiper .swiper-pagination {
  width: auto;
  left: 5.2rem;
}

.newsHead_flex {
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

.news_select {
  margin: 0 0 0 -0.2rem;
}

.newsSelect_item {
  width: 2.2rem;
  margin: 0 0 .4rem .2rem;
}

.news_select .layui-input {
  border-radius: 100px;
  height: 42px;
  text-align: center;
  color: rgb(51, 51, 51);
  font-size: .16rem;
}

.news_select .layui-form-select .layui-edge {
  border-top-color: #000;
}

.news_select .layui-form-select dl dd.layui-this {
  background: var(--primary);
}


.news_list {
  margin: -0.25rem 0 0 -0.7rem;
}

.news_list li {
  width: calc(33.33% - .7rem);
  margin: .4rem 0 0 .7rem;
}

.news_box {
  border-radius: .06rem;
  box-shadow: 0px 4px 4px 0px rgba(22, 58, 87, 0.1);
  background: rgb(255, 255, 255);
  transition: all .4s;
}

.news_box:hover {
  transform: translateY(-10px);
}

.news_area {
  padding: .3rem .25rem .5rem .25rem;
  position: relative;
}

.news_area::before {
  content: "";
  position: absolute;
  left: .25rem;
  bottom: .35rem;
  width: 1rem;
  height: 2px;
  background: rgb(0, 164, 156);
}

.news_date {
  color: rgb(120, 120, 120);
  font-size: var(--fontSize14);
  margin-bottom: .15rem;
}

.news_title {
  position: relative;
  color: rgb(50, 50, 50);
  font-size: .16rem;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  height: calc(.16rem * 3);
}


.news_box:hover .news_title {
  color: #00A49C;
}

@media only screen and (max-width: 1200px) {
  .hotNews_mid {
    padding: 0 .5rem;
  }

  .hotNews_info {
    font-size: 12px;
  }

  .hotNews_jxtj {
    font-size: 14px;
  }

  .news_swiper .swiper-pagination {
    left: 4.7rem;
    bottom: 0;
  }

  .news_select .layui-input {
    font-size: 12px;
  }

  .news_title {
    font-size: 12px;
    height: calc(12px * 3);
  }

  .news_area::before {
    bottom: 15px;
  }
}

@media only screen and (max-width: 920px) {
  .hotNews_title {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 768px) {
  .news_list {
    margin: -0.25rem 0 0 -0.4rem;
  }

  .news_list li {
    width: calc(33.33% - .4rem);
    margin: .4rem 0 0 .4rem;
  }
}

@media only screen and (max-width: 500px) {
  .hotNews_left {
    width: calc(100% - 70px);
    margin-bottom: 20px;
  }

  .hotNews_mid {
    width: calc(100% - 70px);
    padding: 0 20px 0 0;
  }


  .news_swiper .swiper-pagination {
    right: 0;
    left: auto;
  }

  .hotNews_title {
    font-size: 12px;
  }

  .news_first {
    padding: 30px 0;
  }

  .newsSelect_item {
    width: 50%;
  }

  .news_select .layui-input {
    height: 32px;
  }

  .news_list li {
    width: calc(50% - .4rem);
  }

  .news_second {
    padding: 30px 0;
  }

  .layui-form-select dl {
    top: 34px;
  }

  .hotNews_ckxq h5,
  .hotNews_ckxq h6 {
    font-size: 12px;
  }

  .hotNews_ckxq {
    padding: 10px 0;
  }
}









/* ==========================================================================
   向下滚动
   ========================================================================== */
.mouse_box {
  margin: .6rem 0 0;
  justify-content: center;
}

.loading {
  color: rgb(107, 107, 107);
  ;
  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: 1200px) {
  .loading {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .loading {
    font-size: 12px;
  }

  .mouse_img {
    width: 12px;
  }
}











/* ==========================================================================
   新闻详情
   ========================================================================== */
.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: .3rem;
  font-weight: 400;
}

.nd_date {
  font-size: .16rem;
  color: rgb(85, 85, 85);
  margin: .1rem 0;
}

.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 #0086D1;
  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(102, 102, 102);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tool_toggle a:hover {
  color: var(--primary);
}

.back_btn {
  width: 1.34rem;
  height: .42rem;
  font-size: .16rem;
  color: #fff;
  border-radius: 100px;
  background: rgb(0, 134, 209);
}

.back_btn:hover {
  color: #fff;
}

.top_btn {
  margin-left: .2rem;
}





/* ———————————————— 右边列表 ———————————————— */
.gdtj {
  border-radius: .04rem;
  background: rgb(241, 247, 247);
  height: 1.8rem;
  width: 100%;
  overflow: hidden;
}

.gdtj_list {
  margin: .4rem 0 0 0;
}

.gdtj_list li {
  margin-bottom: .3rem;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.gdtj_title {
  color: rgb(102, 102, 102);
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.gdtj_date {
  color: rgb(153, 153, 153);
  font-size: 12px;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.gdtj_box:hover .gdtj_title {
  color: var(--primary);
}

.tjxw {
  color: rgb(0, 134, 209);
  font-size: .24rem;
  font-weight: 400;
  margin-bottom: .3rem;
  position: relative;
}

.tjxw::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: .4rem;
  height: 1px;
  background: #0086D1;
}


@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;
  }

  .back_btn {
    width: 90px;
    height: 26px;
    font-size: 12px;
  }

}










/* ==========================================================================
   资源中心
   ========================================================================== */
.resource_center {
  padding: .8rem 0;
}

.resource_list {
  margin: 0 0 0 -0.65rem;
}

.resource_list li {
  width: calc(25% - .65rem);
  margin: 0 0 .4rem .65rem;
}

.resource_box {
  border-radius: .08rem;
  background: rgb(255, 255, 255);
  padding: .2rem;
  transition: all .4s;
}

.resource_box:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.resource_box .pic {
  margin: 0 .5rem;
}

.resource_title {
  box-sizing: initial;
  color: rgb(0, 0, 0);
  font-size: .16rem;
  font-weight: 500;
  padding: .05rem 0;
  height: calc(.16rem * 3);
  border-bottom: 1px solid rgb(238, 238, 238);
}

.resource_flex {
  justify-content: space-between;
  align-items: center;
  padding: .15rem 0 0;
}

.resource_time h6 {
  color: rgb(102, 102, 102);
  font-size: 12px;
  line-height: 1.8;
}


@media only screen and (max-width: 1200px) {
  .resource_title {
    font-size: 12px;
    height: calc(12px * 3);
  }

  .resource_list {
    margin: 0 0 0 -0.4rem;
  }

  .resource_list li {
    width: calc(25% - .4rem);
    margin: 0 0 .4rem .4rem;
  }
}

@media only screen and (max-width: 1024px) {
  .resource_list li {
    width: calc(33.33% - .4rem);
  }
}

@media only screen and (max-width: 500px) {
  .resource_center {
    padding: 0;
  }

  .resource_list li {
    width: calc(50% - .4rem);
  }
}










/* ==========================================================================
   往期论文
   ========================================================================== */
.papers {
  padding: .8rem 0 1.2rem;
}

.papers_main {
  padding: .3rem .4rem .5rem;
  background: rgb(255, 255, 255);
}

.papers_flex {
  padding-bottom: .2rem;
  border-bottom: .02rem solid rgb(0, 164, 156);
  justify-content: space-between;
}

.papers_title {
  color: rgb(0, 164, 156);
  font-size: .2rem;
  font-weight: 500;
}

.papers_right {
  width: 100px;
}

.papers_right .layui-input {
  border: 1px solid rgb(221, 221, 221);
  border-radius: .04rem;
  background: rgb(255, 255, 255);
  color: rgb(102, 102, 102);
  font-size: 14px;
}

.papers_right .layui-form-select .layui-edge {
  border: none;
  right: 12px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgb(186, 221, 221);
  border-right: 2px solid rgb(186, 221, 221);
  margin-top: -6px;
  transform: rotate(45deg);
}

.papers_right .layui-form-selected .layui-edge {
  margin-top: -3px;
  transform: rotate(225deg);
}

.papers_item {
  padding: .4rem 0 .2rem;
  border-bottom: 1px solid rgb(225, 225, 225);
}

.papers_name {
  color: rgb(122, 199, 191);
  font-size: .16rem;
  font-weight: 400;
}

.papers_intro {
  color: rgb(0, 0, 0);
  font-size: .2rem;
  font-weight: 400;
  margin: .06rem 0;
}

.papers_date {
  color: rgb(153, 153, 153);
  font-size: .14rem;
}

.papers_paging {
  margin-top: .45rem;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
  .papers_name {
    font-size: 12px;
  }

  .papers_title {
    font-size: 16px;
  }

  .papers_intro {
    font-size: 14px;
  }

  .papers_date {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .papers {
    padding: 0 0 20px;
  }
}










/* ==========================================================================
   联系我们
   ========================================================================== */

.contact {
  padding: .8rem 0 1.2rem;
}

.company_list {
  padding: 0 1.3rem;
  margin: 0 0 .6rem -0.6rem;
}

.company_list li {
  width: calc(50% - .6rem);
  margin: 0 0 .4rem .6rem;
}

.company_box {
  background: rgb(241, 247, 247);
  padding: .35rem .3rem .25rem .55rem;
  height: 100%;
}

.company_name {
  color: rgb(0, 0, 0);
  font-size: .18rem;
  font-weight: 500;
  margin-bottom: .2rem;
  position: relative;
}

.company_name::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: .06rem;
  width: .27rem;
  height: .15rem;
  background: rgb(0, 164, 156);
}

.company_info {
  color: rgb(51, 51, 51);
  font-size: .16rem;
  font-weight: 400;
}

.company_info p:not(:last-of-type) {
  margin-bottom: .1rem;
}


.map img {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .company_name {
    font-size: 14px;
  }

  .company_name::before {
    width: 12px;
    height: 7px;
    top: 7px;
  }

  .company_info {
    font-size: 12px;
  }

  .company_list {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 20px 0 40px;
  }
}

@media only screen and (max-width: 500px) {
  .company_list li {
    width: 100%;
  }

  .contact {
    padding: 10px 0 20px;
  }

  .company_list {
    margin: 0 0 0 -0.6rem;
  }
}










/* ==========================================================================
   加入我们
   ========================================================================== */
.job_flex {
  justify-content: space-between;
}

.job_left {
  width: 71.6%;
}

.job_right {
  width: 28.4%;
}

.job_sidebar {
  width: 80%;
  margin: 0 auto;
}

.job_sidebar .job_toolbar:not(:last-of-type) {
  margin-bottom: .2rem;
}

.job_toolbar {
  border-radius: .1rem;
  background: rgb(255, 255, 255);
}

.jobBar_title {
  align-items: center;
  color: rgb(0, 164, 156);
  font-size: .18rem;
  font-weight: 400;
  border-top: .04rem solid rgb(0, 164, 156);
  background: rgb(230, 245, 247);
  border-radius: .1rem;
  padding: .16rem .2rem;
}

.jobBar_title img {
  margin-right: .16rem;
}

.job_column {
  padding: .06rem .16rem;
}

.job_contact {
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: .18rem;
  font-weight: 500;
  padding: .2rem 0;
}

.job_contact img {
  width: .4rem;
  margin-right: .2rem;
}

.job_column .job_contact:not(:last-of-type) {
  border-bottom: 1px solid rgba(175, 218, 240, 0.45);
}

.job_column a:not(:last-of-type) .job_hot {
  border-bottom: 1px solid rgba(175, 218, 240, 0.45);
}

.job_hot {
  padding: .2rem .1rem;
}

.jobHot_title {
  color: rgb(0, 0, 0);
  font-size: .16rem;
  font-weight: 500;
  margin-bottom: .06rem;
}

.jobHot_date {
  color: rgb(153, 153, 153);
  font-size: 12px;
  font-weight: 400;
}




.job_search {
  margin-bottom: .4rem;
}

.job_wrap {
  justify-content: space-between;
}

.job_input {
  line-height: .74rem;
  color: rgb(136, 136, 136);
  font-size: .2rem;
  border-radius: .04rem;
  background: rgb(255, 255, 255);
  border: none;
  padding: 0 .25rem;
  width: calc(100% - 2.2rem);
}

.job_submit {
  width: 2rem;
  height: .74rem;
  border-radius: .04rem;
  border: none;
  background: rgba(69, 180, 208, 0.95);
  color: rgb(255, 255, 255);
  font-size: .2rem;
  font-weight: 500;
}

.job_select {
  border-radius: .2rem;
  background: rgb(255, 255, 255);
  padding: .4rem;
}

.job_select .jobSelect_item:not(:last-of-type) {
  border-bottom: 1px solid rgb(225, 225, 225);
  padding: 0 0 .2rem;
  margin: 0 0 .2rem;
}

.jobSelect_title {
  color: rgb(51, 51, 51);
  font-size: .16rem;
  line-height: 1;
  padding: .08rem 0;
  font-weight: 400;
  margin-right: .5rem;
  flex-shrink: 0;
}

.jobSelect_list {
  margin: -0.1rem 0 0 -0.2rem;
}

.jobSelect_li {
  margin: .1rem 0 0 .2rem;
}

.jobSelect_name {
  border: 1px solid rgba(76, 78, 100, 0.22);
  border-radius: .08rem;
  color: rgb(51, 51, 51);
  font-size: .14rem;
  line-height: 1;
  padding: .1rem .2rem;
  transition: all .3s;
  cursor: pointer;
}

.jobSelect_name:hover {
  color: rgb(0, 164, 156);
  border-color: #00A49C;
}

.jobSelect_li.on .jobSelect_name {
  color: rgb(0, 164, 156);
  border-color: #00A49C;
}




.job_main {
  margin: .4rem 0 0;
}

.job_heading {
  padding: 0 .45rem;
  height: .48rem;
  align-items: center;
  background: rgb(75, 172, 198);
}

.size {
  font-size: var(--fontSize14);
  font-weight: 500;
  text-align: center;
}

.job_heading .size {
  color: rgb(255, 255, 255);
}

.career_box .size {
  color: rgb(0, 0, 0);
}

.job_title {
  width: 30%;
  text-align: left;
}

.job_category {
  width: 27%;
}

.job_type {
  width: 27%;
}

.job_place {
  width: 16%;
}

.career_box {
  padding: 0 .45rem;
  height: .48rem;
  align-items: center;
  background: rgb(255, 255, 255);
  transition: all .3s;
}

.career_box:hover {
  background: rgb(235, 244, 247);
}

.career_box:hover .size {
  color: rgb(0, 180, 209);
}

.job_list .job_item:not(:last-of-type) {
  border-bottom: 1px solid rgb(222, 226, 231);
}

@media only screen and (max-width: 1200px) {
  .jobHot_title {
    font-size: 12px;
  }

  .career_box,
  .job_heading {
    height: 36px;
  }
}

@media only screen and (max-width: 768px) {
  .job_right {
    display: none;
  }

  .job_left {
    width: 100%;
  }

  .jobSelect_name {
    font-size: 12px;
  }

  .jobSelect_title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .job_input {
    font-size: 12px;
  }

  .job_submit {
    font-size: 12px;
  }

  .career_box,
  .job_heading {
    padding: 0 5px;
  }
}














/* ==========================================================================
   加入我们详情
   ========================================================================== */
.job_details {
  padding: .5rem .4rem .55rem;
  border-radius: .2rem;
  background: rgb(255, 255, 255);
}

.jobdetails_top {
  padding-bottom: .4rem;
  border-bottom: 1px solid rgb(225, 225, 225);
}

.jobdetails_title {
  color: rgb(51, 51, 51);
  font-size: .36rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: .2rem;
}

.jobdetails_area {
  margin: 0 0 0 -0.6rem;
}

.jobdetails_area h6 {
  margin: 0 0 0 .6rem;
  color: rgb(102, 102, 102);
  font-size: .14rem;
}

.jobdetails_wrap {
  margin-top: .4rem;
}

.job_demand {
  display: inline-block;
  padding: .06rem .15rem;
  color: rgb(255, 255, 255);
  font-size: .18rem;
  font-weight: 400;
  border-radius: .04rem;
  background: rgb(0, 164, 156);
}

.job_info {
  margin: .2rem 0 0;
  color: rgb(51, 51, 51);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 240%;
}

.job_info p {
  position: relative;
  padding-left: .3rem;
}

.job_info p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .11rem;
  width: .08rem;
  height: .08rem;
  border-radius: 50%;
  border: .02rem solid rgb(0, 164, 156);
}

.job_ljtd {
  margin-top: .65rem;
  width: 1.6rem;
  height: .54rem;
  color: rgb(75, 172, 198);
  font-size: .2rem;
  font-weight: 400;
  border: .02rem solid rgb(75, 172, 198);
  border-radius: .09rem;
  transition: all .3s;
}

.job_ljtd:hover {
  color: rgb(75, 172, 198);
  box-shadow: 0 0 10px rgba(75, 172, 198);
}

@media only screen and (max-width: 1200px) {
  .jobdetails_area h6 {
    font-size: 12px;
  }

  .job_info {
    line-height: 2;
  }

  .job_info p::before {
    top: 9.5px;
  }

  .job_demand {
    font-size: 12px;
  }
}

/* .example_nwms img {
  width: 50%;
} */

@media only screen and (max-width: 500px) {
  .example_nwms img {
    width: 100%;
  }
}




/* ==========================================================================
   搜索页面
   ========================================================================== */
.search_main {
  background: #fff;
  margin: .4rem 0 0;
  padding: .4rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.search_input {
  display: flex;
  padding: 0 1rem;
}

.search_main .layui-tabs-header li {
  font-size: .2rem;
}

.search_main .layui-tabs-header .layui-this {
  background: #00A29A;
  color: #fff;
}

.search_main .layui-tabs-header:after {
  display: none;
}

.search_main .layui-tabs-header .layui-this:after {
  display: none;
}

.search_main .layui-tabs {
  margin: .3rem 0 0;
}

.search_main .layui-table-view .layui-table th {
  background: #008CD0;
  color: #fff;
}

.p_formItem {
  border: 1px solid rgb(238, 238, 238);
  margin: .2rem 0 0;
  padding: .4rem;
}

.response-transition {
  font-size: .18rem;
  color: #333333;
  line-height: 2.3;
  padding-bottom: .2rem;
  margin-bottom: .2rem;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.form_none_title {
  color: #333;
  font-size: .24rem;
  font-weight: bold;
  margin-bottom: .2rem;
}

.Protein_none .layui-form-label {
  float: none;
  width: auto;
  text-align: left;
  padding: .05rem 0;
  font-size: .16rem;
}

.Protein_none .layui-input-block {
  margin-left: 0;
}

.Protein_none .layui-input,
.Protein_none .layui-textarea {
  font-size: .16rem;
}

.search_ul {
  margin: 0 0 0 -0.4rem;
}

.search_ul li {
  width: calc(50% - .4rem);
  margin: 0 0 0 .4rem;
}

#proSearch {
  width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: none;
  font-size: .16rem;
  background: rgba(240, 130, 0, 1);
  color: #fff;
  font-size: .16rem;
}

.search_input .layui-input {
  font-size: .16rem;
}

#submission {
  margin-top: .10rem;
  color: rgba(255, 255, 255, 1);
  font-size: .18rem;
  background: #409eff;
}

@media only screen and (max-width: 1200px) {

  .Protein_none .layui-form-label,
  .Protein_none .layui-input,
  .Protein_none .layui-textarea,
  .search_input .layui-input,
  #proSearch {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {

  .response-transition,
  #submission {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .search_input {
    padding: 0;
  }

  .search_ul li {
    width: 100%;
  }

  .search_main .layui-tabs-header li {
    font-size: 12px;
  }

  .p_formItem {
    padding: 10px;
  }

  .search_main {
    padding: 10px;
  }
}