@charset "UTF-8";
.jianbian {
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}

.container {
  margin: auto;
  width: 84%;
}

.sc_img {
  overflow: hidden;
}
.sc_img img {
  transition: 8s ease;
}
.sc_img:hover img {
  transform: scale(1.2);
}

.pc_header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: 0.6s;
}
.pc_header .main {
  color: white;
  height: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc_header .main > a {
  display: flex;
  align-items: center;
}
.pc_header .main > a img {
  width: 0.62rem;
  height: 0.62rem;
}
.pc_header .main > a img:nth-last-of-type(1) {
  display: none;
}
.pc_header .main > a .logo_font {
  font-size: 0.32rem;
  margin-left: 0.2rem;
}
.pc_header .main .box {
  display: flex;
  align-items: center;
}
.pc_header .main .box ul {
  display: flex;
}
.pc_header .main .box ul > li::after {
  transition: 0.4s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  height: 2px;
  background-color: #0074bf;
}
.pc_header .main .box ul li {
  font-size: 0.2rem;
  padding: 0 0.35rem;
  height: 1rem;
  line-height: 1rem;
  position: relative;
}
.pc_header .main .box ul li:hover .options {
  transition: 0.2s;
  opacity: 1;
}
.pc_header .main .box ul li .options {
  z-index: 999;
  opacity: 0;
  color: #666;
  background-color: white;
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.55rem;
}
.pc_header .main .box ul li .options a {
  display: block;
  width: 100%;
  line-height: inherit;
}
.pc_header .main .box ul li .options a:hover {
  color: white;
  background-color: #0074bf;
}
.pc_header .main .box ul li .options .on {
  color: white;
  background-color: #0074bf;
  border: none;
}
.pc_header .main .box ul li .options::before {
  z-index: 40;
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
  border-top: 0.1rem solid transparent;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
  border-bottom: 0.1rem solid #0074bf;
}
.pc_header .main .box ul li .on {
  border-bottom: 2px solid white;
}
.pc_header .main .box .yy {
  margin-left: 0.4rem;
  display: flex;
}
.pc_header .main .box .yy a:nth-of-type(1) {
  margin-right: 0.15rem;
}
.pc_header .main .box .yy .item {
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
}
.pc_header .main .box .yy .item img {
  height: 0.18rem;
  width: 0.29rem;
  margin-right: 0.1rem;
}

.m_header {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 99;
}

.m_hd_con {
  width: 94%;
  margin: 0 auto;
  position: relative;
}

.m_logo {
  float: left;
  padding: 8px 0;
}
.m_logo span {
  font-size: 0.26rem;
  color: #666;
  margin-left: 0.3rem;
}

.m_logo img {
  height: 38px;
}

#openBtn {
  display: block;
  position: fixed;
  top: 20px;
  right: 4%;
  z-index: 100;
  cursor: pointer;
}

#openBtn .lcbody {
  width: 26px;
  height: 15px;
  position: relative;
}

#openBtn .lcbody .lcitem {
  width: 100%;
  height: 1px;
  position: absolute;
  transition: transform 0.36s ease;
}

#openBtn .lcbody .lcitem div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: auto;
  right: 0;
  background: #999;
}

#openBtn .lcbody .top {
  top: 0;
}

#openBtn .lcbody .center {
  display: block;
  top: 49%;
}

#openBtn .lcbody .bottom {
  top: 100%;
}

#openBtn .lcbody:hover .lcitem.top .rect {
  animation: move 0.4s ease-in-out 1;
}

#openBtn .lcbody:hover .lcitem.center .rect {
  animation: move 0.4s ease-in-out 0.1s 1;
}

#openBtn .lcbody:hover .lcitem.bottom .rect {
  animation: move 0.4s ease-in-out 0.2s 1;
}

#openBtn.on .lcitem.top {
  transform: rotateZ(45deg);
  top: 49%;
}

#openBtn.on .lcitem.center {
  opacity: 0;
}

#openBtn.on .lcitem.bottom {
  transform: rotateZ(-45deg);
  top: 49%;
}

@keyframes move {
  0% {
    right: 0;
  }
  40% {
    right: 0;
    width: 0;
  }
  60% {
    right: auto;
    width: 0%;
  }
  100% {
    right: auto;
    width: 100%;
  }
}
@-webkit-keyframes move {
  0% {
    right: 0;
  }
  40% {
    right: 0;
    width: 0;
  }
  60% {
    right: auto;
    width: 0%;
  }
  100% {
    right: auto;
    width: 100%;
  }
}
.navMini {
  position: fixed;
  width: 40%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(120%);
  transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navMini.unfold {
  transform: translateX(0);
}

.nav_wrap {
  padding-top: 54px;
}

.m_nav ul li {
  text-align: center;
  line-height: 50px;
  border-bottom: 1px solid #f0f0f0;
}

.m_nav ul li a {
  display: block;
  width: 100%;
  color: #666;
}

.m_nav_bottom {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

.m_nav_bottom p {
  line-height: 28px;
}

.m_nav_bottom p:nth-of-type(1) {
  margin-bottom: 0.1rem;
}
.m_nav_bottom p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m_nav_bottom p a img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}

/*.pc_header:hover {*/
/*  background-color: white;*/
/*}*/
/*.pc_header:hover .main {*/
/*  color: #333;*/
/*}*/
.pc_header {
  background-color: white;
}
.pc_header .main {
  color: #333;
}
/*.pc_header:hover .main > a img {*/
/*  width: 0.62rem;*/
/*  height: 0.62rem;*/
/*}*/
.pc_header .main > a img {
  width: 0.62rem;
  height: 0.62rem;
}
/*.pc_header:hover .main > a img:nth-of-type(1) {*/
/*  display: none;*/
/*}*/
/*.pc_header:hover .main > a img:nth-last-of-type(1) {*/
/*  display: block;*/
/*}*/
.pc_header .main > a img:nth-of-type(1) {
  display: none;
}
.pc_header .main > a img:nth-last-of-type(1) {
  display: block;
}
/*.pc_header:hover .main > a .logo_font {*/
/*  color: #0074bf;*/
/*}*/
/*.pc_header:hover .main .box ul .on {*/
/*  color: #0074bf;*/
/*}*/
.pc_header .main > a .logo_font {
  color: #0074bf;
}
.pc_header .main .box ul .on {
  color: #0074bf;
}
/*.pc_header:hover .main .box ul .on::after {*/
/*  width: 100%;*/
/*}*/
.pc_header .main .box ul .on::after {
  width: 100%;
}
.pc_header:hover .main .box ul li:hover {
  transition: 0.1s;
  color: #0074bf;
}
.pc_header:hover .main .box ul li:hover::after {
  width: 100%;
}
.pc_header:hover .main .yy a:nth-of-type(1) {
  color: red;
}

.pc_header_pull {
  background-color: white;
}
.pc_header_pull .main {
  color: #333;
}
.pc_header_pull .main > a img {
  width: 0.62rem;
  height: 0.62rem;
}
.pc_header_pull .main > a img:nth-of-type(1) {
  display: none;
}
.pc_header_pull .main > a img:nth-last-of-type(1) {
  display: block;
}
.pc_header_pull .main > a .logo_font {
  color: #0074bf;
}
.pc_header_pull .main .box ul .on {
  color: #0074bf;
}
.pc_header_pull .main .box ul .on::after {
  width: 100%;
}
.pc_header_pull .main .box ul li:hover {
  transition: 0.1s;
  color: #0074bf;
}
.pc_header_pull .main .yy a:nth-of-type(1) {
  color: red;
}

.banner {
  /*height: 9.68rem;*/
  /*background-color: pink;*/
}
.banner .pc_swiper {
  height: 100%;
}
.banner .pc_swiper .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide a {
  height: 100%;
  width: 100%;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide a .tips {
  position: absolute;
  z-index: 80;
  color: white;
  top: 30vh;
  left: 8%;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide a .tips h1 {
  font-size: 0.66rem;
  margin-bottom: 1vh;
}
.banner .pc_swiper .swiper-wrapper .swiper-slide a .tips h6 {
  margin-top: 3vh;
  font-size: 0.3rem;
}
.banner .pc_swiper .swiper-pagination {
  color: white;
  text-align: right;
  padding-right: 8%;
  padding-bottom: 3%;
  font-size: 0.3rem;
}
.banner .pc_swiper .swiper-pagination .swiper-pagination-current {
  font-size: 0.5rem;
  font-weight: bold;
  pointer-events: none;
}
.banner .pc_swiper .swiper-pagination .swiper-pagination-current::before {
  pointer-events: auto;
  content: "";
  display: inline-block;
  height: 0.4rem;
  width: 0.4rem;
  margin-right: 0.3rem;
  cursor: pointer;
  background: url(../images/button1.png) center/contain;
}
.banner .pc_swiper .swiper-pagination .swiper-pagination-total {
  pointer-events: none;
  font-size: 0.3rem;
}
.banner .pc_swiper .swiper-pagination .swiper-pagination-total::after {
  pointer-events: auto;
  content: "";
  display: inline-block;
  height: 0.4rem;
  width: 0.4rem;
  margin-left: 0.3rem;
  cursor: pointer;
  background: url(../images/button2.png) center/contain;
}

.wrap .section1 .container {
  height: 3.33rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.wrap .section1 .container .item {
  text-align: center;
      display: flex;
    flex-direction: column;
    align-items: center;
}
.wrap .section1 .container .item img {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 0.2rem;
  
}
.wrap .section1 .container .item span {
  font-size: 0.26rem;
  font-weight: bolder;
}
.wrap .section1 .container .item:hover img {
  transform: rotate(360deg);
  transition: 0.8s ease-in-out;
}
.wrap .section2 {
  padding-bottom: 1.2rem;
  background-color: #e3f7e9;
}
.wrap .section2 .en_title {
  padding-top: 0.9rem;
}
.wrap .section2 .en_title span {
  font-family: Trebuchet MS;
  font-weight: bolder;
  font-size: 0.5rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section2 .title > div > div {
  font-size: 0.24rem;
  cursor: pointer;
  margin-right: 0.7rem;
}
.wrap .section2 .title > div > div:nth-last-of-type(1) {
  margin-right: 0.05rem;
}
.wrap .section2 .title > div .on {
  color: #0074bf;
}
.wrap .section2 .title > div:nth-of-type(1) {
  font-size: 0.4rem;
}
.wrap .section2 .change_swiper {
  margin-top: 0.85rem;
}
.wrap .section3 {
  padding-bottom: 1.1rem;
  background: #f7f7f7 url("../images/bg.png") no-repeat bottom/contain;
}
.wrap .section3 .en_title {
  padding-top: 0.9rem;
}
.wrap .section3 .en_title span {
  font-family: Trebuchet MS;
  font-weight: bolder;
  font-size: 0.5rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section3 .title > div > div {
  font-size: 0.24rem;
  cursor: pointer;
  margin-right: 0.7rem;
}
.wrap .section3 .title > div > div:nth-last-of-type(1) {
  margin-right: 0.05rem;
}
.wrap .section3 .title > div .on {
  color: #0074bf;
}
.wrap .section3 .title > div:nth-of-type(1) {
  font-size: 0.4rem;
}
.wrap .section3 .items {
  margin-top: 0.84rem;
  display: flex;
  justify-content: space-between;
}
.wrap .section3 .items a {
  width: 31%;
}
.wrap .section3 .items a .item {
  transition: all 0.2s ease-in-out;
  background-color: white;
}
.wrap .section3 .items a .item .hover_img {
  width: 100%;
  height: 3rem;
}
.wrap .section3 .items a .item .item_tit {
  width: 100%;
  font-weight: bolder;
  font-size: 0.2rem;
  padding: 0.26rem 0.3rem;
}
.wrap .section3 .items a .item .item_time {
  padding: 0.1rem 0.3rem 0.24rem;
  color: #999;
  font-size: 0.16rem;
}
.wrap .section3 .items a .item:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.wrap .section3 .more {
  margin: 0.6rem 0 0;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0074bf;
  border-bottom: 1px solid #0074bf;
  border-top: 1px solid #0074bf;
  width: 2.06rem;
}
.wrap .section2 .more {
  margin: 0.6rem 0 0;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0074bf;
  border-bottom: 1px solid #0074bf;
  border-top: 1px solid #0074bf;
  width: 2.06rem;
}
.wrap .section3 .more span {
  font-size: 0.2rem;
}
.wrap .section3 .more span:nth-last-of-type(1) {
  margin-left: 0.2rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section2 .more span {
  font-size: 0.2rem;
}
.wrap .section2 .more span:nth-last-of-type(1) {
  margin-left: 0.2rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section4 {
  min-height: 9.5rem;
  padding-top: 0.9rem;
  padding-bottom: 1.1rem;
  position: relative;
  background: url(../images/bg2.png) no-repeat right bottom/contain;
}
.wrap .section4 .more_a {
  position: absolute;
  left: 8%;
  bottom: 2.2rem;
}
.wrap .section4 .en_title span {
  font-family: Trebuchet MS;
  font-weight: bolder;
  font-size: 0.5rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section4 .title > div > div {
  font-size: 0.24rem;
  cursor: pointer;
  margin-right: 0.7rem;
}
.wrap .section4 .title > div > div:nth-last-of-type(1) {
  margin-right: 0.05rem;
}
.wrap .section4 .title > div .on {
  color: #0074bf;
}
.wrap .section4 .title > div:nth-of-type(1) {
  font-size: 0.4rem;
}
.wrap .section4 .more {
  margin: 0.6rem 0 0;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0074bf;
  border-bottom: 1px solid #0074bf;
  border-top: 1px solid #0074bf;
  width: 2.06rem;
}
.wrap .section4 .more span {
  font-size: 0.2rem;
}
.wrap .section4 .more span:nth-last-of-type(1) {
  margin-left: 0.2rem;
  background-image: linear-gradient(to right, #007e98, #53b663); /* 线性渐变背景，方向向上 */
  -webkit-background-clip: text; /* 背景被裁剪成文字的前景色 */
  -webkit-text-fill-color: transparent;
}
.wrap .section4 .container .left {
  width: 7rem;
}
.wrap .section4 .container .left .title2 {
  font-size: 0.3rem;
  font-weight: bolder;
  margin: 0.54rem 0 0.6rem;
}
.wrap .section4 .container .left p {
  color: #999;
  font-size: 0.18rem;
  line-height: 2em;
}
.wrap .section4 .container .right {
  margin-top: 0.3rem;
}
.wrap .section4 .container .right .item {
  margin-right: 1rem;
}
.wrap .section4 .container .right .item div {
  font-size: 0.18rem;
}
.wrap .section4 .container .right .item div .jianbian {
  font-size: 0.48rem;
  font-family: "楷体";
  font-weight: bolder;
  margin-right: 0.1rem;
}
.wrap .section4 .container .right .button {
  display: flex;
  justify-content: center;
  margin-top: 1.74rem;
}
.wrap .section4 .container .right .button .buble {
  width: 2.8rem;
  height: 2.8rem;
  background: url(../images/buble.png) no-repeat center/contain;
}
.wrap .section4 .container .right .button .buble .buble_in {
  color: white;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  background-image: linear-gradient(to top, #08879b, #53b86b); /* 线性渐变背景，方向向上 */
}
.wrap .section4 .container .right .button .buble .buble_in h5 {
  font-size: 0.26rem;
  font-weight: bolder;
}
.wrap .section4 .container .right .button .buble .buble_in h6 {
  font-size: 0.2rem;
  font-weight: bolder;
}
.wrap .section4 .container .right .button .buble .buble_in img {
  margin-top: 0.14rem;
  width: 0.16rem;
  height: 0.16rem;
}

.footer {
  padding-top: 0.9rem;
  color: white;
  background-image: linear-gradient(to top, #007e98, #53b663); /* 线性渐变背景，方向向上 */
}
.footer .bot {
  border-top: 1px solid #3ea2ac;
  padding: 0.4rem 0;
}
.footer .bot .container {
  font-size: 0.16rem;
}
.footer .top .left .uls {
  display: flex;
}
.footer .top .left .uls ul {
  text-align: center;
  margin-right: 0.9rem;
}
.footer .top .left .uls ul a {
  display: block;
  font-size: 0.16rem;
  color: #e3f7e9;
  line-height: 0.4rem;
  transition: 0.2s;
}
.footer .top .left .uls ul a:hover {
  color: #0074bf;
}
.footer .top .left .uls ul:nth-last-of-type(1) {
  margin-right: 0;
}
.footer .top .left .uls ul li {
  font-weight: bolder;
  font-size: 0.2rem;
  margin-bottom: 0.2rem;
}
.footer .top .left h1 {
  font-size: 0.24rem;
  margin: 0.5rem 0 0.2rem;
}
.footer .top .left .search {
  margin-bottom: 0.7rem;
  position: relative;
  width: 4.52rem;
  height: 0.52rem;
}
.footer .top .left .search img {
  position: absolute;
  right: 0.2rem;
  bottom: 0;
  margin: auto;
  top: 0;
  width: 0.22rem;
  height: 0.22rem;
  cursor: pointer;
}
.footer .top .left .search input {
  border-radius: 0.26rem;
  width: 100%;
  height: 100%;
  font-size: 0.16rem;
  padding: 0 0.5rem 0 0.4rem;
  color: white;
  background-color: rgba(238, 238, 238, 0.4);
}
.footer .top .left .search input::placeholder {
  color: #e3f7e9;
  font-size: 0.16rem;
}
.footer .top .left .search input:focus {
  border: 1px solid #0074bf;
}
.footer .top .center {
  width: 6.3rem;
}
.footer .top .center .item {
  display: flex;
  margin-bottom: 0.64rem;
  align-items: center;
}
.footer .top .center .item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.footer .top .center .item .item_icon {
  height: 0.52rem;
  width: 0.52rem;
}
.footer .top .center .item .item_content {
  flex: 1;
  margin-left: 0.35rem;
}
.footer .top .center .item .item_content div {
  font-size: 0.16rem;
}
.footer .top .center .item .item_content div:nth-of-type(1) {
  font-size: 0.2rem;
  margin-bottom: 0.16rem;
}
.footer .top .right {
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 0.6rem;
  font-size: 0.16rem;
}
.footer .top .right img {
  height: 1.86rem;
  width: 1.86rem;
}

.banner2 {
  width: 100%;
  height: 5.34rem;
  background: url(../images/banner2.png) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
}
.banner2 .ban_tit {
  font-weight: bolder;
  font-size: 0.56rem;
}
.banner2 .ban_en_tit {
  font-size: 0.3rem;
}

.nav {
  height: 0.64rem;
  border-bottom: 1px solid #e9e9e9;
}
.nav .container {
  height: 100%;
}
.nav .left a {
  height: 0.64rem;
  padding: 0 0.4rem;
  transition: 0.2s;
  font-size: 0.22rem;
  line-height: 0.64rem;
  text-align: center;
}
.nav .left a:hover {
  background-color: #0074bf;
  color: white;
}
.nav .left .on {
  background-color: #0074bf;
  color: white;
}
.nav .bread {
  display: flex;
}
.nav .bread a {
  display: flex;
  align-items: center;
  color: #999;
  padding: 0 0.03rem;
}
.nav .bread a img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 16px;
  min-height: 16px;
  margin-right: 0.1rem;
}
.nav .bread a:hover {
  color: #0074bf;
}
.nav .bread .on {
  color: #0074bf;
}

p {
  text-indent: 2em;
  color: #666;
  line-height: 2em;
  font-size: 0.2rem;
}

.content_tit {
  font-size: 0.32rem;
  font-weight: bolder;
  margin-top: 0.77rem;
  margin-bottom: 0.4rem;
}

.water_swiper {
  margin: 0.6rem 0 1.2rem;
  height: 7.32rem;
  display: flex;
  justify-content: space-between;
}
.water_swiper .big {
  height: 100%;
  width: 79%;
}
.water_swiper .big img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.water_swiper .small {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.water_swiper .small .water_slider {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  filter: brightness(0.5);
}
.water_swiper .small .water_slider img {
  width: 2.89rem;
  height: 1.66rem;
}

.m_water_swiper {
  margin: 0.6rem 0 0.8rem;
  width: 100%;
  height: 6rem;
  display: none;
}
.m_water_swiper a {
  width: 100%;
  height: 100%;
}
.m_water_swiper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  margin: 1rem auto;
  display: flex;
  min-height: 10rem;
}
.timeline .lf {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.timeline .lf .item::after {
  content: "";
  background: url(../images/dangqian.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.24rem;
  height: 0.24rem;
  bottom: 0;
  margin: auto;
  transform: translateX(50%);
}
.timeline .lf .item:nth-of-type(2n) {
  pointer-events: none;
  opacity: 0 !important;
  visibility: hidden !important;
}
.timeline .line {
  width: 2px;
  background-color: #ddd;
}
.timeline .rg {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.timeline .rg .item:nth-of-type(2n-1) {
  pointer-events: none;
  opacity: 0 !important;
  visibility: hidden !important;
}
.timeline .rg .item::after {
  content: "";
  background: url(../images/dangqian.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.24rem;
  height: 0.24rem;
  bottom: 0;
  margin: auto;
  transform: translateX(-50%);
}
.timeline .rg .item {
  flex-direction: row-reverse;
  text-align: left;
}
.timeline .rg .item .q_c {
  text-align: left;
}
.timeline .tc,
.timeline .bc {
  position: absolute;
  height: 0.24rem;
  width: 0.24rem;
  border-radius: 50%;
  border: 2px solid #ddd;
  left: 50%;
}
.timeline .tc {
  transform: translateX(-50%) translateY(-100%);
  top: 0;
}
.timeline .bc {
  transform: translateX(-50%) translateY(100%);
  bottom: 0;
}
.timeline .item {
  position: relative;
  min-height: 2.75rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.timeline .item img {
  width: 3.45rem;
  height: 1.92rem;
}
.timeline .item .q_c {
  padding: 0 0.45rem;
  text-align: right;
}
.timeline .item .q_c .q_time {
  font-size: 0.56rem;
  font-weight: bold;
  color: #0074bf;
  line-height: 0.47rem;
}
.timeline .item .q_c .q_time span {
  font-size: 0.22rem;
}
.timeline .item .q_c .q_tit {
  font-size: 0.21rem;
  font-weight: bold;
  color: #0074bf;
  line-height: 0.43rem;
}
.timeline .item .q_c .q_content {
  font-size: 0.19rem;
  font-weight: 400;
  color: #666;
  line-height: 0.37rem;
}

.section5 {
  background-color: #f7f7f7;
}
.section5 .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, 4.59rem);
  padding: 0.8rem 0 0.3rem;
  justify-content: space-between;
}
.section5 .items a {
  max-width: 4.59rem;
  transition: all 0.2s ease-in-out;
  margin-bottom: 0.5rem;
  background-color: white;
}
.section5 .items a:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.section5 .items a img {
  width: 4.59rem;
  height: 3.01rem;
  object-fit: cover;
}
.section5 .items a .item_tit {
  color: #333;
  font-weight: bolder;
  font-size: 0.21rem;
  margin: 0.26rem 0 0.3rem;
  padding: 0 0.3rem;
}
.section5 .items a .item_time {
  font-size: 0.19rem;
  font-weight: 400;
  color: #999;
  margin-bottom: 0.27rem;
  padding: 0 0.3rem;
}

.l_tab {
  margin: auto;
  margin-bottom: 0.7rem;
  display: flex;
  width: 60%;
  justify-content: center;
  position: relative;
}
.l_tab .item {
  padding: 0.4rem 0 0.32rem;
  width: 33.33%;
  text-align: center;
  font-size: 0.21rem;
  color: #333;
  cursor: pointer;
}
.l_tab .sta_line {
  background: #e3e3e3;
  height: 0.05rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0.025rem;
}
.l_tab .line {
  background-color: #0074bf;
  height: 0.05rem;
  width: 33.33%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 0.025rem;
}

.l_tab_show {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l_tab_show .item {
  width: 48%;
}
.l_tab_show .item .hover_img {
  display: flex;
  justify-content: center;
  padding: 0.93rem;
  background-color: #f9f9f9;
  width: 100%;
  height: auto;
}
.l_tab_show .item .hover_img img {
  max-height: 2.83rem;
  width: auto;
}
.l_tab_show .item .l_tab_tit {
  color: #333;
  font-weight: bolder;
  font-size: 0.27rem;
  margin: 0.42rem 0 0.24rem;
}
.l_tab_show .item .l_tab_content {
  margin-bottom: 0.6rem;
  color: #666666;
  font-size: 0.2rem;
}

.product_item {
  margin: 0.8rem 0;
}
.product_item .hover_img {
  width: 7.82rem;
  height: 4.68rem;
  background-color: #f9f9f9;
  padding: 0.93rem;
}
.product_item .hover_img img {
  object-fit: contain;
}
.product_item .rg {
  margin-left: 1rem;
  flex: 1;
}
.product_item .rg .product_item_tit {
  font-weight: bolder;
  font-size: 0.32rem;
  color: #333;
  padding: 0.4rem 0 0.3rem;
  border-bottom: 1px solid #e5e5e5;
}
.product_item .rg .product_item_p {
  color: #666;
  font-size: 0.21rem;
  line-height: 0.43rem;
  margin: 0.2rem 0;
}
.product_item .rg .product_item_btn {
  width: 2.59rem;
  height: 0.58rem;
  background: linear-gradient(-90deg, #4eb56e, #0074bf);
  text-align: center;
  line-height: 0.58rem;
  color: #fff;
  font-size: 0.21rem;
  margin-top: 0.3rem;
}

.water_h1 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 0.3rem;
}

.to_from {
  margin-top: 1.2rem;
  margin-bottom: 1.05rem;
  height: 0.64rem;
  font-size: 0.22rem;
  line-height: 0.64rem;
  color: #666;
}
.to_from .back {
  background-color: #f8f8f8;
  align-items: center;
  justify-content: center;
  width: 14%;
}
.to_from .back span {
  font-size: 0.22rem;
}
.to_from .back img {
  height: 0.21rem;
  width: auto;
  margin-right: 0.1rem;
}
.to_from .from,
.to_from .to {
  background-color: #f8f8f8;
  width: 41%;
}
.to_from .from {
  padding: 0 0.3rem;
}
.to_from .to {
  padding: 0 0.3rem;
  text-align: right;
}

.water_h2 {
  font-size: 0.4rem;
  color: #333;
  font-weight: bolder;
  margin-bottom: 0.5rem;
}

.change_change_swiper {
  width: 100%;
  height: 100%;
}
.change_change_swiper .swiper-slide {
  width: 5.8rem;
  width: 100%;
}
.change_change_swiper .swiper-slide:nth-of-type(3n) .hover_img {
  background-color: #007e98;
}
.change_change_swiper .swiper-slide:nth-of-type(3n-1) .hover_img {
  background-color: #00b2b0;
}
.change_change_swiper .swiper-slide:nth-of-type(3n-2) .hover_img {
  background-color: #53b663;
}
.change_change_swiper .swiper-slide a {
  width: 100%;
}
.change_change_swiper .swiper-slide a .hover_img {
  padding: 0.3rem;
  height: 3.5rem;
}
.change_change_swiper .swiper-slide a .hover_img img {
  object-fit: contain;
}
.change_change_swiper .swiper-slide a .sw_tit {
  margin-top: 0.55rem;
  margin-bottom: 0.2rem;
  font-size: 0.26rem;
  font-weight: bold;
  color: black;
}
.change_change_swiper .swiper-slide a .sw_content {
  margin-bottom: 0.7rem;
  width: 100%;
  font-size: 0.18rem;
  color: #999;
  width: 80%;
}
.change_change_swiper .swiper-scrollbar {
  flex: 1;
  position: static;
}
.change_change_swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: linear-gradient(to right, #007e98, #53b663);
}
.change_change_swiper .next {
  padding-left: 0.84rem;
  display: flex;
  align-items: center;
  padding-right: 0.3rem;
  color: #007e98;
}
.change_change_swiper .next span {
  color: #ccc;
  font-size: 0.24rem;
}
.change_change_swiper .next div {
  font-size: 0.24rem;
  cursor: pointer;
  font-family: "楷体";
}

.nomarl_change_change_swiper {
  margin-bottom: 1.2rem;
}
.nomarl_change_change_swiper .swiper-slide .hover_img {
  background-color: #f9f9f9 !important;
}

.h1_mg {
  margin: 0.7rem 0 0.5rem;
}

.detail_time {
  width: 100%;
  height: 0.58rem;
  background: #f8f8f8;
  border: 1px solid #ebebeb;
  font-size: 0.2rem;
  font-weight: 400;
  color: #999999;
  display: flex;
	padding-right:0.2rem;
  align-items: center;
  margin-bottom: 0.4rem;
	justify-content: flex-end;
}

.detail_content > img {
  width: 90%;
  height: auto;
  margin: 0.35rem auto;
}

.section6 {
  background-color: #f9f9f9;
  padding: 0.82rem 0;
}

.work_item {
  background: white;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.2rem;
  transition: 0.2s;
}
.work_item:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.work_item .work_content {
  overflow: hidden;
  transition: 0.2s;
  max-height: 0px;
}
.work_item .work_content .apply {
  width: 2.4rem;
  height: 0.64rem;
  background: #0074BF;
  color: white;
  font-size: 0.2rem;
  margin: 0.5rem 0 0.7rem;
}
.work_item .work_content .apply img {
  height: 0.34rem;
  margin-right: 0.14rem;
  width: 0.17rem;
}
.work_item .work_content .c_tit {
  color: #333;
  font-size: 0.2rem;
  line-height: 0.6rem;
}
.work_item .work_content .c_p {
  line-height: 0.4rem;
  font-size: 0.18rem;
  color: #666;
}
.work_item .work_if {
  flex-wrap: wrap;
  margin: 0.3rem 0;
}
.work_item .work_if .ite {
  margin-right: 0.5rem;
  line-height: 0.5rem;
  font-size: 0.2rem;
  color: #666;
}
.work_item .work_if .ite:nth-last-child(1) {
  margin-right: 0;
}
.work_item .work_name {
  height: 0.85rem;
  border-bottom: 1px solid #ddd;
}
.work_item .work_name > img {
  height: 0.12rem;
  width: 0.2rem;
  transform: rotate(180deg);
  transition: 0.2;
  cursor: pointer;
}
.work_item .work_name .name {
  font-size: 0.32rem;
  font-weight: bold;
  color: #333333;
}
.work_item .work_name .name > img {
  width: 0.28rem;
  height: 0.3rem;
  margin-right: 0.2rem;
}

.banner3 {
  width: 100%;
  height: 5.34rem;
  color: white;
  background: linear-gradient(90deg, #02839F, #50B66D);
  position: relative;
}

.banner3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(0deg, #fff, transparent);
}

.ma-f {
  position: relative;
  z-index: 999;
  margin: -3.6rem auto 0rem;
}

.ap_back {
  color: white;
  font-size: 0.2rem;
}
.ap_back img {
  width: 0.22rem;
  line-height-step: 0.19rem;
  margin-right: 0.1rem;
}

.apply_form {
  background-color: white;
  min-height: 3rem;
  margin: 0.5rem 0 0 0;
}

.apply_form .item {
  margin-bottom: 0.25rem;
}

.water_h3 {
  font-size: 0.48rem;
  font-weight: 400;
  text-align: center;
  color: #0E0E0E;
  padding: 0.5rem 0;
}

.contaner_apply {
  min-height: 0.3rem;
  width: 90%;
  margin: 0 auto;
}

.blue_tit {
  font-size: 0.32rem;
  font-weight: 400;
  background-color: #0074BF;
  color: #FFFFFF;
  padding: 0.2rem;
}

.hide {
  display: none;
}

/* 模拟下拉框 */
.select-box {
  position: relative;
}

.select-box .select-input {
  line-height: 0.2rem;
  border: 0.01rem solid #d6d6d6;
  cursor: pointer;
  width: 3.36rem;
  height: 0.43rem;
  border: 0.01rem solid transparent;
  outline: none;
  -moz-border-radius: 0.3rem;
  text-indent: 0.3rem;
  font-size: 0.16rem;
  font-weight: 400;
  /* color: rgba(187, 187, 187, 1); */
  color: #666;
  line-height: 0.22rem;
  margin: 0;
  background: white url(../images/arrow-down.png) no-repeat center right 0.2rem;
  background-size: 0.2rem 0.2rem;
  cursor: pointer;
  box-sizing: border-box;
  border: 0.01rem solid #DCDCDC;
}

/** input placeholder颜色改变 **/
.select-box .select-input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgb(187, 187, 187);
}

.select-box .select-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgb(187, 187, 187);
}

.select-box .select-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgb(187, 187, 187);
}

.select-box .select-input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgb(187, 187, 187);
}

.select-box .select-input.isActive {
  background-color: #ffffff;
  border: 0.01rem solid rgb(204, 204, 204);
  background-image: url(../images/arrow-up.png);
}

.select-box .options-box {
  z-index: 99;
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 2.25rem;
  background: rgb(255, 255, 255);
  box-shadow: 0rem 0.02rem 0.08rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 0.05rem;
}

.select-box .options-box li {
  width: 100%;
  height: 0.45rem;
  text-indent: 0.3rem;
  cursor: pointer;
  font-size: 0.16rem;
  font-weight: 400;
  color: rgb(34, 34, 34);
  line-height: 0.45rem;
  background: rgb(255, 255, 255);
}

.select-box .options-box li.active {
  background-color: rgb(247, 247, 247);
  color: #0074bf;
}

.wrap_form {
  padding: 0.3rem 0.3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 4.4rem);
  justify-content: space-between;
}

.select_name {
  font-size: 0.2rem;
  color: #979797;
  margin-right: 0.1rem;
  margin-right: 0.2rem;
  text-align: justify;
  text-align-last: justify;
  min-width: 0.9rem;
}

.wrap_form .item {
  display: flex;
  align-items: center;
}

.select-box1 .water_input {
  padding: 0 0.3rem;
  line-height: 0.2rem;
  border: 0.01rem solid #d6d6d6;
  cursor: pointer;
  width: 3.36rem;
  height: 0.43rem;
  border: 0.01rem solid transparent;
  outline: none;
  -moz-border-radius: 0.3rem;
  font-size: 0.16rem;
  font-weight: 400;
  /* color: rgba(187, 187, 187, 1); */
  color: #666;
  line-height: 0.22rem;
  margin: 0;
  background-size: 0.2rem 0.2rem;
  cursor: pointer;
  box-sizing: border-box;
  border: 0.01rem solid #DCDCDC;
}

.select-box1 .water_input::placeholder {
  color: rgb(187, 187, 187);
}

.select-box1 .water_input:active {
  background-color: #ffffff;
  border: 0.01rem solid rgb(204, 204, 204);
}

.select-box1 {
  position: relative;
}

.water_textarea {
  box-sizing: border-box;
  padding: .2rem;
  width: 100%;
  min-height: 2.42rem;
  border: 1px solid #DCDCDC;
  flex: 1;
}

.water_area {
  padding: 0 0.3rem;
}

.apply_sub {
  width: 2.29rem;
  height: 0.64rem;
  background: #0074BF;
  font-size: 0.21rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0.35rem 0 1.2rem 1.4rem;
}

.section7 {
  margin: 0.6rem auto;
}
.section7 .item {
  margin: 0.4rem 0;
}
.section7 .item .se_tit {
  display: flex;
  align-items: center;
  font-size: 0.24rem;
  font-weight: bolder;
  color: #333;
}
.section7 .item .se_tit img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}
.section7 .item .se_p {
  margin-left: 2em;
  display: flex;
  align-items: center;
  line-height: 2em;
  font-size: 0.2rem;
  color: #666;
}
.section7 .item .se_p img {
  width: 0.1rem;
  height: 0.1rem;
  margin-right: 0.1rem;
}
.section7 p img{
    display: inline-block;
}
.w_map {
  width: 100%;
  background-color: pink;
  height: 5.62rem;
}

.w_white {
  position: relative;
  width: 100%;
  min-height: 2.8rem;
}

.w_content {
  left: 0;
  right: 0;
  top: -1.8rem;
  display: flex;
  justify-content: space-between;
  position: absolute;
}
.w_content .item {
  padding: 0.2rem;
  cursor: pointer;
  border: 1px solid #EEEEEE;
  height: 3.62rem;
  width: 5rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.2s;
}
.w_content .item:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}

.w_tit {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333333;
  line-height: 0.9rem;
}

.w_num {
  text-align: center;
  font-size: 0.37rem;
  font-weight: bold;
  color: #333333;
  font-family: Verdana;
}

.w_p {
  font-size: 0.2rem;
  font-weight: 400;
  color: #666666;
  line-height: 0.32rem;
  text-align: center;
}

.w_wrap {
  background: #f7f7f7;
  min-height: 3rem;
}

.w_form_tit {
  font-size: 0.32rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  padding: 0.8rem 0 0.2rem;
}

.w_form_tips {
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.w_wrap .item {
  display: inline-block;
  width: 49%;
}
.w_wrap .item .select_name {
  text-align: left;
  text-align-last: left;
  color: #333;
  line-height: 0.5rem;
}
.w_wrap .item .select-box1 .water_input {
  width: 100%;
}
.w_wrap .item .select-box .select-input {
  width: 100%;
}

sup {
  color: #D40012 !important;
}

.w_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.w_wrap .select_name {
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  text-align-last: left;
  text-align: left;
  line-height: 0.6rem;
}
.w_wrap .water_area {
  padding: 0;
}
.w_wrap .water_textarea {
  width: 100%;
}

.w_sub {
  margin-left: 0;
}

.w_re {
  background: #EDEDED;
  color: #666;
  margin-left: 0.2rem;
}

.res_t span {
  font-size: 0.5rem;
  color: white;
}

.s_res {
  background-color: transparent !important;
}
/*隐藏地图右下角*/
#map .BMap_ieundefined{
    display: none;
}
#map .anchorBL a{
    display: none;
}
#map .BMap_stdMpType0{
    display: none;
}
#map .BMap_noprint{
    display: none;
}
#map .BMap_scaleHBar{
    display: none;
}
#map .BMap_scaleTxt{
    display: none;
}
/*分页*/
.fenye{
    display: flex;
    align-items: center;
    justify-content: center;
}
.fenye .wejoy_page{
    display: flex !important;
}
.fenye .wejoy_page a{
    margin-right: .18rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 48%;
    border: none !important;
    background-color: #eee;
    width: .4rem;
    height: .4rem;
}
.fenye .wejoy_page .active{
    color: white;
    background-color: #0074bf;
}
.footer .top .left .uls ul li{
    max-width: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer .top .left .uls ul a{
    max-width: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select_name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail_content  img{
    display: inline-block;
}
/*# sourceMappingURL=style.css.map */
