@charset "utf-8";
@import url("reset.css");
@import url("animate.css");
@import url("/public/plugins/font-awesome-4.7.0/css/font-awesome.min.css");

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

:root {
  --common-page-width: 1202px;
  --common-font-size: 14px;
  --common-color: #434343;
  --common-background-color: #118449;
  --common-background-hover-color: #118449;
  --nav-height: 51px;
  --common-p-line-height: 200%;
  --common-p-size: 16px;
  --common-p-color: #434343;
  --common-font-color-hover: #118449;
}

body {
  background-color: #fff;
  overflow: hidden;
  font-size: var(--common-font-size);
}

input {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  background: transparent;
  text-decoration: none;
  color: var(--common-p-color);
}

a:active,
a:hover {
  outline: 0;
}

a:hover {
  text-decoration: none;
  color: var(--common-background-color);
}

.textCenter {
  text-align: center;
}

.wrapper {
  width: var(--common-page-width);
  margin: 0 auto;
  text-align: left;
}

.index .wrapper {
  width: var(--common-page-width);
}

.ov {
  overflow: hidden;
}

.ts {
  text-transform: uppercase;
}

.mauto {
  margin: 0 auto;
}

.pz {
  position: relative;
  z-index: 0;
}

.pa {
  position: absolute;
  z-index: 0;
}

.bz {
  box-sizing: border-box;
}

.b {
  font-weight: bold;
}

.i {
  font-style: italic;
}

.hidden {
  display: none !important;
}

.cb {
  clear: both;
}

.tes {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mt20 {
  margin-top: 20px;
}

/*animation*/
@keyframes slideDown {
  0% {
    top: 45px;
    opacity: 0;
    transform: scale(0, 0);
  }

  to {
    top: 51px;
    opacity: 1;
    transform: scale(1, 1);
  }
}

@-webkit-keyframes slideDown {
  0% {
    top: 45px;
    opacity: 0;
    transform: scale(0, 0);
  }

  to {
    top: 51px;
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes headerDown {
  0% {
    transform: translateY(-70%);
  }

  to {
    transform: translateY(0);
  }
}

.img img {
  transform: scale(1);
}

a:hover .img img {
  transform: scale(1.1, 1.1);
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.flexJb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.flexColumn {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}

.flexAc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.flexCenter {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

.flexWrap {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.flexRight {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

.ovd {
  overflow: hidden;
}

.db {
  display: block;
}

#app {
  overflow: hidden;
}

/*header*/
.headerBar {
  width: 100%;
  height: 32px;
  background-color: #eee;
  font-size: var(--common-font-size);
  color: #939393;
  padding: 0 11.25%;
}

.headerBar *,
.headerBar a {
  font-size: var(--common-font-size);
  color: #939393;
}

.headerBar a:hover {
  text-decoration: underline;
}

.headerBar i {
  margin-right: 10px;
}

header {
  width: 100%;
  height: 180px;
  background-color: #fff;
}

header .wrapper {
  height: 203px;
}

header .l {
  height: 85px;
}

header .l .logo,
header .l .logo img {
  height: 51px;
}

header .l article {
  padding-left: 18px;
  margin-left: 17px;
}

header .l article::before {
  content: "";
  display: block;
  width: 2px;
  height: 78px;
  background-color: #d5d5d5;
  position: absolute;
  top: 2px;
  left: 0;
}

header .l article .sitename {
  line-height: 44px;
  font-size: 30px;
  font-weight: 600;
  color: #118449;
}

header .l article p {
  margin-top: 6px;
  line-height: 35px;
  font-size: 24px;
  color: #575657;
  font-weight: 600;
}

header .r {
  width: 314px;
  margin-right: 25px;
}

header .r .tel {
  width: 309px;
}

header .r .tel h2 {
  font-size: 24px;
  font-weight: 600;
  color: #7c7c7c;
  line-height: 32px;
}

header .r .tel h2::before {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  background-color: #7c7c7c;
  position: absolute;
  left: 9px;
  top: 14px;
}

header .r .tel h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  background-color: #7c7c7c;
  position: absolute;
  right: 9px;
  top: 14px;
}

header .r .tel h3 {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 600;
  color: #7c7c7c;
  color: #d19a41;
}

header .search {
  margin-top: 2px;
}

header .search .input {
  width: 242px;
  height: 30px;
  border: 1px solid #bababa;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: url(../images/bg/header-search.jpg) no-repeat #fff 8px center;
  margin-right: 6px;
  padding: 0 10px 0 49px;
}

header .search .button {
  width: 66px;
  height: 30px;
  background: #595757;
  border: 0;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
}

/*nav*/
nav {
  width: 100%;
  height: var(--nav-height);
  background: #118449;
}

nav.active {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-animation: headerDown 0.5s 1;
  -khtml-animation: headerDown 0.5s 1;
  animation-direction: alternate;
  box-shadow: 0 0 5px #666;
}

nav ul {
  overflow: visible !important;
  margin: 0 auto;
  font-size: 0;
}

nav li {
  position: relative;
  z-index: 9999999;
  height: var(--nav-height);
  flex: 1;
}

nav li .a {
  display: inline-block;
  height: var(--nav-height);
  text-align: center;
  line-height: var(--nav-height);
  font-size: 18px;
  color: #fff;
  width: 100%;
  position: relative;
}

nav li .a::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}

nav li:last-child .a::after {
  display: none;
}

nav li .a.active {
  background-color: #fff;
  color: #00612f;
}

nav .dl {
  overflow: hidden;
  display: none;
  position: absolute;
  z-index: 999;
  top: 51px;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  -webkit-animation: slideDown 0.3s 1;
  -khtml-animation: slideDown 0.3s 1;
  animation-direction: alternate;
}

nav li:hover .dl {
  display: block;
}

nav dt {
  overflow: hidden;
  width: 100%;
}

nav dt a {
  overflow: hidden;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  line-height: 25px;
  color: #00612f;
}

nav dt a:link,
nav dt a:visited {
  font-size: var(--common-font-size);
  color: #00612f;
}

nav dt a:hover {
  background-color: #058998;
  text-decoration: none;
  color: #fff;
}

/*footer*/
footer {
  background-color: #fff;
}

footer .ft {
  height: 57px;
  width: 100%;
  background-color: var(--common-background-color);
}

footer .ft .nav li {
  line-height: 56px;
  flex: 1;
}

footer .ft .nav li a {
  position: relative;
  font-size: 16px;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
}

footer .ft .nav li a::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}

footer .ft .nav li:last-child a::after {
  display: none;
}

footer .fc {
  padding: 36px 0 29px 0;
}

footer .fc .tel {
  padding-left: 48px;
  background: url(../images/icon/footerPhone.png) no-repeat 0 5px;
  margin-bottom: 14px;
}

footer .fc .tel h2 {
  line-height: 18px;
  font-size: 14px;
  color: #fff;
}

footer .fc .tel h3 {
  line-height: 25px;
  font-size: 21px;
  font-weight: bold;
  color: #fff;
}

footer .fc ul li {
  text-align: center;
}

footer .fc ul li:first-child {
  margin-right: 35px;
}

footer .fc ul li img {
  max-width: 85px;
  margin: 0 auto;
}

footer .fc ul li p {
  font-size: 14px;
  color: var(--common-color);
  margin-top: 10px;
  line-height: 25px;
}

footer .fc article {
  line-height: 41px;
  font-size: 18px;
  color: var(--common-color);
  margin-left: 35px;
  padding-left: 21px;
  border-left: 2px solid #d5d5d5;
}

footer .fc article a {
  color: var(--common-color);
}

footer .fc article a:hover {
  text-decoration: underline;
}

footer .copyright {
  padding: 10px 0;
  color: #434343;
  line-height: 28px;
  font-size: 14px;
}

footer .copyright .img {
  margin-top: 25px;
}

footer .copyright .img img {
  max-width: 145px;
}

footer .copyright .sydw {
  left: 99px;
  top: 40px;
}

footer .support {
  padding: 8px 0;
  line-height: 34px;
  font-size: 17px;
}

/*swiper*/
.headerSwiper {
  z-index: 1;
}

.headerSwiper img {
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--common-font-color) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--common-font-color) !important;
}

.headerSwiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.headerSwiper .swiper-pagination-bullet-active {
  background-color: var(--common-background-color) !important;
}

/*index*/
.indexTop {
  width: 100%;
  height: 35px;
  border-bottom: 2px solid var(--common-background-color);
}

.indexTop p {
  padding: 0 12px;
  line-height: 33px;
  background-color: var(--common-background-color);
  color: #fff;
  font-size: 16px;
}

.indexTop a {
  color: var(--common-background-color);
}

.indexTop a:hover {
  color: #1e929f;
}

.indexTabs {
  width: 100%;
  height: 35px;
  border-bottom: 2px solid var(--common-background-color);
}

.indexTabs li {
  padding: 0 11px;
  line-height: 33px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.indexTabs li.active {
  background-color: var(--common-background-color);
  color: #fff;
}

.indexTypename {
  width: 100%;
  height: 35px;
}

.indexTypename p {
  font-size: 29px;
  color: #1c3995;
}

.indexTypename a {
  font-size: 20px;
  color: #4a4a4a;
}

.indexTypename a:hover {
  color: var(--common-font-color-hover);
}

#headerSwiper {
  z-index: 1;
}

.index1 {
  margin-top: 47px;
}

.index1 .l {
  width: 280px;
}

.index1 .l .cn {
  width: 207px;
  height: 58px;
  border-bottom: 2px solid #00612f;
  line-height: 56px;
  margin-left: 38px;
  font-size: 41px;
  font-weight: 600;
  color: #00612f;
  text-align: center;
}

.index1 .l .en {
  width: 207px;
  height: 23px;
  margin: 13px 0 0 38px;
  background: url(../images/bg/index1-l-en.jpg) no-repeat;
}

.index1 .l .navs {
  margin-top: 23px;
}

.index1 .l .navs li {
  margin-bottom: 2px;
}

.index1 .l .navs li a {
  width: 100%;
  height: 47px;
  font-size: 22px;
  color: #5e5e5e;
  background: url(../images/icon/arrow-right.png) no-repeat 51px center #ececec;
  padding-left: 83px;
}

.index1 .l .navs li a:hover {
  color: #d19a41;
}

.index1 .l .contact-us {
  width: 146px;
  margin: 11px 0 0 69px;
  overflow: hidden;
  height: 178px;
}

.index1 .l .contact-us::after {
  content: "";
  display: block;
  width: 143px;
  height: 151px;
  border: 1px solid #d19a41;
  position: absolute;
  z-index: -1;
  top: 17px;
  left: 0;
}

.index1 .l .contact-us .title {
  background-color: #fff;
  font-size: 25px;
  color: var(--common-background-color);
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  line-height: 41px;
  padding: 0 5px;
}

.index1 .l .contact-us .arrow {
  margin-top: -8px;
  transform: rotate(90deg);
  font-size: 25px;
  color: var(--common-background-color);
}

.index1 .l .contact-us a {
  display: inline-block;
  width: 100px;
  line-height: 28px;
  padding: 0 14px;
  border: 1px solid #1fa8a0;
  font-size: 16px;
  color: var(--common-background-color);
  border-radius: 10px;
  margin-bottom: 14px;
}

.index1 .l .contact-us a:hover {
  background-color: var(--common-background-color);
  color: #fff;
}

.index1 .r {
  width: 877px;
  margin-right: 6px;
}

.index1 .r .more {
  height: 38px;
  border-bottom: 2px solid var(--common-background-color);
  padding-right: 11px;
}

.index1 .r .more a {
  font-size: 16px;
  color: #00612f;
}

.index1 .r .more a:hover {
  text-decoration: underline;
}

.index1 .r .list {
  margin-top: 41px;
}

.index1 .r .list li {
  width: 276px;
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  margin-bottom: 0;
}

.index1 .r .list li:nth-child(3n) {
  margin-right: 0;
}

.index1 .r .list li .img,
.index1 .r .list li img {
  width: 100%;
}

.index1 .r .list li .title {
  height: 44px;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  color: #3b3b3b;
}

.index1 .r .list li a:hover .title {
  color: var(--common-background-hover-color);
}

.index2 {
  margin-top: 20px;
  background: url(../images/bg/index2-map.png) no-repeat 390px 85px;
}

.index2 .tname {
  height: 80px;
  border-bottom: 3px solid var(--common-background-color);
}
.index2 .tname h2 {
  font-size: 34px;
  color: var(--common-background-color);
  font-weight: bold;
}

.index2 .tname a {
  font-size: 16px;
  color: #00612f;
}

.index2 .c {
  margin-top: 35px;
}

.index2 .c .pic {
  width: 385px;
  border: 1px solid var(--common-background-color);
}

.index2 .c .pic img {
  width: 100%;
}

.index2 article {
  flex: 1;
  margin-left: 32px;
}

.index2 article .sitename {
  line-height: 48px;
  font-size: 25px;
  color: var(--common-background-color);
}

.index2 article .intro {
  line-height: 180%;
  font-size: 18px;
}

.index3 {
  width: 100%;
  height: 365px;
  background: url(../images/bg/index3.jpg) no-repeat center top;
  margin-top: 76px;
}

.index4 {
  margin-top: 46px;
}

.index4 .tname {
  height: 80px;
  padding-left: 54px;
  background: url(../images/bg/index4-title.png) no-repeat left 13px;
  border-bottom: 3px solid #ececec;
}

.index4 .tname h2 {
  font-size: 34px;
  color: var(--common-background-color);
  font-weight: bold;
}

.index4 .tname .ctrls {
	width: 70px;
	height: 35px;
}

.index4 .tname .ctrls div {
	position: static;
	width: 34px;
	height: 35px;
	background: #d0d0d0;
}

.index4 .tname .ctrls div:first-child {
	margin-right: 1px;
}

.index4 .tname .ctrls div::after {
	font-size: 18px;
	color: #fff;
}

.index4 #processSwiper {
	margin-top: 20px;
}

.index4 #processSwiper .title {
	line-height: 42px;
	height: 42px;
	width: 100%;
	margin-top: 5px;
	background-color: #ececec;
	font-size: 16px;
	color: #3b3b3b;
}

.index5 {
	margin-top: 67px;
	margin-bottom: 50px;
}

.index5 .l {
	width: 742px;
}

.index5 .l .tname {
	width: 100%;
	height: 47px;
	background-color: #ececec;
}

.index5 .l .tname .title {
	width: 294px;
	height: 47px;
	background-color: var(--common-background-color);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.index5 .l .tname a {
	line-height: 47px;
	padding: 0 7px;
	background-color: #7e7e7e;
	font-size: 14px;
	color: #fff;
}

.index5 .l .t {
	margin-top: 22px;
}

.index5 .l .t .pic, .index5 .l .t .pic img {
	width: 295px;
}

.index5 .l .t article {
	width: 405px;
}

.index5 .l .t article .title {
	line-height: 170%;
	font-size: 18px;
	color: #424242;
}

.index5 .l .t article .content {
	margin-top: 5px;
	line-height: 170%;
	font-size: 16px;
}

.index5 .l ul {
	margin-top: 15px;
}

.index5 .l li {
}

.index5 .l li a {
	border-bottom: 2px dashed #767676;
	padding-left: 20px;
	background: url(../images/icon/arrow-right2.png) no-repeat left center;
}

.index5 .l li a .title {
	flex: 1;
	height: 57px;
	line-height: 57px;
	font-size: 16px;
}

.index5 .l li a .time {
	width: 125px;
	height: 57px;
	line-height: 57px;
	font-size: 16px;
}

.index5 .r {
	width: 422px;
}

.index5 .r .title {
	width: 100%;
	height: 47px;
	background-color: var(--common-background-color);
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.index5 .r .content {
	line-height: 180%;
	font-size: 14px;
	margin-top: 15px;
}

.index5 .r .more {
	display: inline-block;
	margin-top: 15px;
	line-height: 32px;
	padding: 0 15px;
	background-color: var(--common-background-color);
	font-size: 16px;
	color: #fff;
}

.index5 .r .pic {
	margin-top: 56px;
}
/*other*/
.banner {
  width: 100%;
  height: 196px;
}

.banner img {
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.banner .nav {
  width: 100%;
  height: 57px;
  border-bottom: 1px solid #fff;
  line-height: 56px;
}

.banner .nav li {
  min-width: 10%;
}

.banner .nav li a {
  width: 100%;
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 57px;
}

.banner .nav li a.active,
.banner .nav li a:hover {
  background-color: #1a6791;
}

.banner .typename {
  width: 100%;
  line-height: 83px;
  text-align: right;
  padding-right: 32px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

.banner .nav:last-child {
  border-bottom: 0;
  border-top: 1px solid #fff;
}

.banner .nav:last-child li a {
  line-height: 55px;
  font-size: 15px;
}

.banner .nav:last-child li a.active,
.banner .nav:last-child li a:hover {
  background: none;
  font-weight: bold;
}

.banner .ks {
  margin-top: 6px;
  height: 133px;
}

.banner .ks .search {
  margin-left: 158px;
}

.banner .ks .search .input {
  width: 248px;
  height: 35px;
  background: none;
  border: 1px solid #dee9ed;
  font-size: 14px;
  color: #fff;
  padding: 0 12px;
}

.banner .ks .search .input::placeholder {
  opacity: 1;
  color: #fff;
}

.banner .ks .search .button {
  width: 53px;
  height: 35px;
  background: #d9e6e8;
  border: 0;
  font-size: 14px;
  color: #494949;
  font-family: "微软雅黑";
}

.banner .ks h2 {
  margin-right: 32px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}

/*sidebar*/
.sidebar {
  margin-top: 42px;
}

.sidebar li {
  margin-right: 22px;
  margin-bottom: 22px;
}

.sidebar li:last-child {
  margin-right: 0;
}

.sidebar li a {
  line-height: 39px;
  padding: 0 43px;
  background-color: #00612f;
  font-size: 16px;
  color: #fff;
}

.sidebar li a.active {
  background-color: #c0a062;
}

/*main*/
.positions {
  margin-top: 8px;
  padding-left: 26px;
  line-height: 51px;
  border-bottom: 1px solid #dedede;
  background: url(../images/icon/positions.png) no-repeat left center;
}

.positions::before {
  content: "";
  display: block;
  position: absolute;
  width: 121px;
  height: 2px;
  background-color: #00612f;
  bottom: 0;
  left: 0;
}

main {
  padding: 0 0 40px 0;
}

main .typename {
  margin-top: 34px;
}

main .typename .cn {
  line-height: 41px;
  font-size: 30px;
  color: #201e1f;
  font-weight: bold;
}

main .typename .en {
  line-height: 23px;
  font-size: 16px;
  color: #666;
}

main .typename::after {
  content: "";
  display: block;
  width: 55px;
  height: 4px;
  background-color: #201e1f;
  margin-top: 8px;
}

.detail {
  background-color: #fff;
  padding: 35px 50px;
}

.introduction {
  padding: 30px 0;
  text-align: justify;
  line-height: var(--common-p-line-height);
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction.nmt {
  margin-top: 0;
  padding: 0;
}

.introduction div,
.introduction p {
  font-size: var(--common-p-size);
  color: var(--common-p-color);
}

.introduction img {
  max-width: 100%;
}

.articleImg {
  width: 100%;
  margin: 0 0 0 0;
  text-align: center;
}

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

.articleImg2 {
  width: 100%;
  margin: 0 0 22px 0;
  text-align: center;
}

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

.articleBody {
  width: 400px;
  margin: 20px 0;
}

.articleTitle {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: 20px;
  color: var(--common-p-color);
  margin-bottom: 8px;
}

.articleTitle2 {
  overflow: hidden;
  width: 100%;
  text-align: center;
  line-height: 32px;
  font-size: var(--common-font-size);
  color: var(--common-background-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.articlePhoto {
  margin-top: 18px;
  margin-bottom: 16px;
}

.articleTime {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 21px;
  font-size: 18px;
  color: #262626;
  padding-bottom: 22px;
}

.articleDes {
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #42403f;
}

.articlePages {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed #969797;
}

.articlePages div {
  width: 50%;
  font-size: 16px;
  color: #666;
}

.askNow a {
  width: 165px;
  height: 35px;
  background: #ea6000;
  margin: 10px auto;
  line-height: 35px;
  font-size: 14px;
  color: #fff;
}

.askNow a:hover {
  background: linear-gradient(to bottom, #f78e45, #ea6000);
}

/*关于我们*/
.about-title::after {
  content: "";
  display: block;
  width: 95px;
  height: 3px;
  background-color: #55b293;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about-title h2 {
  font-size: 18px;
  color: #262626;
}

.about-title a {
  right: 0;
  bottom: 0;
  font-size: 15px;
  color: #55b293;
}

.about {
  margin-top: 36px;
}

.about .about1 .img,
.about .about1 .img img {
  width: 627px;
}

.about .about1 article {
  width: 530px;
}

.about-title {
  width: 100%;
  line-height: 35px;
  padding-bottom: 9px;
  border-bottom: 1px solid #b1b1b1;
}

.about .about1 .intro {
  line-height: 30px;
  margin-top: 15px;
  font-size: 16px;
  color: #262626;
}

.about .about1 .details {
  line-height: 22px;
  background-color: #169a5e;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.about .about2 {
  width: 100%;
  margin-top: 60px;
}

.about .about2 .c {
  margin-top: 26px;
  padding: 0 52px;
}

.about .about2 .c .swiper-button-next,
.about .about2 .c .swiper-button-prev {
  width: 17px;
  height: 56px;
  background: url(../images/icon/leader-swiper-button.png) no-repeat;
}

.about .about2 .c .swiper-button-next {
  transform: rotate(180deg);
}

.about .about2 .c .swiper-button-next::after,
.about .about2 .c .swiper-button-prev::after {
  display: none;
}

.about .about2 .c .title {
  margin-top: 3px;
  line-height: 26px;
  font-size: 15px;
  color: #55b293;
}

.about .about2 .c .zc {
  line-height: 24px;
  font-size: 15px;
  color: #3e3e3e;
}

.about .about3 {
  width: 100%;
  margin-top: 60px;
}

.about .about3 .nt {
  margin-top: 20px;
}

.about .news-index.about3 .nt #newsSwiper {
  margin: 0;
}

.about .about4 {
  width: 100%;
  margin-top: 60px;
}

.about .about4 #honorSwiper {
  margin-top: 28px;
}

.about .about4 #honorSwiper .title {
  margin: 10px 0 0;
  line-height: 30px;
  font-size: 15px;
  color: #3e3e3e;
}

/*预约专家*/
.orderMaster img {
  border: 2px solid #af7f47;
  border-radius: 3px;
}

.orderMaster p.title {
  line-height: 60px;
  font-size: 20px;
  color: var(--common-font-color2);
}

/*联系我们*/
.contactTel {
  padding-left: 52px;
  background: url(../images/icon/contactPhone.png) no-repeat 0 5px;
  margin-bottom: 13px;
}

.contactTel .title {
  line-height: 24px;
  font-size: var(--common-font-size);
  color: #000;
}

.contactTel .number {
  line-height: 23px;
  font-size: 20px;
  color: #666;
}

.contactus {
  margin-top: 6px;
  line-height: 30px;
}

.contactus img {
  margin-bottom: 10px;
}

.contactus p {
  font-size: 15px !important;
  color: #5e3a10 !important;
}

.contactus b {
  font-size: 18px !important;
}

/*科室*/
.kslist {
  width: 100%;
}

.kslist .tabs li {
  flex: 1;
  height: 56px;
  background-color: #f0f0f0;
  font-size: 22px;
  font-weight: bold;
  color: #3b3b3b;
}

.kslist .tabs li.active {
  background-color: #2ba076;
  background: linear-gradient(to right, #2ba076, #2a86b6);
  color: #fff;
}

.kslist .list {
  margin-top: 18px;
}

.kslist .list li {
  width: 25%;
  height: 40px;
  line-height: 40px;
}

.kslist .list li a {
  font-size: 15px;
  color: #333;
}

.kslist .list li a:hover {
  color: #2ba077;
}

/*新闻列表*/
.news-index .nt #newsSwiper {
  width: 375px;
  height: 216px;
}

.news-index .nt #newsSwiper img {
  width: 375px;
  height: 216px;
}

.news-index .nt #newsSwiper p {
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 5px;
  font-size: 12px;
  color: #fff;
}

.news-index .nt #newsSwiper .swiper-button-next,
.news-index .nt #newsSwiper .swiper-button-prev {
  background: rgba(0, 0, 0, 0.5);
}

.news-index .nt #newsSwiper .swiper-button-prev {
  left: 5px;
}

.news-index .nt #newsSwiper .swiper-button-next {
  right: 5px;
}

.news-index .nt #newsSwiper .swiper-button-next::after,
.news-index .nt #newsSwiper .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
}

.news-index .nt ul {
  width: 800px;
}

.news-index .nt ul li {
  width: 50%;
  padding-left: 25px;
  background: url(../images/icon/news.png) no-repeat left 7px;
}

.news-index .nt ul li article {
  line-height: 32px;
  font-size: 14px;
  color: #2d2d2d;
  flex: 1;
}

.news-index .nt ul li a:hover article {
  color: #61b98e;
}

.news-index .nb {
  margin-top: 30px;
}

.news-index .nb .tabs {
  margin-bottom: 15px;
}

.news-index .nb .tabs li {
  display: inline-block;
  padding: 0 20px;
  line-height: 31px;
  font-size: 15px;
  color: #333;
}

.news-index .nb .tabs li.active {
  font-weight: bold;
}

.newslist {
  padding: 0;
}

.newslist li {
}

.newslist li a {
  width: 100%;
  height: 40px;
}

.newslist li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #bababa;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.newslist li a .title {
  z-index: 1;
  font-size: 16px;
  padding-right: 20px;
  background-color: #fff;
}

.newslist li a .time {
  padding-left: 14px;
  z-index: 1;
  font-size: 16px;
  background-color: #fff;
}

.newslist2 li {
  width: 341px;
  width: calc((100% - 170px) / 3);
  margin-right: 85px;
  margin-bottom: 28px;
}

.newslist2 li:nth-child(3n) {
  margin-right: 0;
}

.newslist2 li .m-d {
  line-height: 44px;
  font-size: 24px;
  color: var(--common-color);
}

.newslist2 li .y {
  line-height: 44px;
  font-size: 18px;
  color: var(--common-color);
}

.newslist2 li .title {
  margin-top: 8px;
  line-height: 180%;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
}

.newslist2 li .content {
  line-height: 180%;
  font-size: 18px;
  color: #666;
}
/*图片文字列表*/
.picstextlist {
  width: 100%;
  background-color: #fff;
  padding: 47px 43px;
}

.picstextlist a {
  padding: 25px;
  border: 1px solid #eee;
}

.picstextlist li:last-child a {
  margin-bottom: 0;
}

.picstextlist .img {
  width: 218px;
}

.picstextlist img {
  width: 218px;
}

.picstextlist article {
  width: 500px;
  width: calc(100% - 246px);
}

.picstextlist .title {
  line-height: 28px;
  font-size: 20px;
  color: #000;
  margin-top: 10px;
}

.picstextlist .time {
  margin: 6px 0;
  line-height: 33px;
  font-size: 18px;
  color: #c8c8c8;
}

.picstextlist .time i {
  margin-right: 8px;
}

.picstextlist .des {
  margin-top: 20px;
  line-height: 25px;
  font-size: 17px;
  color: #636363;
}

.picstextlist .more {
  margin-top: 20px;
  width: 150px;
  height: 40px;
  border: 1px solid #d4d4d4;
  font-size: var(--common-font-color);
  color: #212121;
}

.picstextlist a:hover .more {
  background-color: var(--common-background-hover-color);
  border-color: var(--common-background-hover-color);
  color: #fff;
}

.picstextlist .ly:hover {
  background: #1279ba;
}

/*图片列表*/
.picslist {
  margin-top: 24px;
}

.picslist li {
  width: 270px;
  width: calc((100% - 25px * 3) / 4);
  margin: 0 25px 25px 0;
}

.picslist li:nth-child(4n) {
  margin-right: 0;
}

.picslist li a {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e5e5;
}

.picslist .img {
  width: 100%;
}

.picslist img {
  width: 100%;
}

.picslist .title {
  width: 100%;
  margin-top: 9px;
  line-height: 34px;
  color: #3e3e3e;
  font-size: 15px;
  text-align: center;
}

.picslist a:hover .title {
  color: var(--common-background-color);
}

/*团队列表*/
.teamlist {
  margin: 20px 16px;
}

.teamlist li {
  width: 200px;
  width: calc((100% - 36px * 5) / 6);
  margin: 0 36px 33px 0;
}

.teamlist li:nth-child(6n) {
  margin-right: 0;
}

.teamlist li .img,
.teamlist li img {
  width: 100%;
}

.teamlist li .title {
  margin-top: 2px;
  line-height: 29px;
  font-size: 15px;
  color: #55b293;
}

.teamlist li .zc {
  line-height: 25px;
  font-size: 15px;
  color: #3e3e3e;
}

.team-detail {
  margin-top: 10px;
}

.team-detail .avatar {
  width: 166px;
}

.team-detail article {
  margin-left: 42px;
  flex: 1;
}

.team-detail article .name {
  margin-top: 10px;
  line-height: 34px;
  font-size: 17px;
  font-weight: bold;
  color: #55b293;
}

.team-detail article ul {
  margin-top: 7px;
}

.team-detail article li {
  line-height: 31px;
  font-size: 16px;
  color: #3e3e3e;
}

.openHtml {
  overflow: hidden;
  width: 798px;
  height: 533px;
  background-color: #fff;
}

.openHtml .h1 {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 46px;
  border-bottom: 1px solid #eee;
  line-height: 46px;
  text-indent: 25px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .close {
  position: absolute;
  z-index: 999;
  top: 14px;
  right: 17px;
  display: block;
  width: 13px;
  height: 11px;
  background: url(../images/close.gif) no-repeat;
}

.openHtml .htmlContent {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 753px;
  height: 420px;
  padding: 10px 0 0 25px;
  padding-right: 10px;
  border-bottom: 1px solid #ddd;
  line-height: 28px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #333;
}

.openHtml .closeBlock {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 54px;
  margin-top: 1px;
  background-color: #f5f5f5;
}

.openHtml .close2 {
  position: absolute;
  z-index: 999;
  top: 13px;
  left: 15px;
  display: block;
  width: 82px;
  height: 30px;
  background: #2384ef;
  background: linear-gradient(to bottom, #0080eb, #0565b2);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  color: #fff;
}

.floatMenu {
  position: fixed;
  z-index: 99999;
  width: 226px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #0bafff, #0bafff);
  padding: 0 11px 9px 11px;
  border-radius: 10px;
}

.floatMenu .ask {
  width: 100%;
  height: 99px;
  background: url(../images/service.png) no-repeat;
  margin-top: -29px;
}

.floatMenu ul {
}

.floatMenu ul li {
  width: 100%;
  margin-bottom: 3px;
}

.floatMenu ul li a {
  width: 100%;
  height: 46px;
  background-color: #fff;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

.floatMenu ul li a:hover {
  background-color: var(--common-background-color);
  color: #fff;
}

/*分页*/
.pages {
  padding: 20px 0 15px 0;
  text-align: right;
}

.pages li {
  display: inline;
}

.pages li.active a {
  background-color: red;
}

.pages a,
.pages em {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  background: #169a5e;
  border: 1px solid #169a5e;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span {
  display: inline-block;
  height: 28px;
  margin-right: 5px;
  padding: 0 8px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

.pages span.disabled {
  background: var(--common-color);
  color: #fff;
}

.pages em {
  background: var(--common-color);
  color: #fff;
  font-style: normal;
}

/*在线留言*/
.guestbook {
  margin-top: 40px;
}

.guestbook h2 {
  height: 32px;
  font-size: 20px;
  color: #000;
}

.guestbook ul {
  margin-top: 14px;
}

.guestbook li {
  margin-bottom: 14px;
}

.guestbook .title {
  width: 104px;
  margin-left: 180px;
  height: 26px;
  font-size: 15px;
  color: #696969;
}

.guestbook .wbk {
  box-sizing: border-box;
  width: 317px;
  height: 26px;
  background: #fff;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 0 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wby {
  box-sizing: border-box;
  width: 316px;
  height: 189px;
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  padding: 5px;
  font-size: 15px;
  color: #333;
}

.guestbook .wbk:focus {
  border-color: #04654d;
}

.guestbook button {
  box-sizing: border-box;
  width: 72px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  background: var(--common-background-color);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  font-family: 微软雅黑;
  margin-left: 400px;
  border-radius: 4px;
}

/*home*/
.home {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg/home.jpg?1.1) no-repeat;
  background-size: 100% 100%;
}

.home .logo {
  height: 44vh;
  animation: fadeInUp 1s;
}

.home .logo img {
  height: 100%;
}

.home .font {
  height: 6.49vh;
  animation: fadeInUp 1s;
}

.home .font img {
  height: 100%;
}

.home .enter {
  width: 22.8vh;
  height: 6.4vh;
  border: 2px solid #fff;
  border-radius: 32px;
  font-size: 2.2vh;
  color: #fff;
  margin-top: 5vh;
  animation: fadeInUp 1s;
}

.home article {
  animation: fadeInUp 1s;
  line-height: 140%;
  font-size: 2vh;
  color: #fff;
  margin-top: 5vh;
}

.home article .sydw img {
  max-height: 8vh;
  margin-top: 1vh;
}

.home article .phone {
  font-size: 3vh;
  color: #fff;
  margin-bottom: 10px;
}

.home article .phone i {
  margin-right: 5px;
}

.layer-wrap {
  padding: 20px;
}

.layer-input {
  flex: 1;
  height: 40px;
  background: none;
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 0 10px;
  transition: all 0.5s;
}

.layer-input:focus {
  border-color: var(--common-background-color);
  transition: all 0.5s;
}

.layer-button {
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  background: var(--common-background-color);
  color: #fff;
  font-size: 14px;
  border: 0;
}
