@font-face {
  font-family: "simli";
  src: url("../font/SIMLI.ttf");
}
@font-face {
  font-family: 'pf';
  src: url("../font/PINGFANG BOLD.ttf");
}
.basebox {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 1620px) {
  .basebox {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.basebox2 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (max-width: 1420px) {
  .basebox2 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.baseimg img {
  width: 100%;
}

body {
  color: #333333;
  padding-top: 90px;
}
@media only screen and (max-width: 1200px) {
  body {
    padding-top: 65px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    padding-top: 45px;
  }
}

/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  /* background: #222; */
  background: #fff;
  height: 90px;
}
.header > div {
  height: 100%;
}
.header .basebox{
    display: block;
}
.header > div .logo {
    float: left; line-height: 90px;
}
@media only screen and (max-width: 1200px) {
  .header > div .logo {
    width: 180px; line-height: 65px;
  }
}
@media only screen and (max-width: 768px) {
  .header > div .logo {
    width: 120px; line-height: 45px;
  }
}
.header > div .logo img {
  width: 100%;
}
.header > div .memu {
  display: none;
  cursor: pointer;
  float: right;
}
.header > div .memu i {
  width: 100%;
  font-size: 30px;
  /* color: #ffffff; */
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .header > div .memu {
    display: block; margin-top: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .header > div .memu {
    margin-top: 8px;
  }
  .header > div .memu i {
    font-size: 24px; 
  }
}
.header > div .nav-r {
  /* width: 68%; */
  display: flex;
  height: 100%;
  float: right;
}
.header > div .nav-r .headnav {
  /* flex: 1; */
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  box-sizing: border-box;
}
.header > div .nav-r .headnav .first-nav {
  height: 100%;
}
.header > div .nav-r .headnav .first-nav > a {
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 17px;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  color: #000;
  width: 115px;
}
.header > div .nav-r .headnav .first-nav > a i {
  display: none;
}
@media (max-width: 1450px){
  .header > div .nav-r .headnav .first-nav > a {
    width: 100px;
  }
}
@media (max-width: 1300px){
  .header > div .nav-r .headnav .first-nav > a {
    width: 90px;
  }
}
@media only screen and (max-width: 1200px) {
  .header > div .nav-r .headnav .first-nav > a {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #333;
  }
  .header > div .nav-r .headnav .first-nav > a i {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .header > div .nav-r .headnav .first-nav > a {
    padding: 8px 10px;
  }
}
.header > div .nav-r .headnav .first-nav:hover > a {
   border-bottom-color: #006e93; 
  /*background: #ff8c37;*/
}
.header > div .nav-r .headnav .first-nav .second-nav {
  position: absolute;
  top: 100px;
  left: 0;
  height: 90px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  transition-timing-function: ease-in-out;
  z-index: 1;
  display: flex;
  visibility: hidden;
  opacity: 0;
}
.header > div .nav-r .headnav .first-nav .second-nav a {
  font-size: 16px;
  margin-right: 50px;
  color: #000000;
}
.header > div .nav-r .headnav .first-nav .second-nav a:last-child {
  margin-right: 0;
}
.header > div .nav-r .headnav .first-nav .second-nav a:hover {
  color: #006e93;
}
@media only screen and (max-width: 1200px) {
  .header > div .nav-r .headnav .first-nav .second-nav {
    transition: inherit;
    position: inherit;
    opacity: 1;
    visibility: inherit;
    display: block;
    height: auto;
    display: none;
  }
  .header > div .nav-r .headnav .first-nav .second-nav a {
    font-size: 14px;
    display: block;
    margin: 0;
    padding: 10px 15px 10px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .header > div .nav-r .headnav .first-nav .second-nav a:hover {
    border-bottom-color: #006e93;
  }
}
@media only screen and (min-width: 1201px) {
  .header > div .nav-r .headnav .first-nav:hover .second-nav {
    top: 90px;
    visibility: inherit;
    opacity: 1;
  }
}
.header > div .nav-r .headseach{
    height: 100%;
}
.header > div .nav-r .headseach > i {
  font-size: 22px;
  color: #333333;
  width: 100%;
  text-align: center;
  position: relative;
  line-height: 90px;
  /*top: 50%;
  transform: translateY(-50%);*/
  cursor: pointer;
}
.header > div .nav-r .headseach form {
  display: none;
  position: absolute;
  width: 100%;
  top: 90px;
  left: 0;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 20px 0;
}
.header > div .nav-r .headseach form > span {
  display: flex;
  justify-content: center;
}
.header > div .nav-r .headseach form > span i {
  color: white;
}
.header > div .nav-r .headseach form > span .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: white;
  background: #006e93;
  height: 36px;
  width: 80px;
  cursor: pointer;
}
.header > div .nav-r .headseach form > span .closeform {
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  background: #ff8c37;
}
.header > div .nav-r .headseach form > span input[type=text] {
  height: 36px;
  width: 350px;
  padding: 0 10px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
  .header > div .nav-r .headseach > i {
    display: none;
  }
  .header > div .nav-r .headseach form {
    display: block;
    position: inherit;
    padding: 10px;
    box-sizing: border-box;
  }
  .header > div .nav-r .headseach form > span input[type=text] {
    flex: 1;
    height: 30px;
  }
  .header > div .nav-r .headseach form > span .submit {
    font-size: 14px;
    height: 30px;
  }
  .header > div .nav-r .headseach form > span .closeform {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .header > div .nav-r {
    position: absolute;
    width: auto;
    display: block;
    width: 300px;
    right: 0;
    top: 65px;
    background: white;
    height: auto;
    display: none;
  }
  .header > div .nav-r .headnav {
    display: block;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header > div .nav-r {
    top: 45px;
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    height: 65px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}
@media only screen and (max-width: 768px) {
  .header {
    height: 45px;
  }
}

.footer {
  background: #333333;
  color: white;
}
.footer .top {
  padding: 85px 0 60px;
}
.footer .top .ft1 {
  float: left;
  margin-right: 10%;
}
.footer .top .ft1 .logo {
  display: block;
  margin-bottom: 20px;
}
.footer .top .ft2 {
  width: 38%;
  display: flex;
  justify-content: space-between;
  float: left;
}
.footer .top .ft2 li > a {
  display: block;
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 25px;
}
.footer .top .ft2 li > a i {
  display: none;
}
.footer .top .ft2 li > a:after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #ff8c37;
  margin-top: 5px;
}
.footer .top .ft2 li div a {
  display: block;
  color: #bbbbbb;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.2s;
}
.footer .top .ft2 li div a:hover {
  color: white;
}
.footer .top .ft3 {
  float: right;
  font-family: arial;
  color: #999999;
}
.footer .top .ft3 i {
  font-size: 18px;
  margin-right: 5px;
}
.footer .top .ft3 h1 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer .top .ft3 h3 {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer .top .ft3 .share {
  padding-top: 15px;
}
.footer .top .ft3 .share a {
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  background: #6c6c6c;
  border-radius: 50px;
  margin-right: 15px;
  color: white;
  line-height: 44px;
  font-size: 30px;
}
@media only screen and (max-width: 1200px) {
  .footer .top {
    padding: 30px 0 20px;
  }
  .footer .top .ft1 {
    margin-right: 2%;
  }
  .footer .top .ft1 .logo {
    width: 120px;
  }
  .footer .top .ft1 .logo img {
    width: 100%;
  }
  .footer .top .ft2 {
    width: 45%;
  }
  .footer .top .ft2 li > a {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .footer .top .ft3 .share {
    padding-top: 10px;
  }
  .footer .top .ft3 .share a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer .top {
    padding: 20px 0 10px;
  }
  .footer .top .ft1 {
    float: none;
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .top .ft1 .logo {
    margin: 0 auto 10px;
  }
  .footer .top .ft2 {
    float: none;
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
  .footer .top .ft2 li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    height: 30px;
    position: relative;
    font-size: 14px;
  }
  .footer .top .ft2 li > a i {
    display: block;
  }
  .footer .top .ft2 li > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .footer .top .ft2 li > div {
    display: none;
  }
  .footer .top .ft2 li > div a {
    margin-bottom: 0;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #484848;
  }
  .footer .top .ft3 {
    float: none;
  }
  .footer .top .ft3 h1,
  .footer .top .ft3 h3 {
    margin-bottom: 5px;
  }
  .footer .top .ft3 .share {
    text-align: center;
    padding-top: 0;
  }
}
.footer .bottom {
  padding: 20px 0;
  border-top: 1px solid #484848;
  color: #999999;
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .footer .bottom p {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 1200px) {
  .footer .bottom {
    padding: 10px 0;
  }
  .footer .bottom p {
    font-size: 12px;
  }
}

.ibox1 {
  width: 100%;
}
.ibox1 .ibox1-pagination {
  position: absolute;
  z-index: 1;
  text-align: center;
}
.ibox1 .ibox1-pagination .ibox1-bullet {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
  margin: 0 10px;
}
.ibox1 .ibox1-pagination .ibox1-bullet-active {
  background: rgba(255, 255, 255, 0.4);
}

.ibox2 {
  background: white;
}
.ibox2 > div {
  display: flex;
  justify-content: center;
}
.ibox2 > div a {
  display: inline-block;
  width: 17%;
  max-width: 270px;
  text-align: center;
  padding: 60px 0 50px;
}
.ibox2 > div a div {
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}
.ibox2 > div a div .img1 {
  display: inline-block;
}
.ibox2 > div a div .img2 {
  display: inline-block;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ibox2 > div a span,
.ibox2 > div a p {
  transition: all 0.2s;
}
.ibox2 > div a p{
	flex: 1;
}
.ibox2 > div a:hover div .img1 {
  opacity: 0;
}
.ibox2 > div a:hover div .img2 {
  opacity: 1;
}
.ibox2 > div a:hover p {
  color: #006e93;
}

.ibox3 {
  background-image: url(../image/bg.jpg);
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.ibox3 .list {
  widows: 100%;
  max-width: 1820px;
  margin: 0 auto;
}
@media only screen and (max-width: 1840px) {
  .ibox3 .list {
    padding: 0 10px;
    box-sizing: border-box;
  }
}
.ibox3 .list .swiper-slide {
  padding: 0 30px;
  padding-bottom: 30px;
  box-sizing: border-box;
  background: white;
  text-align: center;
  margin-bottom: 10px;
}
.ibox3 .list .swiper-slide .img {
  height: 270px;
  margin: 30px 0;
  position: relative;
}
.ibox3 .list .swiper-slide .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.ibox3 .list .swiper-slide h4 {
  color: #999999;
  font-size: 15px;
  margin-bottom: 15px;
}
.ibox3 .list .swiper-slide h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.ibox3 .list .swiper-slide .more1 {
  display: block;
  width: 130px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 0 auto;
  border: 1px solid #dddddd;
  color: #666666;
}
.ibox3 .list .swiper-slide .more1 i {
  font-weight: bold;
  color: #ff8c37;
}
.ibox3 .list .swiper-slide .hoverbox {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  border: 2px solid #ff8c37;
  background: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  padding: 80px 30px 60px;
}
.ibox3 .list .swiper-slide .hoverbox h1 {
  font-size: 22px;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 27px;
}
.ibox3 .list .swiper-slide .hoverbox h1:after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #ff8c37;
  margin: 0 auto;
  margin-top: 10px;
}
.ibox3 .list .swiper-slide .hoverbox p {
  display: flex;
  color: #444444;
  margin-bottom: 20px;
}
.ibox3 .list .swiper-slide .hoverbox p span {
  text-align: left;
  display: block;
  flex: 1;
}
.ibox3 .list .swiper-slide .hoverbox .more2 {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70px;
  background: #ff8c37;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ibox3 .list .swiper-slide .hoverbox .more2 i {
  font-size: 20px;
  margin-left: 15px;
}

.basehead1 {
  padding: 50px 0 60px;
  text-align: center;
  font-family: arial;
}
.basehead1 p {
  padding: 0 25px;
  display: inline-block;
  font-size: 24px;
  color: #ff8c37;
  position: relative;
}
.basehead1 p:after, .basehead1 p:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #c4c4c4;
  position: absolute;
  top: 50%;
}
.basehead1 p:after {
  right: -30px;
}
.basehead1 p:before {
  left: -30px;
}
.basehead1 h1 {
  color: #555555;
  font-size: 48px;
  text-transform: uppercase;
}

.ibox4 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1620px) {
  .ibox4 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.ibox4 .left {
  padding-top: 50px;
  width: 58%;
}
.ibox4 .left .head {
  margin-bottom: 60px;
}
.ibox4 .left .head h3 {
  font-size: 24px;
  color: #006e93;
}
.ibox4 .left .head h1 {
  font-size: 48px;
  font-family: arial;
  color: #555555;
  font-weight: 400;
  text-transform: uppercase;
}
.ibox4 .left .title {
  color: #555555;
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 70px;
}
.ibox4 .left .ibox4-main {
  display: flex;
  justify-content: space-between;
}
.ibox4 .left .ibox4-main > div {
  width: 25%;
}
.ibox4 .left .ibox4-main > div .img {
  margin-bottom: 25px;
}
.ibox4 .left .ibox4-main > div h2 {
  font-size: 36px;
  color: #006e93;
  margin-bottom: 10px;
}
.ibox4 .left .ibox4-main > div h2 span {
  font-size: 18px;
}
.ibox4 .left .ibox4-main > div p {
  color: #555555;
  font-size: 20px;
}
.ibox4 .right {
  max-width: 570px;
  width: 37%;
  position: relative;
}
.ibox4 .right .img img {
  width: 100%;
}
.ibox4 .right .title {
  position: absolute;
  width: 210px;
  height: 210px;
  padding: 50px 40px 30px;
  box-sizing: border-box;
  background: #006e93;
  color: white;
  left: -125px;
  top: -40px;
}
.ibox4 .right .title h1 {
  font-size: 36px;
}
.ibox4 .right .title h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.ibox5 {
  background-image: url(../image/bg2.jpg);
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.ibox5 .swiper-slide {
  display: flex;
  justify-content: center;
}
.ibox5 .swiper-slide .img {
  width: 50%;
}
.ibox5 .swiper-slide .img img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}
.ibox5 .swiper-slide .title {
  width: 50%;
  box-sizing: border-box;
  padding: 40px 60px 0;
}
.ibox5 .swiper-slide .title h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.ibox5 .swiper-slide .title p {
  margin-bottom: 75px;
  color: #666666;
  line-height: 30px;
}
.ibox5 .swiper-slide .title p.time {
  margin-bottom: 45px;
}
.ibox5 .swiper-slide .title .more {
  display: block;
  width: 210px;
  height: 60px;
  color: white;
  text-align: center;
  line-height: 60px;
  background: #ff8c37;
}
.ibox5 .swiper-slide .title .more i {
  margin-left: 20px;
}
.ibox5 .ibox5-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 1;
}
.ibox5 .ibox5-btn .ibox5-next,
.ibox5 .ibox5-btn .ibox5-prev {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 26px;
  background: white;
  color: #a9a9a9;
  cursor: pointer;
  transition: 0.2s;
}
.ibox5 .ibox5-btn .ibox5-next:hover,
.ibox5 .ibox5-btn .ibox5-prev:hover {
  background: #ff8c37;
  color: white;
}
.ibox5 .ibox5-btn .ibox5-next {
  margin-left: 10px;
}

.ibox6 {
  display: flex;
}
.ibox6 > a {
  display: block;
  width: 50%;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ibox6 > a .head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 60px;
}
.ibox6 > a .head p {
  font-size: 24px;
}
.ibox6 > a .head h1 {
  font-size: 36px;
}
.ibox6 > a img {
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.basebanner {
  position: relative;
}
.basebanner img {
  width: 100%;
}
.basebanner h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: 400;
  left: 15%;
  color: #006e93;
}
.basebanner h1:after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #006e93;
  margin-top: 10px;
}

.basetab {
  border-bottom: 1px solid #eeeeee;
  background: white;
}
.basetab .box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
@media only screen and (max-width: 1420px) {
  .basetab .box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.basetab .box .link {
  display: flex;
}
.basetab .box .link a {
  display: inline-block;
  width: 120px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: 0.2s;
}
.basetab .box .link a.on, .basetab .box .link a:hover {
  background: #006e93;
  color: white;
}
.basetab .box .seat {
  font-size: 12px;
  color: #999999;
  display: flex;
  align-items: center;
}
.basetab .box .seat i {
  margin-right: 10px;
}

.basehead2 {
  padding: 80px 0 60px;
  text-align: center;
  font-family: arial;
}
.basehead2 p {
  padding: 0 20px;
  display: inline-block;
  font-size: 30px;
  position: relative;
}
.basehead2 p:after, .basehead2 p:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #c4c4c4;
  position: absolute;
  top: 50%;
}
.basehead2 p:after {
  right: -40px;
}
.basehead2 p:before {
  left: -40px;
}
.basehead2 h1 {
  color: #999999;
  font-size: 20px;
  text-transform: uppercase;
}

.pro-1 {
  margin-bottom: 100px;
}
.pro-1 .img {
  float: left;
  width: 44.5%;
  border: 2px solid #ff8c37;
}
.pro-1 .img img {
  transform: translate(3%, 4%);
  width: 100%;
}
.pro-1 .title {
  float: right;
  width: 50%;
}
.pro-1 .title .top {
  margin-bottom: 35px;
}
.pro-1 .title .top h1 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #006e93;
}
.pro-1 .title .top p {
  color: #555555;
  font-size: 16px;
  line-height: 30px;
}
.pro-1 .title .bottom {
  display: flex;
  justify-content: space-between;
}
.pro-1 .title .bottom h1 {
  font-size: 36px;
  color: #ff8c37;
  margin-bottom: 5px;
}
.pro-1 .title .bottom h1 span {
  font-size: 18px;
}
.pro-1 .title .bottom p {
  font-size: 20px;
  color: #555555;
}

.pro-2 {
  margin-bottom: 40px;
}
.pro-2 .title {
  line-height: 30px;
  color: #555555;
}
.pro-2 .title .img {
  width: 45%;
  float: right;
  padding-left: 2.5%;
  box-sizing: border-box;
  padding-bottom: 1.5%;
}
.pro-2 .title .img img {
  width: 100%;
}

.basehead3 {
  display: inline-block;
  color: #006e93;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 30px;
}
.basehead3:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #006e93;
  margin-top: 10px;
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.mask .closemask {
  color: white;
  text-align: right;
}
.mask .closemask i {
  font-size: 24px;
  cursor: pointer;
}
.mask .maskbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
}
.mask .maskbox .swiper-container .img img {
  width: 100%;
}
.mask .maskbox .swiper-container .title {
  text-align: center;
  box-sizing: border-box;
  padding: 10px 20px;
  background: white;
}
.mask .maskbox .swiper-container .icon-zuo, .mask .maskbox .swiper-container .icon-you {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: white;
  font-size: 24px;
}
.mask .maskbox .swiper-container .icon-zuo {
  left: 0;
}
.mask .maskbox .swiper-container .icon-you {
  right: 0;
}

.case-list a {
  float: left;
  display: inline-block;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.case-list a .img {
  width: 100%;
  overflow: hidden;
}
.case-list a .img img {
  width: 100%;
  transition: all 0.2s;
}
.case-list a p {
  font-size: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 60px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-list a:nth-child(4n) {
  margin-right: 0;
}
.case-list a:hover img {
  transform: scale(1.05);
}

.page {
  display: flex;
  justify-content: center;
  margin: 20px auto 50px;
}
.page a {
  display: inline-block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #b5b5b5;
  text-align: center;
  line-height: 40px;
  transition: all 0.2s;
  color: #b5b5b5;
  margin: 0 10px;
}
.page a.on, .page a:hover {
  background: #006e93;
  color: white;
  border-color: #006e93;
}

.sidenav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 10;
}
.sidenav > div {
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
.sidenav > div .sidenav-icon {
  background: #006e93;
  text-align: center;
  width: 68px;
  height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.2s;
}
.sidenav > div .sidenav-icon i {
  font-size: 26px;
  margin-bottom: 5px;
}
.sidenav > div .sidenav-icon p {
  font-size: 12px;
}
.sidenav > div:hover .sidenav-icon {
  background: #ff8c37;
}
.sidenav > div:hover .sidenav-show {
  width: auto;
  opacity: 1;
  visibility: inherit;
}
.sidenav > div .sidenav-show {
  padding: 10px;
  position: absolute;
  right: 100%;
  top: 0;
  text-align: center;
  background: #ff8c37;
  width: auto;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.sidenav > div .sidenav-show p {
  white-space: nowrap;
  color: white;
  font-weight: bold;
  font-size: 26px;
  font-family: arial;
  line-height: 48px;
}
.sidenav > div .sidenav-show .kf {
  display: flex;
  background: white;
  border-radius: 4px;
  align-items: center;
  overflow: hidden;
  padding: 4px;
  margin-bottom: 5px;
}
.sidenav > div .sidenav-show .kf span {
  font-size: 14px;
  display: block;
  white-space: nowrap;
}
.sidenav > div .sidenav-show .kf:last-child {
  margin-bottom: 0;
}

.vision {
  margin-bottom: 60px;
}
.vision .vision-nav {
  margin-bottom: 40px;
}
.vision .vision-nav .swiper-slide {
  text-align: center;
}
.vision .vision-nav .swiper-slide span {
  padding: 0 20px;
  box-sizing: border-box;
  display: inline-block;
  width: 130px;
  height: 40px;
  background: #ececec;
  color: #666666;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vision .vision-nav .swiper-slide.on span {
  background: #ff8c37;
  color: white;
}
.vision .vision-nav .vision-prev, .vision .vision-nav .vision-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #666666;
  z-index: 1;
}
.vision .vision-nav .vision-prev {
  left: 0;
}
.vision .vision-nav .vision-next {
  right: 0;
}
.vision .vision-tap > div {
  display: none;
}
.vision .vision-tap > div.on {
  display: block;
}
.vision .vision-tap > div.tapbox1 .width-10 {
  width: 100%;
  margin-bottom: 3%;
}
.vision .vision-tap > div.tapbox1 .width-5 {
  width: 48.5%;
  margin-bottom: 3%;
}
.vision .vision-tap > div.tapbox1 .item1 {
  background-color: #006e93;
  padding: 30px 55px;
  box-sizing: border-box;
  color: white;
  background-image: url(../image/bg5.jpg);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
.vision .vision-tap > div.tapbox1 .item1 h1 {
  font-family: "simli";
  margin-bottom: 20px;
  font-size: 36px;
}
.vision .vision-tap > div.tapbox1 .item1 h1:after {
  content: "";
  display: block;
  background: #dcdcdc;
  width: 60px;
  height: 2px;
}
.vision .vision-tap > div.tapbox1 .item1 p {
  font-size: 14px;
  line-height: 24px;
  color: #dcdcdc;
  width: 54%;
}
.vision .vision-tap > div.tapbox1 .item2 {
  background: white;
  padding: 30px 3%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vision .vision-tap > div.tapbox1 .item2 .title {
  flex: 1;
  padding-left: 40px;
  box-sizing: border-box;
}
.vision .vision-tap > div.tapbox1 .item2 .title h1 {
  font-size: 20px;
  margin-bottom: 10px;
}
.vision .vision-tap > div.tapbox1 .item2 .title p {
  line-height: 25px;
}

.history {
  margin-bottom: 100px;
}
.history .history-nav {
  position: relative;
  margin-bottom: 50px;
}
.history .history-nav .swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #858585;
}
@media only screen and (max-width: 1220px) {
  .history .history-nav .swiper-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.history .history-nav .swiper-container .swiper-slide {
  cursor: pointer;
  text-align: center;
}
.history .history-nav .swiper-container .swiper-slide .spot {
  margin-top: 10px;
  position: relative;
  margin-bottom: 35px;
}
.history .history-nav .swiper-container .swiper-slide .spot i {
  position: relative;
  z-index: 1;
  background: white;
  font-size: 24px;
}
.history .history-nav .swiper-container .swiper-slide .spot:after, .history .history-nav .swiper-container .swiper-slide .spot:before {
  content: "";
  display: inline-block;
  width: 50%;
  height: 1px;
  border-top: 1px dashed #858585;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.history .history-nav .swiper-container .swiper-slide .spot:before {
  left: 0;
}
.history .history-nav .swiper-container .swiper-slide .spot:after {
  right: 0;
}
.history .history-nav .swiper-container .swiper-slide p {
  font-size: 18px;
}
.history .history-nav .swiper-container .swiper-slide:first-child .spot:before {
  display: none;
}
.history .history-nav .swiper-container .swiper-slide:last-child .spot:after {
  display: none;
}
.history .history-nav .swiper-container .swiper-slide.active {
  color: #006e93;
}
.history .history-nav .history-prev,
.history .history-nav .history-next {
  background: white;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #999999;
  text-align: center;
  line-height: 44px;
  color: #999999;
  position: absolute;
  top: 0;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}
.history .history-nav .history-prev {
  left: 0;
}
.history .history-nav .history-next {
  right: 0;
}
.history .history-tab {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1220px) {
  .history .history-tab {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.history .history-tab .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.history .history-tab .swiper-slide .img {
  width: 46%;
  overflow: hidden;
}
.history .history-tab .swiper-slide .img img {
  width: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.history .history-tab .swiper-slide .title {
  width: 54%;
  box-sizing: border-box;
  padding: 50px 20px 0 40px;
}
.history .history-tab .swiper-slide .title .head {
  font-size: 24px;
  color: #ff8c37;
  margin-bottom: 40px;
}
.history .history-tab .swiper-slide .title .head span {
  font-weight: bold;
  font-size: 48px;
}
.history .history-tab .swiper-slide .title .list {
  height: 230px;
  overflow-y: hidden;
}
.history .history-tab .swiper-slide .title .list li {
  margin-bottom: 30px;
  line-height: 24px;
  color: #4a4a4a;
  position: relative;
  padding-left: 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.history .history-tab .swiper-slide .title .list li:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background: #4a4a4a;
  margin: 0 5px;
  position: absolute;
  left: 0;
  top: 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #e5e5e5 !important;
}
.mCSB_scrollTools .mCSB_draggerRail {
  background: transparent;
}

.new .top {
  display: flex;
  margin-bottom: 70px;
  border: 1px solid #eeeeee;
}
.new .top .img {
  width: 57.5%;
  max-width: 800px;
}
.new .top .img img {
  width: 100%;
}
.new .top .title {
  flex: 1;
  box-sizing: border-box;
  padding: 30px 50px 0;
}
.new .top .title h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.new .top .title p {
  margin-bottom: 75px;
  color: #666666;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 90px;
}
.new .top .title p.time {
  margin-bottom: 30px;
}
.new .top .title .more {
  display: block;
  width: 210px;
  height: 60px;
  color: white;
  text-align: center;
  line-height: 60px;
  background: #ff8c37;
}
.new .top .title .more i {
  margin-left: 20px;
}
.new .bottom a {
  display: inline-block;
  float: left;
  width: 31%;
  margin-right: 3.5%;
  background: white;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  margin-bottom: 40px;
  transition: all 0.2s;
}
.new .bottom a .img img {
  width: 100%;
}
.new .bottom a .title {
  padding: 30px;
  box-sizing: border-box;
}
.new .bottom a .title h1 {
  margin-bottom: 15px;
  font-size: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.new .bottom a .title p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 30px;
  color: #666666;
  line-height: 30px;
}
.new .bottom a .title span {
  color: #666666;
}
.new .bottom a:nth-child(3n) {
  margin-right: 0;
}
.new .bottom a:hover {
  box-shadow: 0px 0px 12px 4px #f2f2f2;
}
.new .bottom a:hover .title h1 {
  color: #006e93;
}

.newdata .top .head {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #eeeeee;
}
.newdata .top .head h1 {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 28px;
}
.newdata .top .head p {
  font-size: 14px;
  color: #999999;
}
.newdata .top .head p span {
  margin: 0 20px;
}
.newdata .top .main {
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px dashed #eeeeee;
}
.newdata .top .main p {
  margin-bottom: 30px;
}
.newdata .top .main .img {
  text-align: center;
}
.newdata .bottom {
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newdata .bottom .newdata-btn a {
  display: block;
  font-size: 14px;
  margin: 5px 0;
}
.newdata .bottom .newdata-btn a span {
  margin-left: 20px;
}
.newdata .bottom .newdata-btn a:hover {
  color: #ea543a;
}

.baseshare {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.baseshare span {
  margin-left: 10px;
}
.baseshare span a {
  display: inline-block;
  width: 32px;
}

.prolist .head {
  padding-top: 50px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prolist .head p {
  font-size: 18px;
  max-width: 200px;
}
.prolist .head .searchbox {
  height: 40px;
  font-size: 14px;
}
.prolist .head .searchbox select {
  cursor: pointer;
  width: 170px;
  height: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 40px;
  border: none;
  background-color: white;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../image/icon18.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.prolist .head .searchbox select::-ms-expand {
  display: none;
}
.prolist .head .searchbox input[type=text] {
  width: 250px;
  height: 100%;
  padding: 0 15px;
  background: white;
  margin-left: 25px;
  box-sizing: border-box;
}
.prolist .head .searchbox button {
  margin-left: 15px;
  width: 110px;
  height: 100%;
  border: none;
  background: #ff8c37;
  color: white;
  box-sizing: border-box;
}
.prolist .list a {
  float: left;
  background: white;
  display: inline-block;
  box-sizing: border-box;
  width: 22.75%;
  margin-bottom: 3%;
  margin-right: 3%;
  border: 1px solid white;
}
.prolist .list a .img {
  padding: 10px;
  box-sizing: border-box;
  height: 320px;
}
.prolist .list a .img img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prolist .list a .title {
  text-align: center;
  padding: 20px;
}
.prolist .list a .title p {
  line-height: 30px;
}
.prolist .list a:nth-child(4n) {
  margin-right: 0;
}
.prolist .list a:hover {
  border-color: #ff8c37;
}
.prolist .list a:hover .title {
  background: #ff8c37;
  color: white;
}

.prodate1 {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
.prodate1 .proshow {
  width: 44%;
}
.prodate1 .proshow .prodata-tab {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid #eeeeee;
}
.prodate1 .proshow .prodata-tab img {
  width: 100%;
}
.prodate1 .proshow .prodata-nav {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 25px 30px;
  box-sizing: border-box;
  position: relative;
}
.prodate1 .proshow .prodata-nav .swiper-slide {
  border: 2px solid #eeeeee;
  box-sizing: border-box;
  cursor: pointer;
}
.prodate1 .proshow .prodata-nav .swiper-slide img {
  width: 100%;
}
.prodate1 .proshow .prodata-nav .active {
  border-color: #ff8c37;
}
.prodate1 .proshow .prodata-nav .prodata-next,
.prodate1 .proshow .prodata-nav .prodata-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  color: #999999;
}
.prodate1 .proshow .prodata-nav .prodata-next:hover,
.prodate1 .proshow .prodata-nav .prodata-prev:hover {
  color: #ff8c37;
}
.prodate1 .proshow .prodata-nav .prodata-prev {
  left: 0;
}
.prodate1 .proshow .prodata-nav .prodata-next {
  right: 0;
}
.prodate1 .title {
  padding-top: 20px;
  flex: 1;
}
.prodate1 .title h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.prodate1 .title h3 {
  font-size: 18px;
  margin-bottom: 45px;
}
.prodate1 .title .list {
  margin-bottom: 70px;
}
.prodate1 .title .list h2 {
  font-size: 18px;
  font-weight: bold;
  color: #ff8c37;
  margin-bottom: 15px;
}
.prodate1 .title .list li {
  margin-bottom: 10px;
}
.prodate1 .title .list li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #333333;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.prodate2 {
  margin-bottom: 200px;
}
.prodate2 .prodate2-nav {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}
.prodate2 .prodate2-nav span {
  display: inline-block;
  font-size: 18px;
  height: 67px;
  line-height: 67px;
  margin: 0 25px;
  cursor: pointer;
}
.prodate2 .prodate2-nav span.on {
  color: #ff8c37;
  border-bottom: 1px solid #ff8c37;
}
.prodate2 .prodate2-tab {
  text-align: center;
}
.prodate2 .prodate2-tab > div {
  display: none;
}
.prodate2 .prodate2-tab > div.on {
  display: block;
}
.prodate2 .prodate2-tab img {
  max-width: 100%;
}

.info a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #eeeeee;
  margin-bottom: 40px;
}
.info a .img {
  width: 375px;
  overflow: hidden;
  margin-right: 2.9%;
}
.info a .img img {
  width: 100%;
  transition: all 0.2s;
}
.info a .more {
  display: inline-block;
  width: 150px;
  height: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: white;
  background: #cccccc;
}
.info a .more i {
  font-size: 24px;
}
.info a .title {
  flex: 1;
  padding-right: 7.2%;
  box-sizing: border-box;
}
.info a .title h1 {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.info a .title .time {
  margin-bottom: 25px;
  color: #666666;
}
.info a .title p {
  color: #666666;
  line-height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 96px;
}
.info a:hover {
  box-shadow: 0px 0px 12px 4px #f2f2f2;
}
.info a:hover img {
  transform: scale(1.02);
}
.info a:hover .title h1 {
  color: #006e93;
}
.info a:hover .more {
  background: #006e93;
}

.dealer {
  display: flex;
  margin-bottom: 100px;
}
.dealer .map {
  width: 61.5%;
  box-sizing: border-box;
}
.dealer .map #map {
  margin: 0 auto;
}
.dealer .listbox {
  flex: 1;
  border-left: 1px dashed #c1c1c1;
  border-right: 1px dashed #c1c1c1;
  box-sizing: border-box;
  padding: 0 45px;
}
.dealer .listbox .head {
  font-size: 26px;
  margin-bottom: 5px;
  font-weight: 400;
}
.dealer .listbox .list {
  height: 400px;
  overflow-y: scroll;
  margin-bottom: 35px;
}
.dealer .listbox .list::-webkit-scrollbar {
  display: none;
}
.dealer .listbox .list a {
  padding: 15px 0;
  display: flex;
  border-bottom: 1px dashed #c3c3c3;
}
.dealer .listbox .list a span {
  display: inline-block;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  color: white;
  background: #ff8c37;
  margin-right: 10px;
}
.dealer .listbox .list a div {
  flex: 1;
}
.dealer .listbox .list a div p {
  line-height: 34px;
}
.dealer .listbox .list-btn i {
  cursor: pointer;
  display: inline-block;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  color: #333333;
  border: 1px solid #333333;
}
.dealer .listbox .list-btn i:hover {
  background: #ff8c37;
  color: white;
  border-color: #ff8c37;
}

.contact1 {
  margin-bottom: 70px;
  background-image: url(../image/bg6.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact1 .list {
  width: 31.5%;
  max-width: 442px;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0px 12px 4px #f2f2f2;
  box-sizing: border-box;
  padding: 40px;
}
.contact1 .list .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.contact1 .list .item .img {
  margin-right: 15px;
}
.contact1 .list .item .title {
  flex: 1;
}
.contact1 .list .item .title p {
  font-size: 14px;
  color: #666666;
  line-height: 14px;
  margin-bottom: 7px;
}
.contact1 .list .item .title h1 {
  line-height: 16px;
}
.contact1 .list .item:last-child {
  margin-bottom: 0;
}
.contact1 .map {
  width: 66.5%;
  max-height: 930px;
  box-shadow: 0px 0px 12px 4px #f2f2f2;
  overflow: hidden;
}
.contact1 .map img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.contact2 {
  background-image: url(../image/bg7.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 90px;
}
.contact2 form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 97%;
  margin: 0 auto;
  max-width: 1080px;
}
.contact2 form .item {
  border: 1px solid #eeeeee;
  width: 47%;
  margin-bottom: 30px;
  position: relative;
}
.contact2 form .item input {
  height: 46px;
  padding: 0 20px;
  color: #666666;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.contact2 form .item.yzm > .img {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.contact2 form textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 20px;
  border: 1px solid #eeeeee;
  resize: none;
  margin-bottom: 50px;
}
.contact2 form .submit {
  display: block;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  border: none;
  color: white;
  background: #006e93;
}

.faultbox {
  width: 100%;
  max-width: 1400px;
  height: 440px;
  margin-bottom: 95px;
  background-image: url(../image/bg8.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.faultbox.on .swiper-slide {
  transition: all 1s !important;
}
.faultbox .swiper-slide {
  transition-timing-function: ease-in-out;
  margin-top: 240px;
  text-align: center;
  cursor: pointer;
}
.faultbox .swiper-slide .img {
  transition: all 1s;
  width: 60%;
  overflow: hidden;
  border: 10px solid #006e93;
  border-radius: 50%;
  margin: 0 auto;
  box-sizing: border-box;
}
.faultbox .swiper-slide .img img {
  width: 100%;
}
.faultbox .swiper-slide p {
  margin-top: 15px;
}
.faultbox .swiper-slide-prev,
.faultbox .swiper-slide-next {
  margin-top: 75px;
}
.faultbox .swiper-slide-active {
  margin-top: 0;
}
.faultbox .swiper-slide-active .img {
  border-color: #ff8c37;
  width: 71%;
}
.faultbox .swiper-slide-active p {
  font-size: 22px;
  color: #ff8c37;
}
.faultbox .title {
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  color: #666666;
}
.faultbox .title > div {
  display: none;
}
.faultbox .title > div.on {
  display: block;
}
.faultbox .title h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1400px) {
  .basehead1 {
    padding: 30px 0 35px;
  }
  .basehead1 p {
    font-size: 24px;
  }
  .basehead1 h1 {
    font-size: 36px;
  }

  .ibox3 {
    padding-bottom: 70px;
  }
  .ibox3 .list .swiper-slide {
    padding: 0px 15px 15px;
  }
  .ibox3 .list .swiper-slide .img {
    height: 200px;
    margin: 15px 0;
  }
  .ibox3 .list .swiper-slide .hoverbox {
    padding: 30px;
  }
  .ibox3 .list .swiper-slide .hoverbox h1 {
    font-size: 18px;
  }

  .pro-1 {
    margin-bottom: 40px;
  }

  .pro-1 .img,
  .pro-1 .title {
    float: none;
  }

  .pro-1 .title {
    width: 100%;
  }

  .pro-1 .img {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 625px;
  }
}
@media only screen and (max-width: 1200px) {
  .ibox2 > div a {
    padding: 30px 0 25px;
    margin: 0 2%;
    width: 13%;
  }
  .ibox2 > div a p {
    font-size: 14px;
  }
  .ibox2 > div a div {
    margin-bottom: 10px;
  }
  .ibox2 > div a div .img1 img,
  .ibox2 > div a div .img2 img {
    width: 80%;
  }

  .ibox3 {
    padding-bottom: 30px;
  }
  .ibox3 .list .swiper-slide .hoverbox .more2 {
    height: 50px;
    width: 70%;
  }

  .basehead1 {
    padding: 25px 0 25px;
  }
  .basehead1 p {
    font-size: 20px;
  }
  .basehead1 h1 {
    font-size: 32px;
  }

  .ibox4 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .ibox4 .right .title {
    width: 180px;
    height: 180px;
    padding: 15px;
    top: -15px;
  }
  .ibox4 .right .title h1 {
    margin-top: 20px;
    font-size: 30px;
  }
  .ibox4 .right .title h2 {
    margin: 10px 0;
    font-size: 20px;
  }
  .ibox4 .left .head {
    margin-bottom: 30px;
  }
  .ibox4 .left .title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .ibox5 {
    padding-bottom: 30px;
  }
  .ibox5 .swiper-slide .title {
    padding: 0 20px;
  }

  .basebanner h1 {
    font-size: 32px;
  }

  .basebanner h1:after {
    margin-top: 5px;
  }

  .basetab .box {
    padding: 10px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .basetab .box .link {
    flex-wrap: wrap;
  }

  .basetab .box .link a {
    height: 44px;
    line-height: 44px;
  }

  .basetab .box .seat {
    margin-bottom: 10px;
  }

  .basehead2 {
    padding: 40px 0 30px;
  }

  .basehead2 p {
    padding: 0 15px;
    font-size: 24px;
  }

  .basehead2 h1 {
    font-size: 18px;
  }

  .case-list a p {
    font-size: 16px;
    line-height: 40px;
  }

  .case-list a {
    width: 32%;
  }

  .case-list a:nth-child(4n) {
    margin-right: 2%;
  }

  .case-list a:nth-child(3n) {
    margin-right: 0;
  }

  .contact1 .list {
    padding: 15px 20px;
  }

  .dealer #map .jsmap-container {
    margin: 0 auto;
  }

  .history {
    margin-bottom: 50px;
  }

  .history .history-nav .swiper-container .swiper-slide .spot {
    margin-bottom: 10px;
  }

  .history .history-nav {
    margin-bottom: 30px;
  }

  .history .history-tab .swiper-slide .title {
    padding: 10px 20px 0 20px;
  }

  .history .history-tab .swiper-slide .title .head {
    margin-bottom: 15px;
  }

  .info a {
    margin-bottom: 25px;
  }

  .info a .title {
    padding-right: 2%;
  }

  .info a .more {
    width: 120px;
    height: 40px;
    line-height: 40px;
  }

  .info a .img {
    width: 30%;
    max-width: 375px;
  }

  .info a .title .time {
    margin-bottom: 0;
  }

  .info a .title p {
    font-size: 14px;
    max-height: 72px;
    line-height: 24px;
  }

  .new .top {
    margin-bottom: 40px;
  }

  .new .top .title .more {
    width: 160px;
    height: 44px;
    line-height: 44px;
  }

  .new .top .title p {
    margin-bottom: 45px;
  }

  .new .top .img {
    border-right: none;
  }
  .new .top .img img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .new .top .title {
    padding: 20px;
  }

  .new .bottom a {
    margin-right: 2%;
    margin-bottom: 2%;
    width: 32%;
  }

  .new .bottom a .title {
    padding: 15px;
  }

  .new .bottom a .title p,
  .new .bottom a .title h1 {
    margin-bottom: 10px;
  }

  .prodate1 .title {
    padding-left: 20px;
    box-sizing: border-box;
  }

  .prodate1 .title .list {
    margin-bottom: 35px;
  }

  .prolist .head {
    padding: 30px 0;
  }

  .prolist .head .searchbox button {
    width: 65px;
  }

  .prolist .head .searchbox select {
    width: 130px;
  }

  .prolist .head .searchbox input[type=text] {
    width: 180px;
    height: 100%;
    padding: 0 15px;
    background: white;
    margin-left: 10px;
  }

  .prolist .list a {
    width: 32%;
    margin-right: 2%;
  }

  .prolist .list a:nth-child(4n) {
    margin-right: 2%;
  }

  .prolist .list a:nth-child(3n) {
    margin-right: 0%;
  }

  .prolist .list a .img {
    height: 280px;
  }

  .vision {
    margin-bottom: 30px;
  }

  .vision .vision-nav {
    margin-bottom: 20px;
  }
  .vision .vision-nav .swiper-slide span {
    padding: 0 15px;
    width: 60%;
    margin: 0 auto;
  }

  .faultbox {
    background-size: contain;
  }

  .faultbox .swiper-slide {
    margin-top: 168px;
  }

  .faultbox .swiper-slide-prev, .faultbox .swiper-slide-next {
    margin-top: 35px;
  }

  .faultbox .swiper-slide-active {
    margin-top: 0px;
  }

  .dealer {
    display: block;
  }

  .dealer .map {
    width: 100%;
  }

  .dealer .listbox {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .ibox4 {
    padding-top: 40px;
    display: block;
  }
  .ibox4 .right {
    width: 100%;
    max-width: 568px;
    margin: 0 auto;
    padding-top: 30px;
  }
  .ibox4 .right .title {
    top: 10px;
    width: 150px;
    height: 150px;
    padding: 20px;
  }
  .ibox4 .right .title h1 {
    font-size: 24px;
  }
  .ibox4 .right .title h2 {
    font-size: 18px;
    margin: 10px 0;
  }
  .ibox4 .left {
    padding: 0;
    width: 100%;
  }
  .ibox4 .left .head {
    margin-bottom: 10px;
  }
  .ibox4 .left .head h3 {
    font-size: 20px;
  }
  .ibox4 .left .head h1 {
    font-size: 36px;
  }
  .ibox4 .left .title {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .ibox4 .left .ibox4-main div .img {
    margin-bottom: 20px;
  }

  .contact1 {
    margin-bottom: 10px;
  }

  .contact1 .map,
  .contact1 .list {
    width: 100%;
    float: none;
    max-width: inherit;
  }

  .contact1 .list {
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
  }
  .contact1 .list .item {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .ibox2 {
    padding-bottom: 10px;
  }
  .ibox2 > div {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ibox2 > div a {
    margin: 0;
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
  .ibox2 > div a div {
    width: 40px;
    margin-bottom: 0;
  }
  .ibox2 > div a div .img2 {
    width: 100%;
  }
  .ibox2 > div a p {
    font-size: 12px;
  }

  .ibox3 {
    padding-bottom: 10px;
  }
  .ibox3 .list .swiper-slide {
    padding: 10px;
  }
  .ibox3 .list .swiper-slide .img {
    height: 140px;
    margin: 10px 0;
  }
  .ibox3 .list .swiper-slide h4 {
    margin-bottom: 8px;
  }
  .ibox3 .list .swiper-slide h2 {
    font-size: 14px;
  }
  .ibox3 .list .swiper-slide .more1 {
    width: 114px;
    height: 34px;
    line-height: 34px;
    padding: 0px 17px;
  }
  .ibox3 .list .swiper-slide .hoverbox {
    padding: 10px;
  }
  .ibox3 .list .swiper-slide .hoverbox h1 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .ibox3 .list .swiper-slide .hoverbox p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .ibox3 .list .swiper-slide .hoverbox .more2 {
    height: 36px;
    font-size: 14px;
  }

  .basehead1 {
    padding: 15px 0;
  }
  .basehead1 p {
    font-size: 16px;
  }
  .basehead1 h1 {
    font-size: 24px;
  }

  .ibox4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ibox4 .left .title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .ibox4 .left .head h1 {
    font-size: 32px;
  }
  .ibox4 .left .ibox4-main {
    flex-wrap: wrap;
  }
  .ibox4 .left .ibox4-main > div {
    width: 50%;
    margin-bottom: 10px;
  }
  .ibox4 .left .ibox4-main > div .img {
    margin-bottom: 5px;
  }
  .ibox4 .left .ibox4-main > div h2 {
    font-size: 26px;
    margin: 0;
  }
  .ibox4 .left .ibox4-main > div p {
    font-size: 16px;
  }
  .ibox4 .right {
    padding-top: 0;
  }
  .ibox4 .right .title {
    position: inherit;
    top: inherit;
    left: inherit;
    width: 100%;
    display: block;
    height: auto;
    display: flex;
    align-items: center;
  }
  .ibox4 .right .title h1 {
    font-size: 16px;
    margin-top: 0;
  }
  .ibox4 .right .title h2 {
    margin: 0;
    font-size: 16px;
  }

  .ibox5 {
    padding-bottom: 20px;
  }
  .ibox5 .ibox5-swiper {
    width: 90%;
  }
  .ibox5 .ibox5-swiper .swiper-slide {
    display: block;
  }
  .ibox5 .ibox5-swiper .swiper-slide .img {
    width: 100%;
  }
  .ibox5 .ibox5-swiper .swiper-slide .img img {
    transform: inherit;
    position: inherit;
  }
  .ibox5 .ibox5-swiper .swiper-slide .title {
    padding: 0;
    width: 100%;
  }
  .ibox5 .ibox5-swiper .swiper-slide .title h1 {
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .ibox5 .ibox5-swiper .swiper-slide .title p {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .ibox5 .ibox5-swiper .swiper-slide .title p.time {
    margin-bottom: 10px;
  }
  .ibox5 .ibox5-swiper .swiper-slide .title .more {
    font-size: 14px;
    width: 150px;
    height: 40px;
    line-height: 40px;
  }
  .ibox5 .ibox5-swiper .ibox5-btn .ibox5-next,
  .ibox5 .ibox5-swiper .ibox5-btn .ibox5-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .ibox6 {
    display: block;
  }
  .ibox6 a {
    width: 100%;
  }
  .ibox6 a .head {
    padding-top: 20px;
  }
  .ibox6 a .head p {
    font-size: 20px;
  }
  .ibox6 a .head h1 {
    font-size: 26px;
  }

  .basebanner h1 {
    font-size: 20px;
  }

  .basebanner h1:after {
    width: 50px;
    height: 1px;
  }

  .basehead2 {
    padding: 20px 0 10px;
  }

  .basehead2 p {
    font-size: 18px;
  }

  .basehead2 h1 {
    font-size: 16px;
  }

  .basetab .box .link {
    width: 100%;
  }

  .basetab .box .link a {
    width: 32%;
    height: 34px;
    font-size: 14px;
    line-height: 34px;
    margin-right: 2%;
    margin-bottom: 1%;
  }

  .basetab .box .link a:nth-child(3n) {
    margin-right: 0;
  }

  .case-list a {
    width: 49%;
  }

  .case-list a p {
    font-size: 14px;
    line-height: 30px;
  }

  .case-list a:nth-child(3n) {
    margin-right: 2%;
  }

  .case-list a:nth-child(2n) {
    margin-right: 0;
  }

  .page {
    margin: 20px auto;
  }

  .page a {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }

  .contact1 .list {
    display: block;
  }

  .contact1 .list .item {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact2 {
    padding-bottom: 10px;
  }

  .contact2 form {
    width: 100%;
  }

  .contact2 form .item input {
    height: 34px;
    font-size: 14px;
    padding: 0 10px;
  }

  .contact2 form .item {
    margin-bottom: 10px;
  }

  .contact2 form .yzm,
  .contact2 form .yj {
    width: 100%;
  }

  .contact2 form textarea {
    margin-bottom: 10px;
  }

  .contact2 form .submit {
    width: 100%;
    height: 36px;
    line-height: 36px;
  }

  .history .history-tab {
    padding: 0;
  }

  .history .history-tab .swiper-slide {
    display: block;
  }

  .history .history-tab .swiper-slide .img {
    margin: 0 auto;
    margin-bottom: 10px;
    width: 80%;
  }
  .history .history-tab .swiper-slide .img img {
    position: inherit;
    top: inherit;
    left: inherit;
    transform: inherit;
  }

  .history .history-tab .swiper-slide .title {
    width: 100%;
    padding: 0;
  }

  .history .history-tab .swiper-slide .title .list {
    height: 150px;
  }

  .history .history-tab .swiper-slide .title .list li {
    margin-bottom: 10px;
  }

  .history .history-tab .swiper-slide .title .head {
    margin-bottom: 10px;
  }

  .history .history-tab .swiper-slide .title .head span {
    font-size: 26px;
  }

  .history .history-nav .history-prev,
  .history .history-nav .history-next {
    width: 28px;
    height: 28px;
    line-height: 28px;
    top: 10px;
  }

  .info a {
    display: block;
    padding: 10px;
    margin-bottom: 15px;
  }

  .info a .img {
    max-width: inherit;
    width: 100%;
    margin-bottom: 10px;
  }

  .info a .title {
    margin: 0;
    margin-bottom: 10px;
  }

  .info a .more {
    width: 100%;
    font-size: 14px;
  }

  .new .top {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
  }

  .new .top .img {
    width: 100%;
  }
  .new .top .img img {
    position: inherit;
    top: inherit;
    transform: inherit;
  }

  .new .top .title {
    padding: 0;
  }

  .new .top .title p.time,
  .new .top .title h1 {
    margin-bottom: 0;
  }

  .new .top .title p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .new .top .title .more {
    width: 100%;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }

  .new .bottom a {
    width: 49%;
  }

  .new .bottom a:nth-child(3n) {
    margin-right: 2%;
  }

  .new .bottom a:nth-child(2n) {
    margin-right: 0;
  }

  .new .bottom a .title {
    padding: 5px;
  }

  .new .bottom a .title h1 {
    font-size: 14px;
  }

  .new .bottom a .title p,
  .new .bottom a .title span {
    font-size: 12px;
    line-height: 20px;
  }

  .newdata .top .head {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .newdata .top .head h1 {
    font-size: 20px;
  }

  .newdata .top .main {
    padding: 15px 0;
  }

  .newdata .top .main .img {
    width: 100%;
  }
  .newdata .top .main .img img {
    width: 100%;
  }

  .newdata .bottom {
    display: block;
    padding: 10px 0;
  }

  .prodate1 {
    display: block;
    padding: 10px;
  }

  .prodate1 .proshow {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .prodate1 .proshow .prodata-nav {
    padding: 10px 20px;
  }

  .prodate1 .title {
    padding: 0;
  }

  .prodate1 .title h1 {
    font-size: 20px;
  }

  .prodate1 .title h1,
  .prodate1 .title h3,
  .prodate1 .title .list {
    margin-bottom: 10px;
  }

  .prodate1 .title .list li {
    font-size: 14px;
  }

  .prodate2 {
    margin-bottom: 40px;
  }

  .prodate2 .prodate2-nav span {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    margin: 0px 10px;
  }

  .pro-1 .title .top {
    margin-bottom: 20px;
  }

  .pro-1 .title .top p {
    font-size: 14px;
    line-height: 24px;
  }

  .pro-1 .title .bottom {
    flex-wrap: wrap;
  }
  .pro-1 .title .bottom div {
    width: 50%;
    text-align: center;
  }

  .pro-1 .title .bottom h1 {
    font-size: 28px;
  }

  .pro-1 .title .bottom p {
    font-size: 18px;
  }

  .pro-2 {
    margin-bottom: 10px;
  }

  .pro-2 .title {
    line-height: 24px;
    font-size: 14px;
  }

  .pro-2 .title .img {
    display: block;
    width: 100%;
    max-width: 587px;
    margin: 0 auto;
    float: none;
    padding-left: 0;
  }

  .basehead3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .prolist .head {
    display: block;
    padding: 10px 0;
  }
  .prolist .head p {
    margin-bottom: 10px;
  }

  .prolist .list a {
    width: 49%;
    margin-right: 2%;
    font-size: 12px;
    margin-bottom: 2%;
  }

  .prolist .list a:nth-child(3n) {
    margin-right: 2%;
  }

  .prolist .list a:nth-child(2n) {
    margin-right: 0%;
  }

  .prolist .list a .img {
    height: 125px;
  }

  .prolist .list a .title {
    padding: 5px;
  }

  .prolist .head .searchbox {
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }

  .prolist .head .searchbox select {
    width: 49%;
    height: 30px;
  }

  .prolist .head .searchbox input[type=text] {
    width: 49%;
    height: 30px;
    margin-left: 2%;
  }

  .prolist .head .searchbox button {
    height: 30px;
    width: 100%;
    margin-left: 0;
    margin-top: 2%;
  }

  .vision .vision-nav {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .vision .vision-nav .swiper-slide {
    text-align: center;
  }
  .vision .vision-nav .swiper-slide span {
    padding: 0 10px;
    font-size: 14px;
    width: 100%;
    height: 35px;
    line-height: 35px;
  }

  .vision .vision-tap > div.tapbox1 .width-5 {
    width: 100%;
  }

  .vision .vision-tap > div.tapbox1 .item1 {
    background-size: cover;
    padding: 10px;
  }

  .vision .vision-tap > div.tapbox1 .item1 p {
    width: 100%;
  }

  .vision .vision-tap > div.tapbox1 .item1 h1 {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .vision .vision-tap > div.tapbox1 .item2 {
    padding: 2%;
  }

  .vision .vision-tap > div.tapbox1 .item2 .title {
    padding-left: 10px;
  }

  .vision .vision-tap > div.tapbox1 .item2 .title h1 {
    font-size: 16px;
  }

  .vision .vision-tap > div.tapbox1 .item2 .title p {
    line-height: 22px;
    font-size: 12px;
  }

  .faultbox {
    height: auto;
    background: none;
    margin-bottom: 10px;
  }

  .faultbox .swiper-slide {
    margin-top: 0px;
  }

  .faultbox .swiper-slide .img {
    border: 2px solid #006e93;
  }

  .faultbox .title {
    width: 80%;
    position: inherit;
    text-align: center;
    bottom: inherit;
    left: inherit;
    transform: inherit;
    transform: inherit;
    margin: 0 auto;
    margin-top: 20px;
  }

  .faultbox .swiper-slide-active p {
    font-size: 18px;
  }

  .dealer .map #map {
    width: 100% !important;
    height: auto !important;
    max-width: 650px;
    margin: 0 auto;
  }
  .dealer .map #map .jsmap-container {
    width: 100% !important;
    height: auto !important;
  }
  .dealer .map #map .jsmap-container svg {
    width: 100% !important;
    height: auto !important;
  }

  .dealer {
    margin-bottom: 10px;
  }

  .dealer .listbox {
    padding: 0 10px;
  }

  .dealer .listbox .list {
    margin-bottom: 10px;
  }

  .dealer .listbox .head {
    font-size: 22px;
  }

  .dealer .listbox .list a {
    padding: 10px 0;
  }

  .dealer .listbox .list a div p {
    font-size: 14px;
    line-height: 24px;
  }

  .list-btn {
    text-align: center;
  }

  .sidenav > div .sidenav-icon {
    width: 30px;
    height: 30px;
  }

  .sidenav > div .call p {
    line-height: 30px;
    font-size: 20px;
  }

  .sidenav > div:hover .call {
    width: 160px;
  }

  .sidenav > div .sidenav-icon p {
    display: none;
  }

  .faultbox .swiper-slide-active .img, .faultbox .swiper-slide .img {
    width: 70%;
  }
}

.ibox2 .basehead1{
    padding-bottom: 0;
    display: block;
}
@media only screen and (max-width: 768px){
    .ibox2 .basehead1{
        padding: 15px 0;
    }
}
