@charset "UTF-8";
/* 初始化CSS */
* {
  margin: 0;
  padding: 0;
}











* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="text"],
input[type="password"],
textarea,
button {
  -webkit-appearance: none;
}

input:focus {
  outline: none;
}

input::-moz-focus-inner {
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

body {
  font-family: "微软雅黑", "Microsoft YaHei", serif;
  overflow-x: hidden;
  margin: auto;
  font-size: 16px;
}

body::-webkit-scrollbar {
  display: none;
}

header .top {
  border-bottom: 1px solid #dddddd;
  position: relative;
}

header .top .o_toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 40px;
  height: 40px;
  z-index: 1001;
  transform: translateY(-50%);
}

header .top .o_toggle input {
  position: absolute;
  right: 0px;
  width: 40px;
  height: 40px;
  opacity: 0;
  z-index: 1002;
}

header .top .o_toggle input:checked ~ .close span:nth-child(1) {
  transform: rotate(46deg) translate(3px, -7px);
}

header .top .o_toggle input:checked ~ .close span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0);
  transform: rotate(0deg) scale(0);
}

header .top .o_toggle input:checked ~ .close span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, 4px);
}

header .top .o_toggle .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 0px;
}

header .top .o_toggle .close span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 6px;
  position: relative;
  right: 0;
  top: 0;
  background-color: #333333;
  border-radius: 1px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
  transform-origin: 4px 0px;
  -webkit-transition: opacity 0.5s ease, margin-bottom 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), background 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.8, 0.2, 0.05, 1);
  transition: opacity 0.5s ease, margin-bottom 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), background 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.8, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), opacity 0.5s ease, margin-bottom 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), background 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), opacity 0.5s ease, margin-bottom 0.5s cubic-bezier(0.8, 0.2, 0.05, 1), background 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.8, 0.2, 0.05, 1);
}

header .top .o_toggle .close span:nth-child(1) {
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

header .top .o_toggle .close span:nth-child(2) {
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

header .top .o_toggle .close span:nth-child(3) {
  margin-bottom: 0;
}

@media (min-width: 996px) {
  header .top .o_toggle {
    display: none;
  }
}

header .top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .top .logo {
  display: block;
  height: 80px;
}

header .top .logo img {
  width: auto;
  height: 100%;
}

header .top .tel {
  padding-left: 50px;
  background: url(../images/tel_icon.png) no-repeat left;
  font-size: 36px;
  color: #74b8e5;
  font-weight: bold;
  line-height: 80px;
}

header .menu {
  width: 50%;
  height: 100%;
  position: fixed;
  left: auto;
  right: 0;
  top: 0;
  z-index: 999;
  background: #fff;
  right: 0;
  transition: all 0.3s;
  transform: translateX(120%);
}

@media (max-width: 996px) {
  header .menu {
    top: 70px;
	box-shadow:3px 0 7px 4px #cdcdcd;
  }
}

@media (max-width: 576px) {
  header .menu {
    top: 60px;
  }
}

header .menu .link {
  flex: 1;
  display: block;
  text-align: left;
  line-height: 65px;
  position: relative;
}

header .menu .link img {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 27px;
  right: 10px;
  transition: all 0.2s;
}

@media (min-width: 769px) {
  header .menu .link img:hover {
    transform: rotateZ(45deg);
  }
}

header .menu .link .active_add {
  transform: rotateZ(45deg);
}

@media (min-width: 769px) {
  header .menu .link:hover .son_item {
    display: block;
  }
}

header .menu .link .item {
  font-size: 16px;
  color: #333333;
}

header .menu .link .son_item {
  z-index: 99;
  width: 100%;
  display: none;
  background-color: #ffffff;
}

header .menu .link .son_item .son_link {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}

header .menu .link .son_item .son_link a {
  font-size: 14px;
  display: block;
  width: 100%;
  line-height: 50px;
  color: #333333;
}

header .menu .link .active_son_item {
  display: block;
}

@media (max-width: 576px) {
  header .menu .link {
    line-height: 50px;
  }
  header .menu .link img {
    top: 17px;
  }
  header .menu .link .son_item .son_link a {
    line-height: 35px;
  }
}

@media (min-width: 996px) {
  header .menu {
    position: relative;
    height: 65px;
    top: 0;
    width: 100%;
    transform: translateX(0);
  }
  header .menu .link_ul {
    display: flex;
    justify-content: center;
  }
  header .menu .link_ul .add_more {
    display: none;
  }
  header .menu .link {
    flex: 1;
    display: block;
    text-align: center;
    line-height: 65px;
    position: relative;
  }
  header .menu .link:last-child::before {
    content: "";
  }
  header .menu .link::before {
    position: absolute;
    content: "/";
    line-height: 65px;
    font-size: 20px;
    color: #ffb18f;
    right: 0;
    font-weight: normal;
  }
  header .menu .link:hover .son_item {
    display: block;
  }
  header .menu .link .item {
    font-size: 16px;
    color: #333333;
    transition: all 0.2s;
  }
  header .menu .link .item:hover {
    color: #49ada5;
  }
  header .menu .link .son_item {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 50%;
    top: 97%;
    display: none;
    transform: translateX(-50%);
    background-color: #ffffff;
  }
  header .menu .link .son_item .son_link {
    width: 100%;
    border-bottom: 1px solid #dddddd;
  }
  header .menu .link .son_item .son_link a {
    font-size: 14px;
    display: block;
    width: 100%;
    line-height: 20px;
    padding: 10px;
    color: #333333;
  }
}

header .active_menu {
  transform: translateX(0) !important;
}

@media (max-width: 996px) {
  header .banner {
    margin-top: 70px;
  }
  header .top {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1001;
  }
  header .tel {
    display: none;
  }
  header .logo {
    height: 70px !important;
  }
}

@media (max-width: 767px) {
  header .banner {
    margin-top: 60px;
  }
  header .top {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1001;
  }
  header .top .tel {
    display: none;
  }
  header .top .logo {
    height: 40px !important;
    margin-top: 10px;
  }
}

/*关于我们*/
.about .wrap .block {
  display: flex;
  margin-top: 65px;
  box-shadow: 1px 1px 4px #cdcdcd;
}

.about .wrap .block .pic {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}

.about .wrap .block .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .wrap .block .text {
  padding: 35px 40px;
  padding-bottom: 0;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  flex: 1;
  max-width: 60%;
}

.about .wrap .block .text .t1 {
  font-size: 16px;
  color: #333333;
  line-height: 2.1;
}

.about .wrap .block .text .icon {
  display: flex;
  margin-top: 40px;
}

.about .wrap .block .text .icon .item {
  line-height: 73px;
  margin-right: 70px;
  font-size: 22px;
  color: #333333;
  padding-left: 80px;
  background-size: auto 100%;
  background: url(../images/abico1.jpg) no-repeat left;
}

.about .wrap .block .text .icon .item:last-child {
  background: url(../images/abic2.jpg) no-repeat left;
  margin-right: 0;
}

.about .wrap .block .text .more {
  font-size: 16px;
  text-align: center;
  width: 150px;
  display: block;
  height: 40px;
  line-height: 40px;
  border: 1px solid #74b8e5;
  margin: 35px 0;
  position: relative;
}

.about .wrap .block .text .more:hover span {
  color: #ffffff;
}

.about .wrap .block .text .more:hover::before {
  transform: scaleX(1);
}

.about .wrap .block .text .more span {
  position: absolute;
  color: #74b8e5;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about .wrap .block .text .more::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #74b8e5;
  transform-origin: left;
  transition: all 0.3s;
  transform: scaleX(0);
}

.about .culture {
  margin-top: 40px;
}

.about .culture .a-wrap .item .detail {
  height: 100%;
  border-top: 4px solid #49ada5;
  padding: 0 20px;
  box-shadow: 0px 5px 5px #cdcdcd;
}

.about .culture .a-wrap .item .detail .title1 {
  position: relative;
  height: 60px;
  line-height: 60px;
  color: #333333;
  font-size: 18px;
  border-bottom: 1px solid #cdcdcd;
}

.about .culture .a-wrap .item .detail .title1::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/moreic.jpg) no-repeat center top;
  width: 25px;
  height: 25px;
}

.about .culture .a-wrap .item .detail .text {
  padding-top: 25px;
}

.about .culture .a-wrap .item .detail .text ul li {
  margin-bottom: 25px;
  color: #333333;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  line-height: 30px;
  display: flex;
  align-items: flex-start;
}

.about .culture .a-wrap .item .detail .text ul li .award {
  width: calc(100% - 80px);
}

.about .culture .a-wrap .item .detail .text ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #74b8e5;
  top: 9px;
  left: 0;
}

.about .culture .a-wrap .item .detail .text ul li span {
  font-weight: bold;
  display: block;
  width: 95px;
}

@media (max-width: 769px) {
  .about .wrap .block {
    margin-top: 40px;
  }
  .about .wrap .block .pic {
    display: none !important;
  }
  .about .wrap .block .text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    flex: 1;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about .wrap .block {
    margin-top: 20px;
  }
  .about .wrap .block .text {
    padding: 10px;
  }
  .about .wrap .block .text .t1 {
    font-size: 14px;
    text-align: justify;
  }
  .about .wrap .block .text .icon {
    justify-content: center;
  }
  .about .wrap .block .text .icon .item {
    line-height: 30px;
    font-size: 16px;
    margin-right: 30px;
    padding-left: 35px;
    background-size: 30px 30px;
  }
  .about .wrap .block .text .icon .item:last-child {
    background-size: 30px 30px;
  }
}

@media (min-width: 576px) {
  .about .wrap .culture .item {
    margin-bottom: 20px;
  }
  .about .wrap .culture .item:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 767px) {
  .about .wrap .culture .item {
    margin-bottom: 0px;
  }
  .about .wrap .culture .item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .about .culture .a-wrap .item {
    margin-bottom: 10px;
  }
  .about .culture .a-wrap .item .detail {
    padding: 0 10px;
  }
  .about .culture .a-wrap .item .detail .title1 {
    font-size: 16px;
  }
  .about .culture .a-wrap .item .detail .text ul li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 25px;
  }
  .about .wrap .block .text .icon {
    margin-top: 20px;
  }
  .about .wrap .block .text .more {
    margin: 20px auto;
  }
}

@media (min-width: 770px) and (max-width: 996px) {
  .about .wrap .block .text .icon .item {
    line-height: 36px;
    margin-right: 60px;
    font-size: 18px;
    color: #333333;
    padding-left: 40px;
    background-size: auto 100%;
    background: url(../images/abico1.jpg) no-repeat left;
    background-size: auto 100%;
  }
  .about .wrap .block .text .icon .item:last-child {
    line-height: 36px;
    margin-right: 0;
    font-size: 18px;
    color: #333333;
    padding-left: 40px;
    background-size: auto 100%;
    background: url(../images/abico1.jpg) no-repeat left;
    background-size: auto 100%;
  }
}

.single {
  padding-top: 55px;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .single {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
}

.single .pub_title {
  text-align: center;
  font-size: 36px;
  color: #74b8e5;
  font-weight: bold;
  background: url(../images/title_bg.png) no-repeat center;
}

@media (max-width: 767px) {
  .single .pub_title {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .single .pub_title {
    font-size: 20px;
  }
}

/*服务团队*/
.server_team {
  background-color: #f3f5f7;
}

.server_team .content {
  margin-top: 65px;
}

.server_team .content .item {
  display: block;
  margin-bottom: 20px;
  background-color: #ffffff;
  transition: all 0.6s;
}

.server_team .content .item:hover {
  box-shadow: 1px 1px 5px 1px #cdcdcd;
}

.server_team .content .item:hover .pic img {
  transform: scale(1.05);
}

.server_team .content .item .pic {
  padding-bottom: 90%;
  overflow: hidden;
  position: relative;
}

.server_team .content .item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid #fff;
}

.server_team .content .item .t1 {
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #333333;
}

.server_team .more {
  width: 150px;
  height: 40px;
  border: 1px solid #74b8e5;
  text-align: center;
  position: relative;
  margin: 0 auto;
  display: block;
}

.server_team .more span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #74b8e5;
}

.server_team .more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #74b8e5;
  transition: all 0.3s;
  transform-origin: left;
  transform: scaleX(0);
}

.server_team .more:hover span {
  color: #ffffff;
}

.server_team .more:hover::before {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .server_team .content {
    margin-top: 40px;
  }
  .server_team .content .item .t1 {
    line-height: 40px;
    font-size: 16px;
  }
  .server_team .content .item .pic img {
    border: 5px solid #fff;
  }
}

@media (max-width: 576px) {
  .server_team .content {
    margin-top: 20px;
  }
  .server_team .more {
    margin-top: 0;
  }
}

.leader {
  background-color: #ffffff;
}

.leader .more {
  width: 150px;
  height: 40px;
  border: 1px solid #74b8e5;
  text-align: center;
  position: relative;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}

.leader .more span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #74b8e5;
}

.leader .more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #74b8e5;
  transition: all 0.3s;
  transform-origin: left;
  transform: scaleX(0);
}

.leader .more:hover span {
  color: #ffffff;
}

.leader .more:hover::before {
  transform: scaleX(1);
}

@media (max-width: 576px) {
  .leader .a_wrap {
    margin-top: 20px;
  }
}

/*服务特色*/
.point {
  background: url(../images/ts.jpg) no-repeat center top;
  background-attachment: fixed;
  background-size: 100% 100%;
  padding-bottom: 60px;
}

.point .pub_title {
  color: #ffffff;
  background: url(../images/title_bg1.png) no-repeat center;
}

.point .content {
  margin-top: 60px;
}

.point .content .item .block {
  display: block;
  height: 100%;
  background-color: #ffffff;
}

.point .content .item .block .pic {
  padding-bottom: 70%;
  position: relative;
}

.point .content .item .block .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.point .content .item .block .text {
  padding: 0 25px;
  padding-top: 35px;
  padding-bottom: 20px;
  background-color: #ffffff;
}

.point .content .item .block .text h2 {
  font-size: 22px;
  color: #74b8e5;
  text-align: center;
  margin-bottom: 20px;
}

.point .content .item .block .text .t1 {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}

@media (max-width: 769px) {
  .point {
    padding-bottom: 30px;
  }
  .point .content {
    margin-top: 40px;
  }
  .point .content .item {
    margin-bottom: 15px;
  }
  .point .content .item .block .text {
    padding: 0 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .point .content {
    margin-top: 20px;
  }
  .point .content .item .block .text {
    padding: 0 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .point .content .item .block .text h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .point .content .item .block .text .t1 {
    font-size: 14px;
    line-height: 25px;
  }
}

/*老有所乐*/
.old {
  padding-bottom: 60px;
}

.old .more {
  width: 150px;
  height: 40px;
  border: 1px solid #74b8e5;
  text-align: center;
  position: relative;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}

.old .more span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #74b8e5;
}

.old .more::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #74b8e5;
  transition: all 0.3s;
  transform-origin: left;
  transform: scaleX(0);
}

.old .more:hover span {
  color: #ffffff;
}

.old .more:hover::before {
  transform: scaleX(1);
}

.old .o_wrap {
  margin-top: 50px;
  position: relative;
}

.old .o_wrap .banner_leader {
  width: 100%;
}

.old .o_wrap .banner_leader .swiper-slide {
  position: relative;
  display: block;
}

.old .o_wrap .banner_leader .swiper-slide:hover .pic img {
  transform: scale(1.1);
}

.old .o_wrap .banner_leader .swiper-slide .pic {
  padding-bottom: 65%;
  overflow: hidden;
  position: relative;
}

.old .o_wrap .banner_leader .swiper-slide .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}

.old .o_wrap .banner_leader .swiper-slide .text {
  padding: 20px;
  border: solid #cccccc;
  border-width: 1px 1px 1px 1px;
}

.old .o_wrap .banner_leader .swiper-slide .text h2 {
  font-size: 18px;
  color: #333333;
  max-width: 90%;
  overflow: hidden;
  line-height: 30px;
  display: flex;
  align-items: center;
  height: 20px;
}

.old .o_wrap .banner_leader .swiper-slide .text .time {
  padding-left: 22px;
  background: url(../images/time.png) no-repeat left;
  color: #74b8e5;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.old .o_wrap .banner_leader .swiper-slide .text .detail {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}

.old .o_wrap .lead-prev,
.old .o_wrap .lead-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  color: #c7c7c7;
  font-size: 50px;
  cursor: pointer;
}

.old .o_wrap .lead-prev:hover,
.old .o_wrap .lead-next:hover {
  color: #74b8e5;
}

.old .o_wrap .lead-prev img,
.old .o_wrap .lead-next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.old .o_wrap .lead-next {
  right: -50px;
}

.old .o_wrap .lead-prev {
  left: -50px;
  top: 40%;
  transform-origin: center;
  transform: rotateZ(180deg) translateY(-50%);
}

@media (max-width: 767px) {
  .old .o_wrap {
    margin-top: 40px;
  }
  .old .o_wrap .banner_leader .swiper-slide .text h2 {
    font-size: 16px;
    line-height: 25px;
  }
  .old .o_wrap .banner_leader .swiper-slide .text .detail {
    line-height: 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .old .o_wrap {
    margin-top: 20px;
  }
  .old .o_wrap .banner_leader .swiper-slide .text {
    padding: 10px;
  }
  .old .o_wrap .banner_leader .swiper-slide .text .text {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .old .o_wrap .banner_leader .swiper-slide .text .time {
    font-size: 14px;
  }
}

/*领导关怀轮播图*/
.a_wrap {
  margin-top: 60px;
  position: relative;
}

.a_wrap .banner_leader {
  width: 100%;
}

.a_wrap .banner_leader .swiper-slide {
  position: relative;
  background-color: #fff;
}

.a_wrap .banner_leader .swiper-slide .text {
  position: absolute;
  bottom: 0;
  padding: 0 20px;
  display: flex;
  left: 0;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  background-color: rgba(117, 181, 225, 0.75);
}

.a_wrap .banner_leader .swiper-slide .text .t1 {
  font-size: 16px;
  width: 50%;
  color: #ffffff;
  margin-top: 20px;
  width: calc(100% - 140px);
  line-height: 25px;
  max-height: 50px;
  overflow: hidden;
}

.a_wrap .banner_leader .swiper-slide .text .time {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  line-height: 80px;
}

.a_wrap .banner_leader .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .a_wrap .banner_leader .swiper-slide {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .a_wrap .banner_leader .swiper-slide {
    height: 250px;
  }
}

@media (min-width: 992px) {
  .a_wrap .banner_leader .swiper-slide {
    height: 350px;
  }
}

@media (min-width: 1210px) {
  .a_wrap .banner_leader .swiper-slide {
    height: 400px;
  }
}

.a_wrap .lead-prev,
.a_wrap .lead-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  color: #c7c7c7;
  font-size: 50px;
  cursor: pointer;
}

.a_wrap .lead-prev:hover,
.a_wrap .lead-next:hover {
  color: #74b8e5;
}

.a_wrap .lead-prev img,
.a_wrap .lead-next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a_wrap .lead-next {
  right: -50px;
}

.a_wrap .lead-prev {
  left: -50px;
  top: 40%;
  transform-origin: center;
  transform: rotateZ(180deg) translateY(-50%);
}

@media (max-width: 576px) {
  .a_wrap .banner_leader .swiper-slide .text {
    height: 60px;
    padding: 0 10px;
  }
  .a_wrap .banner_leader .swiper-slide .text .t1 {
    margin-top: 10px;
    font-size: 14px;
    width: calc(100% - 100px);
  }
  .a_wrap .banner_leader .swiper-slide .text .time {
    font-size: 16px;
    line-height: 60px;
  }
}

/*志愿者风采*/
.volunteer {
  background-color: #f3f5f7;
  padding-bottom: 60px;
}

.volunteer .v_wrap {
  position: relative;
  margin-top: 45px;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide {
  background-color: #ffffff;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .pic {
  position: relative;
  padding-bottom: 100%;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text {
  padding: 5px 20px 25px 20px;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text h2 {
  font-size: 18px;
  color: #666666;
  height: 48px;
  display: flex;
  align-items: center;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .detail {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .more {
  width: 150px;
  height: 40px;
  border: 1px solid #49ada5;
  font-size: 16px;
  color: #74b8e5;
  display: block;
  position: relative;
  margin: 0 auto;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .more span {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .more::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform-origin: left;
  background-color: #49ada5;
  transition: all 0.2s;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  z-index: 8;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .more:hover {
  color: #fff;
}

.volunteer .v_wrap .banner_volunteer .swiper-slide .text .more:hover::before {
  transform: scaleX(1);
}

.volunteer .v_wrap .lead-prev,
.volunteer .v_wrap .lead-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  color: #c7c7c7;
  font-size: 50px;
  cursor: pointer;
}

.volunteer .v_wrap .lead-prev:hover,
.volunteer .v_wrap .lead-next:hover {
  color: #74b8e5;
}

.volunteer .v_wrap .lead-prev img,
.volunteer .v_wrap .lead-next img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer .v_wrap .lead-next {
  right: -50px;
}

.volunteer .v_wrap .lead-prev {
  left: -50px;
  top: 40%;
  transform-origin: center;
  transform: rotateZ(180deg) translateY(-50%);
}

@media (max-width: 767px) {
  .volunteer .v_wrap {
    margin-top: 40px;
  }
  .volunteer .v_wrap .banner_volunteer .swiper-slide .text h2 {
    font-size: 16px;
  }
  .volunteer .v_wrap .banner_volunteer .swiper-slide .text .detail {
    font-size: 14px;
    line-height: 25px;
  }
}

@media (max-width: 576px) {
  .volunteer .v_wrap {
    margin-top: 20px;
  }
  .volunteer .v_wrap .banner_volunteer .text {
    padding: 15px 5px !important;
  }
  .volunteer .v_wrap .banner_volunteer .text .detail {
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/*底部*/
footer {
  padding-top: 0px;
  width: 100%;
  background: url(../images/ts1.jpg) no-repeat center top;
}

footer .footer {
  padding-bottom: 0px;
}

footer .footer .content {
  justify-content: space-between;
}

footer .footer .content .l_block {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

footer .footer .content .l_block .menu_c a {
  display: block;
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}

footer .footer .content .l_block .menu_c a:first-child {
  font-size: 16px;
  margin-bottom: 20px;
}

footer .footer .content .wx_er {
  width: 170px;
  height: 170px;
}

footer .footer .content .wx_er img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .footer .content .wx_er p {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 576px) {
  footer .footer .row {
    margin-left: 0;
    margin-right: 0;
  }
  footer .footer .content .l_block {
    width: 100%;
    justify-content: space-between;
  }
  footer .footer .content .l_block .menu_c {
    margin-right: 0;
  }
  footer .footer .content .l_block .menu_c a {
    font-size: 14px;
    text-align: center;
  }
  footer .footer .content .l_block .menu_c a:first-child {
    font-size: 16px;
  }
  footer .footer .content .l_block .menu_c a:last-child {
    margin-bottom: 0;
  }
  footer .footer .content .wx_er {
    margin: 0 auto;
    margin-top: 20px;
    width: 150px;
    height: 150px;
  }
}

footer .copyright {
  font-size: 14px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  border-top: 1px solid #81c6c2;
}

* {
  outline: none;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 40px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*关于我们 - 列表页*/
.about_page {
  padding-top: 35px;
  padding-bottom: 35px;
}

.about_page .a_content .row {
  justify-content: space-between;
}

.about_page .a_content .r_block img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.about_page .a_content .r_block h2 {
  font-size: 20px;
  text-align: center;
  color: #333333;
  line-height: 30px;
  font-weight: 600;
  position: relative;
  margin-top: 20px;
}

.about_page .a_content .r_block h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/iconaa.jpg) no-repeat center top;
}

.about_page .a_content .r_block h2 span {
  color: #49ada5;
}

.about_page .a_content .r_block .text {
  margin-top: 20px;
  line-height: 30px;
  color: #333333;
  font-size: 16px;
}

/* 服务团队 - 列表页 */
.server_team_list {
  padding-top: 35px;
  padding-bottom: 35px;
}

.server_team_list .a_content .row {
  justify-content: space-between;
}

.server_team_list .a_content .r_block .time {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #666666;
}

@media (max-width: 576px) {
  .server_team_list .a_content .r_block .time {
    font-size: 14px;
    margin-top: 20px;
  }
}

.server_team_list .a_content .r_block .infor_pic {
  width: 60%;
  margin: 0 auto;
  margin-top: 20px;
}

.server_team_list .a_content .r_block .infor_pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server_team_list .a_content .r_block h2 {
  font-size: 20px;
  text-align: center;
  color: #333333;
  line-height: 30px;
  font-weight: 600;
  position: relative;
  margin-top: 20px;
}

.server_team_list .a_content .r_block h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/iconaa.jpg) no-repeat center top;
}

.server_team_list .a_content .r_block h2 span {
  color: #49ada5;
}

.server_team_list .a_content .r_block .text {
  margin-top: 20px;
  line-height: 30px;
  color: #333333;
  font-size: 16px;
}

.server_team_list .a_content .r_block .text img {
  margin: 0 auto;
  max-width: 100%;
  height: auto !important;
  display: block;
}

.server_team_list .a_content .r_block img {
  margin: 0 auto;
  max-width: 100%;
  height: auto !important;
  display: block;
}

.server_team_list .a_content .r_block .content {
  margin-top: 30px;
}

.server_team_list .a_content .r_block .content .item a {
  display: block;
  margin-bottom: 20px;
}

.server_team_list .a_content .r_block .content .item a .pic {
  padding-bottom: 80%;
  position: relative;
}

.server_team_list .a_content .r_block .content .item a .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.server_team_list .a_content .r_block .content .item a .detail {
  line-height: 40px;
  text-align: center;
  color: #333333;
  font-size: 16px;
  border: solid #cdcdcd;
  border-width: 0 1px 1px 1px;
}

@media (max-width: 996px) {
  .server_team_list .a_content .r_block .content .item a .detail {
    font-size: 14px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .server_team_list {
    padding: 0;
  }
}

/*领导关怀*/
.leader_care_list {
  padding-top: 35px;
  padding-bottom: 35px;
}

.leader_care_list .l_content .row {
  justify-content: space-between;
}

.leader_care_list .l_content .r_block .list {
  padding-top: 30px;
}

.leader_care_list .l_content .r_block .list .item {
  width: 100%;
  display: block;
  padding: 20px 10px;
  display: flex;
  box-shadow: 0px #cdcdcd;
  transition: all 0.5s;
  margin-bottom: 20px;
}

.leader_care_list .l_content .r_block .list .item:hover {
  box-shadow: 1px -3px 10px #cdcdcd;
}

.leader_care_list .l_content .r_block .list .item:hover .pic img {
  transform: scale(1.1);
}

.leader_care_list .l_content .r_block .list .item .pic {
  width: 260px;
  height: 200px;
  overflow: hidden;
}

.leader_care_list .l_content .r_block .list .item .pic img {
  width: 100%;
  
  object-fit: cover;
  transition: all 1s;
}

.leader_care_list .l_content .r_block .list .item .text1 {
  color: #333333;
  width: calc(100% - 300px);
  margin-left: 20px;
}

.leader_care_list .l_content .r_block .list .item .text1 h3 {
  font-size: 18px;
  line-height: 30px;
  position: relative;
}

.leader_care_list .l_content .r_block .list .item .text1 h3 span {
  position: absolute;
  right: 20px;
  font-size: 14px;
  font-weight: normal;
}

.leader_care_list .l_content .r_block .list .item .text1 .t1 {
  font-size: 16px;
  color: #666666;
  margin-top: 25px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.leader_care_list .l_content .r_block .list .item .text1 .more {
  width: 120px;
  height: 40px;
  border: 1px solid #74b8e5;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: #74b8e5;
  margin-top: 30px;
  border-radius: 5px;
}

@media (min-width: 577px) and (max-width: 1210px) {
  .leader_care_list .l_content .r_block .list .item .text1 .t1 {
    margin-top: 15px;
  }
  .leader_care_list .l_content .r_block .list .item .text1 h3 span {
    position: relative;
    right: 0;
  }
  .leader_care_list .l_content .r_block .list .item .text1 .more {
    margin-top: 10px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .leader_care_list .l_content .r_block .list .item .text1 .t1 {
    margin-top: 15px;
    line-height: 25px;
  }
  .leader_care_list .l_content .r_block .list .item .text1 .more {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .leader_care_list .l_content .r_block .list .item {
    border: 1px solid #cdcdcd;
    padding: 5px;
  }
  .leader_care_list .l_content .r_block .list .item .pic {
    width: 150px;
    height: 100px;
  }
  .leader_care_list .l_content .r_block .list .item .text1 {
    width: calc(100% - 150px);
    margin-left: 10px;
  }
  .leader_care_list .l_content .r_block .list .item .text1 .t1 {
    display: none;
  }
  .leader_care_list .l_content .r_block .list .item .text1 h3 {
    font-size: 16px;
    line-height: 25px;
  }
  .leader_care_list .l_content .r_block .list .item .text1 h3 span {
    position: relative;
    right: 0;
    margin-top: 10px;
    display: block;
  }
  .leader_care_list .l_content .r_block .list .item .text1 .more {
    display: none;
  }
}

.leader_care_list .l_content .r_block h2 {
  font-size: 20px;
  text-align: center;
  color: #333333;
  line-height: 30px;
  font-weight: 600;
  position: relative;
  margin-top: 20px;
}

.leader_care_list .l_content .r_block h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/iconaa.jpg) no-repeat center top;
}

.leader_care_list .l_content .r_block h2 span {
  color: #49ada5;
}

.leader_care_list .l_content .r_block .text {
  margin-top: 20px;
  line-height: 30px;
  color: #333333;
  font-size: 16px;
}

.leader_care_list .l_content .r_block .content {
  margin-top: 20px;
}

.leader_care_list .l_content .r_block .content .item a {
  display: block;
  margin-bottom: 20px;
}

.leader_care_list .l_content .r_block .content .item a .pic {
  padding-bottom: 80%;
  position: relative;
}

.leader_care_list .l_content .r_block .content .item a .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader_care_list .l_content .r_block .content .item a .detail {
  line-height: 40px;
  text-align: center;
  color: #333333;
  font-size: 16px;
  border: solid #cdcdcd;
  border-width: 0 1px 1px 1px;
}

@media (max-width: 576px) {
  .leader_care_list {
    padding: 0;
  }
}

/*联系我们 - 列表页 */
.contact_list .map {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact_list .map .detail {
  background-color: #f1f1f1;
  width: 50%;
  padding: 40px;
}

.contact_list .map .detail .t1 {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}

.contact_list .map .detail .t2 {
  font-size: 26px;
  color: #e20d0d;
  font-weight: 500;
  margin: 20px 0;
  letter-spacing: 1px;
}

.contact_list .map .detail .btn {
  margin-top: 20px;
}

.contact_list .map .detail .btn .link1,
.contact_list .map .detail .btn .link2 {
  float: left;
  width: 110px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  background-color: #9bbc39;
  border-radius: 6px;
  display: block;
  color: #fff;
  transition: all 0.2s;
}

.contact_list .map .detail .btn .link1:hover,
.contact_list .map .detail .btn .link2:hover {
  background-color: #e20d0d;
}

.contact_list .map .detail .btn .link2 {
  margin-left: 30px;
  background-color: #f9a206;
}

.contact_list .layout {
  width: 100%;
}

.contact_list .layout .subway {
  margin-bottom: 20px;
  position: relative;
}

.contact_list .layout .subway h4 {
  position: relative;
}

.contact_list .layout .subway h4::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #74b8e5;
}

.contact_list .layout .subway h4 span {
  background: #74b8e5;
  height: 46px;
  font: 24px/46px "微软雅黑";
  color: #fff;
  display: inline-block;
  padding: 0 20px;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.contact_list .layout .subway h4 em a {
  position: absolute;
  right: 0;
  bottom: 10px;
  font: 16px/24px "微软雅黑";
  color: #e20d0d;
}

.contact_list .layout .subway .s_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact_list .layout .subway .s_wrap .way_model {
  width: 200px;
  height: 200px;
}

.contact_list .layout .subway .s_wrap .way1 {
  background: url(../images/route.png) 0 0;
  background-size: cover;
}

.contact_list .layout .subway .s_wrap .way2 {
  background: url(../images/route.png) 0 -200px;
}

.contact_list .layout .subway .s_wrap .detail {
  margin-top: 30px;
  font-size: 16px;
  color: #333333;
  width: calc(100% - 300px);
  line-height: 30px;
}

.contact_list .layout .subway .s_wrap .detail p {
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 992px) {
  .contact_list .map .detail {
    padding: 20px;
  }
  .contact_list .map .detail .t2 {
    font-size: 22px;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .contact_list .map .detail {
    padding: 15px 10px;
    width: 100%;
    padding-bottom: 15px;
  }
  .contact_list .map .detail .t1 {
    font-size: 14px;
    line-height: 25px;
  }
  .contact_list .map .detail .t2 {
    font-size: 16px;
    letter-spacing: 0;
    margin: 5px 0;
  }
  .contact_list .map .detail .btn {
    margin-top: 10px;
  }
  .contact_list .map .detail .btn .link1,
  .contact_list .map .detail .btn .link2 {
    width: 100px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
  }
  .contact_list .layout .subway {
    margin-bottom: 10px;
  }
  .contact_list .layout .subway h4 span {
    font-size: 16px;
  }
  .contact_list .layout .subway h4 em a {
    font-size: 16px;
    right: 5px;
  }
  .contact_list .layout .subway .way_model {
    display: none;
  }
  .contact_list .layout .subway .s_wrap .detail {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 0;
  }
}

#dituContent {
  width: 50%;
  height: auto;
}

@media (max-width: 767px) {
  #dituContent {
    width: 100%;
    height: 200px;
  }
}

/*面包屑 - 公共*/
.crumbs {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
}

.crumbs .current {
  background: url(../images/icon-home.png) no-repeat left;
  background-size: 20px;
  padding-left: 30px;
  color: #999999;
}

.crumbs .current a {
  color: #999999;
  margin: 0px 5px;
}

/*侧边栏 - 公共*/
.sidebar_all .contact_bar {
  width: 100%;
  border: 1px solid #d6d7dc;
  background-color: #f7f7f7;
  margin-top: 10px;
  padding: 15px 10px;
}

.sidebar_all .contact_bar .tel_num {
  padding-left: 40px;
  background: url(../images/tel_icon.png) no-repeat left;
  background-size: 25px;
  margin-left: 15px;
}

.sidebar_all .contact_bar .tel_num .t1 {
  font-size: 18px;
  font-weight: 500;
  color: #49ada5;
}

.sidebar_all .contact_bar .tel_num .tel {
  font-size: 18px;
  color: #333333;
}

@media (min-width: 768px) and (max-width: 992px) {
  .sidebar_all .contact_bar .tel_num {
    margin-left: 10px;
    padding-left: 22px;
    background-size: 20px;
  }
  .sidebar_all .contact_bar .tel_num .t1 {
    font-size: 16px;
  }
  .sidebar_all .contact_bar .tel_num .tel {
    font-size: 16px;
  }
}

.sidebar_all .contact_bar .ewm {
  display: -webkit-box;
  margin: 0 auto;
  max-width: 170px;
  width: 90%;
  display: flex;
  margin-top: 10px;
  justify-content: center;
}

.sidebar_all .contact_bar .ewm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .sidebar_all .contact_bar {
    display: none;
  }
}

.sidebar_all .accordion {
  width: 100%;
  border: solid 1px #ccc;
  background-color: #f7f7f7;
}

.sidebar_all .accordion li .link {
  display: block;
  padding: 15px 15px 15px 15px;
  color: #4d4d4d;
  font-size: 16px;
  /* font-weight: bold; */
  border-bottom: 1px dotted #d6d7dc;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-align: center;
}

.sidebar_all .accordion li .link:hover {
  color: #49ada5;
}

@media (max-width: 767px) {
  .sidebar_all .accordion {
    display: flex;
    flex-wrap: wrap;
  }
  .sidebar_all .accordion li {
    display: block;
    width: 25%;
  }
  .sidebar_all .accordion li .link {
    font-size: 14px;
    padding: 15px 0 15px 0;
  }
}

.page_row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

@media (max-width: 768px) {
  .lead-prev {
    display: none;
  }
  .lead-next {
    display: none;
  }
}

.n_pbtn {
  display: block;
  overflow: hidden;
  float: left;
  margin-bottom: 10px;
}

.n_pbtn a {
  text-align: justify;
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 30px;
  color: #333333;
  text-align: center;
}

.n_pbtn a:hover {
  color: #74b8e5;
}

.clearfix:after {
  content: "\00A0";
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}
