@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: 1026px;
  margin: 0 auto;
}
.publicTitle {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #ffdaa4;
  padding: 30px 0;
  background: url(../img/title.png) no-repeat center;
}
.right_gg {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 192px;
  z-index: 999;
}
.right_gg .right_gg-item {
  display: block;
  width: 100%;
  height: 50px;
  margin-bottom: 5px;
  background: url(https://www.ofweek.com/award/2022/Energy/images/icon/righticon/right_bg.png) no-repeat center;
  text-align: center;
  font-size: 18px;
  color: #000;
  line-height: 50px;
  vertical-align: middle;
}
.right_gg .right_gg-item:hover {
  font-weight: 600;
}
.right_gg .right_gg-item > img {
  height: 31px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.right_ggTop {
  display: block;
  width: 100%;
  height: 30px;
}
.social-share {
  display: none;
  position: absolute;
  top: 0px;
  left: -122px;
  width: 120px;
  border: 1px solid #ccc;
  background: #fff;
}
.right_fx {
  position: relative;
}
.right_fx:hover .social-share {
  display: block;
}
.social-share .item {
  width: 50%;
}
.social-share .item a .share-n {
  position: absolute;
  left: 32px;
  top: 0;
  width: 60px;
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
  -webkit-text-stroke-width: 0;
  padding-left: 10px;
}
.social-share .item a:hover .share-n {
  color: black;
}
nav {
  background: #141414;
  height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
nav ul {
  color: #ffe3be;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
nav ul li {
  cursor: pointer;
  letter-spacing: 2px;
}
nav ul li:hover {
  font-weight: 600;
}
nav ul li:nth-child(1) {
  line-height: 100px;
  letter-spacing: 9px;
}
nav ul li:nth-child(8) {
  color: #fff;
  background: #a98947;
  padding: 8px 17px;
  border-radius: 8px;
}
nav ul li:nth-child(8) img {
  vertical-align: sub;
}
nav ul li:nth-child(9) {
  color: #fff;
  background: #1058ce;
  padding: 8px 17px;
  border-radius: 8px;
}
nav ul li:nth-child(9) img {
  vertical-align: sub;
}
nav ul li:nth-child(10) {
  color: #fff;
  background: #6913e9;
  padding: 8px 17px;
  border-radius: 8px;
}
nav ul li:nth-child(10) img {
  vertical-align: sub;
}
header {
  height: 700px;
  background: url(../img/bannar.jpg) no-repeat center;
}
header .wrap {
  position: relative;
}
header .cup {
  position: absolute;
  top: -36px;
  left: -90px;
  z-index: 15;
}
header .circl {
  width: 350px;
  height: 350px;
  position: absolute;
  top: 150px;
  left: -90px;
}
header .dengpao {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 150px;
  left: 40px;
  background: #ece9b9;
  filter: blur(20px);
  transform: scale(5);
  animation: xuanzhuan2 infinite linear 3s;
}
@keyframes xuanzhuan2 {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
section {
  background: url(../img/intro_bg.png);
}
.intro {
  padding: 48px 0 64px 0;
}
.intro .con_w {
  margin-top: 30px;
  padding: 15px;
  border: 2px solid #7c7351;
}
.intro .con_w .con {
  padding: 45px;
  background: rgba(255, 255, 255, 0.1);
  line-height: 2;
  font-size: 18px;
  color: #ffdaa4;
  text-indent: 2rem;
}
.reason {
  padding: 40px 0 40px 0;
  background: url(../img/reason.png) no-repeat top #131212;
}
.reason .con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.reason .con .con_left {
  animation: Zxuanzhuan 3s infinite linear;
}
@keyframes Zxuanzhuan {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.reason .con ul {
  width: 700px;
}
.reason .con ul li {
  display: flex;
  padding: 14px 0;
}
.reason .con ul li .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason .con ul li .left img {
  padding: 4px;
  border-radius: 50%;
  border: 2px dotted #bda37e;
  width: 73px;
  height: 73px;
}
.reason .con ul li .right_A {
  padding-left: 20px;
}
.reason .con ul li .right_A h2 {
  font-size: 22.44px;
  color: #ffdea6;
}
.reason .con ul li .right_A p {
  font-size: 17px;
  color: #ffe5c0;
}
.award {
  padding: 60px 0;
  background: url(../img/award_bg.png) no-repeat top;
}
.award ul {
  width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.award ul li {
  cursor: pointer;
  margin-top: 30px;
  width: 230px;
  height: 198px;
  background: url(../img/award/bg.png) no-repeat 8px;
}
.award ul li:hover .zheng {
  display: none;
}
.award ul li:hover .fan {
  display: flex;
}
.award ul li .zheng {
  display: flex;
  text-align: center;
  padding: 25px 0;
  flex-direction: column;
  align-items: center;
}
.award ul li .zheng .cro {
  width: 25px;
  padding-bottom: 10px;
}
.award ul li .zheng .name {
  text-align: center;
  color: #3a2100;
  font-size: 14.4px;
}
.award ul li .zheng .judge {
  font-size: 11.6px;
  color: #fcba72;
  background: #3a2100;
  padding: 2px 6px;
  border-radius: 5px;
  margin-top: 10px;
}
.award ul li .fan {
  text-align: center;
  padding: 25px 0;
  display: none;
  flex-direction: column;
  align-items: center;
}
.award ul li .fan h3 {
  font-size: 14.4px;
  color: #3a2100;
  padding: 10px 0 10px;
}
.award ul li .fan p {
  line-height: 20px;
  font-size: 10px;
  color: #3a2100;
}
.liucheng {
  padding: 10px 0 140px;
  background: url(../img/award_bg.png) no-repeat bottom;
}
.liucheng .step ul {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  background: url(../img/intro_bg.png);
}
.liucheng .step ul .active {
  background: #e9cb92;
}
.liucheng .step ul .active .step_t {
  color: #131212;
  font-size: 22px;
}
.liucheng .step ul .active .step_time {
  font-size: 17px;
  color: #131212;
}
.liucheng .step ul li {
  text-align: center;
  padding: 50px 25px 10px;
  position: relative;
}
.liucheng .step ul li img {
  position: absolute;
  top: -50px;
  left: calc(50% - 41px);
}
.liucheng .step ul li .step_t {
  color: #ffd99b;
  font-size: 22px;
}
.liucheng .step ul li .step_time {
  font-size: 17px;
  color: #ffd99b;
}
.liucheng .step_cont {
  margin-top: 2px;
  background: #e8c696;
  padding: 60px 45px;
}
.liucheng .step_cont p {
  font-size: 20px;
  color: #131212;
}
.liucheng .type {
  text-align: center;
  color: #ffd99b;
  font-size: 33px;
  font-weight: 600;
  padding: 35px 0;
}
.liucheng .shuoming {
  font-size: 20px;
  color: #ffd99b;
  padding: 35px;
  background: url(../img/shuoming_bg.png) no-repeat center;
}
.judgement {
  padding: 65px 0 60px;
  background: url(../img/judge_bg.png) no-repeat center #131212;
}
.judgement .wrap {
  position: relative;
}
.judgement .tip {
  padding: 40px 0;
  font-size: 20px;
  color: #ffd99b;
  text-align: center;
}
.judgement .swiper-button-prev,
.judgement .swiper-container-rtl .swiper-button-next {
  width: 60px;
  height: 105px;
  left: -90px;
  background: url(../img/into-arrow.png) no-repeat;
  transform: rotate(180deg);
}
.judgement .swiper-button-next,
.judgement .swiper-container-rtl .swiper-button-prev {
  width: 60px;
  height: 105px;
  right: -90px;
  background: url(../img/into-arrow.png) no-repeat;
}
.judgement .gust_list {
  overflow: hidden;
}
.judgement .gust_list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.judgement .gust_list ul li {
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.judgement .gust_list ul li .img_bt {
  position: relative;
  padding: 15px;
}
.judgement .gust_list ul li .img_bt:hover::after {
  animation: xuanzhuan infinite 3s linear;
}
.judgement .gust_list ul li .img_bt::after {
  top: 0px;
  left: 0px;
  position: absolute;
  width: 196px;
  height: 196px;
  content: '';
  background: url(../img/gust_bg.png) no-repeat center;
}
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.judgement .gust_list ul li h2 {
  font-size: 26px;
  color: #ffdaa4;
}
.judgement .gust_list ul li p {
  font-size: 18px;
  color: #ffd99b;
}
.history {
  padding: 65px 0 0 0;
  background: url(../img/intro_bg.png) no-repeat;
}
.history .his_list ul {
  padding-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.history .his_list ul li {
  box-sizing: border-box;
  padding-top: 13px;
  width: 240px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: url(../img/meeting/011.png) no-repeat center;
}
.history .his_list ul li p {
  font-size: 15px;
  color: #ffdaa1;
}
.history .his_list ul li:hover {
  transform: scale(1.05);
}
.sign_type {
  padding: 56px 0;
  background: url(../img/intro_bg.png) no-repeat;
}
.sign_type ul {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
.sign_type ul li {
  padding: 80px 60px;
  width: 50%;
  background: url(../img/sign/k.png) no-repeat;
}
.sign_type ul li h2 {
  display: inline-block;
  color: #ffdaa4;
  font-size: 25px;
  line-height: 40px;
  text-indent: 0.5rem;
  background: linear-gradient(to right, rgba(186, 156, 118, 0.2), rgba(186, 156, 118, 0));
}
.sign_type ul li p {
  font-size: 22px;
  color: #ffdaa4;
}
.sign_type .button {
  cursor: pointer;
  font-size: 28.26px;
  text-align: center;
}
.sign_type .button:hover {
  font-weight: 600;
}
.sign_type .button span {
  border-radius: 25px;
  padding: 15px 30px;
  background: #ffdaa4;
}
.link_us {
  box-sizing: border-box;
  padding-top: 225px;
  height: 380px;
  background: url(../img/linkus.png) no-repeat top;
}
.link_us .wrap {
  width: 1055px;
}
.link_us ul {
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.link_us ul li:nth-child(2) {
  padding: 0 50px;
}
.link_us ul li h2 {
  text-indent: 0.5rem;
  line-height: 1.5;
  font-size: 21px;
  color: #ffe1b4;
  background: rgba(186, 156, 118, 0.2);
}
.link_us ul li p {
  line-height: 2;
  font-size: 14px;
  color: #ffe1b4;
}
