@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import "../font/iconfont.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.wrap header nav {
  width: 100%;
  height: 100px;
  max-width: 1920px;
  max-height: 100px;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.wrap header nav .logo {
  width: 60px;
  height: 60px;
}
.wrap header nav .list {
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 18px;
  color: #fff;
  margin-left: 15%;
}
.wrap header nav .list > li {
  width: 80px;
  height: 100%;
  line-height: 100px;
  text-align: center;
}
.wrap header nav .list > li > a {
  display: block;
  position: relative;
  height: 100%;
  font-size: 18px;
  color: #fff;
}
.wrap header nav .list > li > a:hover::before {
  opacity: 1;
}
.wrap header nav .list > li > a::before {
  opacity: 0;
  content: "▼";
  position: absolute;
  top: -25%;
  left: 40%;
  font-size: 14px;
  transition: all 0.3s;
}
.wrap header nav .list > li:hover .tow-list {
  display: block;
}
.wrap header nav .list > li .tow-list {
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0%;
}
.wrap header nav .list > li .tow-list ul {
  display: flex;
  width: 100%;
  justify-content: center;
}
.wrap header nav .list > li .tow-list ul li {
  position: relative;
  width: 150px;
  height: 50px;
  line-height: 50px;
}
.wrap header nav .list > li .tow-list ul li a {
  position: absolute;
  bottom: 2px;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  border-bottom: 2px solid transparent;
}
.wrap header nav .list > li .tow-list ul li:hover a {
  position: absolute;
  bottom: 2px;
  border-bottom: 2px solid rgb(0, 234, 255);
}

.wrap header .headContent {
  width: 100%;
  position: relative;
}
.wrap header .headContent .textBox {
  padding-left: 2.08333%;
  padding-top: 2.08333%;
  padding-bottom: 2.08333%;
  padding-right: 24.30556%;
  position: absolute;
  left: 13%;
  top: 30%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.wrap header .headContent .textBox h2 {
  font-size: 36px;
  color: #004FA2;
  font-weight: bold;
}
.wrap header .headContent .textBox p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}
.wrap header .headContent .imgBox {
  width: 100%;
}

.wrap main .mainNav {
  width: 100%;
  height: 80px;
  background-color: #fff;
  margin-bottom: 60px;
}
.wrap main .mainNav .contentBox {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap main .mainNav .contentBox .leftBox .icon {
  font-size: 24px;
  color: #ccc;
}
.wrap main .mainNav .contentBox .leftBox a {
  font-size: 16px;
  color: #555;
}
.wrap main .mainNav .contentBox .rightBox {
  height: 80px;
}
.wrap main .mainNav .contentBox .rightBox ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.wrap main .mainNav .contentBox .rightBox ul li {
  width: 150px;
  line-height: 80px;
  flex-shrink: 0;
  color: #555;
}
.wrap main .mainNav .contentBox .rightBox ul li:hover {
  background-color: #004FA2;
}
.wrap main .mainNav .contentBox .rightBox ul li:hover a {
  color: #ECFBFF;
}
.wrap main .mainNav .contentBox .rightBox ul li a {
  display: block;
  color: #555;
}
.wrap main .mainNav .contentBox .rightBox ul .active {
  background-color: #004FA2;
}
.wrap main .mainNav .contentBox .rightBox ul .active a {
  color: #ECFBFF;
}

.wrap footer {
  width: 100%;
  margin-top: 70px;
  background-color: #fff;
}
.wrap footer .footLogo {
  width: 75%;
  height: 63px;
  margin: 0 auto;
}
.wrap footer .footLogo .logoBox {
  width: 61px;
  height: 63px;
}
.wrap footer .contentBox {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.wrap footer .contentBox .leftBox {
  width: 40%;
}
.wrap footer .contentBox .leftBox h2 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 20px 0;
}
.wrap footer .contentBox .leftBox p {
  font-size: 14px;
  color: #555;
  margin: 20px 0;
}
.wrap footer .contentBox .leftBox .link {
  position: relative;
  padding: 5px 5px;
  cursor: pointer;
  display: -webkit-inline-box;
  border: 1px solid #004fa2;
  color: #004fa2;
  text-align: center;
}
.wrap footer .contentBox .leftBox .link .icon {
  color: #004fa2;
  margin-left: 3px;
}
.wrap footer .contentBox .leftBox .link:hover ul {
  height: 93px;
  border: 1px solid #004fa2;
}
.wrap footer .contentBox .leftBox .link ul {
  position: absolute;
  height: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  clear: both;
  border: 1px solid transparent;
  z-index: 10;
  top: 27px;
  left: -1px;
  transition: all 0.3s;
}
.wrap footer .contentBox .leftBox .link ul li {
  overflow: hidden;
}
.wrap footer .contentBox .leftBox .link ul li a {
  display: block;
  width: 100%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #fff;
  opacity: 0.9;
  font-size: 14px;
  transition: all 0.3s;
  color: #004fa2;
}
.wrap footer .contentBox .leftBox .link ul li:hover a {
  background-color: #004fa2;
  color: #fff;
}
.wrap footer .contentBox .leftBox .link ul::-webkit-scrollbar {
  display: none;
}
.wrap footer .contentBox .rightBox {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.wrap footer .contentBox .rightBox .contact {
  width: 35%;
}
.wrap footer .contentBox .rightBox .contact h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.wrap footer .contentBox .rightBox .contact p {
  font-size: 14px;
  margin-bottom: 20px;
}
.wrap footer .contentBox .rightBox .contact h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.wrap footer .contentBox .rightBox .contact .icon {
  font-size: 35px;
  color: #949494;
}
.wrap footer .contentBox .rightBox .contact .icon:hover {
  color: #004FA2;
}
.wrap footer .contentBox .rightBox .contact .icon:hover + .email {
  display: flex;
}
.wrap footer .contentBox .rightBox .contact .icon:hover + .email .icon {
  color: #004FA2;
}
.wrap footer .contentBox .rightBox .contact .email {
  display: none;
  box-sizing: border-box;
  padding-left: 10px;
  width: 300px;
  height: 45px;
  background-color: #fff;
  align-items: center;
  border-radius: 5px;
  position: absolute;
  left: 45px;
  top: 115px;
  box-shadow: 0 2px 5px 2px #ccc;
}
.wrap footer .contentBox .rightBox .contact .email p {
  margin-left: 5px;
}
.wrap footer .contentBox .rightBox .contact .email::before {
  content: "";
  width: 150px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 111;
}
.wrap footer .contentBox .rightBox .contact .email::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 2px #ccc;
  position: absolute;
  bottom: 0;
  left: 30%;
  transform: translateY(50%) rotate(45deg);
}
.wrap footer .contentBox .rightBox .code {
  width: 50%;
}
.wrap footer .contentBox .rightBox .code p {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.wrap footer .contentBox .rightBox .code .imgBox {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.wrap footer .contentBox .rightBox .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.wrap footer .contentBox .rightBox .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wrap footer .contentBox .rightBox .contact-form input,
.wrap footer .contentBox .rightBox .contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  height: 40px;
  box-sizing: border-box;
}
.wrap footer .contentBox .rightBox .contact-form input::placeholder,
.wrap footer .contentBox .rightBox .contact-form textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.wrap footer .contentBox .rightBox .contact-form textarea {
  height: 120px;
  resize: none;
}
.wrap footer .contentBox .rightBox .contact-form .submit-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 3px;
}
.wrap footer .contentBox .rightBox .contact-form .submit-btn {
  width: 112px;
  height: 41px;
  background-color: #26C997;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 6px 30px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
}
.wrap footer .contentBox .rightBox .contact-form .submit-btn:hover {
  background-color: #20B086;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(38, 201, 151, 0.2);
}
.wrap footer .contentBox .rightBox .contact-form input:focus,
.wrap footer .contentBox .rightBox .contact-form textarea:focus {
  outline: none;
  border-color: #26C997;
  background-color: #fff;
}
.wrap footer .footBox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: #004FA2;
  color: #fff;
}
.wrap footer .footBox .leftBox {
  width: 35%;
}
.wrap footer .footBox .leftBox ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wrap footer .footBox .leftBox ul li a {
  color: #fff;
  font-size: 12px;
}
.wrap footer .footBox .leftBox ul li a:hover {
  color: rgb(255, 169, 99);
}
.wrap footer .footBox .rightBox p {
  font-size: 14px;
}

.wrap header {
  position: relative;
  width: 100%;
}
.wrap main {
  width: 100%;
  background-color: #F8F8F8;
  padding-bottom: 60px;
}
.wrap main .mainBg {
  width: 75%;
  margin: 0 auto 120px;
  text-align: center;
}
.wrap main .mainBg .textBox h3 {
  color: #333;
  font-size: 24px;
}
.wrap main .mainBg .textBox h4 {
  color: #999;
  margin: 25px 0;
}
.wrap main .mainBg .textBox > p {
  font-size: 14px;
  color: #999;
  margin-bottom: 60px;
}
.wrap main .mainBg ul {
  height: 75%;
  height: 170px;
  display: flex;
  justify-content: space-around;
}
.wrap main .mainBg ul li {
  text-align: center;
  color: #fff;
}
.wrap main .mainBg ul li .imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 78px;
  height: 78px;
  transition: all 0.5s;
}
.wrap main .mainBg ul li .imgBox:hover {
  transform: translateY(-30px);
}
.wrap main .mainBg ul li h4 {
  margin: 30px 0 8px;
  color: #333;
}
.wrap main .mainBg ul li p {
  color: #666;
}
.wrap main .mainBg ul li:nth-of-type(2) {
  margin-left: 70px;
}
.wrap main .mainContact {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.wrap main .mainContact .leftBox {
  width: 400px;
  height: 750px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.wrap main .mainContact .leftBox .textBox {
  flex: 1;
  box-sizing: border-box;
  padding: 0px 40px 0px 20px;
}
.wrap main .mainContact .leftBox .textBox:hover {
  background-color: #004FA2;
}
.wrap main .mainContact .leftBox .textBox:hover p {
  color: #fff;
}
.wrap main .mainContact .leftBox .textBox:hover h3 {
  color: #fff;
}
.wrap main .mainContact .leftBox .textBox h3 {
  margin-top: 45px;
  margin-bottom: 40px;
  color: #004FA2;
  font-size: 20px;
  font-weight: bold;
}
.wrap main .mainContact .leftBox .textBox p {
  line-height: 25px;
  color: #444657;
}
.wrap main .mainContact .rightBox {
  width: 1000px;
  height: 750px;
}

/*# sourceMappingURL=me.css.map */
