/*开发者智库*/
/*科研成果列表 -始*/
.scie-research-achievements a {
    color: #333;
}
.scie-research-achievements .mr-lf {
    margin-left: 20px;
}
.scie-research-achievements .achi-item {
    display: flex;
    margin-bottom: 40px;
}
.scie-research-achievements .achi-item:last-of-type {
    margin-bottom: 0;
}
.scie-research-achievements .achi-item-img {
    width: 240px;
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 30px;
    background-color: #efefef;
}
.scie-research-achievements .achi-item-img img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.scie-research-achievements .achi-item-img:hover img {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
}
.scie-research-achievements .achi-item-info {
    flex: 1;
}
.scie-research-achievements .achi-item-info .h3 {
    color: #333;
    font-size: 20px;
}
.scie-research-achievements .achi-item .h3:hover a {
    color: #0fb892;
}
.scie-research-achievements .achi-item-info .p {
    font-size: 14px;
    max-height: 94px;
    line-height: 24px;
    margin-top: 12px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    color: #333;
}
.scie-research-achievements .achi-item-info .btm {
    font-size: 14px;
    color: #999;
    margin-top: 15px;

}
/*科研成果列表 -结*/

/*科研视频列表 -始*/
.scie-research-videos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 -20px -20px;
}
.scie-research-videos .video-item {
    width: 265px;
    margin: 0 0 20px 20px;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.scie-research-videos .video-box {
    position: relative;
    height: 150px;
    overflow: hidden;
    background-color: #efefef;
}
.scie-research-videos .video-box img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.scie-research-videos .video-box:hover img {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
}
.scie-research-videos .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0,0,0,.2);
}
.scie-research-videos .video-info .author {
    display: flex;
    align-items: center;
    flex: 1;
}
.scie-research-videos .author .head-sculpture {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 8px;
    overflow: hidden;
}
.scie-research-videos .author .name {
    display: grid;
    flex: 1;
    font-size: 14px;
    overflow: hidden;
}
.scie-research-videos .author .nowrap {
    max-width: 168px;
}
.scie-research-videos .video-info .tag {
    display: inline-block;
    line-height: 26px;
    border: 1px solid #fff;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
}
.scie-research-videos .btm-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    color: #333;
    line-height: 1.5;
    height: 58px;
}
.scie-research-videos .btm-info .h4 {
    font-size: 15px;
    color: #333;
}
.scie-research-videos .video-item:hover .h4 {
    color: #0fb892;
}
.scie-research-videos .btm-info .time {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}
/*科研视频列表 -结*/

/*科研团队 -始*/
.scie-research-teams {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.scie-research-teams .team-item {
    position: relative;
    width: 514px;
    min-height: 200px;
    background: url("../images/developer/team_item_bg.png") no-repeat center right;
    background-size: contain;
    margin: -5px 0 0 0;
    transform: scale(0.9);
    cursor: pointer;
}
.scie-research-teams .head-sculpture {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    padding: 6px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(5, 180, 141, .5);
}
.scie-research-teams .head-sculpture .object-fit-cover {
    border-radius: 50%;
}
.scie-research-teams .info-box {
    position: absolute;
    left: 146px;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    height: 164px;
    padding: 20px 0;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
}
.scie-research-teams .team-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.scie-research-teams .team-box .h3 {
    font-size: 20px;
    font-weight: bold;
    color: #05B48D;
    padding-right: 10px;
}
.scie-research-teams .team-box .h5 {
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scie-research-teams .desc {
    margin-top: 10px;
    max-height: 60px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}
/*科研团队 -结*/

/*首页 -始*/
.zwl-developer-banner .hd {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 99;
}
.zwl-developer-banner .hd li {
    display: inline-block;
    width: 33px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .5);
    margin: 0 5px;
    vertical-align: middle;
    cursor: pointer;
}
.zwl-developer-banner .hd .on {
    background: #fff;
}
.zwl-developer-banner .bd li {
    position: relative;
    height: 500px;
}
.zwl-developer-banner .slide-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.zwl-developer-banner .dev-banner-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 8;
}
.dev-banner-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1200px;
    margin: 0 auto;
    height: 500px;
    transform: translateX(-50%);
    color: #fff;
    z-index: 9;
}
.dev-banner-container .rt-btns {
    position: absolute;
    top: 28px;
    right: -50px;
    z-index: 9;
}
@media screen and (max-width: 1400px) {
    .dev-banner-container .rt-btns {
        right: 0;
    }
}
.dev-banner-container .rt-btns .btn {
    display: inline-block;
    min-width: 95px;
    line-height: 36px;
    border: 1px solid #fff;
    vertical-align: middle;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
    margin-right: 25px;
    box-sizing: border-box;
}
.dev-banner-container .rt-btns .btn:last-of-type {
    margin-right: 0;
}
.dev-banner-container .rt-btns .btn:hover {
    background-color: #0fb892;
    color: #fff;
    border: 1px solid #0fb892;
}
.dev-banner-container .title-box {
    text-align: center;
    margin-top: 100px;
    text-shadow: 0 0 20px rgba(0, 0, 0, .5);
}
.dev-banner-container .title-box .title {
    font-size: 78px;
}
.dev-banner-container .title-box .sub-title {
    font-size: 28px;
}
.dev-banner-container .search-box {
    display: flex;
    align-items: center;
    width: 800px;
    height: 54px;
    border-radius: 27px;
    background: #fff;
    box-shadow: 0 10px 20px #00B48D20;
    margin: 36px auto 0 auto;
}
.dev-banner-container .search-form {
    position: relative;
    display: inline-flex;
    flex: 1;
    height: 100%;
}
.dev-banner-container .ipt {
    flex: 1;
    background: none;
    font-size: 16px;
    color: #333;
    padding: 0 30px;
    height: 100%;
}
.dev-banner-container .ipt::-webkit-input-placeholder {
    color: #ccc;
}
.dev-banner-container .ipt-btn {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 96px;
    height: 40px;
    border-radius: 20px;
    border: 0;
    background: url("../images/search_white01.png") no-repeat center #00B48D;
    background-size: 22px auto;
    margin-right: 15px;
    cursor: pointer;
}
.dev-banner-container .drop-down-menu {
    position: relative;
    height: 100%;
}
.dev-banner-container .selected {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-width: 100px;
    padding-left: 20px;
    cursor: pointer;
}
.dev-banner-container .selected .icon {
    width: 14px;
    height: 14px;
    background: url("../images/icon_arrow_lf.png") no-repeat center;
    background-size: contain;
    transform: rotate(-90deg);
}
.dev-banner-container .drop-down-menu .text {
    font-size: 16px;
    margin-right: 5px;
    color: #333;
}
.dev-banner-container .drop-down-menu.hover:hover .icon,
.dev-banner-container .display .icon {
    transform: rotate(90deg);
}
.dev-banner-container .drop-down-menu.hover:hover .menu-list-box,
.dev-banner-container .display .menu-list-box {
    display: block;
}
.dev-banner-container .menu-list-box {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 9;
    padding-top: 20px;
    transition: all 0.2s;
}
.dev-banner-container .menu-list-box:before {
    content: '';
    position: absolute;
    right: 50px;
    top: 12px;
    border-bottom: 8px solid #fff;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
}
.dev-banner-container .menu-list {
    min-width: 100px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 9px rgba(0,0,0,.14);
    overflow: hidden;
}
.dev-banner-container .menu-list .item {
    line-height: 40px;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    color: #666;
}
.dev-banner-container .menu-list .item.active,
.dev-banner-container .menu-list .item:hover {
    background: #F7F7F7;
}
.zwl-developer-index {
    position: relative;
    min-width: 1200px;
    min-height: 100vh;
    padding: 25px 0 0;
    background-color: #F7F7F7;
    box-sizing: border-box;
}
.zwl-developer-index:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
    background: url("../images/developer/footer_bg.png") repeat-x bottom center;
    background-size: auto 156px;
    z-index: 9;
}
.zwl-developer-index .w {
    background-color: #fff;
    padding-bottom: 160px;
}
.zwl-developer-index .module-box {
    padding: 0 40px;
}
.zwl-developer-index .module-title {
    text-align: center;
    padding: 50px 0 40px 0;
}
.zwl-developer-index .module-title span {
    position: relative;
    display: inline-block;
    line-height: 1;
    color: #00B48D;
    font-size: 32px;
    padding-bottom: 23px;
}
.zwl-developer-index .module-title span:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 42px;
    height: 3px;
    background-color: #00B48D;
}
.zwl-developer-index .view-more-box {
    text-align: center;
    padding: 35px 0;
}
.zwl-developer-index .view-more {
    display: inline-block;
    min-width: 70px;
    line-height: 32px;
    font-size: 14px;
    padding: 0 14px;
    color: #666;
    border: 1px solid #666;
}
.zwl-developer-index .view-more:hover {
    color: #0fb892;
    border: 1px solid #0fb892;
}
/*首页 -结*/

/*搜索 -始*/
.zwl-developer-search {
    background-color: #F7F7F7;
}
.zwl-developer-search .w {
    padding-bottom: 60px;
}
.developer-search-area {
    padding: 0 40px;
    background-color: #fff;
}
.developer-search-area .search-area {
    padding: 30px 0 40px 0;
    text-align: center;
}
.developer-search-area .search-box {
    display: inline-flex;
    width: 800px;
    height: 54px;
    border-radius: 30px;
    box-sizing: border-box;
    overflow: hidden;
}
.developer-search-area .search-box .ipt {
    flex: 1;
    height: 100%;
    padding: 0 40px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    color: #333;
    box-sizing: border-box;
}
.developer-search-area .search-box .ipt:focus {
    border: 1px solid #0fb892;
}
.developer-search-area .search-box .ipt-btn {
    width: 85px;
    height: 100%;
    background: url("../images/search_white01.png") no-repeat center #00B48D;
    background-size: 28px auto;
    border: 0;
    cursor: pointer;
}
.developer-search-area .load-tip {
    font-size: 16px;
    line-height: 1;
    padding: 60px 0;
    text-align: center;
    color: #aaa;
}
/*搜索 -结*/

/*专家认证 -始*/
.zwl-developer-edit {
    background-color: #f7f7f7;
}
.zwl-developer-edit .main-body {
    display: flex;
    padding-bottom: 60px;
}
.zwl-developer-edit .deve-edit-nav {
    width: 130px;
    background-color: #F4F7F8;
}
.deve-edit-nav .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00B48D;
    background-color: #FCFCFC;
    height: 125px;
    font-size: 16px;
    cursor: pointer;
}
.deve-edit-nav .icon {
    width: 34px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 8px;
}
.deve-edit-nav .icon-authentication {
    background-image: url("../images/developer/icon_authentication.png");
}
.deve-edit-nav .icon-video {
    background-image: url("../images/developer/icon_video.png");
}
.deve-edit-nav .icon-edit {
    background-image: url("../images/developer/icon_edit.png");
}
.deve-edit-nav .active {
    position: relative;
    border-left: 4px solid #00B48D;
}
.deve-edit-nav .active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #00B48D;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.zwl-developer-edit .deve-edit-area {
    flex: 1;
    background-color: #fff;
    padding: 30px 30px 0 30px;
}
.deve-edit-area .edit-tip {
    font-size: 14px;
    color: #00B48D;
    margin-bottom: 15px;
}
.deve-edit-area .edit-item {
    display: flex;
    border-top: 1px solid #EFF3F5;
}
.deve-edit-area .edit-tip + .edit-item,
.deve-edit-area .edit-item:first-of-type {
    border-top: 0;
}
.deve-edit-area .item-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 132px;
    height: 80px;
    font-size: 16px;
    padding-left: 16px;
    box-sizing: border-box;
}
.deve-edit-area .item-title[required]:before {
    position: absolute;
    left: 0;
    content: '*';
    color: #ff0000;
}
.deve-edit-area .item-right {
    flex: 1;
    padding: 15px 0;
}
.deve-edit-area .head-sculpture {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url("https://res.2016elite.com/pcweb/v2/images/offer/ico_camera_white.png") no-repeat center #999;
    background-size: 32px auto;
    cursor: pointer;
    overflow: hidden;
}
.deve-edit-area .edit-item .ipt {
    width: 352px;
    height: 50px;
    border: 1px solid #B8C4CE;
    border-radius: 2px;
    padding: 0 20px;
    font-size: 14px;
    box-sizing: border-box;
}
.deve-edit-area .bor-red {
    border: 1px solid #ff0000 !important;
}
.deve-edit-area .bor-green {
    border: 1px solid #0fb892 !important;
}
.deve-edit-area .textarea:focus,
.deve-edit-area .edit-item .ipt:focus {
    border: 1px solid #0fb892 !important;
}
.deve-edit-area .drop-down-box {
    width: 352px;
    height: 50px;
    border: 1px solid #B8C4CE;
    border-radius: 2px;
    color: #333;
    padding: 0 48px 0 20px;
    box-sizing: border-box;
}
.deve-edit-area .drop-down-box .drop-down-text {
    padding: 0;
    line-height: 48px;
}
.deve-edit-area .drop-down-box .drop-down-img {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    background: url("../images/down.png") no-repeat center !important;
    background-size: auto 20px !important;
}
.deve-edit-area .drop-down-box .drop-down-list {
    width: calc(100% + 2px);
    top: 50px;
    border-radius: 0;
    border-color: #B8C4CE;
    padding: 0;
    box-shadow: 0 5px 20px #00000030;
    box-sizing: border-box;
}
.deve-edit-area .drop-down-box .drop-down-list li {
    border-radius: 0;
    line-height: 48px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0;
}
.deve-edit-area .drop-down-list li:hover {
    background-color: #f2f2f2;
    color: #777;
}
.deve-edit-area .drop-down-box .drop-down-list .selected {
    color: #fff;
    background-color: #0fb892;
}
.deve-edit-area .radio-box {
    display: flex;
    align-items: center;
    height: 50px;
}
.deve-edit-area .radio-item {
    display: inline-flex;
    align-items: center;
    margin-left: 45px;
    cursor: pointer;
}
.deve-edit-area .radio-item:first-of-type {
    margin-left: 0;
}
.deve-edit-area .radio-item .text {
    font-size: 14px;
    margin-left: 15px;
}
.deve-edit-area .radio-item .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #BEC4C8;
    box-sizing: border-box;
}
.deve-edit-area .radio-item input:checked + .icon {
    position: relative;
    border: 2px solid #0fb892;
}
.deve-edit-area .radio-item input:checked + .icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0fb892;
}
.deve-edit-area .add-box {
    display: flex;
    align-items: center;
}
.deve-edit-area .item-right .rt-btn {
    display: inline-block;
    min-width: 90px;
    text-align: center;
    line-height: 32px;
    background-color: #0fb892;
    color: #fff;
    font-size: 16px;
    border-radius: 2px;
    margin-left: 10px;
    cursor: pointer;
}
.deve-edit-area .lables-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 5px 0 0 -20px;
}
.deve-edit-area .lables-box .lable {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #0fb892;
    height: 32px;
    padding: 0 10px;
    line-height: 1;
    border: 1px solid #0fb892;
    border-radius: 20px;
    margin: 5px 0 0 20px;
    box-sizing: border-box;
    cursor: pointer;
}
.deve-edit-area .lables-box .icon-del {
    position: relative;
    top: -1px;
    font-size: 22px;
    margin-left: 4px;
}
.deve-edit-area .textarea-box {
    width: 100%;
    box-sizing: border-box;
}
.deve-edit-area .textarea {
    width: 100%;
    height: 190px;
    font-size: 14px;
    padding: 15px 20px;
    border: 1px solid #B8C4CE;
    color: #333;
    box-sizing: border-box;
}
.deve-edit-area .btm-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.deve-edit-area .upload-file-btn {
    display: inline-block;
    color: #00B48D;
    line-height: 30px;
    font-size: 12px;
    padding-left: 32px;
    background: url(../images/expertEntry/folder.png) no-repeat left center;
    background-size: auto 20px;
    cursor: pointer;
}
.deve-edit-area .textarea-tip {
    line-height: 30px;
    font-size: 14px;
    color: #BDC3C7;
}
.deve-edit-area .textarea-tip .num {
    font-size: 18px;
    color: #00B48D;
}
.deve-edit-area .menu-box {
    display: inline-block;
    position: relative;
}
.deve-edit-area ._menu-list-box {
    position: absolute;
    left: 0;
    top: 52px;
    width: 100%;
    border: 1px solid #B8C4CE;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 5px 20px #00000030;
}
._menu-list-box .search-box {
    position: relative;
    height: 48px;
    border-bottom: 1px solid #ddd;
}
._menu-list-box .search-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    width: 24px;
    height: 100%;
    background: url("../images/search_normal.png") no-repeat center;
    background-size: contain;
}
._menu-list-box .search-ipt {
    width: 100%;
    height: 100%;
    padding: 0 54px 0 20px;
    font-size: 14px;
    color: #333;
    background: none;
    box-sizing: border-box;
}
._menu-list-box .menu-list {
    max-height: 194px;
    overflow-y: auto;
}
._menu-list-box .menu-list .item {
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 14px;
    box-sizing: border-box;
    line-height: 48px;
    padding: 0 20px;
    cursor: pointer;
}
._menu-list-box .menu-list .item:first-of-type {
    border-top: 0;
}
._menu-list-box .menu-list .item:hover {
    background-color: #f2f2f2;
    color: #777;
}
._menu-list-box .menu-list .item.active {
    background: #00B48B;
    color: #fff;
}
.deve-edit-area .upload-btn {
    display: inline-block;
    width: 130px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    background: url("../images/dryCargo/ico_upload.png") no-repeat 18px center #0fb892;
    background-size: 20px auto;
    padding-left: 28px;
    box-sizing: border-box;
}
.deve-edit-area .upload-tip {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.deve-edit-area .files-list {
    margin-top: 10px;
}
.deve-edit-area .files-list .file-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 20px;
    font-size: 14px;
    color: #0fb892;
    margin-top: 5px;
}
.deve-edit-area .files-list .ico-del {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/offer/ico_delete.png") no-repeat center;
    background-size: auto 19px;
    margin-left: 10px;
    cursor: pointer;
}
.deve-edit-area .upload-video-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 350px;
    height: 196px;
    text-align: center;
    border: 1px dashed #B8C4CE;
    box-sizing: border-box;
}
.deve-edit-area .upload-video-tip {
    color: #888888;
    padding-top: 75px;
    background: url("../images/developer/icon_upload.png") no-repeat top center;
    background-size: 54px auto;
}
.deve-edit-area .upload-video-tip .h4 {
    font-size: 16px;
}
.deve-edit-area .upload-video-tip .p {
    font-size: 12px;
    margin-top: 6px;
}
.deve-edit-area .upload-video-tip .u-btn {
    color: #ff0000;
    cursor: pointer;
}
.deve-edit-area .upload-video-progress {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.deve-edit-area .upload-video-progress .progress-bar {
    width: 350px;
}
.upload-video-progress .progress-text {
    margin-left: 10px;
    font-size: 16px;
    color: #0fb892;
}
.upload-video-area .video-img {
    position: relative;
    width: 100%;
    height: 100%;
}
.upload-video-area .video-img .icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: url("../images/community/ico_video_play.png") no-repeat 22px center rgba(0, 0, 0, .5);
    background-size: 20px auto;
    opacity: 0.8;
}
.upload-video-area .video-img .icon-video {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 40px;
    height: 34px;
    background: url("../images/course/live_broadcast.png") no-repeat center;
    background-size: contain;
}
.upload-video-area .video-img .icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    background-color: #ff0000;
    transform: translate(40%, -40%);
    cursor: pointer;
}
.deve-edit-area .upload-images {
    font-size: 0;
    margin-left: -15px;
}
.deve-edit-area .upload-images .img-item,
.deve-edit-area .upload-images .upload-img-btn {
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 2px;
    margin: 10px 0 0 15px;
    box-sizing: border-box;
}
.deve-edit-area .upload-images .img-item {
    position: relative;
    display: inline-block;
}
.deve-edit-area .upload-images .upload-img-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed #B8C4CE;
    line-height: 1;
    color: #B8C4CE;
    cursor: pointer;
}
.deve-edit-area .upload-img-btn .icon-add {
    font-size: 46px;
}
.deve-edit-area .upload-img-btn .text {
    font-size: 14px;
    padding: 5px 0;
}
.deve-edit-area .upload-images .icon-del {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    background-color: #ff0000;
    transform: translate(40%, -40%);
    cursor: pointer;
}
.deve-edit-area .btns-box {
    padding: 40px 0;
    font-size: 0;
    text-align: center;
}
.deve-edit-area .btns-box .btn {
    display: inline-block;
    width: 180px;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    border-radius: 4px;
    margin: 0 12.5px;
    cursor: pointer;
}
.deve-edit-area .btns-box .btn-green {
    background-color: #0fb892;
}
.deve-edit-area .btns-box .btn-grey {
    background-color: #BFBFBF;
}
/*专家认证 -结*/

/*详情 -始*/
.zwl-developer-detail {
    background-color: #f7f7f7;
}
.zwl-developer-detail a {
    color: #333;
}
.developer-detail-body {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}
.developer-detail-body .module-pub-title {
    text-align: center;
    line-height: 1;
    padding: 20px 0;
}
.developer-detail-body .module-pub-title .title {
    position: relative;
    display: inline-block;
    padding: 0 86px;
    font-size: 20px;
    color: #00B48D;
}
.developer-detail-body .module-pub-title .title:before,
.developer-detail-body .module-pub-title .title:after {
    content: '';
    position: absolute;
    top: 0;
    width: 66px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 66px auto;
}
.developer-detail-body .module-pub-title .title:before {
    left: 0;
    background-image: url("../images/developer/icon_title_lf.png");
}
.developer-detail-body .module-pub-title .title:after {
    right: 0;
    background-image: url("../images/developer/icon_title_rt.png");
}
.developer-detail-body .deve-detail-lf {
    width: 865px;
}
.developer-detail-body .deve-detail-rt {
    width: 320px;
}
.developer-detail-body .text-desc {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 20px;
}
.deve-detail-rt .module-box {
    background-color: #fff;
    margin-top: 15px;
}
.deve-detail-rt .module-box:first-of-type {
    margin-top: 0;
}
.deve-detail-rt .team-info-area {
    padding: 20px 25px;
}
.team-info-area .author-info {
    display: flex;
    align-items: center;
}
.team-info-area .author-box {
    display: flex;
    align-content: center;
    align-items: center;
    flex: 1;
}
.team-info-area .author-box .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
}
.team-info-area .author-box .rt-info {
    display: grid;
    flex: 1;
    overflow: hidden;
}
.team-info-area .author-box .h4 {
    font-size: 16px;
    color: #333;
}
.team-info-area .author-box .p {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.team-info-area .author-info .rt-btn {
    min-width: 40px;
    padding: 0 10px;
    line-height: 26px;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    margin-left: 10px;
    cursor: pointer;
    color: #fff;
}
.team-info-area .author-info .btn-green {
    background-color: #0fb892;
}
.team-info-area .author-info .btn-grey {
    background-color: #BFBFBF;
}
.team-info-area .tags {
    padding: 20px 0;
}
.team-info-area .tags .tag {
    display: inline-block;
    min-width: 80px;
    line-height: 26px;
    color: #0fb892;
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
    border: 1px solid #0fb892;
    box-sizing: border-box;
}
.team-info-area .other-infos .info-item {
    padding-left: 30px;
    font-size: 14px;
    line-height: 24px;
    background: url("../images/developer/icon_selected.png") no-repeat left 4px;
    background-size: 16px auto;
    margin-bottom: 8px;
}
/*相关成果*/
.deve-detail-rt .related-achievements .achievement-list {
    padding: 0 25px 10px 25px;
}
.deve-detail-rt .achievement-list .achi-item {
    display: flex;
    margin-bottom: 15px;
}
.achievement-list .achi-item .img-box {
    width: 90px;
    height: 66px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    background-color: #efefef;
}
.achievement-list .achi-item .title {
    flex: 1;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}
.achievement-list .achi-item .title:hover {
    color: #0fb892;
}
/*视频*/
.deve-video-detail .video-player-area {
    background-color: #fff;
}
.deve-video-detail .video-player-area .video-wrap {
    width: 100%;
    height: 486.5px;
    background-color: #000;
}
.deve-video-detail .video-player-area .video-info {
    padding: 16px 20px;
}
.deve-video-detail .video-info .title-box {
    display: flex;
}
.deve-video-detail .title-box .title {
    flex: 1;
    line-height: 32px;
    font-size: 24px;
}
.deve-video-detail .title-box .collect-btn {
    min-width: 50px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    padding: 0 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 20px;
}
.deve-video-detail .title-box .btn-green {
    background-color: #0fb892;
}
.deve-video-detail .title-box .btn-grey {
    background-color: #BFBFBF;
}
.deve-video-detail .video-info .time {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}
.deve-video-detail .video-desc-area {
    background-color: #fff;
    margin-top: 15px;
    padding: 0 20px;
}
/*科研成果详情*/
.developer-detail-body .deve-achievement-detail {
    padding: 20px 0 40px 0;
    background-color: #fff;
}
.deve-achievement-detail .module-box {
    padding: 0 75px;
}
.deve-achievement-detail .title-box {
    padding: 20px 0;
}
.deve-achievement-detail .title-box .title {
    font-size: 24px;
    line-height: 32px;
}
.deve-video-detail .title name,
.deve-achievement-detail .title .name {
    vertical-align: middle;
}
.deve-video-detail .title .ico,
.deve-achievement-detail .title .ico {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
}
.deve-video-detail .title .ico-edit,
.deve-achievement-detail .title .ico-edit {
    background: url("../images/questionAnswers/edit_green.png") no-repeat center;
    background-size: 20px auto;
}
.deve-video-detail .title .ico-del,
.deve-achievement-detail .title .ico-del {
    background: url("../images/offer/ico_delete.png") no-repeat center;
    background-size: 27px auto;
}
.deve-achievement-detail .title-box .time {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}
.deve-achievement-detail .imgs-box {
    text-align: center;
    padding-bottom: 20px;
}
.deve-achievement-detail .imgs-box img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}
.deve-achievement-detail .video-player-area {
    width: 480px;
    height: 270px;
    background-color: #000;
    margin: 0 auto 20px auto;
}
.deve-achievement-detail .achievement-files {
    margin-left: -15px;
    padding: 10px 0 20px 0;
}
.deve-achievement-detail .achievement-files .file-item {
    position: relative;
    display: inline-block;
    min-height: 40px;
    padding-left: 40px;
    font-size: 14px;
    margin: 0 15px 10px 15px;
}
.achievement-files .icon-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 40px;
    background-image: url("../images/icon_file01.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.achievement-files .icon-file.txt {
    background-image: url("../images/file_type_txt.png");
}
.achievement-files .icon-file.excel {
    background-image: url("../images/file_type_excel.png");
}
.achievement-files .icon-file.png {
    background-image: url("../images/file_type_img.png");
}
.achievement-files .icon-file.pdf {
    background-image: url("../images/file_type_pdf.png");
}
.achievement-files .icon-file.ppt {
    background-image: url("../images/file_type_ppt.png");
}
.achievement-files .icon-file.doc {
    background-image: url("../images/file_type_word.png");
}
.achievement-files .icon-file.zip {
    background-image: url("../images/file_type_zip.png");
}
.achievement-files .file-item .name {
    line-height: 22px;
}
.achievement-files .file-item .download {
    color: #ed596e;
    cursor: pointer;
}
/*详情 -结*/

/*专家个人主页 -科研成果/视频 -始*/
.expert-detail-page .expert-developer-list {
    background-color: #fff;
    padding: 40px;
}
/*专家个人主页 -科研成果/视频 -结*/

/*协助认证 -始*/
.developer-certification {
    min-height: 100vh;
    padding: 80px 20px 40px 20px;
    text-align: center;
    box-sizing: border-box;
}
.developer-certification .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
.developer-certification .user-info {
    min-width: 300px;
    max-width: 580px;
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    padding: 30px 0 40px 0;
}
.developer-certification .info-item {
    display: flex;
    font-size: 16px;
    padding: 10px 0;
}
.developer-certification .item-name {
    white-space: nowrap;
    font-weight: bold;
    margin-right: 10px;
}
.developer-certification .head-sculpture {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #efefef;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #EFEFEF;
}
.developer-certification .btns-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.developer-certification .btns-box .btn {
    display: inline-block;
    width: 160px;
    line-height: 48px;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    margin: 0 12.5px;
    cursor: pointer;
}
.developer-certification .btns-box .btn-green {
    background-color: #0fb892;
}
.developer-certification .btns-box .btn-grey {
    background-color: #BFBFBF;
}
/*协助认证 -结*/

/*首页V2 -始*/
._boxShadow {
    box-sizing: border-box;
    box-shadow: 0 0 10px #00000005;
}
.zwl-developerV2-banner {
    width: 100%;
    height: 450px;
    background: url("../images/developer/banner.jpg") no-repeat center;
    background-size: auto 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.zwl-developerV2-banner .title-box {
    color: #fff;
    text-align: center;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, .5);
    margin-top: -20px;
}
.zwl-developerV2-banner .title {
    font-size: 60px;
}
.zwl-developerV2-banner .sub-title {
    font-size: 30px;
    margin-top: 30px;
}
.zwl-developerV2-banner .search-box {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.zwl-developerV2-banner .search-box .lf-box {
    display: flex;
    align-items: center;
    width: 600px;
    flex: 1;
    height: 48px;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
}
.zwl-developerV2-banner .search-btn {
    width: 100px;
    line-height: 46px;
    border: 1px solid #FF9F1B;
    color: #fff;
    font-size: 15px;
    color: #fff;
    background-color: #FF9F1B;
    text-align: center;
}
.zwl-developerV2-banner .ipt {
    flex: 1;
    min-width: 478px;
    padding: 0 20px;
    color: #424242;
    font-size: 16px;
    line-height: 46px;
    box-sizing: border-box;
}
.zwl-developerV2-banner .ipt::-webkit-input-placeholder {
    color: #A9A9A9;
}
.zwl-developerV2-banner .drop-down-menu {
    position: relative;
    width: 120px;
    height: 46px;
    text-align: center;
    color: #424242;
}
.zwl-developerV2-banner .selected {
    line-height: 46px;
    cursor: pointer;
}
.zwl-developerV2-banner .selected:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 1px;
    height: 20px;
    background-color: #D6D6D6;
}
.zwl-developerV2-banner .selected .icon {
    position: absolute;
    top: 50%;
    right: 16px;
    border-top: 4px solid #424242;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
.zwl-developerV2-banner .selected .text {
    font-size: 16px;
    padding-right: 8px;
}
.zwl-developerV2-banner .hover:hover .menu-list,
.zwl-developerV2-banner .display .menu-list {
    display: block;
}
.zwl-developerV2-banner .menu-list {
    display: none;
    position: absolute;
    top: 46px;
    width: 100%;
    left: -1px;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    z-index: 9;
}
.zwl-developerV2-banner .menu-list .item {
    line-height: 30px;
    font-size: 14px;
    cursor: pointer;
}
.zwl-developerV2-banner .menu-list .item:hover {
    background-color: #F7F7F7;
}
.zwl-developerV2-banner .menu-list .item.active {
    background-color: #0fb892;
    color: #fff;
}
.zwl-developerV2-banner .classification-list {
    width: 732px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.zwl-developerV2-banner .classification-list .item {
    font-size: 14px;
    color: #FEFEFE;
    margin: 0 15px;
    line-height: 1.5;
    text-shadow: 0 0 4px #00000050;
}
.zwl-developerV2-banner .classification-list .item:hover {
    color: #0fb892;
}
.zwl-developerV2-index {
    min-height: calc(100vh - 576px);
    background-color: #F7F7F7;
}
.zwl-developerV2-index a {color: #333;}
.zwl-developerV2-index > .tab-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    box-shadow: 0 0 2px #00000020;
    background-color: #fff;
}
.zwl-developerV2-index > .tab-bar .item {
    min-width: 200px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: #797979;
    margin: 0 18px;
}
.zwl-developerV2-index > .tab-bar .item.active {
    position: relative;
    color: #0fb892;
}
.zwl-developerV2-index > .tab-bar .active:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #0fb892;
}
.zwl-developerV2-index .w {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 50px 0;
}
.zwl-developerV2-index .mt20 {
    margin-top: 20px;
}
.zwl-developerV2-index .mb20 {
    margin-bottom: 20px;
}
.zwl-developerV2-index .left-area {
    width: 875px;
    background-color: #fff;
}
.zwl-developerV2-index .right-area {
    width: 305px;
}
/*右边*/
.dev-settled-box {
    width: 100%;
    height: 170px;
    background: url("../images/developer/rt_banner.jpg") no-repeat center;
    background-size: cover;
    text-align: center;
}
.dev-settled-box .settled-btn {
    position: relative;
    top: 90px;
    display: inline-block;
    width: 91px;
    height: 29px;
    background: url("../images/developer/btn.png") no-repeat center;
    background-size: cover;
    font-size: 0;
    cursor: pointer;
}
.zwl-developerV2-index .right-area .com-title {
    line-height: 52px;
    padding: 0 20px;
    font-size: 12px;
}
.zwl-developerV2-index .dev-publish-box,
.zwl-developerV2-index .dev-active-users {
    background-color: #fff;
}
.zwl-developerV2-index .dev-publish-box .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px;
}
.zwl-developerV2-index .dev-publish-box .i-btn {
    width: 130px;
    line-height: 46px;
    font-size: 14px;
    color: #fff;
    background-color: #0fb892;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
.dev-active-users .users-list {
    padding-bottom: 20px;
}
.dev-active-users .user-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.dev-active-users .user-item .user-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #efefef;
    margin-right: 8px;
}
.dev-active-users .user-item .user-info {
    flex: 1;
    overflow: hidden;
}
.dev-active-users .user-info .h4 {
    display: inline-block;
    font-size: 14px;
    color: #333;
}
.dev-active-users .user-info .h4:hover {
    color: #0fb892;
}
.dev-active-users .user-info .p {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
/*左侧区*/
.zwl-developerV2-index .tab-nav {
    display: flex;
    padding: 25px 20px 0 20px;
    border-bottom: 2px solid #EDF6F6;
}
.zwl-developerV2-index .tab-nav .nav-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 30px;
    padding: 0 10px;
}
.zwl-developerV2-index .tab-nav .list {
    display: flex;
    flex: 1;
    overflow: hidden;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 10px;
}
.zwl-developerV2-index .tab-nav .item {
    display: inline-flex;
    align-items: center;
    height: 30px;
    font-size: 13px;
    padding: 0 10px;
    color: #333;
    margin: 0 10px 10px;
    border-radius: 5px;
    box-sizing: border-box;
}
.zwl-developerV2-index .tab-nav .active {
    color: #0fb892;
    border: 1px solid #0fb892;
    background-color: #00B08C30;
}
.zwl-developerV2-index .view-more {
    text-align: center;
    height: 74px;
    line-height: 74px;
}
.zwl-developerV2-index .view-more .text {
    font-size: 13px;
    color: #0fb892;
    cursor: pointer;
}
/*科研成果列表*/
.sr-achievements-list {
    padding: 0 20px;
}
.sr-achievements-list .item {
    display: flex;
    padding: 30px 0;
    border-bottom: 2px solid #EDF6F6;
}
.sr-achievements-list .achi-info {
    flex: 1;
    overflow: hidden;
}
.sr-achievements-list .achi-info .h3 {
    display: block;
    font-size: 18px;
    text-align: justify;
}
.sr-achievements-list .achi-info .h3:hover,
.sr-achievements-list .achi-info .h3:hover a {
    color: #0fb892;
}
.sr-achievements-list .achi-info .p {
    font-size: 14px;
    text-align: justify;
    color: #999;
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 12px;
}
.sr-achievements-list .achi-info .p:hover {
    color: #aaa;
}
.sr-achievements-list .achi-info .btm-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.sr-achievements-list .btm-box .time {
     font-size: 14px;
     color: #999;
}
.sr-achievements-list .btm-box .view {
    font-size: 12px;
    color: #0fb892;
    cursor: pointer;
}
.sr-achievements-list .achi-img {
    width: 195px;
    height: 144px;
    border-radius: 10px;
    margin-left: 30px;
    overflow: hidden;
}
/*科研视频*/
.sr-videos-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px 0 20px;
    margin-left: -9px;
}
.sr-videos-list .item {
    width: 270px;
    border: 1px solid #eee;
    margin: 10px 0 0 9px;
    background-color: #fff;
}
.sr-videos-list .video-cover {
    height: 152px;
    overflow: hidden;
    background-color: #efefef;
}
.sr-videos-list .video-cover img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.sr-videos-list .video-cover:hover img {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
}
.sr-videos-list .btm-text {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100%;
    padding: 0 10px;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: -webkit-linear-gradient(top, #00000020, #000);
    box-sizing: border-box;
}
.sr-videos-list .video-title {
    height: 53px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    box-sizing: border-box;
}
.sr-videos-list .video-title .text {
    margin-top: 8px;
}
.sr-videos-list .video-title:hover .text {
    color: #0fb892;
}
/*科研专家列表*/
.sr-experts-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-left: -19px;
}
.sr-experts-list .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 265px;
    height: 316px;
    padding: 0 20px;
    border-radius: 20px;
    margin: 20px 0 0 19px;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 6px #0fb89230;
}
.sr-experts-list .head-sculpture {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
}
.sr-experts-list .h2,
.sr-experts-list .h5 {
    line-height: 1;
    margin-top: 20px;
}
.sr-experts-list .h2 {
    font-size: 16px;
}
.sr-experts-list .h5 {
    font-size: 14px;
    color: #999999;
}
.sr-experts-list .e-btn {
    width: 128px;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    background-color: #0fb892;
    margin-top: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
}
/*首页V2 -结*/

/*科研成果详情V2 -始*/
.page-min-height a {
    color: #333;
}
.dev-achievementV2-detail {
    background-color: #f7f7f7;
}
.dev-achievementV2-detail .mt10 {
    margin-top: 10px;
}
.dev-achievementV2-detail .top-area {
    padding: 25px 30px;
    background-color: #fff;
    margin-bottom: 12px;
}
.dev-videoV2-detail .title-box .ico,
.dev-achievementV2-detail .top-area .ico {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
}
.dev-videoV2-detail .title-box .ico-edit,
.dev-achievementV2-detail .top-area .ico-edit {
    background: url("../images/questionAnswers/edit_green.png") no-repeat center;
    background-size: 20px auto;
}
.dev-videoV2-detail .title-box .ico-del,
.dev-achievementV2-detail .top-area .ico-del {
    background: url("../images/offer/ico_delete.png") no-repeat center;
    background-size: 27px auto;
}
.dev-videoV2-detail .title-box .title + .ico,
.dev-achievementV2-detail .top-area .title + .ico {
    margin-left: 10px;
}
.dev-videoV2-detail .title-box .title,
.dev-achievementV2-detail .top-area .title {
    font-size: 24px;
    line-height: 1.5;
    vertical-align: middle;
}
.dev-achievementV2-detail .top-area .top-btm {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}
.dev-achievementV2-detail .top-area .mf40 {
    margin-left: 40px;
}
.dev-achievementV2-detail .container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}
.dev-achievementV2-detail .dev-detailV2-lf {
    width: 898px;
}
.dev-achievementV2-detail .dev-detailV2-rt {
    width: 290px;
}
/*右边*/
.dev-achievementV2-detail .detail-container {
    padding-bottom: 40px;
    background-color: #fff;
}
.dev-detailV2-rt .mt20 {
    margin-top: 20px;
}
.dev-detailV2-rt .module-box {
    background-color: #fff;
}
.dev-detailV2-rt .m-title {
    line-height: 60px;
    padding: 0 24px;
    font-size: 20px;
    border-bottom: 2px solid #EEF3F4;
}
.dev-detailV2-rt .dev-settled-box {
    height: 162px;
    margin-top: 12px;
}
.dev-detailV2-rt .dev-settled-box .settled-btn {
    top: 85px;
}
.dev-detailV2-rt .team-info-box {
    padding: 24px 24px 30px 24px;
}
.dev-detailV2-rt .related-achievements .achievement-list {
    padding: 24px 0;
    margin-top: -15px;
}
.dev-detailV2-rt .achievement-list .achi-item {
    display: flex;
    padding: 0 24px;
    margin-top: 15px;
}
/*左边区*/
.dev-detailV2-lf .module-box {
    padding: 10px 30px 0 30px;
}
.dev-detailV2-lf .module-box .com-title {
    font-size: 18px;
    color: #0fb892;
    line-height: 1;
    padding-left: 10px;
    margin: 20px 0;
    border-left: 3px solid #0fb892;
}
.dev-detailV2-lf .module-box .text-desc {
    font-size: 14px;
    line-height: 24px;
}
.dev-detailV2-lf .imgs-box img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}
.dev-detailV2-lf .video-player-area {
    width: 640px;
    height: 360px;
    background-color: #000;
}
.dev-detailV2-lf .achievement-file {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 20px;
    font-size: 14px;
    color: #333;
}
.dev-detailV2-lf .achievement-file .ico-file {
    width: 24px;
    height: 20px;
    background: url("../images/icon_attachment01.png") no-repeat center;
    background-size: auto 18px;
}
.dev-detailV2-lf .achievement-file a:hover {
    color: #0fb892;
}
/*科研成果详情V2 -结*/

/*科研视频详情V2 -始*/
.dev-videoV2-detail {
    background-color: #f7f7f7;
}
.dev-videoV2-detail .container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}
.dev-videoV2-detail .dev-detailV2-lf {
    width: 898px;
}
.dev-videoV2-detail .dev-detailV2-rt {
    width: 290px;
}
.dev-videoV2-detail .video-info-area {
    display: flex;
    height: 446px;
    background-color: #fff;
    margin-bottom: 20px;
}
.dev-videoV2-detail .video-player-area {
    width: 792px;
    height: 100%;
    background-color: #000;
}
.dev-videoV2-detail .right-area {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
}
.dev-videoV2-detail .right-area .top-box {
    padding: 20px;
}
.dev-videoV2-detail .author-info {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #EEF3F4;
}
.dev-videoV2-detail .author-box {
    display: flex;
    align-content: center;
    align-items: center;
    flex: 1;
}
.dev-videoV2-detail .author-info .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
}
.dev-videoV2-detail .author-box .rt-info {
    display: grid;
    flex: 1;
    overflow: hidden;
}
.dev-videoV2-detail .author-box .h4 {
    font-size: 16px;
    color: #333;
}
.dev-videoV2-detail .author-box .p {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.dev-videoV2-detail .author-info .rt-btn {
    min-width: 40px;
    padding: 0 10px;
    line-height: 26px;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    margin-left: 10px;
    cursor: pointer;
    color: #fff;
}
.dev-videoV2-detail .video-info-area .btn-green,
.dev-videoV2-detail .author-info .btn-green {
    background-color: #0fb892;
}
.dev-videoV2-detail .video-info-area .btn-grey,
.dev-videoV2-detail .author-info .btn-grey {
    background-color: #BFBFBF;
}
.dev-videoV2-detail .video-info-area .btm-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 64px;
    padding: 0 20px;
    box-shadow: 0 -2px 1px #00000010;
    margin-top: 10px;
}
.dev-videoV2-detail .video-info-area .collect-btn {
    width: 70px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.dev-videoV2-detail .roll-area {
    flex: 1;
    overflow: auto;
}
.dev-videoV2-detail .video-desc {
    padding: 0 20px;
}
.dev-videoV2-detail .video-desc .time {
    font-size: 12px;
    color: #A5A3C0;
    margin-bottom: 10px;
}
.dev-videoV2-detail .video-desc p {
    line-height: 24px;
    font-size: 14px;
    color: #333;
}
.dev-videoV2-detail .bg {
    background-color: #fff;
}
.dev-videoV2-detail .related-title {
    line-height: 60px;
    padding: 20px 24px 0 24px;
    font-size: 20px;
    border-bottom: 2px solid #EEF3F4;
}
.dev-videoV2-detail .related-list {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 40px 0;
    margin-left: -60px;
}
.dev-videoV2-detail .related-list .item {
    display: flex;
    margin: 0 0 20px 60px;
}
.dev-videoV2-detail .related-list .item-img {
    width: 185px;
    height: 112px;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    margin-right: 15px;
}
.dev-videoV2-detail .related-list img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.dev-videoV2-detail .item-img:hover img {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
}
.dev-videoV2-detail .related-list .item-info {
    width: 146px;
}
.dev-videoV2-detail .related-list .h3 {
    line-height: 20px;
    color: #333;
    max-height: 60px;
    font-size: 14px;
    margin-bottom: 10px;
}
.dev-videoV2-detail .related-list .h3:hover,
.dev-videoV2-detail .related-list .h3:hover a {
    color: #0fb892;
}
.dev-videoV2-detail .related-list .p {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}
/*相关视频成果*/
.dev-detailV2-rt .achi-video-list {
    padding: 24px 0;
    margin-top: -15px;
}
.dev-detailV2-rt .achi-video-list .achi-video-item {
    display: flex;
    padding: 0 24px;
    margin-top: 15px;
}
.achi-video-list .achi-video-item .img-box {
    width: 90px;
    height: 66px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
    background-color: #efefef;
}
.achi-video-item .item-info {
    flex: 1;
    overflow: hidden;
}
.achi-video-item .item-info .h3 {
    font-size: 14px;
    color: #333;
    padding-bottom: 4px;
}
.achi-video-item .item-info .h3:hover {
    color: #0fb892;
}
.achi-video-item .item-info .p {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
}
/*科研视频详情V2 -结*/

/*评论 -始*/
.detail-comments-v3 {
    position: relative;
    background-color: #fff;
    padding: 30px 0 100px 0;
}
.detail-comments-v3 ._div-msg hr,
.detail-comments-v3 ._div-msg i {
    max-width: 20px;
    max-height: 20px;
    vertical-align: text-bottom;
}
.detail-comments-v3 ._div-msg img {
    max-width: 100px;
    max-height: 20px;
    vertical-align: text-bottom;
}
.detail-comments-v3 .comments-title {
    padding: 0 40px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.detail-comments-v3 .comments-lists-v3 {
    padding: 0 40px;
}
.comments-lists-v3 .comment-item,
.comments-lists-v3 .second-floor {
    border-top: 1px solid #f7f7f7;
}
.comments-lists-v3 .comment-item:first-of-type {
    border-top: 0;
}
.comments-lists-v3 .c-item {
    display: flex;
    padding: 20px 0;
}
.comments-lists-v3 .second-floor {
    margin-left: 34px;
}
.comments-lists-v3 .head-sculpture {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    background-color: #efefef;
}
.comments-lists-v3 .rt-container {
    flex: 1;
}
.comments-lists-v3 .top-box {
    display: flex;
    align-items: center;
}
.comments-lists-v3 .top-box .user {
    display: flex;
    align-items: center;
    flex: 1;
    color: #999;
}
.comments-lists-v3 .top-box .text {
    margin: 0 5px;
    font-size: 14px;
    color: #666;
}
.comments-lists-v3 .top-box .name {
    font-weight: bold;
    font-size: 15px;
    color: #333;
}
.comments-lists-v3 .top-box .time {
    font-size: 13px;
    margin-left: 10px;
}
.comments-lists-v3 .top-box .floor {
    display: inline-block;
    font-size: 12px;
    min-width: 58px;
    padding: 0 10px;
    line-height: 18px;
    text-align: center;
    color: #f39c12;
    border: 1px solid #f39c12;
    border-radius: 20px;
    margin-left: 10px;
}
.comments-lists-v3 .comment-msg {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
    margin: 4px 0;
}
.comments-lists-v3 .comment-opts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.comments-lists-v3 .comment-opts .opt {
    display: inline-block;
    line-height: 22px;
    height: 22px;
    font-size: 12px;
    color: #999;
    padding-left: 20px;
    margin-left: 20px;
}
.comments-lists-v3 .comment-opts .ico-like {
    background: url("../images/personal/index/ico_like.png") no-repeat left center;
    background-size: 18px auto;
}
.comments-lists-v3 .comment-opts .ico-like-active {
    background: url("../images/personal/index/ico_like_active.png") no-repeat left center;
    background-size: 18px auto;
}
.comments-lists-v3 .comment-opts .ico-comment {
    background: url("../images/personal/index/ico_comment.png") no-repeat left center;
    background-size: 17px auto;
}
.comments-lists-v3 .comment-opts .ico-del {
    background: url("../images/personal/index/ico_del.png") no-repeat 1px center;
    background-size: 15px auto;
}
.comments-lists-v3 .comment-opts .ico-top {
    background: url("../images/icon_placedtop.png") no-repeat 1px center;
    background-size: 14px auto;
}
.comments-lists-v3 .comment-opts .ico-adopt {
    background: url("../images/icon_adopt.png") no-repeat left center;
    background-size: 17px auto;
}
.comments-lists-v3 .comment-opts .ico-adopt-active {
    background: url("../images/icon_adopt_active.png") no-repeat left center;
    background-size: 17px auto;
    color: #64bb35;
}
.comments-lists-v3 .c-view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 32px;
    background-color: #f3f4f6;
    padding: 0 25px 0 12px;
    font-size: 12px;
    color: #888;
    border-radius: 4px;
    margin: 10px 0 30px 34px;
    cursor: pointer;
}
.comments-lists-v3 .c-view-more .ico-arrow {
    position: absolute;
    top: 0;
    right: 10px;
    width: 10px;
    height: 100%;
    background: url("../images/xg_tb8.png") no-repeat center;
    background-size: auto 12px;
}
.comments-lists-v3 .view-more {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin: 10px auto;
}
.comments-lists-v3 .view-more a {
    color: #999;
}
/*输入区*/
.comments-lists-v3 .comment-ipt-area {
    margin-top: 15px;
}
.comment-ipt-area .ipt-box {
    height: 80px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}
.detail-comments-v3 .ipt-div {
    outline: none;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
    word-wrap: break-word;
    overflow-x: hidden;
    overflow-y: auto;
}
.detail-comments-v3 .ipt-div::-webkit-scrollbar {
    width: 0;
}
.detail-comments-v3 .ipt-div:empty:before {
    content: attr(placeholder);
    color: #ccc;
}
.comment-ipt-area .ipt-box .ipt-div {
    width: 100%;
    height: 100%;
}
.comment-ipt-area .ipt-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.comment-ipt-area .ipt-btm .btm-lf {
    display: flex;
    flex: 1;
    align-items: center;
}
.comment-ipt-area .ipt-opt-box {
    position: relative;
    display: inline-flex;
}
.comment-ipt-area .ipt-opt {
    margin-right: 20px;
    font-size: 14px;
    padding-left: 24px;
    cursor: pointer;
}
.comment-ipt-area .ico-expression {
    color: #999;
    background: url("../images/community/ico_expression02.png") no-repeat left center;
    background-size: 18px auto;
}
.comment-ipt-area .expression-package {
    left: 0;
}
.detail-comments-v3 .expression-package {
    position: absolute;
    bottom: 30px;
    z-index: 1000;
    background: #FFFFFF;
    width: 375px;
    height: 140px;
    padding: 20px 10px 30px 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}
.comment-ipt-area .ico-img {
    color: #999;
    background: url("../images/personal/index/ico_img.png") no-repeat 1px center;
    background-size: 16px auto;
}
.comment-ipt-area .ipt-btm .btm-rt {
    display: inline-flex;
    align-items: center;
}
.comment-ipt-area .anonymous-checkbox {
    margin-right: 20px;
}
.detail-comments-v3 .anonymous-checkbox {
    display: inline-flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    cursor: pointer;
}
.detail-comments-v3 .anonymous-checkbox .ico-checkbox {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #BEC4C8;
    box-sizing: border-box;
    margin-right: 5px;
}
.detail-comments-v3 .anonymous-checkbox input:checked + .ico-checkbox {
    position: relative;
    border: 1px solid #0fb892;
}
.detail-comments-v3 .anonymous-checkbox input:checked + .ico-checkbox:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0fb892;
}
.comment-ipt-area .ipt-btm .r-btn {
    display: inline-block;
    width: 70px;
    line-height: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #0fb892;
    cursor: pointer;
}
/*浮动输入栏*/
.detail-comments-v3 .float-ipt-bar {
    position: absolute;
    bottom: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    width: 898px;
    padding: 10px 40px 15px 40px;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0 -5px 10px rgba(0,0,0,.05);
    transition: all .1s;
}
.detail-comments-v3 .float-ipt-bar.fade-out,
.detail-comments-v3 .float-ipt-bar.fade-in {
    position: fixed;
}
.detail-comments-v3 .float-ipt-bar.fade-out {
    transform: translateY(100%);
}
.float-ipt-bar .float-ipt-box {
    display: flex;
    flex: 1;
    width: 656px;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 5px;
    background-color: #f7f8f9;
}
.float-ipt-bar .float-ipt-box .user-img {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #efefef;
    margin-right: 10px;
}
.float-ipt-bar .float-opts {
    display: inline-flex;
    align-items: center;
    padding-bottom: 5px;
}
.float-ipt-bar .float-opts .float-opt-box {
    position: relative;
    display: flex;
}
.float-ipt-bar .float-opts .float-opt {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 15px;
    cursor: pointer;
}
.float-ipt-bar .float-opts .ico-expression {
    background: url('../images/community/ico_expression02.png') no-repeat left center;
    background-size: auto 22px;
}
.float-ipt-bar .float-opts .ico-img {
    background: url('../images/personal/index/ico_img.png') no-repeat left center;
    background-size: auto 20px;
}
.float-ipt-bar .anonymous-checkbox {
    margin-left: 15px;
}
.float-ipt-bar .expression-package {
    left: 50%;
    transform: translateX(-50%);
}
.float-ipt-bar .ipt-div-box {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
    padding-right: 10px;
}
.float-ipt-bar .ipt-div {
    flex: 1;
    max-height: 96px;
    padding-right: 10px;
}
.float-ipt-bar .ipt-div-box .submit-btn {
    display: inline-block;
    width: 56px;
    line-height: 26px;
    height: 26px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background-color: #0fb892;
    margin: 2px 0;
    align-self: flex-end;
    cursor: pointer;
    transition: all .1s;
}
/*评论 -结*/