@charset "utf-8";
/*
简介：可通用所有项目，包含样式重设和常用样式，参考自 Alice CSS
规则：a、前缀 j- 开始的样式都是供javascript操作的，通用的 不可随意更改
     b、前缀 g- 开始的样式都是通用的模块样式，不可随意更改
*/
/* CSS Reset 样式重设
----------------------------------------------------------------------------- */
/* 防止用户自定义背景颜色对网页的影响 */
html {
  color: #000;
  background: #fff;
  font-family: '思源黑体 CN';
}
/* 清除内外边距，内外边距通常让各个浏览器样式的表现位置不同 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
th,
td,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 重设 HTML5 标签，IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* 要注意表单元素并不继承父级 font 的问题 */
/* 使表单元素在 IE 下能继承字体大小 */
input,
select,
textarea {
  font-size: 100%;
}
/* ?解决在 IE7 及更早浏览器下随着 value 增多两边留白也随着增加的问题 */
input,
button {
  *overflow: visible;
}
/* ?去除 button 点击时在火狐下的虚线框 */
/* button::-moz-focus-inner {
  border-color: transparent;
} */
/* ?解决 Firefox 下按钮内文字垂直居中 */
input[type='reset']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner,
input[type='file'] > input[type='button']::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
  padding: 0;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align */
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
  vertical-align: top;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
/* 将斜体扶正 */
address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
  font-style: normal;
  font-weight: 500;
}
/* 代码字体 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/* 去掉列表前的标识 li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自 Yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 600;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 标记，类似于手写的荧光笔的作用 */
mark {
  background: #fffdd1;
}
/* 正常链接 未访问 */
a:link,
a:visited {
  color: #000;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* 常用样式
----------------------------------------------------------------------------- */
/* 人民币符号 */
.fn-rmb {
  font-family: arial;
  font-style: normal;
  padding-right: 4px;
}
* {
  tap-highlight-color: rgba(255, 255, 255, 0);
  -ms-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
  /*-webkit-user-select: none;*/
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
}
.top-bar {
  width: 100%;
  background: #fff;
  border-bottom: 2px #e20000 solid;
}
.top-bar-login,
.top-bar-login-after {
  line-height: 30px;
  font: 12px/30px simsun;
}
.top-bar-login-after {
  display: none;
}
.top-bar .ofw-logo {
  margin-top: 2px;
}
.top-bar-login > .signin {
  display: inline-block;
  background: #e20000;
  height: 24px;
  width: 50px;
  border-radius: 2px;
  text-align: center;
  margin-top: 3px;
  line-height: 24px;
}
.top-bar-login > .signin > a {
  color: #fff;
}
.top-bar-login a,
.top-bar-login-after a {
  color: #333;
}
.top-bar-login a:hover,
.top-bar-login-after a:hover {
  text-decoration: underline;
}
.top-bar-login i {
  font-style: normal;
  color: #666;
}
.top-bar-login > .email {
  padding-left: 24px;
  display: inline-block;
  background: url(//images.ofweek.com/images/global-steven/email/ico_email.png) no-repeat left;
}
.top-bar-login .lang_change {
  text-decoration: none;
  font-size: 19px;
  line-height: 34px;
  padding-top: 5px;
}
.top-bar-login .lang_change a {
  text-decoration: none;
  font-size: 19px;
  line-height: 34px;
  font-family: Arial, Helvetica, sans-serif;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
#g-footer {
  width: 100%;
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  clear: both;
  font-family: simsun;
  font-size: 12px;
}
#g-footer .g-wrap {
  width: 1200px;
  margin: auto;
}
#g-footer .g-footer-nav {
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#g-footer .g-footer-nav a {
  color: #1a4991;
  text-decoration: none;
}
#g-footer .g-footer-nav a:hover {
  color: #f15c00;
  text-decoration: underline;
}
#g-footer .g-footer-links {
  color: #666;
  float: left;
  line-height: 25px;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}
#g-footer .g-footer-links a,
#g-footer .g-footer-record a {
  color: #243851;
}
#g-footer .g-footer-links a:hover,
#g-footer .g-footer-record a:hover {
  color: #c00;
}
#g-footer .g-footer-record {
  width: 536px;
  margin: 0 auto 10px;
  overflow: hidden;
}
#g-footer .g-footer-record p {
  border: 1px solid #d2d2d2;
  float: left;
  font-size: 12px;
  height: 50px;
  line-height: 20px;
  margin: 6px;
  width: 120px;
  overflow: hidden;
}
#g-footer .g-footer-record .fn-fl {
  padding: 3px;
  float: left;
}
#g-footer .g-footer-record .fn-fr {
  padding: 5px 3px 0;
  width: 72px;
  float: right;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
}
.publicTitle {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  padding: 30px 0;
}
.publicTitle p {
  font-size: 60px;
  text-transform: uppercase;
  color: #dde9f5;
}
.publicTitle span {
  position: absolute;
  top: 63px;
  left: calc(50% - 72px);
}
nav {
  line-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
nav .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav .wrap .logos {
  width: 50%;
}
nav .wrap .logos img {
  vertical-align: middle;
}
nav .wrap .logos img:nth-child(1) {
  width: 60px;
  height: 40px;
}
nav .wrap .logos img:nth-child(2) {
  padding: 0 15px;
}
nav .wrap .logos img:nth-child(3) {
  height: 40px;
}
nav .wrap ul {
  display: flex;
  flex-direction: row;
}
#mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999;
  box-sizing: border-box;
  padding: 100px 0;
  display: none;
}
#mask .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 7.5%;
  left: 72%;
  transform: translate(-50%, 0);
}
#mask #from_box {
  width: 40%;
  height: 80%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
header {
  height: 570px;
  background: url(../img/bannar.png) no-repeat center;
  text-align: left;
  padding-top: 140px;
  color: #fff;
}
header .top {
  border-left: 6px solid #00f3cb;
  padding-left: 25px;
  margin-bottom: 40px;
}
header h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 40px;
}
header h2 {
  margin: 20px 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
}
header h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
}
header p {
  margin: 20px 0 25px 0;
  font-size: 24px;
  font-weight: 600;
  color: #010966;
  padding: 10px 30px;
  background: url(../img/time_bg.png) no-repeat left;
}
header span {
  width: 186px;
  height: 45px;
  display: inline-block;
  background: #f9f9f9;
  color: #2a2f35;
  text-align: center;
  line-height: 45px;
  font-size: 18.5px;
  border-radius: 5px;
}
header span img {
  vertical-align: middle;
}
.intro {
  box-sizing: border-box;
  padding-top: 40px;
}
.intro .intro_cont {
  display: flex;
  justify-content: space-between;
}
.intro .intro_cont .videobox {
  position: relative;
  width: 1032px;
  height: 582px;
}
.intro .intro_cont .videobox video {
  width: 100%;
  height: 100%;
}
.intro .intro_cont .videobox .form_mask {
  width: 100%;
  height: 582px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.intro .intro_cont .videobox .form_mask a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  border-radius: 30px;
  color: #fff;
  background-color: #e20000;
}
.intro .intro_cont .videolist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.intro .intro_cont .videolist img {
  width: 155px;
  height: 90px;
}
.download {
  padding: 20px 0 80px 0;
}
.download .publicTitle {
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  padding: 30px 0;
}
.download .publicTitle p {
  font-size: 60px;
  text-transform: uppercase;
  color: #dde9f5;
}
.download .publicTitle span {
  position: absolute;
  top: 63px;
  left: calc(50% - 90px);
}
.download .intro_cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.download .intro_cont li {
  width: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.download .intro_cont li p {
  width: 380px;
  height: 65px;
  text-align: center;
  background: #001393;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download .intro_cont li .button {
  position: absolute;
  right: 0;
  bottom: 65px;
}
.link_us {
  padding-top: 20px;
  background: url(../img/link_us.png) no-repeat top;
}
.link_us_title {
  position: relative;
  font-size: 48px;
  line-height: 93px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 10px;
  text-indent: 5px;
}
.link_us_title_lit {
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  top: -14px;
}
.link_us_contont_left {
  width: 55%;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: left;
  color: #fff;
}
.link_us_contont {
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.right {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  z-index: 9;
  font-size: 18px;
}
.right ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.right_gg-item {
  display: none;
  position: absolute;
}
.social-share .item {
  width: 50%;
}
.social-share .item a .share-n {
  position: absolute;
  left: 32px;
  top: 0;
  width: 80px;
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
  -webkit-text-stroke-width: 0;
  padding-left: 10px;
}
.social-share .item a .share-n:hover {
  color: #000;
}
.social-share {
  position: absolute;
  top: -24px;
  left: -180px;
  width: 120px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.right ul li {
  width: 146px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 2.5px 0;
  color: #fff;
  cursor: pointer;
}
.right ul li a {
  color: #fff;
}
.right ul li:nth-child(1) {
  position: relative;
  background: #3760f3;
}
.right ul li:nth-child(2) {
  background: #f39a0f;
}
.right ul li:nth-child(3) {
  background: #f3610f;
}
.right ul li:nth-child(4) {
  background: #07c284;
}
.right ul li:nth-child(4) img {
  padding-right: 10px;
}
.right ul li:nth-child(5) {
  position: relative;
  background: #4732ff;
}
.right ul li:nth-child(5):hover .code {
  display: block;
}
.right ul li:nth-child(5) .code {
  display: none;
  position: absolute;
  left: -145px;
  top: 0px;
}
.right ul li:nth-child(6) {
  position: relative;
  background: #cccccc;
}
