@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: BarlowCondensed-Bold;
  src: url(../fonts/BarlowCondensed-Bold.ttf);
}
:root {
  /* rgb(17, 92, 214) */
  --color1: #0d4da1;
  --color2: rgba(0, 0, 0, 0.4784313725);
  --color3: #333;
  --color4: #f3f3f3;
  --color5: #fba919;
  --color6: #e10012;
  --color7: #e1001261;
}

body {
  overflow-x: hidden;
  color: #666;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

img {
  object-fit: cover;
}

ul,
li {
  list-style: none;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: var(--color3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

p {
  margin: 0;
  line-height: 34px;
}

.blank1 {
  padding: 60px 0;
}

.blank2 {
  padding: 30px 0 100px;
}

.modular_title1 {
  text-align: center;
  width: 100%;
}
.modular_title1 > img {
  margin-bottom: 5px;
  height: 18px;
}
.modular_title1 h2 {
  font-size: 26px;
  color: #201f1f;
  font-weight: 700;
  font-family: "Microsoft YaHei", 微软雅黑, "Microsoft JhengHei", 华文细黑, STHeiti, MingLiu;
}
.modular_title1 p {
  margin-bottom: 40px;
  font-size: 13px;
  line-height: 40px;
  color: #6f6f6f;
  font-family: "Microsoft YaHei", 微软雅黑, "Microsoft JhengHei", 华文细黑, STHeiti, MingLiu;
}

.modular_title2 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
  position: relative;
}
.modular_title2::before {
  background: var(--color1);
  content: "";
  height: 1px;
  top: calc(100% + 4px);
  left: 0px;
  position: absolute;
  width: 57px;
}
.modular_title2::after {
  background: var(--color1);
  content: "";
  height: 0.5px;
  top: calc(100% + 7px);
  left: 0px;
  position: absolute;
  width: 45px;
}

.modular_title3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color1);
}

.modular1 {
  height: 320px;
  padding: 30px;
  text-align: center;
  margin-bottom: 50px;
  transition: 0.25s;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  border: #efefef 1px solid;
}
.modular1:hover {
  transform: translateY(-2%);
  border: var(--color6) 1px solid;
}
.modular1 > span {
  font-size: 50px;
  line-height: 50px;
}
.modular1 > span > i {
  font-size: 50px;
  color: var(--color1);
}
.modular1 > h4 {
  font-size: 28px;
  color: var(--color1);
  text-align: center;
  font-weight: 500;
  margin: 16px 0;
}
.modular1 > .text {
  overflow-y: scroll;
  height: 140px;
}
.modular1 > .text::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modular1 > .text::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
.modular1 > .text > p {
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  text-indent: 2em;
  color: #767676;
}

.modular2 {
  display: block;
  transition: all 0.7s ease;
  border: #fff 1px solid;
  margin-bottom: 50px;
}
.modular2 > .img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.modular2 > .img > img {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}
/* .modular2 > .img > .text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modular2 > .img > .text > h4 {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.7s ease;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
  font-size: 15px;
} */
.modular2 > .text {
  background-color: #fff;
  padding: 10px 18px;
  position: relative;
  z-index: 0;
  transition: all 0.7s ease;
}
.modular2 > .text > h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.6s ease;
}
.modular2 > .text > p {
  font-size: 14px;
  transition: all 0.6s ease;
  line-height: 24px;
}
.modular2:hover{
    transform: translateY(-5px);
}
.modular2:hover > .img > img {
  transform: scale(1.1);
}
.modular2:hover > .text {
  background-color: var(--color1);
}
.modular2:hover > .text > h4 {
  color: #fff;
}
.modular2:hover > .text > p {
  color: #fff;
}
/* .modular2:hover > .img > .text {
  top: 0%;
} */
/* .modular2:hover > .img > .text > h4 {
  transform: scale(1);
  opacity: 1;
} */
/* .modular2:hover > .text > h4 {
  transform: scale(0.6);
  opacity: 0;
} */

.modular3 {
  transition: all 0.7s ease;
  border: #fff 1px solid;
  margin-bottom: 50px;
}
.modular3 > .img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.modular3 > .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(-100%, 100%);
  background-color: rgba(23, 23, 23, 0.4);
  transition: all 0.7s ease;
}
.modular3 > .img > img {
  width: 100%;
  height: 100%;
}
.modular3 > .text {
  background-color: #fff;
  padding: 18px 18px 5px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}
.modular3 > .text > h4 {
  height: 60px;
  line-height: 30px;
  overflow: hidden;
  font-size: 16px;
  font-weight: normal;
}
.modular3 > .text > h4 > a {
  white-space: nowrap;
  transition: all 0.5s ease;
}
.modular3 > .text > div > a {
  font-size: 20px;
  transition: all 0.5s ease;
  display: flex;
  justify-content: space-between;
}
.modular3 > .text > div > a > span {
  font-size: 12px;
  line-height: 30px;
  color: #666;
  display: flex;
}
.modular3:hover {
  box-shadow: 0px 4px 16px 0px #808080;
  transform: translateY(-2%);
  border: var(--color6) 1px solid;
}
.modular3:hover > .img:before {
  transform: translate(0%, 0%);
}
.modular3:hover > .text > h4 > a {
  color: var(--color6);
}
.modular3:hover > .text > div > a {
  color: var(--color5);
}

.modular_a1 {
  position: relative;
  background: #fff;
  display: inline-block;
  overflow: hidden;
  border-radius: 70px;
  margin: 0 10px;
  transition: all 0.5s ease;
}
.modular_a1 > i {
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--color1);
  transition: all 0.5s ease;
}
.modular_a1 > span {
  display: block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  padding: 5px 30px 5px;
  position: relative;
  transition: all 0.5s ease;
}
.modular_a1:hover > i {
  width: 100%;
  left: 0;
}
.modular_a1:hover > span {
  color: #fff;
}

.modular_breadcrumb1 {
  border-bottom: #efefef 1px solid;
  padding: 20px 0;
}
.modular_breadcrumb1 > .container > div {
  display: flex;
  align-items: center;
  color: #767676;
  font-size: 16px;
  line-height: 35px;
}
.modular_breadcrumb1 > .container > div > a {
  padding: 0 10px;
  font-size: 16px;
  color: #767676;
}

.modular_paging1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.modular_paging1 > .page_info {
  font-size: 16px;
}
.modular_paging1 > .page_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modular_paging1 > .page_nav > a {
  display: block;
  padding: 0 10px;
  margin: 0 5px;
  line-height: 32px;
  font-size: 16px;
  color: #898989;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
  transition: all 0.5s ease;
  margin-bottom: 10px;
}
.modular_paging1 > .page_nav > a:hover {
  background-color: var(--color1);
  border: 1px solid var(--color1);
  color: #fff;
}
.modular_paging1 > .page_nav > .page_num {
  color: #fff;
  background-color: var(--color1);
  border: 1px solid #ccc;
}

.modular_paging2 {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
}
.modular_paging2 > a {
  font-size: 14px;
  line-height: 35px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
}
.modular_paging2 > a > i {
  font-size: 30px;
  margin: 0 5px;
}

header {
  background: transparent;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  height: 120px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  transition: all 0.5s ease;
}
header > nav {
  width: 1200px;
  max-width: 100%;
  height: inherit;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all 0.5s ease;
}
header > nav > .logo {
  position: relative;
  float: left;
  height: inherit;
}
header > nav > .logo > a {
  height: 120px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
header > nav > .logo > a > img {
  height: 75px;
  padding: 15px 0;
}
header > nav > .logo > a > img + img {
  display: none;
}
header > nav > .logo::before {
  content: "";
}
header > nav > .menu {
  position: relative;
  float: right;
  margin-right: 20px;
}
header > nav > .menu > ul {
  display: flex;
}
header > nav > .menu > ul > li {
  margin-left: 60px;
  padding: 45px 0px 20px;
  position: relative;
  transition: all 0.5s ease;
}
header > nav > .menu > ul > li > a {
  display: flex;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  color: #fff;
  position: relative;
  transition: all 0.5s ease;
}
header > nav > .menu > ul > li > ul {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
  background: rgba(255, 255, 255, 0.8901960784);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 4px;
}
header > nav > .menu > ul > li > ul::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 7px 6px;
  border-color: transparent transparent #d9d9d9 transparent;
}
header > nav > .menu > ul > li > ul > li {
  overflow: hidden;
  border-bottom: 1px solid #d9d9d9;
}
header > nav > .menu > ul > li > ul > li > a {
  padding: 10px 20px;
  line-height: 30px;
  height: 50px;
  display: block;
  transition: all 0.5s ease;
  text-align: center;
}
header > nav > .menu > ul > li > ul > li:hover > a {
  background-color: var(--color1);
  color: #fff;
}
header > nav > .menu > ul > li > ul > li:last-child {
  border-radius: 0 0 4px 4px;
}
header > nav > .menu > ul > li > ul > li:last-child:hover {
  border-bottom: 1px solid var(--color1);
}
header > nav > .menu > ul > li::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 5px;
  left: 0;
  background-color: #fff;
  transition: all 0.5s ease;
}
header > nav > .menu > ul > .as::after{
  background-color: var(--color1);  
}
header > nav > .menu > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
header > nav > .menu > ul > li:hover::after {
  width: 100%;
}
header > nav > .menu > ul > li.active > a::before {
  background: var(--color1);
}
header > nav > .menu > ul > li.active::after {
  width: 100%;
}
header > nav > .menu > ul > li.active:hover > a::before {
  background: #fff;
}
header > nav > .mobile_menu {
  display: none;
  position: relative;
}
header > nav > .mobile_menu > i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  left: 0;
}
header > nav > .mobile_menu > p {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
header > .mobile_menu_ul {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background-color: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}
header > .mobile_menu_ul > .mobile_menu_logo {
  background: linear-gradient(rgba(244, 244, 244, 0.8), rgba(244, 244, 244, 0.8)), url(../images/transparent.jpg) center no-repeat;
  background-size: cover;
  padding: 20px 0 15px 18px;
  margin-bottom: 10px;
}
header > .mobile_menu_ul > .mobile_menu_logo > img {
  height: 60px;
}
header > .mobile_menu_ul > li {
  line-height: 45px;
  padding: 0 15px;
  border-bottom: 1px solid var(--color4);
}
header > .mobile_menu_ul > li > i {
  font-size: 18px;
  margin-right: 20px;
}
header > .mobile_menu_ul > li > i + a + i {
  float: right;
  transition: all 0.5s ease;
}
header > .mobile_menu_ul > li > ul {
  display: none;
}
/*header > .mobile_menu_ul > li > ul > li {*/
/*  padding-left: 38px;*/
/*}*/
header > .mobile_menu_ul > li > ul > li > a{
  padding-left: 38px;
  display: block;
}
header > .mobile_menu_bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  transform: translateX(100%);
}
header > .active {
  transform: translateX(0%);
}

footer {
  background-color: var(--color1);
  position: relative;
}
footer > .wave {
  height: 120px;
  width: 100%;
  position: absolute;
  top: -120px;
}
footer > .wave > .wave2,
footer > .wave > .wave1 {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

footer > .wave > div > div {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
  background-size: 50% 120px;
}
footer > .wave > .wave1 > div {
  animation: footer1 10s linear infinite;
}
footer > .wave > .wave2 > div {
  animation: footer1 17s linear infinite;
}
@keyframes footer1 {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
footer > .top > .container {
  padding: 40px 0 0;
  position: relative;
}
footer > .top > .container > .back {
  /* background-image: url(../images/mape.png); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.8;
}
footer > .top > .container > .row{
  flex-wrap: nowrap;
}
footer > .top > .container > .row > .menu_box {
  display: flex;
  justify-content: center;
}
footer > .top > .container > .row > div > .menu {
  padding: 0 40px;
  border: 1px solid #fff;
  height: 45px;
  border-radius: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -45px;
  right: 240px;
  z-index: 10;
}
footer > .top > .container > .row > div > .menu > li {
  line-height: 35px;
  padding: 0 16px;
  position: relative;
}
footer > .top > .container > .row > div > .menu > li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: #fff;
}
footer > .top > .container > .row > div > .menu > li > a {
  font-size: 13px;
  line-height: 26px;
  color: #fff;
  position: relative;
  transition: all 0.5s ease;
}
footer > .top > .container > .row > div > .menu > li > a::before {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 2px;
  content: "";
  background-color: var(--color5);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}
footer > .top > .container > .row > div > .menu > li > a:hover {
  padding-left: 20px;
}
footer > .top > .container > .row > div > .menu > li > a:hover::before {
  opacity: 1;
}
footer > .top > .container > .row > div > .logo {
  padding-bottom: 13px;
  /*display: flex;*/
  /*align-items: flex-start;*/
  /*flex-direction: column;*/
  /*justify-content: center;*/
}
footer > .top > .container > .row > div > .logo > p {
  color: rgb(125, 125, 125);
  padding: 20px 0 0;
}
footer > .top > .container > .row > div{
  position: relative;
}
footer > .top > .container > .row > div::after{
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(to top, var(--color1), #fff, var(--color1));
}
footer > .top > .container > .row > div:nth-child(3):after{
  content: none;
}
footer > .top > .container > .row > .lx{
  display: none;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 40px;
  background: #007fc9;
}
footer > .top > .container > .row > .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer > .top > .container > .row > .left > h2{
  font-size: 19px;
  color: #fff;
}
footer > .top > .container > .row > .left > .logo > img {
  height: 50px;
}
footer > .top > .container > .row > .text {
  color: #fff;
  /*padding: 0px 90px 0 85px;*/
  flex: none;
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer > .top > .container > .row > .text > .contact > p{
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1;
}
footer > .top > .container > .row > .text > .en {
  margin-bottom: 20px;
}
footer > .top > .container > .row > .text > p > a {
  color: #fff;
  font-size: 13px;
}
footer > .top > .container > .row > .text > .modular_title2 {
  font-size: 18px;
  color: var(--color5);
}
footer > .top > .container > .row > .text > .modular_title2::before {
  background-color: #fff;
  width: 36px;
  height: 3px;
  top: calc(100% + 12px);
}
footer > .top > .container > .row > .text > .contact > li {
  display: flex;
  line-height: 35px;
  color: #fff;
}
footer > .top > .container > .row > .text > .contact > .li > p {
  margin: 0;
  font-size: 30px;
  font-family: BarlowCondensed-Bold;
  margin-bottom: 10px;
}
footer > .top > .container > .row > .text > .contact > li > i {
  font-size: 10px;
}
footer > .top > .container > .row > .text > .contact > li > p {
  font-size: 14px;
  line-height: 25px;
}
footer > .top > .container > .row > .right {
  float: right;
  display: flex;
  padding-left: 100px;
}
footer > .top > .container > .row > .right > div > div > img {
  width: 82px;
  height: 82px;
}
footer > .top > .container > .row > .right > div > p {
  text-align: center;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
footer > .bottom {
  /* background-color: #0a3c7d; */
  background-color: var(--color1);
}
footer > .bottom > .container > .row > div > p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 30px 0;
}
footer > .bottom > .container > .row > div > p+p{
  display: none;
}
footer > .bottom > .container > .row > div > p > a {
  font-size: 14px;
  color: #fff;
}
footer > .bottom > .container > .row > div > p > a:hover {
  color: var(--color5);
}
footer > .back_to_top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  display: none;
  cursor: pointer;
  background-color: #666;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  transition: all 0.5s ease;
  transform: rotate(180deg);
}
footer > .back_to_top:hover {
  background-color: #000;
}

.banner1 > .swiper-container1 {
  position: relative;
}
.banner1 > .swiper-container1 > .swiper-wrapper {
  width: 100%;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: scale(1);
  transition: all 5s ease;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .img_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(23, 23, 23, 0.2);
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container {
  height: 100%;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row {
  height: 100%;
  position: relative;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div {
  position: absolute;
  top: 50%;
  transform: translateY(100%);
  opacity: 0;
  font-style: italic;
  letter-spacing: 5px;
  color: #fff;
  transition: all 1s ease;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div > h2 {
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 10px;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div > p {
  font-size: 20px;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide-active > .img {
  transform: scale(1.1);
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide-active > .container > .row > div {
  transform: translateY(-50%);
  opacity: 1;
}
.banner1 > .swiper-container1 > .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
}
.banner1 > .swiper-container1 > .swiper-pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  background-color: var(--color1);
}
.banner1 > .swiper-container1 > .swiper-button-white {
  background-size: 20px;
  width: 70px;
  height: 70px;
}
.banner1 > .swiper-container1 > .swiper-button-next {
  right: 0;
  transition: all 0.5s ease;
}
.banner1 > .swiper-container1 > .swiper-button-next:hover {
  background-color: var(--color1);
}
.banner1 > .swiper-container1 > .swiper-button-prev {
  left: 0;
  transition: all 0.5s ease;
}
.banner1 > .swiper-container1 > .swiper-button-prev:hover {
  background-color: var(--color1);
}

.banner2 {
  height: 500px;
}
.banner2 > div {
  position: relative;
  width: 100%;
  height: 100%;
}
/* .banner2 > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
} */
.banner2 > div > img {
  width: 100%;
  height: 100%;
}
.banner2 > div > .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner2 > div > .container > .title {
  color: #fff;
  text-align: center;
  transform: translateY(100%) scale(0.6);
  opacity: 0;
  animation: banner2 1s ease-in-out forwards;
}
@keyframes banner2 {
  to {
    opacity: 1;
    transform: translateY(0%) scale(1);
  }
}
.banner2 > div > .container > .title > h2 {
  font-size: 36px;
  line-height: 52px;
  font-weight: 700;
}
.banner2 > div > .container > .title > p {
  font-size: 24px;
  line-height: 35px;
  font-family: BarlowCondensed-Bold;
}

.index1 > div > div > div {
  position: relative;
}
.index1 > div > div > div > .swiper-container2 {
  width: 100%;
}
.index1 > div > div > div > .swiper-container2 > .swiper-wrapper > .swiper-slide {
  padding: 0 15px;
}
.index1 > div > div > div > .swiper-button-disabled {
  opacity: 0;
}
.index1 > div > div > div > .swiper-button-next {
  right: -30px;
}
.index1 > div > div > div > .swiper-button-next::after {
  content: "";
}
.index1 > div > div > div > .swiper-button-next > i {
  font-size: 50px;
  color: var(--color1);
}
.index1 > div > div > div > .swiper-button-prev {
  left: -30px;
}
.index1 > div > div > div > .swiper-button-prev::after {
  content: "";
}
.index1 > div > div > div > .swiper-button-prev > i {
  font-size: 50px;
  color: var(--color1);
}

.index2 {
  background-color: var(--color4);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
}
.index2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.index2 > .container > .row > div > .text > .modular_title1 > p {
  margin-bottom: 10px;
}
.index2 > .container > .row > div > .text > h2 {
  font-size: 38px;
  margin-bottom: 15px;
  text-align: center;
}
.index2 > .container > .row > div > .text > p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 28px;
}
.index2 > .container > .row > div > .text > ul {
  display: flex;
  margin-top: 35px;
}
.index2 > .container > .row > div > .text > ul > li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index2 > .container > .row > div > .text > ul > li > .icon {
  color: #fff;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 10px;
}
.index2 > .container > .row > div > .text > ul > li > p {
  font-size: 14px;
}
.index2 > .container > .row > div > .text > ul > li:nth-child(1) > .icon {
  background-color: var(--color1);
}
.index2 > .container > .row > div > .text > ul > li:nth-child(2) > .icon {
  background-color: #338acb;
}
.index2 > .container > .row > div > .text > ul > li:nth-child(3) > .icon {
  background-color: #ff731d;
}
.index2 > .container > .row > div > .text > ul > li:nth-child(4) > .icon {
  background-color: #179f53;
}
.index2 > .container > .row > div > .text > .about_btn {
  padding-top: 40px;
  text-align: center;
}

.index3 {
  position: relative;
  background-image: url(../images/bj2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 270px;
}
.index3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.index3 > div {
  color: #fff;
}

.index3 > .container > div > .swiper_box {
  position: relative;
  width: 100%;
}
.index3 > .container > div > .swiper_box > .swiper-button-next::after {
  display: none;
}
.index3 > .container > div > .swiper_box > .swiper-button-next {
  right: -50px;
}
.index3 > .container > div > .swiper_box > .swiper-button-prev::after {
  display: none;
}
.index3 > .container > div > .swiper_box > .swiper-button-prev {
  left: -50px;
}
.index3 > .container > div > .swiper_box > div > i {
  color: var(--color1);
  font-size: 50px;
  border: 1px solid #666;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index3 > .container > div > .swiper_box > .swiper-button-prev > i {
  transform: rotate(180deg);
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 {
  position: relative;
  margin: 0;
  border: none;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #0d4da1e3; */
  background-color: #00000085;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .text > h3 {
  font-size: 22px;
  font-family: BarlowCondensed-Bold;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .text > h2 {
  font-size: 26px;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .text > .modular_a1 {
  margin-top: 20px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .text > .modular_a1 > span {
  padding: 0 10px;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box > i {
  display: block;
  position: absolute;
  background-color: #fff;
  transition: all 0.5s ease;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box > i:nth-child(1) {
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box > i:nth-child(2) {
  top: 0;
  right: 0;
  height: 0px;
  width: 1px;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box > i:nth-child(3) {
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2 > .box > i:nth-child(4) {
  bottom: 0;
  left: 0;
  height: 0px;
  width: 1px;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2:hover > .box > i:nth-child(1) {
  width: 100%;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2:hover > .box > i:nth-child(2) {
  height: 100%;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2:hover > .box > i:nth-child(3) {
  width: 100%;
}
.index3 > .container > div > .swiper_box > .swiper-container > .swiper-wrapper > .swiper-slide > .modular2:hover > .box > i:nth-child(4) {
  height: 100%;
}
.index4 {
  position: relative;
  padding: 100px 0;
}
/* .index4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
} */
.index4 > .container {
  position: relative;
  z-index: 1;
}
/* .index4 > .container > .row > .modular_title1 > h2 {
  color: #fff;
}
.index4 > .container > .row > .modular_title1 > p {
  color: #fff;
} */
.index4 > .container > .row > .modular_title1 > h2 .modular2 {
  border: var(--color2) 1px solid;
}
.index4 > .container > .row > div > .modular_a1 {
  border: 1px solid #666;
}
.index5 {
  position: relative;
}
.index5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 475px;
  z-index: -1;
}
.swiper-container.left2 > div,
.swiper-container.right > div,
.swiper-container.left1 > div {
  transition: all 0.3s ease;
}
.index6 {
  position: relative;
  padding-bottom: 0;
  /* background-image: url(../images/bj1.jpg); */
}
.index6 > .container {
  display: flex;
  flex-wrap: wrap;
  height: 650px;
}
.index6 > .container > div {
  width: 50%;
}
.index6 > .container > .left {
  padding-right: 30px;
}
.index6 > .container > .left > .top > div > div > div > .title1 {
  height: 60px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
}
.index6 > .container > .left > .top > div > div > div > .title1::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color1);
}
.index6 > .container > .left > .top > div > div > div > .title1 > h4 {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
}
.index6 > .container > .left > .top > div > div > div > .title1 > span {
  color: #333;
}
.index6 > .container > .left > .top > div > div > div > .title1 > h4 + span {
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
}
.index6 > .container > .left > .top > div > div > div > a {
  display: block;
  width: 200px;
  line-height: 40px;
  border-radius: 50px;
  border: 1px solid #666;
  text-align: center;
  font-size: 12px;
  margin-top: 50px;
  transition: all 0.5s ease;
  margin-left: 1px;
}
.index6 > .container > .left > .top > div > div > div > a:hover {
  background-color: #fff;
  color: var(--color1);
}
.index6 > .container > .left > .bottom {
  position: absolute;
  bottom: 50px;
  z-index: 10;
  width: 60%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px 0 10px 0;
}
.index6 > .container > .left > .bottom > div > div > div {
  height: 150px;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background-color: #f4f4f4;
  border-right: 1px solid #e4e4e4;
}
.index6 > .container > .left > .bottom > div > div > div > div {
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.index6 > .container > .left > .bottom > div > div > div > div > img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.index6 > .container > .left > .bottom > div > div > .active {
  background-color: var(--color1);
}
.index6 > .container > .left > .bottom > div > div > .active > div > img {
  transform: translateY(-100%);
}
.index6 > .container > .left > .bottom > div > div > .active > p {
  color: #fff;
}
.index6 > .container > .right {
  position: absolute;
  left: 50%;
  height: inherit;
}
.index6 > .container > .right > div {
  width: 100%;
  height: 100%;
}
.index6 > .container > .right > div > div {
  width: 100%;
  height: 100%;
}
.index6 > .container > .right > div > div > div {
  width: 100%;
  height: 100%;
}
.index6 > .container > .right > div > div > div > img {
  width: 100%;
  height: 100%;
}
.index7 {
  background-image: url(../images/bj4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 110px;
  padding-bottom: 120px;
}
.index7 .modular_title1 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index7 .modular_title1 h2 i {
  margin-left: 10px;
  background-image: url(../images/i.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 25px;
  height: 25px;
}
.index7 > .container > div > .col-xl-12 > p {
  text-indent: 2em;
  margin-bottom: 30px;
}
.index7 > .container > div > .col-xl-12 > a {
  margin-top: 50px;
  border: 1px solid #666;
  background-color: var(--color1);
}
.index7 > .container > div > .col-xl-12 > a > i {
  background-color: #fff;
  z-index: 1;
}
.index7 > .container > div > .col-xl-12 > a > span {
  color: #fff;
}
.index7 > .container > div > .col-xl-12 > a:hover span {
  color: var(--color1);
  z-index: 1;
}
.index7 > .container > div > .zz {
  width: 100%;
  margin-top: 70px;
  display: flex;
}
.index7 > .container > div > .zz > div {
  text-align: center;
  position: relative;
}
.index7 > .container > div > .zz > div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to top, #00baf200 0%, #00baf25e 50%, #00baf200 100%);
}
.index7 > .container > div > .zz > div:last-child::after {
  display: none;
}
.index7 > .container > div > .zz > div > p {
  font-size: 13px;
  margin-top: 5px;
  line-height: 20px;
}
.index7 > .container > div > .zz > div > p > span {
  font-size: 56px;
  font-family: BarlowCondensed-Bold;
}
.about1 {
  padding: 0 0 220px;
}
.about1 > .container > .row > .text {
  padding-right: 32px;
}
.about1 > .container>.row>div > h2 {
  text-align: left;
}
.about1 > .container > .row > div > p {
  line-height: 30px;
  margin-bottom: 15px;
  color: #767676;
}
.about1 > .container > .row > div > img {
  width: 100%;
  height: calc(100% - 20px);
}

.about2 {
  background-image: url(../images/index2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
}
.about2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color2);
}
.about2 > .container > h2 {
  color: #fff;
}
.about2 > .container > .row {
  position: relative;
}
.about2 > .container > .row > .swiper-container {
  padding-bottom: 60px;
}
.about2 > .container > .row > .swiper-container > .swiper-wrapper > .swiper-slide {
  width: 520px;
}
.about2 > .container > .row > .swiper-container > .swiper-wrapper > .swiper-slide > img {
  width: 100%;
}
.about2 > .container > .row > .swiper-container > .swiper-wrapper > .swiper-slide > p {
  line-height: 40px;
  background-color: #fff;
  text-align: center;
  padding-bottom: 20px;
}
.about2 > .container > .row > .swiper-container > .swiper-pagination {
  bottom: 25px;
}
.about2 > .container > .row > .swiper-container > .swiper-pagination > .swiper-pagination-bullet {
  margin: 0 6px;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.about2 > .container > .row > .swiper-container > .swiper-pagination > .swiper-pagination-bullet-active {
  border: 3px solid var(--color1);
  background-color: var(--color1);
}
.about2 > .container > .row .swiper-button-next::after {
  color: var(--color1);
}
.about2 > .container > .row .swiper-button-prev::after {
  color: var(--color1);
}

.about3 > .container > .row > div {
  margin-bottom: 30px;
}
.about3 > .container > .row > div > div {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.about3 > .container > .row > div > div > i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(30, 155, 165, 0.1019607843);
  font-size: 20px;
  color: var(--color1);
  transition: all 0.5s ease;
  flex-shrink: 0;
  margin-right: 15px;
}
.about3 > .container > .row > div > div > .text {
  width: 305px;
}
.about3 > .container > .row > div > div > .text > h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.about3 > .container > .row > div > div > .text > p {
  line-height: 30px;
  padding-top: 8px;
}
.about3 > .container > .row > div:hover > div > i {
  background-color: var(--color1);
  color: #fff;
}

.about4 {
  background-color: var(--color4);
  padding-bottom: 30px;
}
.about4 > div > div > .modular_a1 {
  margin-top: 20px;
}
.about4 > .row > .swiper-container {
  margin: 0;
  width: 100%;
  padding-bottom: 60px;
}
.about4 > .row > .swiper-container > .swiper-wrapper {
  width: 100%;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div {
  position: relative;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .img {
  width: 100%;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .img > img {
  width: 100%;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 20px;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: all 0.5s ease;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > p {
  font-size: 12px;
  color: #666;
  line-height: 20px;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > a {
  font-size: 14px;
  line-height: 28px;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > a:hover {
  color: var(--color1);
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > span {
  display: block;
  position: absolute;
  width: 55px;
  height: 55px;
  top: -55px;
  right: 0;
  background-color: var(--color1);
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > span > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div > .text > span > a > i {
  font-size: 24px;
  color: #fff;
}
.about4 > .row > .swiper-container > .swiper-wrapper > .swiper-slide > div:hover > .text {
  transform: scaleY(1);
}
.about4 > .row > .swiper-container > .swiper-pagination > .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color3);
}
.about4 > .row > .swiper-container > .swiper-pagination > .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  background-color: var(--color1);
}

.about5 > .container > div > img {
  width: auto;
}

.news1 > .container > .row > .services_title,
.case1 > .container > .row > .services_title,
.services1 > .container > .row > .services_title,
.about_list1 > .container > .row > .services_title {
  margin-bottom: 40px;
}
.news1 > .container > .row > .services_title > .modular_a1,
.case1 > .container > .row > .services_title > .modular_a1,
.services1 > .container > .row > .services_title > .modular_a1,
.about_list1 > .container > .row > .services_title > .modular_a1 {
  margin: 0px 10px;
  border: 1px solid #666;
}
.news1 > .container > .row > .services_title > .modular_a1 > span,
.case1 > .container > .row > .services_title > .modular_a1 > span,
.services1 > .container > .row > .services_title > .modular_a1 > span,
.about_list1 > .container > .row > .services_title > .modular_a1 > span {
  padding: 5px 50px 5px;
  font-size: 14px;
}
.news1 > .container > .row > .services_title > .active,
.case1 > .container > .row > .services_title > .active,
.services1 > .container > .row > .services_title > .active,
.about_list1 > .container > .row > .services_title > .active {
  background-color: var(--color1);
}
.news1 > .container > .row > .services_title > .active > span,
.case1 > .container > .row > .services_title > .active > span,
.services1 > .container > .row > .services_title > .active > span,
.about_list1 > .container > .row > .services_title > .active > span {
  color: #fff;
}
.news1 .modular2,
.case1 .modular2,
.services1 .modular2,
.about_list1 .modular2 {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.list {
  padding: 0 0 220px;
}
.list > div {
  /* padding: 30px 0; */
  position: relative;
}
.list > div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #f3f4f8;
  transition: all 1s ease;
  z-index: -1;
}
.list > div > div{
  padding-top: 40px;
}
.list > div > div > a {
  display: flex;
}
.list > div > div > a > .img {
  flex-shrink: 0;
  width: 280px;
  height: 190px;
  overflow: hidden;
  margin-right: 50px;
}
.list > div > div > a > .img > img {
  transition: all 1s ease;
  height: 100%;
  width: 100%;
}
.list > div > div > a > .text {
  /* color: var(--color1); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
.list > div > div > a > .text > h2 {
  font-size: 18px;
  font-weight: bold;
}
.list > div > div > a > .text > p {
  font-size: 14px;
  margin: 20px 0 25px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.list > div > div > a > .text > span {
  font-size: 12px;
  display: flex;
}
.list > div > div > a > .text > span > i {
  margin-right: 10px;
}
.list > div > div > a:hover > .img > img {
  transform: scale(1.1);
}
.list > div > div > a:hover > .text > h2,
.list > div > div > a:hover > .text > span {
  color: var(--color1);
}
.list > .div:hover::after {
  left: 0;
  width: 100%;
}
.news_info1,
.about_info1 {
  padding-bottom: 80px;
}
.news_info1 > .container > .row > div > .title,
.about_info1 > .container > .row > div > .title {
  margin-top: 30px;
  text-align: center;
  font-size: 28px;
}
.news_info1 > .container > .row > div > .info,
.about_info1 > .container > .row > div > .info {
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 45px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #efefef;
}
.news_info1 > .container > .row > div > .info > span,
.about_info1 > .container > .row > div > .info > span {
  font-size: 14px;
  color: #666;
  margin: 0px 30px;
  text-align: center;
  display: flex;
  align-items: center;
}
.news_info1 > .container > .row > div > .info > span > i,
.about_info1 > .container > .row > div > .info > span > i {
  font-size: 20px;
}
.news_info1 > .container > .row > div > .content p,
.about_info1 > .container > .row > div > .content p {
  margin-bottom: 20px;
}
.news_info1 > .container > .row > div > .content img,
.about_info1 > .container > .row > div > .content img {
  max-width: 100%;
}
.case_info1 {
  padding-bottom: 120px;
}
.case_info1 > .container > .row > .info_left {
  padding-right: 30px;
}
.case_info1 > .container > .row > .info_img > .swiper-container .swiper-wrapper > .swiper-slide > img,
.services_info1 > .container > .row > .info_img > .swiper-container .swiper-wrapper > .swiper-slide > img {
  width: 100%;
}
.case_info1 > .container > .row > .info_img > .swiper-container > .swiper-pagination > .swiper-pagination-bullet,
.services_info1 > .container > .row > .info_img > .swiper-container > .swiper-pagination > .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 0;
  background-color: #fff;
}
.case_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-next,
.services_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-next {
  right: 60px;
}
.case_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-next::after,
.services_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-next::after {
  font-size: 24px;
}
.case_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-prev,
.services_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-prev {
  left: 60px;
}
.case_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-prev::after,
.services_info1 > .container > .row > .info_img > .swiper-container > .swiper-button-prev::after {
  font-size: 24px;
}
.case_info1 > .container > .row > .info_left > .title,
.services_info1 > .container > .row > .info_left > .title {
  margin: 30px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}
.case_info1 > .container > .row > .info_right > div,
.services_info1 > .container > .row > .info_right > div {
  position: relative;
  top: -70px;
  z-index: 1;
  background-color: #fff;
  width: 290px;
  padding: 45px 50px 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.case_info1 > .container > .row > .info_right > div > h3,
.services_info1 > .container > .row > .info_right > div > h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 6px;
  margin-top: 10px;
}
.case_info1 > .container > .row > .info_right > div > p img,
.services_info1 > .container > .row > .info_right > div > p img {
  width: 100px;
  height: 100px;
}
.case_info1 > .container > .row > .info_right > div::after,
.services_info1 > .container > .row > .info_right > div::after {
  position: absolute;
  bottom: -1px;
  right: -1px;
  left: -1px;
  content: "";
  background-color: var(--color1);
  height: 4px;
}
.case_info1 > .container > .row > .info_paging > .modular_paging2,
.services_info1 > .container > .row > .info_paging > .modular_paging2 {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.case_info2,
.services_info2 {
  padding: 80px 0px 50px;
}

.recruit1 > .container > .modular_title3 {
  text-align: left;
}
.recruit1 > .container > .row > div > p {
  line-height: 30px;
  margin-bottom: 15px;
  color: #767676;
}
.recruit1 > .container > .row > div+div{
      padding-top: 7px;
}
.recruit1 > .container > .row > div > img {
  width: 100%;
  height: 315px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.recruit2 {
  background-image: url(../images/hrnrbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  z-index: 0;
}
.recruit2::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(44, 43, 94, 0.7);
  z-index: -1;
}
.recruit2 > .container > .row > div {
  color: #fff;
}
.recruit2 > .container > .row > .div{
  padding-top: 5px;
  padding-right: 60px;
}
.recruit2 > .container > .row > div > img {
  width: 100%;
  height: 288px;
  /*margin-top: 70px;*/
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.recruit2 > .container > .row > div > .modular_title3 {
  text-align: left;
  color: #fff;
}
.recruit2 > .container > .row > div > .text > p {
  margin-bottom: 15px;
}
.recruit2 > .container > .row > div > .text > p > i {
  position: relative;
  color: var(--color1);
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  font-style: normal;
}
.recruit2 > .container > .row > div > .text > p > i::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}

.recruit3 > .container > .modular_title3 {
  text-align: left;
}
.recruit3 > .container > .row > div+div{
  padding-top: 7px;
}
.recruit3 > .container > .row > div > img {
  width: 100%;
  height: 155px;
  margin-bottom: 15px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.recruit3 > .container > .row > div > h3 {
  font-size: 16px;
}

.recruit4 {
  background-color: #e3eeff; 
  padding-bottom: 220px;
}
.recruit4 > .container > .row > div > img {
  width: 100%;
  height: 410px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-top: 70px;
}
.recruit4 > .container > .row > div > .modular_title3 {
  text-align: left;
}
.recruit4 > .container > .row > div > .text > p {
  background-color: #fff;
  padding: 10px 30px;
  line-height: 50px;
  -webkit-transition: 0.15s;
  transition: 0.25s;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 15px;
}
.recruit4 > .container > .row > div > .text > p > a {
  color: #767676;
  display: flex;
  align-items: center;
}
.recruit4 > .container > .row > div > .text > p > a > i {
  font-size: 24px;
}
.recruit4 > .container > .row > div > .text > p:hover > a {
  color: var(--color1);
}

.recruit_info1 > .container > .row > div > .title {
  margin-top: 30px;
  text-align: left;
  font-size: 28px;
  padding-bottom: 20px;
  border-bottom: #efefef 1px solid;
  margin-bottom: 25px;
}
.recruit_info1 > .container > .row > div > div > p {
  margin-bottom: 15px;
}

.contact1 > .container > .row > div > h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 60px;
  padding-top: 30px;
  position: relative;
}
.contact1 > .container > .row > div > h2::before {
  background: #606060 none repeat scroll 0 0;
  top: 78px;
  left: 15px;
  content: "";
  height: 1px;
  left: 0px;
  position: absolute;
  width: 88px;
}
.contact1 > .container > .row > div > h2::after {
  background: #606060 none repeat scroll 0 0;
  top: 82px;
  content: "";
  height: 1px;
  left: 0px;
  position: absolute;
  width: 57px;
}
.contact1 > .container > .row > div > form > div > div {
  margin-bottom: 20px;
}
.contact1 > .container > .row > div > form > div > div > textarea,
.contact1 > .container > .row > div > form > div > div > input {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border: none;
  background: #f3f3f3;
  border-radius: 0px;
  outline: none;
  font-size: 14px;
  color: #767676;
  font-weight: 500;
  display: block;
}
.contact1 > .container > .row > div > form > div > div > textarea {
  height: 120px;
  padding: 20px 20px 30px;
}
.contact1 > .container > .row > div > form > div > div > button {
  border: 0;
  border: 1px solid #666;
}
.contact1 > .container > .row > div:nth-child(2) {
  padding-left: 150px;
}
.contact1 > .container > .row > div:nth-child(2) > h3 {
  font-size: 18px;
  line-height: 50px;
  margin-bottom: 15px;
}
.contact1 > .container > .row > div:nth-child(2) > h3 > i {
  color: var(--color1);
  font-size: 20px;
  margin-right: 5px;
}
.contact1 > .container > .row > div:nth-child(2) > p {
  /* line-height: 50px; */
  margin-bottom: 15px;
}
.contact1 > .container > .row > div:nth-child(2) > p > i {
  color: var(--color1);
  font-size: 20px;
  margin-right: 5px;
}
.contact1 > .container > .row > div:nth-child(2) > p > img {
  width: 120px;
  height: 120px;
}

.id {
  position: relative;
  bottom: 100px;
  padding-top: 0px;
}
.pagination a{
  padding: 0 12px !important;
}
.pagination p{
  display: flex !important;
  align-items: center !important;
}
/*# sourceMappingURL=index.css.map */
