*{
  word-break:break-all;
}
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,
font,
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,
textarea {
  margin: 0;
  padding: 0;
}
address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}
html{
  height: 100%;
  font-size: 20px;
}
body {
  min-height: 100%;
  font-size: 20px;
  line-height: 1.5;
  font-family: Source Han Sans SC;
  color: #222;
  background: #fff;
  /*display: flex;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*flex-direction: column;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.white-body {
  background: #fff;
}
section{
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-size: 100%;
  font-weight: normal;
}
button,
input,
select,
textarea {
  font-size: 100%;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;
  box-shadow: 0 0 0px 1000px transparent  inset !important;
  transition: background-color 50000s ease-in-out 0s;
}
fieldset,
img {
  border: 0;
}
a {
  text-decoration: none;
  color: #666;
  background: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
:focus {
  outline: none;
}
.clearfix {
  clear: both;
  content: "";
  display: block;
  overflow: hidden
}
.clear {
  clear: both;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.w1200 {
  width: 1500px;
  margin: 0 auto;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}
input,
textarea{
  font-size: 16px;
  color: #333;
  border: none;
  background: none;
}
textarea{
  resize: none;
}
textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
textarea::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
textarea:hover::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 53%, 0.4);
}
textarea:hover::-webkit-scrollbar-track {
  background: hsla(0, 0%, 53%, 0.1);
}
.ellipsis1 {
  /*white-space: nowrap;*/
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  /*word-break: break-all;*/
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: calc(100% - 95px);
}
.ellipsis2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 按钮水波纹效果 */
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #7db7f8 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .3s, opacity .5s;
}
.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}
/* 单选框 */
.gcs-radio {
  display: none;
}
.gcs-radio+label {
  width: 18px;
  height: 18px;
  line-height: 18px;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  border: 1px solid gray;
  border-radius: 50%;
}
.gcs-radio+label:hover {
  border: 1px solid #3867CE;
  cursor: pointer;
}
.gcs-radio:checked+label {
  background: #2783FB;
  border: 1px solid #2783FB;
  position: relative;
}
.gcs-radio:checked+label:after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/* 复选框 */
.gcs-checkbox {
  display: none;
}

.gcs-checkbox+label {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #707070;
  width: 17px;
  height: 17px;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  line-height: 17px;
}
.gcs-checkbox+label:hover {
  cursor: pointer;
  border: 1px solid #2783FB;
}
.gcs-checkbox:checked+label {
  background-color: #eee;
  background: #2783FB;
  border-color: #2783FB;
}
.gcs-checkbox:checked+label:after {
  content: "\2714";
  color: white;
}

/* 公共头部 */
.pub-header{
  height: 88px;
  background-color: #fff;
}
.pub-header>div.w1200{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-header.shadow {
  box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
}
.pub-header .logo-box,
.pub-header .logo-box a img{
  height: 36px;
}
.pub-header .handle-box{
  display: flex;
  align-items: center;
}
.pub-header .handle-box span{
  margin-left: 15px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #3867CE;
  cursor: pointer;
  user-select: none;
}
.header-login-box{
    width: 43px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.header-login-box .inner{
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border: 1px solid #EEEEEE;
    border-radius: 50%;
}
.header-login-box .head{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.header-login-box .head-def{
    width: 22px;
    height: 22px;
}
.header-login-box:hover .user-drop-down{
    display: block;
}
.user-drop-down{
    width: 121px;
    display: none;
    box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 86px;
    z-index: 10;
    border-radius: 8px;
    transition: all .5s;
}
.user-drop-down::after{
    content:"";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
}
.user-drop-down .drop-inner{
    background: #FFFFFF;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.user-drop-down .drop-item{
    height: 41px;
    line-height: 41px;
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    text-align: center;
    position: relative;
}
.user-drop-down .drop-item:hover{
    background: #F6F9FE;
}
.msg-num{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF3B3B;
    position: absolute;
    left: 27px;
    top: 50%;
    transform: translateY(-3px);
}
.pub-header .w1200 .nav-box{
    height: 100%;
}
.pub-header .w1200 .nav-box>ul{
  height: 100%;
  display: flex;
  align-items: center;
}
.pub-header .w1200 .nav-box>ul>li{
  margin-right: 25px;
}
.pub-header .w1200 .nav-box>ul>li:last-child{
   margin-right: 0;
}
.pub-header .w1200 .nav-box>ul>li a{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  height: 38px;
  line-height: 38px;
}
.pub-header .w1200 .nav-box>ul>li:last-child{
  margin-right: 0;
}
.pub-header .w1200 .nav-box>ul>li.active{
  position: relative;
}
.pub-header .w1200 .nav-box>ul>li.active::before{
    content: "";
    width: 35px;
    height: 3px;
    background: #3867CE;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/*.pub-header .w1200 .nav-box>ul>li.active a,
.pub-header .w1200 .nav-box>ul>li.active .iconfont {
  color: #3867CE;
}*/
.pub-header .w1200 .nav-box>ul>li.select-item{
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.pub-header .w1200 .nav-box>ul>li.select-item.active::before{
    bottom: 24px;
}
.pub-header .w1200 .nav-box>ul>li.select-item .iconfont{
  margin-left: 6px;
}
.pub-header .w1200 .nav-box>ul>li.select-item .iconfont.rotation {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
  transition: transform .2s ease-in;
}
.pub-header .w1200 .nav-box>ul>li.select-item:hover ul{
    display: block;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul{
  box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul li{
  white-space: nowrap;
  height: 41px;
  border-radius: 8px;
  line-height: 41px;
  padding: 0 10px;
  text-align: center;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul li a{
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 41px;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul li:hover{
  background: #F6F9FE;
}
.pub-header .w1200 .nav-box>ul>li.select-item ul li:hover a{
  color: #4391E9;
}



/*.pub-header .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.pub-header .top .logo-box{
  *//*width: 376px;*//*
  height: 48px;
  margin-top: 6px;
}
.pub-header .top .logo-box img{
  width: 100%;
  height: 100%;
}
*/
/* 底部-友情链接 */
.link-box{
  background-color: #F6F9FE;
}
.link-box>div {
  padding: 10px 0;
}
.link-box span{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 32px;
}
.link-box a{
  color: #000;
  padding: 0 5px;
  font-size: 16px;
}
.link-box a:hover{
  color: #4391E9;
}
/* 底部联系我们 */
.my-footer{
  /*height: 260px;*/
  height: 189px;
  background-color: #3867CE;
}
.my-footer .img-box {
  padding: 35px 0 22px;
}
.my-footer .img-box img{
  width: 48px;
  height: 44px;
}
.my-footer .foot-box {
  display: flex;
  justify-content: space-between;
}
.my-footer .foot-box .foot-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.my-footer .foot-box .foot-item .title{
  font-size:18px;
  font-weight:bold;
  color:rgba(255, 255, 255, 1);
}
.my-footer .foot-box .foot-item .code-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: 33px;
}
.my-footer .foot-box .foot-item.foot-item-code{
  display: flex;
  flex-direction: row;
}
.my-footer .foot-box .foot-item .code-box img{
  width: 87px;
  height: 87px;
  margin-top: 14px;
}
.my-footer .foot-box .foot-item .foot-item-info p{
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1;
  margin-top: 12px;
}
/* 公共面包屑导航 */
.my-nav{
  height: 42px;
  background: #3867CE;
  font-size: 16px;
  line-height: 42px;
  color: #fff;
}
.my-nav a{
  color: #fff;
}
.my-nav a:hover{
  color: #fff;
}
.my-nav .arrow-doub{
    display: inline-block;
    margin: 0 5px;
}
/* 公共标签样式 */
.com-tag{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.com-tag span{
  font-size: 24px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 30px;
  margin-top: 5px;
}
.com-tag img{
  height: 11px;
}
/* 去掉表格默认样式 */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
}
table td,
table th{
  text-align: center;
  word-break: break-all;
  word-wrap:break-word;
}

/* 首页-搜索模块 */
.in-search{
  width: 100%;
  height: 697px;
  position: relative;
}
.search-con{
  width: 100%;
  height: 697px;
  background: #fff url(../image/in_top_bg.png) no-repeat center center;
  position: relative;
}
.search-con #searchCanvas{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.search-con .w1200{
  margin-top: 226px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-con .search-title{
  height: 81px;
}
.search-box{
  width: 784px;
  height: 82px;
  box-sizing: border-box;
  border-radius: 8px;
  opacity: 1;
  background: #fff;
  border: 5px solid #FFFFFF;
  display: flex;
  justify-content: center;
  margin-top: 66px;
}
.search-box .input-box{
  flex: 1;
  height: 72px;
  line-height: 72px;
  background: #F9F9F9;
}
.search-box .input-box input{
  width: 100%;
  height: 100%;
  padding: 0 40px;
  border: none;
  font-size: 16px;
  color: #000;
}
.search-box .search-btn {
  display: inline-block;
  width: 190px;
  height: 72px;
  line-height: 72px;
  background: linear-gradient(135deg, #5082E0 0%, #3462CB 100%);
  border-radius: 0px 8px 8px 0px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-box .search-btn img{
    width: 26px;
    height: 26px;
    margin-right: 15px;
}
.search-box .search-btn span{
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}
.search-option{
  width: 130px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 8px 0px 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.search-option .text{
  display: inline-block;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  width: 90px;
  text-align: center;
}
.search-option .arrow{
  width: 20px;
  height: 20px;
}
.search-option .serch-option-drop{
  position: absolute;
  left: -5px;
  top: 72px;
}
.search-option:hover ul{
    display: block;
}
.search-option ul{
  width: 135px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
  border-radius: 8px;
  background: #fff;
  margin-top: 12px;
  position: relative;
  transition: all .5s;
  display: none;
}
.search-option ul::before{
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
}
.search-option ul li{
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  text-align: center;
  cursor: pointer;

}
.search-option ul li:first-child{
    border-radius: 8px 8px 0 0;
}
.search-option ul li:last-child{
    border-radius: 0 0 8px 8px;
}
.search-option ul li.active{
  background-color: #DCEAFF;
}
.search-option ul li:hover{
  background-color: #DCEAFF;
}
/*滚动消息*/
.in-roll-msg{
  height: 130px;
  background-image: url(../image/in_roll_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 30px;
}
.in-roll-msg .in-roll-inner{
  height: 130px;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.in-roll-msg #inner{
  width: 100%;
  text-align: center;
  line-height: 130px;
  font-size: 40px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
  white-space: nowrap
}
/* 中间功能模块 */
.func-box{
  background: #F6F9FE;
  border-radius: 8px;
  padding: 10px 10px 0;
  margin-top: 20px;
}
.func-box>div{
  display: flex;
  flex-wrap: wrap;
}
.func-box .func-item{
  width: 393px;
  height: 285px;
  border-radius: 8px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 30px 16px 0;
  box-sizing: border-box;
}
.func-box .func-item:hover{
  box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
}
.func-box .func-item:nth-child(3n){
  margin-right: 0;
}
.func-box .func-item img{
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  flex-shrink: 0;
}
.func-box .func-scien{
  width: 100%;
  height: 141px;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 154px;
  margin-bottom: 10px;
}
.func-box .func-scien:hover{
    box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
}
.func-box .func-scien img{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.func-box .func-scien .item-inner{
    margin-left: 25px;
}
.func-box .func-scien .item-inner h4{
    font-size: 20px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    text-align: center;
    line-height: 26px;
    text-align: left;
}
.func-box .func-scien .item-inner h4 p{
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #7D7F82;
    line-height: 1.5;
    margin-top: 15px;
    word-break: break-all;
}
.func-box .item-inner{

}
.func-box .item-inner h4{
  font-size: 20px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  text-align: center;
  line-height: 26px;
}
.func-box .item-inner p{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 1.5;
  margin-top: 15px;
  word-break: break-all;
}
/* 新闻资讯 */
.in-news{
  margin-bottom: 60px;
}
.ind-news-title{
  display: flex;
  justify-content: space-between;
  height: 102px;
}
.ind-news-title .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ind-news-title .left .label{
    height: 11px;
    margin-top: 25px;
}
.ind-news-title .left h1{
  font-size: 24px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 31px;
  margin-top: 5px;
}
.ind-news-title a{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  align-self: flex-end;
  margin-bottom: 35px;
}
.ind-news-title a:hover{
  color: #4391E9;
}
.in-news-inner{
  display: flex;
  flex-wrap: wrap;
  background: #F6F9FE;
  padding: 10px 10px 0;
  border-radius: 8px;
}
.in-news-inner .in-news-item {
  box-sizing: border-box;
  width: 100%;
  height: 264px;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.in-news-inner .in-news-item .img-box {
  width: 387px;
  height: 264px;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.in-news-inner .in-news-item .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}
.in-news-info{
  width: calc(100% - 387px);
  height: 264px;
  box-sizing: border-box;
  padding: 20px 20px 10px;
}
.in-news-info h3{
  font-size: 20px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  margin-bottom: 25px;
}
.in-news-info .time-box {
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 21px;
}
.in-news-info .time-box .time {
  margin-right: 20px;
}
.in-news-info p{
  height: 52px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}
.in-news-info .line {
  height:1px;
  background-color: #707070;
  margin: 20px 0 16px;
}
.in-news-info .arrow-box {
  text-align: right;
  margin-top: 15px;
}
.in-news-info .arrow-box span{
  display: inline-block;
  width: 137px;
  height: 50px;
  line-height: 50px;
  background: #3867CE;
  box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}
.in-news-inner .in-news-item:hover .in-news-info h3{
  color: #4391E9;
}
/* 创新方法师资认证 */
.teacher-cert{
  padding: 30px 0;
}
.cert-box{
  display: flex;
  margin-top: 93px;
}
.cert-box .cert-item{
  width: 393px;
  height: 180px;
  margin-right: 10px;
  padding: 32px 0 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}
.cert-box .cert-item:last-child{
    margin-right: 0;
}

.cert-box .cert-item p.title{
  font-size: 20px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 26px;
  margin-bottom: 5px;
}
.cert-box .cert-item p.eng-title{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 21px;
}
.cert-box .cert-item .show-det-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 33px;
  border-radius: 4px;
  line-height: 33px;
  margin-top: 35px;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
}
.cert-box .cert-item .show-det-btn .arrow-doub{
    height: 12px;
    margin-left: 5px;
}
.cert-box .cert-item .person-img{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    position: absolute;
    right: 13px;
    bottom: 27px;
}
.cert-box .cert-item .person-img img{
    width: 138px;
    height: 161px;
    margin-bottom: 7px;
}
.cert-box .cert-item .person-img span{
    font-size: 30px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 40px;
}

/* 创新方法师资认证流程 */
.cert-proce{
  background-color: #fff;
  padding: 0 0 30px 0;
}
.cert-proce .title {
  font-size: 24px;
  font-weight: bold;
  color: #1E2F42;
  margin: 37px 0 45px 0;
  text-align: center;
}
.cert-proce .lc-img{
  display: block;
  margin: 0 auto;
}
/* 师资管理列表 */
.teacher-mana{
  padding: 0;
}
.teacher-mana-list{
 background-color: #fff;
 margin: 30px 0 0 0;
 border-radius: 8px;
 overflow: hidden;
}
.teacher-mana-list table thead{
    background: #3867CE;
    border-radius: 8px 8px 0px 0px;
}
.teacher-mana-list table th,
.teacher-mana-list table td{
  line-height: 52px;
  border-bottom:1px solid rgba(241, 241, 241, 1);
}
.teacher-mana-list table th{
  font-size: 18px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
}
.teacher-mana-list table tbody td{
  font-size: 14px;
  color: #788391;
}
.teacher-mana-list table tbody tr:nth-child(even){
  background: #F9F9F9;
}
/* 认证规范下载 */
.cert-speci-dow{
  background-color: #fff;
  box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
  border-radius: 8px;
  padding: 39px 30px 30px;
  margin-bottom: 16px;
  position: relative;
}
.cert-speci-dow::before{
    content: "";
    width: 100%;
    height: 7px;
    background: #3867CE;
    box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
    border-radius: 8px 8px 0px 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.cert-speci-dow h1{
  font-size: 24px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #3867CE;
  line-height: 31px;
  margin-bottom: 30px;
}
.cert-speci-dow .down-box {
  display: flex;
  justify-content: space-between;
}
.intro-p {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 29px;
}
.intro-p img {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
.intro-p.flex-intro-p span.dark {
  font-size: 16px;
  font-weight: 600;
  color: #1E2F42;
}
.intro-p.flex-intro-p{
  display: flex;
}
.intro-p.flex-intro-p span{
  line-height: 34px;
}
.intro-p.flex-intro-p img{
  margin-top: 11px;
}
.intro-p a{
  color: #788391;
}
.intro-p a:hover{
  color: #2783FB;
}

.cert-speci-dow .down-box .down-btn {
    width: 202px;
    height: 50px;
    background: #3867CE;
    box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.cert-speci-dow .down-box .down-btn img{
    width: 22px;
    height: 22px;
    margin-right: 15px;
}
.cert-speci-dow .down-box .down-btn a{
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
}
/* 科技成果评价 */
.intro-eval{
  margin-top: 25px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /*background-image: url(../image/dwjj_bg.png);*/
}
.intro-eval.cxgcsrz{
    background-image: url(../image/cxgcsrz_bg.png);
}
.intro-eval.cxpxsrz{
    background-image: url(../image/cxpxsrz_bg.png);
}
.intro-eval.cxzxsrz{
    background-image: url(../image/cxzxsrz_bg.png);
}
.intro-eval .w1200{
  display: flex;
  align-items: center;
  padding: 30px 0 38px 0
}
.intro-eval .w1200 .img-box {
  box-sizing: border-box;
  width: 442px;
  height: 260px;
  background: #fff;
  margin-right: 15px;
  flex-shrink: 0;
  padding: 5px;
}
.intro-eval .img-box img{
  width: 100%;
  height: 100%;
  object-filter: cover;
}
.intro-eval .introduc-box {
  padding-top: 0;
  flex: 1;
}
.intro-eval .introduc-box .introduc {
  width: 100%;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 32px;
  text-indent: 2em;
}
/* 科技成果评判标准 */
.eval-criteria {
  background-color: #fff;
  padding: 30px 0 0 0;
}
 .criteria-box {
  padding-left: 94px;
  margin-top: 30px;
}
/* .criteria-box .intro-p{
  line-height: 1;
  margin-bottom: 30px;
} */
/* 评价流程 */
.eval-process{
  padding: 30px 0 85px 0;
}
.eval-process-img{
  display: block;
  margin: 0 auto;
}
/* 学习培训 */
.learn-train{
  display: flex;
  flex-wrap: wrap;
  background: #F6F9FE;
  border-radius: 8px;
  padding: 10px 10px 0;
  margin: 30px auto;
}
.learn-train .learn-item {
  display: block;
  box-sizing: border-box;
  width: 292px;
  height: 324px;
  border-radius: 8px;
  background-color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 27px 15px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.learn-train .learn-item:nth-child(4n){
  margin-right: 0;
}
.learn-train .learn-item:hover{
    background: #3867CE;
}
.learn-train .learn-item:hover h3,
.learn-train .learn-item:hover p{
    color: #FFFFFF;
}
.learn-train .learn-item img{
  width: 60px;
  height: 60px;
}
.learn-train .learn-item h3{
  font-size: 15px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
  margin: 30px 0 15px;
}
.learn-train .learn-item p{
  height: 156px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height:22px;
}

.main-busi{
  background-color: #fff;
  padding-top: 25px;
  padding-bottom: 45px;
}
.main-busi .main-busi-box {
  margin-top: 25px;
  display: flex;
}
.main-busi .main-busi-box .busi-item{
  /*width: 232px;*/
  /*height: 232px;*/
  width: 180px;
  height: 183px;
  margin-right: 25px;
  background:rgba(247, 248, 248, 0);
  box-shadow: 0px 5px 10px 1px rgba(54,100,200,0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-busi .main-busi-box .busi-item:last-child{
  margin-right: 0;
}
.main-busi .main-busi-box .busi-item:hover{
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.main-busi .main-busi-box .busi-item img{
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
}
.main-busi .main-busi-box .busi-item p{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 20px;
}
/* 创新资源 */
.learn-train .learn-item.res-item {
  height: 324px;
}
/*.learn-train .learn-item.res-item p {
  height: 145px;
}*/
/* 创新大赛 */
.in-news.comp-news {
  margin-bottom: 20px;
}
.comp-news .com-tag{
  margin-bottom: 60px;
}
.comp-head{
  width: 100%;
  height: 422px;
  background: #fff url(../image/comp_head_bg.png) no-repeat center center;
  margin-bottom: 120px;
  position: relative;
}
.comp-chose{
  width:1200px;
  height:184px;
  background:rgba(255, 255, 255, 1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  display: flex;
  border-radius: 8px;
}
.comp-chose .comp-chose-item {
  display: inline-block;
  width: 25%;
  height: 100%;
  box-shadow: 0px 3px 4px 1px rgba(123,149,193,0.22);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s;
}
.comp-chose .comp-chose-item:last-child{
  border-right: none;
}
.comp-chose .comp-chose-item img{
  width: 100px;
  height: 100px;
  margin-top: 25px;
}
.comp-chose .comp-chose-item span{
  font-size: 14px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
  margin-top: 14px;
}
.comp-chose .comp-chose-item:hover{
  background-color: #fff;
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
  border-bottom: 4px solid #4391E9;
  transform: scale(1.05);
}
/* 报名列表 */
.enlist .enlist-item {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 186px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 16px;
  display: flex;
}
.enlist .enlist-item:last-child{
    margin-bottom: 0;
}
.enlist .enlist-item:hover {
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.enlist .enlist-item:hover .en-info-box h3 {
  color: #4391E9;
}

.enlist .enlist-item .img-box{
  width: 236px;
  height: 152px;
  margin-right: 15px;
  border-radius: 4px;
  flex-shrink: 0;
}
.enlist .enlist-item .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enlist .enlist-item .en-info-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: calc(100% - 251px);
}
.enlist .enlist-item .en-info-box .left{
    /*width: 83%;*/
    flex: 1;
    height: 100%;
}
.enlist .enlist-item .en-info-box .left .title-box{
  display: flex;
  align-items: center;

}
.enlist .enlist-item .en-info-box .left .title-box .status-btn{
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 7px;
    background: #A8AFB9;
    border-radius: 2px;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2px;
    margin-right: 15px;
}
.enlist .enlist-item .en-info-box .left .title-box h3{
  width: 80%;
  font-size: 18px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 24px;
}
.enlist .enlist-item .en-info-box .time-num {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #A8AFB9;
  line-height: 20px;
  margin-top: 14px;
}
.enlist .enlist-item .en-info-box p{
  height: 68px;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 24px;
  margin-top: 15px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.enlist .enlist-item .en-info-box .en-state {
    flex-shrink: 0;
    margin-left: 30px;
}
.enlist .enlist-item .en-info-box .en-state span{
  display: inline-block;
  width: 137px;
  height: 50px;
  line-height: 50px;
  background: #3867CE;
  box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}
/* 专家列表 */
.search-box-inner{
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-box-inner .search-box{
    margin-top: 0;
    flex: 1;
    border: 1px solid #3867CE;
    padding: 4px;
}



.all-cate-box{
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* height:107px; */
  background:rgba(247, 248, 248, 0);
  border:1px solid rgba(241, 241, 241, 1);
  margin-top: 40px;
  padding: 15px 15px 0;
}
.all-cate-box .all-tex {
  font-size: 14px;
  color: #1E2F42;
  padding: 5px 0;
}
.all-cate-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  max-height: 45px;
  overflow: hidden;
}
.all-cate-box.more ul{
  max-height: none;
  overflow: auto;
}
.all-cate-box ul li{
  font-size: 14px;
  color: #788391;
  padding: 5px 15px;
  cursor: pointer;
  margin: 0 15px 15px;
}
.all-cate-box ul li.active{
  background:rgba(67, 145, 233, 1);
  color: #fff;
}
.all-cate-box .cut-out {
  font-size: 14px;
  color: #A8AFB9;
  line-height: 30px;
  cursor: pointer;
}
.all-cate-box .cut-out .iconfont{
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: transform .5s;
  display: inline-block;
}
.all-cate-box.more .cut-out .iconfont{
  display: inline-block;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: transform .5s;
}
.expert-list{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  background: #F6F9FE;
  border-radius: 8px;
  padding: 10px 10px 0;
}
.expert-list .expert-item {
  box-sizing: border-box;
  display: block;
  width: 286px;
  height: 418px;
  margin-right: 10px;
  margin-bottom: 10px;
  background:rgba(255, 255, 255, 1);
  border-radius: 8px 8px 8px 8px;
  cursor: pointer;
  padding: 6px;
}
.expert-list .expert-item:nth-child(3n){
  margin-right: 0;
}

.expert-list .expert-item:hover {
  box-shadow: 0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.expert-list .expert-item .img-box {
  width: 100%;
  height: 315px;
}
.expert-list .expert-item .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-list .expert-item .name-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.expert-list .expert-item .name-box .left{
    display: flex;
    align-items: center;
}
.expert-list .expert-item .name-box .left .name {
  font-size: 16px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 21px;
  margin-right: 10px;
}
.expert-list .expert-item .name-box .left .tag{
    font-size: 16px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #3867CE;
    line-height: 1;
}
.expert-list .expert-item .name-box .company{
    height: 29px;
    line-height: 29px;
    background: #3867CE;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.expert-list .expert-item .expert-info {
  display: flex;
  margin-top: 15px;
  overflow-x: auto;
}
.expert-list .expert-item .expert-info span{
  padding: 5px 10px;
  background:rgba(231, 236, 240, .52);
  font-size: 12px;
  color: #788391;
  margin-right: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
/* 专家答疑详情 */
.expert-det-info{
  box-sizing: border-box;
  height: 315px;
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
  padding: 20px 28px 28px;
  position: relative;
}
.expert-det-info .img-box{
  width: 265px;
  height: 335px;
  position: absolute;
  bottom: 28px;
  left: 28px;
}
.expert-det-info .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-det-info .msg-box {
  height: 100%;
  padding-left: 305px;
}
.expert-det-info .msg-box .name-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expert-det-info .msg-box .name-box .name{
  display: flex;
  align-items: center;
}
.expert-det-info .msg-box .name-box .name span{
  font-size: 24px;
  color: #1E2F42;
  font-weight: 600;
  margin-right: 10px;
}
.expert-det-info .msg-box .name-box .btn-box{
  display: flex;
}
.expert-det-info .msg-box .name-box .btn-box>div {
  display: inline-block;
  width: 135px;
  height: 45px;
  box-sizing: border-box;
  line-height: 45px;
  cursor: pointer;
  text-align: center;
  margin-left: 15px;
  border-radius: 2px;
  font-size: 16px;
}
.expert-det-info .msg-box .name-box .btn-box .seek {
  background-color: #4391E9;
  color: #fff;
}
.expert-det-info .msg-box .name-box .btn-box .follow {
  display: flex;
  align-items: center;
  justify-content: center;
  background:rgba(67, 145, 233, 0);
  border:1px solid rgba(67, 145, 233, 1);
  color: #4391E9;
}
.expert-det-info .msg-box .name-box .btn-box .follow img{
  width: 28px;
  height: 28px;
}
.expert-det-info .msg-box .name-box .btn-box .follow span.line{
  display: inline-block;
  width: 1px;
  height: 12px;
  background:rgba(67, 145, 233, .34);
  margin: 0 10px 0 5px;
}
.expert-det-info .msg-box .other-info{
  margin-top: 40px;
}
.expert-det-info .msg-box .other-info p{
  font-size: 14px;
  display: flex;
  margin-bottom: 15px;
}
.expert-det-info .msg-box .other-info p:last-child{
  margin-bottom: 0;
}
.expert-det-info .msg-box .other-info p .label {
  color: #1E2F42;
  font-weight: 500;
  flex-shrink: 0;
}
.expert-det-info .msg-box .other-info p span{
  color: #788391;
}
.achie-case-eval{
  background-color: #fff;
  margin-top: 40px;
}
.achie-case-eval .head{
  height: 60px;
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 10px 0px rgba(87, 143, 206, 0.06);
}
.achie-case-eval .head ul{
  display: flex
}
.achie-case-eval .head ul li{
  line-height: 60px;
  font-size: 18px;
  color: #788391;
  margin-right: 80px;
  cursor: pointer;
  font-weight: 500;
}
.achie-case-eval .head ul li.active {
  color: #1E2F42;
  position: relative;
}
.achie-case-eval .head ul li.active::after{
  content: "";
  width: 40px;
  height: 3px;
  background-color: #367DE3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.achie-case-eval .expert-det-cont {
  padding: 50px 25px 50px 38px;
}
.achie-case-eval .expert-det-cont>p{
  font-size: 16px;
  color: #788391;
  line-height:34px;
}
.achie-case-eval .eval-cont ul{
  width: 885px;
  margin: 0 auto;
}
.achie-case-eval .eval-cont ul li{
  display: flex;
}
.achie-case-eval .eval-cont ul li .img-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.achie-case-eval .eval-cont ul li .img-box img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.achie-case-eval .eval-cont ul li .eval-info {
  border-bottom:1px solid rgba(241, 241, 241, 1);
  flex: 1;
  margin-left: 25px;
  padding: 10px 0;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info .name-box .name {
  font-size: 16px;
  color: #1E2F42;
  font-weight:600;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info .name-box {
  display: flex;
  align-items: center;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info .name-box .star-box{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info .name-box .star-box img{
  width: 15px;
  margin-right: 5px;
}
.achie-case-eval .eval-cont ul li .eval-info .user-info .time {
  font-size: 12px;
  color: #A8AFB9;
}
.achie-case-eval .eval-cont ul li .eval-info .eval-text p{
  font-size: 16px;
  color: #788391;
  line-height: 28px;
  display: flex;
  justify-content: space-between;
}
.achie-case-eval .eval-cont ul li .eval-info .eval-text p .report {
  line-height: 28px;
  font-size: 12px;
  color: #A8AFB9;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-end;
}
.achie-case-eval .eval-cont ul li .eval-info .eval-text p .report:hover{
  color: #4391E9;
}
.achie-case-eval .eval-cont ul li .eval-info .eval-text p .report .iconfont{
  margin-right: 3px;
  font-size: 12px;
}
.show-more-list{
  margin-top: 30px;
  font-size: 14px;
  color: #4391E9;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-more-list>div{
  cursor: pointer;
}
.consu-dialog-wrapper .my-form .my-form-item .label {
  width: 155px;
}
.consu-dialog-wrapper  .my-form .my-form-item .my-form-item-content {
  margin-left: 155px;
}
/* 公共弹窗 */
.my-modal{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  background: #000;
  z-index: 2006;
  display: none;
}
.my-dialog-wrapper{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  z-index: 2007;
  display: none;
}
.my-dialog{
  position: relative;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  width: 50%;
  margin-top: 15vh;
}
.my-dialog .dialog-header {
  height:50px;
  background:rgba(241, 241, 241, 1);
  padding: 0 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-dialog .dialog-header img{
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.my-dialog .dialog-header span{
  font-size: 18px;
  color: #1E2F42;
  padding-left: 18px;
  position: relative;
}
.my-dialog .dialog-header span::after{
  content: "";
  width: 4px;
  height: 21px;
  line-height: 21px;
  background-color: #4391E9;
  position: absolute;
  top: 3px;
  left: 0;
}
.my-dialog .dialog-body {
  padding: 30px 20px;
  word-break: break-all;
  max-height: 60vh;
  overflow: auto;
}
.my-form .my-form-item {
  margin-bottom: 18px;
}
.my-form .my-form-item .label{
  text-align: right;
  vertical-align: middle;
  float: left;
  font-size: 16px;
  color: #1E2F42;
  line-height: 42px;
  padding: 0 12px 0 0;
  box-sizing: border-box;
  width: 120px;
}
.my-form .my-form-item .my-form-item-content {
  margin-left: 120px;
  line-height: 42px;
  position: relative;
  font-size: 14px;
}
.my-form .my-form-item .my-form-item-content .input-box {
  width: 80%;
  background-color: #F7F8F8;
  border:1px solid rgba(241, 241, 241, 1);
  border-radius:2px;
  position: relative;
}
.my-form .my-form-item .my-form-item-content .input-box input{
  box-sizing: border-box;
  width: 100%;
  padding: 0 22px;
}
.my-form .my-form-item .my-form-item-content .input-box textarea{
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  padding: 14px 22px;
}
.my-form .my-form-item .my-form-item-content .input-box .select{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px 0 22px;
  cursor: pointer;
  background-color: #fff;
}
.my-form .my-form-item .my-form-item-content .input-box .select span{
  font-size: 14px;
  color: #1E2F42;
}
.my-form .my-form-item .my-form-item-content .input-box .select .iconfont{
  font-size: 12px;
  color: #A8AFB9;
  display: inline-block;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  transition: transform .5s;
}
.my-form .my-form-item .my-form-item-content .input-box .select.show .iconfont {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: transform .5s;
  display: inline-block;
}
.my-select-dropdown{
  width: 100%;
  transform-origin: center top;
  z-index: 2037;
  position: absolute;
  top: 42px;
  left: 0;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  box-sizing: border-box;
  margin: 5px 0;
  display: none;
}
.my-select-dropdown .popper-arrow{
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .03));
  top: -6px;
  left: 50%;
  margin-right: 3px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.my-select-dropdown .my-select-scroll {
  max-height: 285px;
  overflow-y: auto;
}
.my-select-dropdown .my-select-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.my-select-dropdown .my-select-scroll::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
.my-select-dropdown .my-select-scroll:hover::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 53%, 0.4);
}
.my-select-dropdown .my-select-scroll:hover::-webkit-scrollbar-track {
  background: hsla(0, 0%, 53%, 0.1);
}
.my-select-dropdown .my-select-scroll ul{
  list-style: none;
  padding: 6px 0;
  margin: 0;
  box-sizing: border-box;
}
.my-select-dropdown .my-select-scroll ul li{
  font-size: 14px;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #606266;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  cursor: pointer;
}
.my-select-dropdown .my-select-scroll ul li.active{
  color: #409eff;
  font-weight: 700;
}
.my-select-dropdown .my-select-scroll ul li:hover{
  background-color: #f5f7fa;
}
.my-form .my-form-item .my-form-item-content .img-box {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item{
  width: 96px;
  height: 96px;
  background:rgba(247, 248, 248, 1);
  border:1px solid rgba(241, 241, 241, 1);
  border-radius:2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #A8AFB9;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item:nth-child(4n){
  margin-right: none;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item .img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item .icon-add {
  width: 33px;
  height: 33px;
  margin: 20px 0 5px 0;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item .dele-box{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item .dele-box img{
  width: 30px;
}
.my-form .my-form-item .my-form-item-content .img-box .img-item:hover .dele-box{
  display: flex;
}
.my-form .my-form-item .my-form-item-content .sync-box {
  display: flex;
  align-items: center;
}
.my-form .my-form-item .my-form-item-content .sync-box label{
  margin-right: 7px;
}

.my-dialog .my-form-item.button-item .sub-button,
.my-form .my-form-item.button-item .sub-button{
  width: 60%;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background:linear-gradient(-56deg, rgba(67, 145, 233, 1), rgba(54, 125, 227, 1));
  border-radius:2px;
  cursor: pointer;
  margin: 0 auto;
}
.my-dialog .my-form-item.button-item{
  display: flex;
  justify-content: center;
}
.my-dialog .my-form-item.button-item .sub-button{
  width: 110px;
  margin: 0 15px;
}
/* qfd 质量功能展开 */
.qfd-list{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: #F6F9FE;
  border-radius: 8px;
  padding: 10px 10px 0;
}
.qfd-list .qfd-item{
  box-sizing: border-box;
  display: block;
  width: 292px;
  height: 330px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #FFFFFF;
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  cursor: pointer;
  padding: 5px;
}
.qfd-list .qfd-item:nth-child(4n) {
   margin-right:0;
}
.qfd-list .qfd-item .img-box {
  width: 100%;
  height: 202px;
  border-radius: 8px;
  overflow: hidden;
}
.qfd-list .qfd-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qfd-list .qfd-item:hover {
  box-shadow: 0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.qfd-list .qfd-item .title {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  line-height: 21px;
  margin-top: 10px;
  padding: 0 10px;
}
.qfd-list .qfd-item .describe{
  height: 38px;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 19px;
  margin-top: 5px;
  padding: 0 10px;
}
.qfd-list .qfd-item .time{
  border-top: 1px solid #EBF1F9;
  font-size: 14px;
  line-height: 28px;
  color: #A8AFB9;
  margin-top: 8px;
  padding: 5px 10px 0;
}
/* 新闻资讯 */
.news-list{
  margin-top: 20px;
}
/*.enlist.news-list .enlist-item .en-info-box .en-state span {
  width: 60px;
  height: 29px;
}*/
/* 新闻详情 */
.nes-detail-con{
  width: 930px;
  margin: 25px auto 0;
}
.nes-detail-con .det-head {
  border-bottom: 1px solid #F1F1F1;
  text-align: center;
}
.nes-detail-con .det-head h2{
  font-size: 24px;
  color: #1E2F42;
}
.nes-detail-con .det-head>div{
  font-size: 12px;
  color: #A8AFB9;
  margin: 20px 0 25px;
}
.nes-detail-con .det-head>div span:nth-child(2){
  margin: 0 25px;
}
.nes-detail-con .det-head div.nes-info-box span:nth-child(2){
  margin: 0;
}
.nes-detail-con .det-cont {
  padding: 40px 0;
  text-align: left;
}
.nes-detail-con .det-cont .img-box{
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.nes-detail-con .det-cont .img-box img{
  max-width: 100%;
}
.nes-detail-con .det-cont>img{
  max-width: 95%;
  margin: 0 auto;
}
/* */
.nes-detail-con .det-cont .nes-info-box>img{
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
.nes-detail-con .det-cont .nes-info-box,
.nes-detail-con .det-cont .nes-info-box p,
.nes-detail-con .det-cont .nes-info-box p span,
.nes-detail-con .det-cont .nes-info-box p a,
.nes-detail-con .det-cont .nes-info-box div span,
.nes-detail-con .det-cont .nes-info-box div span{
  font-family: SimSun !important;
  font-size: 18px !important;
  color: #000 !important;
  font-weight: 100 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.nes-detail-con .det-cont .nes-info-box p img{
  max-width: 80% !important;
  margin: 20px auto;
  display: block;
}
.operation-box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 60px;
}
.operation-box .opera-item:first-child{
  margin-right: 10px;
}
.operation-box .opera-item {
  width: 100px;
  height: 40px;
  line-height: 40px;
  background:rgba(247, 248, 248, 0);
  border:1px solid rgba(241, 241, 241, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.operation-box .opera-item img{
  width: 28px;
  height: 28px;
}
.operation-box .opera-item img.img-b{
  display: none;
}
.operation-box .opera-item.has-active img.img-w{
  display: none;
}
.operation-box .opera-item.has-active img.img-b {
  display: block;
}
.operation-box .opera-item span{
  font-size: 16px;
  color: #788391;
}
.operation-box .opera-item.has-active span{
  color: #4391E9;
}
.operation-box .opera-item span.line{
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #F1F1F1;
  margin: 0 16px 0 12px;
}
/* 远程培训 */
.qfd-list.video-list .qfd-item .img-box {
  position: relative;
}
.qfd-list.video-list .qfd-item .img-box .video-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background:rgba(0, 0, 0, .46);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qfd-list.video-list .qfd-item .img-box .video-mask img{
  width: 50px;
  height: 50px;
}
/* 创新交流 */
.post-btn{
  display: block;
  box-sizing: border-box;
  margin-left: 15px;
  width: 193px;
  height: 82px;
  border-radius: 8px;
  line-height: 82px;
  text-align: center;
  font-size: 16px;
  color: #3867CE;
  background:rgba(215, 234, 255, 0);
  border:1px dashed #3867CE;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-btn span:first-child{
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 6px;
  margin-right: 3px;
}
.commu-cont{
  margin-top: 30px;
  border-bottom: 1px solid #F1F1F1;
}
.commu-item{
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 17px 13px;
  height: 186px;
  box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
  border-radius: 8px;
  margin-bottom: 15px;
}
.commu-cont .commu-item:hover{
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.commu-cont .commu-item:hover h3{
  color: #4391E9;
}
.commu-cont .commu-item h3 {
  font-size: 18px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #3867CE;
  line-height: 24px;
  margin-bottom: 15px;
}
.commu-cont .commu-item .time-box {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #A8AFB9;
  line-height: 19px;
}
.commu-cont .commu-item .content{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7D7F82;
  line-height: 30px;
  margin-top: 10px;
  word-break: break-all;
}
.my-pager-box{
  width: 100%;
  height: 102px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.my-pager-box .el-pager{
    marin: 0 5px;
}
.my-pager-box .el-pager li.active{
    background: #3867CE;
    border: none;
    border-radius: 4px;
}
.my-pager-box .el-pagination .btn-next,
.my-pager-box .el-pagination .btn-prev{
    background: #F7F7F7;
    border-radius: 4px;
    border: none;
}
.my-pager-box .el-pager li{
    background: #F7F7F7;
    border-radius: 4px;
    border: none;
    margin: 0 5px;
}
/* 创新交流详情 */
.make-comment{
  box-sizing: border-box;
  width: 100%;
  background:rgba(247, 248, 248, 0);
  border:1px solid rgba(241, 241, 241, 1);
  padding: 26px 26px 18px 26px;
}
.make-comment .top{
  font-size: 24px;
  color: #1E2F42;
  display: flex;
  align-items: center;
}
.make-comment .top img{
  width: 28px;
  height: 28px;
  margin-right: 13px;
}
.make-comment .comment-box {
  display: flex;
  margin-top: 25px;
  padding-bottom: 15px;
}
.make-comment .comment-box .head-img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-right: 25px;
}
.make-comment .comment-box .head-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.make-comment .comment-box textarea{
  box-sizing: border-box;
  flex: 1;
  height: 105px;
  background:rgba(247, 248, 248, 1);
  border:1px solid rgba(241, 241, 241, 1);
  padding: 18px;
  line-height: 1.5;
}
.publish-but{
  margin-top: 18px;
  text-align: right;
}
.publish-but span{
  display: inline-block;
  width:117px;
  height:40px;
  line-height: 40px;
  text-align: center;
  background:rgba(67, 145, 233, 1);
  border-radius:2px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}
.make-comment.all-comment {
  margin: 25px 0 105px;
}
.make-comment.all-comment .comment-box{
  border-bottom: 1px solid #F1F1F1;
}
.make-comment.all-comment .comment-box:last-child{
  border-bottom: none;
}
.all-comment-text{
  box-sizing: border-box;
  flex: 1;
}
.all-comment-text .comment-info h2{
  font-size: 16px;
  color: #1E2F42;
  font-weight: 600;
}
.all-comment-text .comment-info .comment-content {
  font-size: 14px;
  color: #788391;
  line-height:26px;
  margin-top: 10px;
  word-break: break-all;
}
.all-comment-text .comment-info .comment-other{
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.all-comment-text .comment-info .comment-other,
.all-comment-text .comment-info .comment-other a {
  font-size: 13px;
  color: #A8AFB9;
}
.all-comment-text .zan-box {
  display: flex;
  align-items: center;
  margin-left: 25px;
  cursor: pointer;
}
.all-comment-text .zan-box img{
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.all-comment-text .zan-box .zan-b{
  display: none;
}
.all-comment-text .zan-box.has-zan{
  color: #4391E9;
}
.all-comment-text .zan-box.has-zan .zan-w{
  display: none;
}
.all-comment-text .zan-box.has-zan .zan-b {
  display: block;
}
.all-comment-text .comment-info .comment-other a.jubao {
  margin: 0 25px;
}
.all-comment-text .comment-info .comment-other a:hover{
  color: #4391E9;
}
.reply-con{
  width: 100%;
  margin-top: 25px;
}
.reply-con .reply-info {
  display: flex;
  margin-bottom: 20px;
}
.reply-con .reply-info .head-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.reply-con .reply-info .head-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.reply-con .reply-info .reply-user-text .name{
  font-size: 14px;
  color: #1E2F42;
  font-weight: 600;
}
.reply-con .reply-info .reply-user-text .cont{
  font-size: 14px;
  color: #788391;
  word-break: break-all;
}
.reply-con .reply-info .reply-text{
  flex: 1;
}
.reply-con .reply-info .reply-text .time-box{
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.reply-con .reply-info .reply-text .time-box,
.reply-con .reply-info .reply-text .time-box a {
  font-size: 13px;
  color: #A8AFB9;
}
.reply-con .reply-info .reply-text .time-box a:hover{
  color: #4391E9;
}
.reply-con .reply-info .reply-text .time-box .jubao{
  margin: 0 25px;
}

.comment-info .show-more-reply {
  text-align: left;
  font-size: 13px;
  color: #4391E9;
}
.post-dialog-wrapper .my-form .my-form-item .label {
  width: 155px;
}
.post-dialog-wrapper .my-form .my-form-item .my-form-item-content {
  margin-left: 155px;
}
/* 技术合同认定登记 */
.acc-policy{
  width: 100%;
  padding: 30px 0 0 0;
}
.favoured-policy{
  padding: 60px 0 30px 0;
}
/* 创新方法推广应用 */
.prom-appli{
  width: 100%;
  background-color: #fff;
  padding: 30px 0;
}
.prom-appli-box{
  display: flex;
  margin-top: 55px;
}
.prom-appli-box li{
  box-sizing: border-box;
  width:290px;
  height:423px;
  margin-right: 10px;
  padding: 12px;
  background:rgba(255, 255, 255, 1);
  border:1px solid rgba(241, 241, 241, 1);
}
.prom-appli-box li:last-child{
  margin-right: 0;
}
.prom-appli-box li:hover{
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.prom-appli-box li .img-box {
  width: 100%;
  height: 204px;
}
.prom-appli-box li .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prom-appli-box li .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #1E2F42;
  margin-top: 8px;
}
.prom-appli-box li .title .bg-box {
  height: 45px;
  background-repeat: no-repeat;
  background-size: 60px 45px;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.prom-appli-box li .content{
  font-size: 14px;
  color: #788391;
  line-height:24px;
  text-align: center;
  margin-top: 30px;
}
/* 可持续发展实验区申报咨询 */
.bg-white-cenetr{
  width: 100%;
  background-color: #fff;
  padding: 30px 0 0;
}
/* 可持续发展实验区申报咨询 */
.white-bg-padding{
  width: 100%;
  background-color: #fff;
  padding: 60px 0;
}
.white-bg-padding .content {
  font-size: 16px;
  color: #788391;
  line-height:34px;
  margin-top: 50px;
  padding-left: 45px;
}
/* 服务流程 */
.fwlc-text{
  margin: 55px 0 40px 0;
  font-size: 16px;
  color: #1E2F42;
}
/* 技术难题征集表 */
.my-table{
  margin: 20px 0;
  border-left: 1px solid rgba(241, 241, 241, 1);
  border-top: 1px solid rgba(241, 241, 241, 1);
}
.my-table td {
  box-sizing: border-box;
  min-height: 50px;
  line-height: 50px;
  padding: 5px 10px;
  font-size: 16px;
  word-break: break-all;
  word-wrap: break-word;
  border-right: 1px solid rgba(241, 241, 241, 1);
  border-bottom: 1px solid rgba(241, 241, 241, 1);
}
.my-table td.table-top-head {
  min-height: 45px;
  line-height: 45px;
  font-size: 22px;
  color: #1E2F42;
  font-weight: 600;
}
.my-table td.head-left {
  width: 165px;
  background-color: #faf7fa;
  font-size: 14px;
  color: #1E2F42;
  font-weight:600;
}
.my-table td input{
  width: 100%;
  line-height: 50px;
  padding: 0 5px;
}
.my-table td textarea{
  width: 100%;
  padding: 5px;
  line-height: 1.5;
}
.my-table td .chose-td-box {
  display: flex;
  flex-wrap: wrap;
}
.my-table td .chose-td-box .check-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #5C5C5C;
  margin-right: 15px;
}
.my-table td .chose-td-box .check-item1 {
  display: flex;
  align-items: center;
  color: #788391;
  font-size: 14px;
  margin-right: 15px;
}
.my-table td .chose-td-box .check-item label{
  margin-right: 10px;
}
.my-table td .chose-td-box .check-item1 label{
  margin-right: 10px;
}
.my-table td .chose-td-box .check-item.other-item{
  overflow: hidden;
  display: none;
}
.my-table td .chose-td-box .check-item.other-item span{
  float: left;
}
.my-table td .chose-td-box .check-item.other-item input {
  float: left;
  width: 200px;
}
.submit-box{
  margin: 40px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submit-box span{
  display: inline-block;
  width: 135px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #5082E0 0%, #3462CB 100%);
  border-radius: 8px;
  cursor: pointer;
  margin: 0 10px;
}
/* 大赛详情 */
.match-det{
  position: relative;
}
.match-det .det-head h2{
  line-height: 40px;
  width: 718px;
  margin: 0 auto 10px;
}
.signup-box{
  display: block;
  width:91px;
  height:112px;
  background:rgba(67, 145, 233, 1);
  box-shadow:0px 7px 27px 0px rgba(4, 101, 212, 0.34);
  border-radius:2px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -135px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.signup-box img{
  width: 32px;
  height: 32px;
  margin: 25px 0 18px;
}
.signup-box span{
  font-size: 16px;
  color: #fff;
}
/* 大赛报名入口 */
.reg-entr-box{
  padding-top: 20px;
}
.reg-entr-box .step-flow {
  /* width: 70%; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-flow li{
  width: 200px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
  color: #C7C7C7;
  background: #F2F2F2;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
}
.step-flow li:after {
  content: '';
  display: block;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid #F2F2F2;
  position: absolute;
  right: -18px;
  top: 0;
  z-index: 1;
}
.step-flow li::before {
  content: '';
  display: block;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid #fff;
  position: absolute;
  left: 0px;
  top: 0;
}
.step-flow li:first-child::before{
  display: none;
}
.step-flow li.active {
  color: #fff;
  background: #377FE3;
}
.step-flow li.active:after {
  border-left-color:#377FE3;
}
.upload-works{
  box-sizing: border-box;
  width: 135px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #4391E9;
  background:rgba(215, 234, 255, 0.33);
  border: 1px dashed rgba(54, 125, 227, 1);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.upload-works span:first-child {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 3px;
  margin-right: 3px;
}
.works-msg .notes{
  font-size: 12px;
  color: #A8AFB9;
  line-height: 1.2;
  position: relative;
  padding-left: 50px;
}
.works-msg .notes::before{
  content: "*";
  color: #FF323C;
  font-size: 16px;
  line-height: 1.2;
  position: absolute;
  left: 35px;
}
.sign-btn-box{
  margin: 45px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-btn-box span{
  box-sizing: border-box;
  display: inline-block;
  width: 135px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius:2px;
  font-size: 16px;
  margin: 0 14px;
  cursor: pointer;
}
.sign-btn-box span.preservation{
  background:rgba(67, 145, 233, 0);
  border:1px solid rgba(67, 145, 233, 1);
  color: #4391E9;
}
.sign-btn-box span.step{
  background:rgba(67, 145, 233, 1);
  color: #fff;
}
.contest-list-box p{
  font-size:24px;
  font-weight:600;
  color:rgba(30, 47, 66, 1);
  line-height:60px;
}
.contest-list-box .add-trline{
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #4391E9;
  background: rgba(215, 234, 255, 0.33);
  border: 1px dashed rgba(54, 125, 227, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.contest-list-box .add-trline:first-child {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 3px;
  margin-right: 3px;
}
.contest-list-box td.dele-tr{
  position: relative;
}
.contest-list-box td.dele-tr input{
  width: -moz-calc(100% - 115px);
  width: -webkit-calc(100% - 115px);
  width: calc(100% - 115px);
  float: left;
}
.contest-list-box .dele-people {
  display: inline-block;
  box-sizing: border-box;
  width: 100px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 14px;
  color: #F33737;
  background: rgba(255, 221, 224, 0.3);
  border: 1px solid rgba(241, 241, 241, 1);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
/* 个人中心-首页 */
.handle-login{
  display: flex;
  position: absolute;
  right: 0;
  top: 36px;
}
.handle-login .handle-login-item {
  display: flex;
  align-items: center;
  margin-left: 25px;
  font-size: 14px;
  color: #788391;
  cursor: pointer;
  position: relative;
}
.handle-login .handle-login-item img{
  width: 26px;
  height: 26px;
  margin-right: 5px;
}
.handle-login .handle-login-item .spot{
  width: 10px;
  height: 10px;
  background: orange;
  border-radius: 50%;
  position: absolute;
  top:0;
  left:15px;
}
.user-cont{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 55px;
}
.user-cont .user-cont-l{
  width: 416px;
  /* background-color: #fff; */
}
.user-cont .user-cont-r{
  width: 774px;
}
.user-cont .user-cont-l .head {
  width: 100%;
  height: 176px;
  background: #3867CE;
  box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
  border-radius: 8px;
}
.user-cont .user-cont-l .head .user-info{
    box-sizing: border-box;
    height: 91px;
    background: #3867CE;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
}
.user-cont .user-cont-l .head .user-info .info-left{
    display: flex;
    align-items: center;
}
.user-cont .user-cont-l .head .user-info .info-left .img-box{
    width: 53px;
    height: 53px;
    border-radius: 50%;
}
.user-cont .user-cont-l .head .user-info .info-left .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.user-cont .user-cont-l .head .user-info .info-left .user-name{
    margin-left: 15px;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}
.user-cont .user-cont-l .head .user-info  .edit-mater{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.user-cont .user-cont-l .head .user-info  .edit-mater img{
    width: 20px;
    height: 20px;
    margin-right:10px;
}
.user-cont .user-cont-l .head .user-info  .edit-mater span{
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}

.user-cont-l .coll-fans-follow {
  box-sizing: border-box;
  width: 100%;
  height: 85px;
  background: #FFFFFF;
  border-radius: 0px 0px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-cont-l .coll-fans-follow .item {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.user-cont-l .coll-fans-follow .item.active,
.user-cont-l .coll-fans-follow .item.active .num {
  color: #4391E9;
}
.user-cont-l .coll-fans-follow .item .num{
  font-size: 24px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}
.user-cont-l .coll-fans-follow .item .text{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 19px;;
}
.user-cont-l .coll-fans-follow .line {
  display: inline-block;
  width:1px;
  height:32px;
  background: #E6E8EB;
}
.user-l-tab{
  margin-top: 10px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
  border-radius: 8px;
  overflow: hidden;
}
.user-l-tab li{
  cursor: pointer;
  padding: 0 50px;
}
.user-l-tab li .inner {
  height: 95px;
  border-bottom: 1px solid #E9EBED;
  width: 100%;
  display: flex;
  align-items: center;
}
.user-l-tab li:last-child{
  border-bottom: none;
}
.user-l-tab li img{
  width: 24px;
  height: 24px;
  margin-right: 30px;
}
.user-l-tab li img.img-l{
  display: none;
}
.user-l-tab li.active,
.user-l-tab li:hover{
  background: #F6F9FE;
  border-bottom: none;
}
.user-log-out-btn{
    width: 416px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A8AFB9;
    box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
    border-radius: 8px;
    margin-top: 58px;
    cursor: pointer;
}
.user-log-out-btn img{
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.user-log-out-btn span{
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #F6F9FE;
    line-height: 1;
}
.integ-box{
  box-sizing: border-box;
  width: 100%;
  height: 91px;
  background: url(../image/user_integ_bg.png) no-repeat center;
  background-size: 100% 100%;
  padding-left: 33px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  display: flex;
  align-items: center;
}
.integ-box img{
    width: 26px;
    height: 26px;
    margin-right: 10px;
}
.integ-box span{
  margin-left: 10px;
  font-size: 24px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
}
.newest-box{
  background-color: #fff;
  margin-top: 10px;
}
.newest-box.margin-t-0 {
  margin-top: 0;
}
.head-ul{
  display: flex;
  height: 90px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
  border-radius: 8px;
  box-sizing: border-box;
  padding-left: 20px;
}
.head-ul li{
  line-height: 90px;
  padding: 0 20px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  position: relative;
}
.head-ul li.active{
  color: #1E2F42;
}
.head-ul li.active::after{
  content: "";
  width: 64px;
  height: 5px;
  background-color: #3867CE;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}
.latest-consul{
  background-color: #fff;
  margin-top: 10px;
  box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
  border-radius: 8px;
}
.latest-consul.margin-t-20 {
  margin-top: 20px;
}
.latest-consul>ul>li{
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.latest-consul>ul>li .left{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.latest-consul>ul>li .left .expert-img{
    width: 102px;
    height: 132px;
    border-radius: 4px;
    overflow:hidden;
    margin-right: 20px;
}
.latest-consul>ul>li .left .expert-img img,
.latest-consul>ul>li .left .user-head-img img{
    width: 100%;
    height: 100%;
    object-filter: cover;
}
.latest-consul>ul>li .left .user-head-img{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow:hidden;
    margin-right: 20px;
}
.latest-consul>ul>li .right{
    width: calc(100% - 122px);
    height: 132px;
}
.latest-consul>ul>li .right .head{
    display: flex;
    align-items: center;
}
.latest-consul>ul>li .right .head span{
    display: inline-block;
    padding: 0 7px;
    height: 25px;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    background: #3867CE;
    border-radius: 2px;
}
.latest-consul>ul>li .right .head h2{
    font-size: 18px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    line-height: 24px;
    margin-left: 10px;
}
.latest-consul>ul>li .info-box{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.latest-consul>ul>li .info-box .info{
    width: 80%;
}
.latest-consul>ul>li .info-box .info .name-time{
    display: flex;
    align-items: center;
}
.latest-consul>ul>li .info-box .info .name-time .name{
    display: inline-block;
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #3867CE;
    line-height: 19px;
}
.latest-consul>ul>li .info-box .info .name-time .time-box{
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #A8AFB9;
    line-height: 19px;
    margin-left: 20px;
}
.latest-consul>ul>li .info-box .info p{
    font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #7D7F82;
    line-height: 20px;
    margin-top: 10px;
}
.latest-consul>ul>li .info-box .info-con{
    align-self: flex-end;
}
.latest-consul>ul>li .info-box .info-con .btn-box{
    display: flex;
    flex-direction: column;
}
.latest-consul>ul>li .info-box .info-con .btn-box .ripple{
    margin-top: 10px;
}
.latest-consul>ul>li .info-box .info-con .btn-box .ripple:first-child{
    margin-top: 0;
}
.latest-consul>ul>li .info-box .info-con .btn-box .btn1{
    box-sizing: border-box;
    padding: 0 9px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #3867CE;
    opacity: 1;
    border: 2px solid #3867CE;
    border-radius: 4px;
}
.latest-consul>ul>li .info-box .info-con .btn-box .btn2{
    box-sizing: border-box;
    padding: 0 9px;
    height: 32px;
    line-height: 32px;
    background: #3867CE;
    box-shadow: 0px 1px 2px 1px rgba(154,154,154,0.27);
    border-radius: 4px;
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #fff;
    opacity: 1;
}
.latest-consul>ul>li .info-box .info-con .btn-box .btn2{

}

.latest-consul ul li .info-box .img-box.expert-img img{
  border-radius: 5px;
}
/* 个人中心我的帖子 */
.user-post-box{
  background-color: #F6F9FE;
  margin-top: 10px;
  box-sizing: border-box;
  padding: 5px;
  padding-bottom: 0;
  border-radius: 8px;
}
.user-post-box>ul{
  display: flex;
  flex-wrap: wrap;
}
.user-post-box>ul>li{
  box-sizing: border-box;
  width: 244px;
  height: 312px;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 5px;
}
.user-post-box>ul>li:hover{
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
}
.user-post-box>ul>li:nth-child(3n){
  margin-right: 0;
}
.user-post-box>ul>li .img-box{
  width: 100%;
  height: 202px;
  border-radius: 8px;
  overflow: hidden;
}
.user-post-box>ul>li .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-post-box>ul>li h4{
  height: 55px;
  line-height: 55px;
  padding: 0 9px;
  font-size: 16px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #000000;
}
.user-post-box>ul>li .b-box {
  height: 43px;
  border-top: 1px solid #EBF1F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #A8AFB9;
  padding: 0 9px;
}
.user-post-box>ul>li .b-box .post-data {
  display: flex;
  align-items: center;
}
.user-post-box>ul>li .b-box .post-data .item {
  display: flex;
  align-items: center;
  margin-left: 15px;
}
.user-post-box>ul>li .b-box .post-data .item img{
  width: 16px;
  height: 16px;
  margin-right: 3px;
}
/* 我的积分 */
.integral-list{
  margin-top: 10px;
  background-color: #fff;
}
.integral-list>ul{
  padding: 0 26px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgba(188,195,207,0.6);
  border-radius: 8px;
}
.integral-list>ul>li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 65px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #000000;
}
.integral-list>ul>li .title{
  display: inline-block;
  width: 30%;
}
.integral-list>ul>li .time {
  display: inline-block;
  width: 40%;
  text-align: right;
}
.integral-list>ul>li .jf-item{
  display: flex;
  align-items: center;
}
.integral-list>ul>li .jf-item img{
  width: 26px;
  height: 26px;
  margin-right: 5px;
}
.integral-list>ul>li .jf-item span{
  display: inline-block;
  width: 42px;
  text-align: left;
}
.integral-list>ul>li .jf-item .subt {
  color: #ff1a1a;
}
/* 报名信息 */
.regis-info{
  background-color: #fff;
  margin-top: 20px;
}
.regis-info>ul>li{
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F1F1;
  cursor: pointer;
}
.regis-info>ul>li .time {
  font-size: 12px;
  color: #A8AFB9;
}
.regis-info>ul>li .info{
  width: 85%;
  display: flex;
  align-items: center;
}
.regis-info ul li .info .state {
  display: inline-block;
  width: 65px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 15px;
  font-size: 14px;
  border-radius:2px;
  flex-shrink: 0;
}
.regis-info>ul>li .info .state.no-revie {
  background-color: rgba(255, 67, 67, .1);
  color: #FF4343;
}
.regis-info>ul>li .info .state.revie {
  background-color: rgba(39, 173, 83, .1);
  color: #28AD54;
}
.regis-info>ul>li .info .state.finish {
  background-color: rgba(168, 175, 185, .1);
  color: #A8AFB9;
}
.regis-info>ul>li .info p{
  font-size: 16px;
  color: #1E2F42;
}
/* 我的粉丝 */
.fans-list{
  margin-top: 20px;
  background-color: #fff;
}
.fans-list>ul>li{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F1F1;
  padding: 15px 28px;
}
.fans-list>ul>li .left {
  display: flex;
  align-items: center;
}
.fans-list>ul>li .left .img-box{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-right: 40px;
}
.fans-list>ul>li .left .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fans-list>ul>li .left .name {
  font-size: 16px;
  color: #1E2F42;
}
.fans-list>ul>li .left .grade {
  font-size: 16px;
  color: #788391;
}
.fans-list>ul>li .left .name {
  display: inline-block;
  min-width: 100px;
  margin-right: 20px;
}
.fans-list>ul>li .btn {
  display: inline-block;
  box-sizing: border-box;
  width: 65px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius:2px;
  font-size: 14px;
}
.fans-list>ul>li .btn.regrowth {
  background:rgba(120, 131, 145, 0);
  border:1px solid rgba(67, 145, 233, 1);
  color: #4391E9;
}
.fans-list>ul>li .btn.powder {
  background: rgba(120, 131, 145, 0);
  border: 1px solid rgba(168, 175, 185, 1);
  color: #A8AFB9;
}
/* 我的收藏 */
.user-collect-box{
  margin-top: 20px;
  background-color: #fff;
}
.user-collect-box .enlist .enlist-item .img-box{
  width: 240px;
  height: 100%;
}
.user-collect-box .enlist .enlist-item .en-info-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.user-collect-box .enlist .enlist-item .en-info-box h3{
    max-width: 100%;
}
.user-collect-box .enlist .enlist-item .en-info-box p {
  height: auto;
  line-height: 22px;
  margin-top: 10px;
}
.user-collect-box .enlist .enlist-item .en-info-box .time-num {
  border-bottom: 1px solid #EDEFF0;
  padding-bottom: 15px;
}
.user-collect-box .user-video-list {
  margin-top: 20px;
  margin-bottom: 0;
  padding: 20px;
}
.user-collect-box .user-video-list.qfd-list .qfd-item {
  width: 248px;
  height: 250px;
  margin-bottom: 10px;
}
.user-collect-box .user-video-list.qfd-list .qfd-item:nth-child(3n){
  margin-right: 0;
}
.user-resource ul li{
  box-sizing: border-box;
  border-bottom: 1px solid #F1F1F1;
  padding: 15px 28px;
}
.user-resource ul li a{
  display: block;
  font-size: 16px;
  color: #1E2F42;
}
.user-resource ul li a:hover{
  color: #4391E9;
}
/* 远程培训-详情 */
.video-detail{
  margin-bottom: 70px;
}
.video-detail>.title {
  font-size: 24px;
  color: #1E2F42;
  font-weight: 600;
  margin-bottom: 20px;
}
.video-detail .video-detail-inner {
  display: flex;
  justify-content: space-between;
}
.video-detail .video-detail-inner>.left{
  width: 837px;
}
.video-detail .video-detail-inner>.right{
  width: 340px;
}
.video-detail .video-detail-inner .left .video-box{
  width: 100%;
  height: 500px;
}
.video-detail .video-detail-inner .left .video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-operat{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F1F1F1;
}
.video-operat .operation-box{
  margin: 0;
}
.video-introduc{
  margin-bottom: 40px;
}
.video-introduc h1{
  font-size: 24px;
  color: #1E2F42;
  font-weight: 600;
  margin: 30px 0 20px;
}
.video-introduc p{
  font-size: 16px;
  color: #788391;
  line-height:28px;
}
.course-chap{
  border:1px solid rgba(241, 241, 241, 1);
}
.course-chap .head,
.relat-courses .head{
  padding: 20px 25px;
  font-size: 18px;
  color: #1E2F42;
  font-weight: 600;
  background:rgba(247, 248, 248, 1);
  border-bottom:1px solid rgba(241, 241, 241, 1);
}
.course-chap ul{
  max-height: 426px;
  overflow-y: auto;
}
.course-chap ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.course-chap ul::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
.course-chap ul:hover::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 53%, 0.4);
}
.course-chap ul:hover::-webkit-scrollbar-track {
  background: hsla(0, 0%, 53%, 0.1);
}
.course-chap ul li{
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 50px 0 25px;
  font-size: 14px;
  color: #788391;
  background-color: #F1F1F1;
  border-bottom:1px solid rgba(241, 241, 241, 1);
  cursor: pointer;
}
.course-chap ul li:hover,
.course-chap ul li.active {
  background:rgba(255, 255, 255, 1);
  color: #4391E9;
}
.relat-courses{
  margin-top: 20px;
  border:1px solid rgba(241, 241, 241, 1);
}
.relat-courses ul{
  padding: 10px 0;
}
.relat-courses ul li{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 18px;
  cursor: pointer;
}
.relat-courses ul li .img-box{
  width: 124px;
  height: 85px;
  margin-right: 15px;
  flex-shrink: 0;
}
.relat-courses ul li .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.relat-courses ul li p{
  font-size: 14px;
  color: #788391;
  line-height:26px;
}
.relat-courses ul li:hover p{
  color: #4391E9;
}
/* 回复框 */
.reply-box{
  width: 100%;
  margin-top: 20px;
  display: none;
}
.reply-box .reply-box-t {
  display: flex;
}
.reply-box .reply-box-t .img-box{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-right: 30px;
}
.reply-box .reply-box-t .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.reply-box .reply-box-t textarea{
  box-sizing: border-box;
  height: 105px;
  padding: 15px;
  background:rgba(247, 248, 248, 1);
}
.reply-box .reply-box-b {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  margin-bottom: 5px;
}
.reply-box .reply-box-b span{
  display: inline-block;
  width: 115px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background:rgba(67, 145, 233, 1);
  border-radius:2px;
  cursor: pointer;
}
.my-form-flex-item{
  display: flex;
  flex-wrap: wrap;
}
.my-form-flex-item .check-item {
  display: flex;
  align-items: center;
  color: #788391;
  font-size: 14px;
  margin-right: 15px;
}
.my-form-flex-item .check-item label {
  margin-right: 10px;
}
/* 登录 */
.login-header{
  flex-shrink: 0;
  height: 80px;
  background-color: #fff;
  box-shadow:0px 0px 27px 0px rgba(109, 109, 109, 0.11);
}
.login-header .head-inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.login-header .head-inner .logo{
  width: 53px;
  height: 48px;
  margin-right: 12px;
}
.login-header .head-inner h2{
  font-size: 24px;
  color: #1E2F42;
  font-weight:bold;
}
.login-header .head-inner .line{
  display: inline-block;
  width:2px;
  height:25px;
  background:rgba(225, 229, 230, 1);
  margin: 0 20px;
}
.login-header .head-inner .text{
  font-size: 24px;
  color: #1E2F42;
}
/*.login-sect{
  background: url(../image/login_bg.png) no-repeat;
  background-size: 100% 137%;
  background-position: 100% 35%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}*/
.login-sect-box{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.login-sect-box .left h1{
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 25px;
}
.login-sect-box .left p{
  font-size: 1.3rem;
  color:rgba(255, 255, 255, .57);
  margin-top: 1.5rem;
}
.login-sect-box .form-cont{
  box-sizing: border-box;
  padding: 1.75rem;
  /* width: 21.8rem; */
  width: 436px;
  height: auto;
  margin: 2rem 0;
  /* height: 50vh; */
  /* overflow-y: auto; */
  background:rgba(255, 255, 255, 1);
  margin: 2rem 0;
}
.login-sect-box .form-cont::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
.login-sect-box .form-cont::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
.login-sect-box .form-cont:hover::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 53%, 0.4);
}
.login-sect-box .form-cont:hover::-webkit-scrollbar-track {
  background: hsla(0, 0%, 53%, 0.1);
}
.login-sect-box .form-cont h1{
  font-size: 1.5rem;
  color: #1E2F42;
  font-weight: bold;
}
.login-sect-box .form-cont h1.margin-b-75 {
  margin-bottom: 3.75rem;
}
.login-sect-box .form-cont .form-item{
  box-sizing: content-box;
  width: 100%;
  height:42px;
  background:rgba(247, 248, 248, 1);
  border:1px solid rgba(241, 241, 241, 1);
  border-radius:2px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.login-sect-box .form-cont .form-item img{
  width: 14px;
  margin: 0 22px;
}
.login-sect-box .form-cont .form-item .line{
  width:1px;
  display: inline-block;
  height:16px;
  background:rgba(225, 229, 230, 1);
}
.login-sect-box .form-cont .form-item input{
  line-height: 42px;
  padding: 0 15px;
  caret-color: #4391E9;
}
input:focus .login-sect-box .form-cont .form-item {
  border:1px solid rgba(67, 145, 233, 1);
}




/* 修改密码 */
.cpass-form-cont .margin-b {
  margin-bottom: 1.85rem;
}

/* 注册 */
.login-sect .right-form-box{
    overflow: auto;
}
.login-sect .right-form-box::-webkit-scrollbar {
    width: 4px;
}
.login-sect .right-form-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);
}
.login-sect .right-form-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}

.chose-identity{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.reg-step-one{
  margin-top:2.5rem;
}
.reg-step-two {
  margin-top: 1rem;
}
.chose-identity .check-item{
  padding: 10px 15px;
  border-radius:2px;
  display: flex;
  align-items: center;
  color: #A8AFB9;
  font-size: 14px;
  cursor: pointer;
}
.chose-identity .check-item label{
  margin-right: 15px;
}
.reg-agree{
  font-size: 12px;
  color: #788391;
  margin: 1rem 0;
  display: flex;
  align-items: center;
}
.reg-agree .check-item{
  display: flex;
  align-items: center;
}
.reg-agree .check-item label{
  margin-right: 5px;
}
.reg-agree>span{
  font-size: 12px;
  color: #4391E9;
  cursor: pointer;
  margin-left: 5px;
}
.reg-step-two .identity-msg-box .personal-msg {
  /* height: 11.7rem; */
  padding: 1rem 0;
  background-color: #F8F8F8;
  border-radius:4px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.id-card-item{
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.id-card-item.positive-item {
  margin-right: 90px;
}
.id-card-item img{
  width: 155px;
  height: 91px;
  margin-bottom: 30px;
}
.id-card-item span{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #3867CE;
}
.reg-agree-cont h4{
  font-size: 18px;
}
.reg-agree-cont p{
  font-size: 16px;
  text-indent: 2em;
}
.enterprise-msg{
  display: none;
  padding-top: 15px;
}
.login-sect-box .form-cont .form-item.img-upload-item {
  width: 96px;
  height: 96px;
  cursor: pointer;
}
.img-upload{
  width: 96px;
  height: 96px;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.img-upload img.add {
  width: 33px !important;
  height: 33px;
  margin: 0 0 10px 0 !important;
}
.img-upload img.upload {
  display: none;
}
.img-upload span{
  font-size: 12px;
  color: #A8AFB9;
}
.img-upload.has-upload .add,
.img-upload.has-upload span {
  display: none;
}
.img-upload.has-upload img.upload{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eval-pjstar{
  height: 42px;
  display: flex;
  align-items: center;
}
.eval-pjstar img{
  width: 26px;
  margin-right: 10px;
  cursor: pointer;
}
/* 消息 */
.notice-tab{
  background: #FFFFFF;
  box-shadow: 0px 1px 2px 1px rgb(188 195 207 / 60%);
  border-radius: 8px;
  box-sizing: border-box;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  padding-left: 25px;
  margin-top: 20px;
}
.notice-tab li{
  font-size: 18px;
  color: #788391;
  margin-right: 90px;
  position: relative;
  cursor: pointer;
}
.notice-tab li.active{
  color: #1E2F42;
  font-weight: 600;
}
.notice-tab li.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #367DE3;
}
.notice-list{
  margin-top: 35px;
}
.notice-list li{
  box-sizing: border-box;
  padding: 28px;
  border-bottom:1px solid rgba(241, 241, 241, 1);
  cursor: pointer;
}
.notice-list li h3{
  font-size: 16px;
  color: #1E2F42;
  font-weight: 600;
  margin-bottom: 5px;
}
.notice-list li .cont-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-list li .cont-box p{
  max-width: 70%;
  font-size: 16px;
  color: #788391;
}
.notice-list li .cont-box span{
  font-size: 12px;
  color: #A8AFB9;
}
.notice-list li:hover{
  background:rgba(255, 255, 255, 1);
  box-shadow:0px 5px 43px 0px rgba(87, 143, 206, 0.24);
  border-bottom: none;
}
.notice-list li:hover h3{
  color: #4391E9;
}
.btn-modify {
  display: inline-block;
  width: 70px;
  height:30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #3867CE;
  border-radius:2px;
  cursor: pointer;
}
/* 创新方法研究会个人会员申请表 */
.application-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #666666;
}
.appli-top-r {
  display: flex;
  align-items: center;
  justify-content: center;
}
.appli-top-r .nian {
  padding: 0 60px;
}
.appli-top-r .yue {
  padding: 0 30px;
}
.appli-top-r .yue {
  padding: 0 30px;
}
.my-table tr td.photo {
  width: 195px;
  cursor: pointer;
  padding: 0;
}
.my-table tr td.photo .webuploader-pick{
  width: 195px;
  height: 250px;
}
.my-table tr td.photo .webuploader-pick img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-table tr td p{
  font-size: 16px;
  text-align: left;
  margin-bottom: 0;
}
.check-patent {
  display: flex;
  align-items: flex-start;
}
.check-patent .check-item{
  display: flex;
  align-items: center;
  font-size: 16px;
}
.check-patent .check-item label{
  margin-right: 15px;
}
.sign-box {
  height: 240px;
  position: relative;
  font-size: 16px;
  color: #282220;
}
.sign-box .left-t {
  position: absolute;
  top: 5px;
  left: 0;
}
.sign-box .name{
  position: absolute;
  bottom: 65px;
  right: 135px;
}
.scienc-box p.must::after {
  content: "*";
  position: absolute;
  left: -14px;
  top: 3px;
  color: red;
}
.scienc-box p {
  text-align: left;
  font-size: 18px;
  color: #282220;
  position: relative;
  margin-bottom: 0;
}
.scienc-box {
  padding-left: 20px;
}
.scienc-box p span.brackets {
  position: absolute;
  top: 0;
  left: 40%;
}
.sign-date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  right: 30px;
}
.sign-date .nian {
  padding: 0 60px;
}
.sign-date .yue {
  padding: 0 30px;
}
.sign-date .yue {
  padding: 0 30px;
}
/* 个人中心-编辑资料 */
.user-setbox{
  margin-top: 20px;
  background-color: #fff;
}
.user-head-setbox {
  display: flex;
  justify-content: center;
  padding: 100px 0 100px 0;
}
.user-head-set .change-head-l {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 45px;
}
.user-head-set .change-head-l img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.user-head-set .change-head-r{
  margin-right: 105px;
}
.user-head-set .head-r-bg {
  padding: 142px 155px;
  background: #BFBFBF;
}
.user-head-set .head-r-bg img {
  width: 75px;
  height: 87px;
}
.user-head-set .head-r-bg.has-upload {
  padding: 0;
  width: 230px;
  height: 230px;
}
.user-head-set .head-r-bg.has-upload img {
  width: 100%;
  height: 100%;
}
.user-head-set .head-r-btnbox {
  margin-top: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-head-set .head-r-btnbox span {
  display: inline-block;
  width: 85px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  border-radius: 3px;
}
.head-r-btnbox span:first-child {
  background: #389AFF;
}
.head-r-btnbox span:last-child {
  background: #389AFF;
}
.change-box {
  padding: 100px 0;
}
.input-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.input-item span.label {
  width: 10%;
  text-align: right;
  font-size: 16px;
  color: #535353;
  margin-right: 10px;
}
.input-item input {
  width: 400px;
  height: 40px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(212, 212, 212, 1);
  border-radius: 5px;
  padding: 0 15px;
}
.input-item.code-box .code-inner {
  width: 435px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-item.code-box .code-inner input {
  width: 59%;
}

.input-item.but-item-box .comp-btn {
  display: inline-block;
  width: 400px;
  height: 40px;
  line-height: 40px;
  text-align: center;
    background: linear-gradient(-56deg, rgba(67, 145, 233, 1), rgba(54, 125, 227, 1));
  box-shadow: 0px 0px 10px 0px rgba(24, 144, 255, 0.2);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  margin-left: 70px;
}
.layui-layer-btn a{
  font-size: 12px;
}
.copy-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy-box img{
  width: 20px;
}
/*作品资料上传*/
.upload-box{
  min-height: 50px;
  position: relative;
}
.upload-box .data-list {
  max-width: 80%;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.upload-box .data-list p{
  margin: 0;
}
.upload-box .data-list img{
  width: 16px;
  height: 16px;
  margin-left: 10px;
  display: none;
}
.upload-box .upload-works{
  position: absolute !important;
  right: 0;
  bottom: 0;
}
.no-data-available{
  padding: 50px;
  text-align: center;
  font-size: 16px;
  color: #666;
  width: 100%;
}
.loading {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 18px;
  z-index: 100000000;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  text-align: center;
}
.loadbox {
  position: absolute;
  width: 160px;
  height: 150px;
  color: #fff;
  left: 50%;
  top: 50%;
  margin-top: -100px;
  margin-left: -75px;
}
.loadbox img {
  margin: 10px auto;
  display: block;
  width: 40px;
}
/*专家分类*/
.expert-cate{
  width: 100%;
  margin-top: 30px;
}
.expert-cate ul{
  width: 100%;
  display: flex;
  align-items: center;
  height: 66px;
  background-color: #F6F9FE;
  border-radius: 8px;
}
.expert-cate ul li{
  width: 168px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #5C5C5C;
  cursor: pointer;
}
.expert-cate ul li.active{
  color: #3867CE;
}
.expert-box{
  display: flex;
  align-items: flex-start;
}
.expert-box .expert-side{
  width: 280px;
  background: #F6F9FE;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 30px;
  margin-right: 20px;
  overflow: hidden;
}
.expert-box .expert-side ul li{
  width: 100%;
  height: 66px;
  line-height: 66px;
  text-align: center;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #5C5C5C;
  cursor: pointer;
}
.expert-box .expert-side ul li.active{
  color: #fff;
  background: #3867CE;
}
.span-tag{
  background-color: #ecf5ff;
  display: inline-block;
  height: 32px;
  padding: 0 10px;
  line-height: 30px;
  font-size: 12px !important;
  color: #409eff !important;
  border: 1px solid #d9ecff;
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
}
/*科普列表*/
.science-cont{
    background: #F6F9FE;
    border-radius: 8px;
    padding: 27px 4px 19px;
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
}
.science-cont .science-item{
    box-sizing: border-box;
    width: 392px;
    /*height: 323px;*/
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 6px 6px 0;
}
.science-cont .science-item:nth-child(3n) {
    margin-right: 0;
}
.science-cont .science-item:hover{
  box-shadow: 0px 1px 12px 1px rgba(72,106,181,0.33);
}
.science-cont .science-item .img-box{
    width: 100%;
    height: 240px;
    background: rgba(0,0,0,0.28);
    border-radius: 8px;
    position: relative;
}
.science-cont .science-item .img-box .cover-img{
    width: 100%;
    height: 100%;
    object: cover;
}
.science-cont .science-item .img-box .play-img{
    width: 67px;
    height: 67px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.science-cont .science-item .title{
    width: 100;
    height: 40px;
    border-bottom: 1px solid #EBF1F9;
    padding: 0 10px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    line-height: 40px;
}
.science-cont .science-item  .time{
    height: 36px;
    padding: 0 10px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #7D7F82;
    line-height: 36px;
}
.science-detail-con .video-box{
    padding: 33px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.science-detail-con .video-box video {
    width: 850px;
    height: 510px;
}
.science-detail-con .sc-det-line{
    width: 100%;
    height: 10px;
    background: #F6F9FE;
}
.science-detail-con .sc-det-title{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 18px;
    color: #3867CE;
    line-height: 24px;
    text-align: center;
    padding: 44px 0;
}
.science-detail-con .sc-det-cont{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #7D7F82;
    line-height: 30px;
    padding-bottom: 30px;
}
.science-detail-con .sc-det-cont img{
     display: block;
     margin: 0 auto;
}