@import '/static/cn/css/animate.css';
@font-face {
  font-family: 'ArialBlack';
  src: url(/static/cn/font/ArialBlack.ttf), url(/static/cn/font/ArialBlack.eot), url(/static/cn/font/ArialBlack.woff);
  font-weight: normal;
  font-style: normal;
}
.title-font-one {
  font-family: ArialBlack;
  text-transform: uppercase;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.w1300 {
  width: 1300px;
  margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999999;
}
.header .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1620px;
  min-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.header .head .logo {
  display: block;
  width: 152px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 152px auto;
  background-image: url(/static/cn/images/logo.png);
}
.header .head .top-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .head .top-nav .item {
  position: relative;
  height: 100%;
  margin: 0 20px;
}
.header .head .top-nav .item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.header .head .top-nav .item .line {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header .head .top-nav .item > ul {
  position: absolute;
  top: 100px;
  left: 0;
  display: none;
  width: 100%;
  padding: 20px 10px;
  background-color: rgba(1, 24, 68, 0.5);
  z-index: 999999;
}
.header .head .top-nav .item > ul li {
  width: 100%;
}
.header .head .top-nav .item > ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  word-break: break-word;
}
.header .head .top-nav .item:hover .line {
  display: block;
}
.header .head .top-nav .item:hover > ul {
  display: block;
  animation: fadeInUp 0.3s;
}
.header .head .top-nav .language-switch {
  position: relative;
  margin-left: 100px;
}
.header .head .top-nav .language-switch .language-btn {
  display: flex;
  align-items: center;
  padding: 0 26px;
}
.header .head .top-nav .language-switch .language-btn .lang-current {
  font-size: 14px;
  line-height: 100px;
  color: #fff;
}
.header .head .top-nav .language-switch .language-btn .lang-icon {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center center;
  background-image: url(/static/cn/images/language_icon.png);
  transform: rotate(180deg);
  transition: transform 0.2s;
}
.header .head .top-nav .language-switch .line {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header .head .top-nav .language-switch .language-list {
  position: absolute;
  top: 100px;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 0;
  background-color: rgba(1, 24, 68, 0.5);
}
.header .head .top-nav .language-switch .language-list .language-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}
.header .head .top-nav .language-switch:hover .language-btn .lang-icon {
  transform: rotate(0deg);
}
.header .head .top-nav .language-switch:hover .line {
  display: block;
}
.header .head .top-nav .language-switch:hover .language-list {
  display: flex;
  animation: fadeInUp 0.3s;
}
.header.active {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.header.active .head .logo {
  background-image: url(/static/cn/images/logo_active.png);
}
.header.active .head .top-nav .item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #333;
}
.header.active .head .top-nav .item .line {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header.active .head .top-nav .item > ul {
  position: absolute;
  top: 100px;
  left: 0;
  display: none;
  width: 100%;
  padding: 20px 10px;
  background-color: rgba(1, 24, 68, 0.5);
  z-index: 999999;
}
.header.active .head .top-nav .item > ul li {
  width: 100%;
}
.header.active .head .top-nav .item > ul li a {
  color: #fff;
}
.header.active .head .top-nav .item:hover .line {
  display: block;
}
.header.active .head .top-nav .item:hover > ul {
  display: block;
}
.header.active .head .top-nav .language-switch .language-btn .lang-current {
  color: #333;
}
.header.active .head .top-nav .language-switch .language-btn .lang-icon {
  background-image: url(/static/cn/images/language_icon_a.png);
}
.header.active .head .top-nav .language-switch .line {
  background-color: #fff;
}
.header.active .head .top-nav .language-switch .language-list {
  background-color: rgba(1, 24, 68, 0.5);
}
.header.active .head .top-nav .language-switch .language-list .language-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}
footer {
  width: 100%;
  background-color: #021b34;
}
footer .my-container {
  max-width: 1620px;
  min-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  padding-top: 59px;
  padding-bottom: 46px;
}
footer .my-container .menu-group {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
footer .my-container .menu-group .menu-left {
  display: flex;
  align-items: center;
}
footer .my-container .menu-group .menu-left .menu-link {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
footer .my-container .menu-group .menu-left .line {
  display: block;
  height: 18px;
  width: 2px;
  margin: 0 50px;
  background-color: #fff;
}
footer .my-container .menu-group .company-name {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
footer .my-container .bottom-text-group {
  margin-top: 25px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
footer .my-container .bottom-text-group .bottom-left {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  opacity: 0.3;
}
footer .my-container .bottom-text-group .bottom-right p {
  text-align: right;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  opacity: 0.5;
}
.inner-banner {
  position: relative;
  width: 100%;
  min-width: 1200px;
}
.inner-banner .bg-img {
  display: block;
  width: 100%;
}
.inner-banner .position-text-box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.inner-banner .position-text-box h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
  animation: fadeInUp 1.5s;
}
.inner-banner .position-text-box h4 {
  margin-top: 17px;
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  letter-spacing: 10px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: fadeInUp 1.5s;
}
.pub-position-icon {
  position: fixed;
  bottom: 380px;
  right: 30px;
  z-index: 9999;
  background-color: #02376d;
  border-radius: 70px;
  overflow: hidden;
  width: 70px;
  transition: all 0.5s;
}
.pub-position-icon .con-box {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 11px;
  min-width: 420px;
  padding-right: 20px;
  border-radius: 50px;
}
.pub-position-icon .con-box img {
  display: block;
  width: 50px;
}
.pub-position-icon .con-box h2 {
  padding-left: 10px;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  white-space: nowrap;
}
.pub-position-icon:hover {
  width: 345px;
}
.pub-position-icon.position-2 {
  bottom: 290px;
}
.pub-position-icon.position-2:hover {
  width: 229px;
}
.pub-proposal-form {
  width: 100%;
}
.pub-proposal-form .bg {
  display: none;
  background-color: #02376d;
}
.pub-proposal-form .bg-active {
  display: block;
  background-color: #02376d;
}
.pub-proposal-form .business-contact {
  position: relative;
  width: 100%;
  padding-top: 110px;
  background-image: url(/static/cn/images/business/bg.png);
  background-size: 100% 100%;
  background-position: 50%;
  background-repeat: no-repeat;
}
.pub-proposal-form .business-contact .cup {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 11px;
}
.pub-proposal-form .business-contact .business-contact-main h5 {
  margin-bottom: 40px;
  font-size: 24px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #ffffff;
  line-height: 36px;
  text-align: center;
}
.pub-proposal-form .business-contact .business-contact-main .contact-tab {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.pub-proposal-form .business-contact .business-contact-main .contact-tab .contact-tab-list {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  cursor: pointer;
  border-bottom: 3px solid #02376d;
}
.pub-proposal-form .business-contact .business-contact-main .contact-tab .contact-tab-list img {
  width: 40px;
  height: 40px;
}
.pub-proposal-form .business-contact .business-contact-main .contact-tab .contact-tab-list p {
  margin-left: 8px;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
  opacity: 0.7;
}
.pub-proposal-form .business-contact .business-contact-main .contact-tab .contact-tab-list-active {
  border-bottom: 3px solid #009bd3;
}
.pub-proposal-form .form-box {
  display: none;
  padding-top: 49px;
  background-color: #02376d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pub-proposal-form .form-box .form-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pub-proposal-form .form-box .form-list .input-box {
  width: 580px;
  margin-right: 39px;
  margin-bottom: 30px;
}
.pub-proposal-form .form-box .form-list .input-box input {
  width: 580px;
  height: 50px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pub-proposal-form .form-box .form-list .input-box input::-webkit-input-placeholder {
  color: #ffffff;
  /*WebKit browsers*/
}
.pub-proposal-form .form-box .form-list .input-box input::-moz-placeholder {
  color: #ffffff;
  /*Mozilla Firefox 4 to 18 */
}
.pub-proposal-form .form-box .form-list .input-box input::-moz-placeholder {
  color: #ffffff;
  /*Mozilla Firefox 19+ */
}
.pub-proposal-form .form-box .form-list .input-box input::-ms-input-placeholder {
  color: #ffffff;
  /*Internet Explorer 10+*/
}
.pub-proposal-form .form-box .form-list .input-box textarea::-webkit-input-placeholder {
  color: #ffffff;
  /*WebKit browsers*/
}
.pub-proposal-form .form-box .form-list .input-box textarea::-moz-placeholder {
  color: #ffffff;
  /*Mozilla Firefox 4 to 18 */
}
.pub-proposal-form .form-box .form-list .input-box textarea::-moz-placeholder {
  color: #ffffff;
  /*Mozilla Firefox 19+ */
}
.pub-proposal-form .form-box .form-list .input-box textarea::-ms-input-placeholder {
  color: #ffffff;
  /*Internet Explorer 10+*/
}
.pub-proposal-form .form-box .form-list .input-box:nth-child(2n) {
  margin-right: 0;
}
.pub-proposal-form .form-box .form-list .text-box {
  width: 100%;
  margin-right: 0;
}
.pub-proposal-form .form-box .form-list .text-box textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pub-proposal-form .form-box .form-list .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  margin: 40px auto;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  background: #009bd3;
}
.pub-proposal-form .form-box-active {
  display: block;
}
@media screen and (min-width: 1315px) {
  body {
    overflow-x: hidden;
  }
}
