/* 首页样式 */
body {
    background-color: #f8f8f8;
}
/* .arxiv {
    background-color: #b31b1b;
}
.bixRxiv {
    background-color: #ffe5e5;
}
.medRxiv {
    background-color: #d2e7ff;
}
.chemRxiv {
    background-color: #f0f0f0;
} */
/* 公共-标题+更多样式 */
.section_title_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid #f4f4f4;
    height: 60px;
}
.section_title_container .section_title {
    position: relative;
    color: #151515;
    font-size: 18px;
    font-weight: bold;
}
.section_title_container .section_title::before {
    position: absolute;
    left: -18px;
    top: 5px;
    border-radius: 0 4px 4px 0;
    content: '';
    width: 3px;
    height: 16px;
    background-color: #0f6aec;
}

.section_title_container .section_more {
    color: #757575;
    font-size: 14px;
}
/* 检索容器样式 */
.search_container {
    padding: 0;
    margin-bottom: 30px;
    height: 450px;
    background-image: url('../images/new_bg_img_01.png');
    /* background-image: linear-gradient(45deg, #0453cc 0%, #38b8ed 100%); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.search_container .search_type_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.search_container h1 {
    padding: 65px 0 50px 0;
    color: #fff;
    font-size: 48px;
    text-align: center;
    width: 100%;
    font-weight: bold;
    letter-spacing: 5px;
}
.search_container h3 {
    padding: 56px 0 0 0;
    color: #fff;
    font-size: 40px;
    text-align: center;
    width: 100%;
    /* font-weight: 600; */
    letter-spacing: 5px;
    font-family: 'DDRegular';
}

.search_container .search_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.search_container .search_box input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 60px;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid #ffffff;
    font-size: 16px;
    padding-left: 20px;
}

.search_container .search_box button {
    margin: 0;
    height: 60px;
    border: 0;
    color: #fff;
    font-size: 16px;
    width: 118px;
}

.search_container .search_box .search_btn {
    /* background-color: #0f6aec; */
    border-radius: 0px 8px 8px 0px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f0c63f), to(#ff8d1b));
    background-image: linear-gradient(to bottom, #f0c63f 0%, #ff8d1b 100%);
}

.search_container .search_box .search_btn_advance {
    background: #75bbcb;
    border-radius: 0px 8px 8px 0px;
}

.search_box .search_button_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 60px;
}

.search_box .search_button_group a {
    color: #fff;
}

.preprint_submit_container {
    /* height: 100%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}
.preprint_submit_container .preprint_submit {
    display: inline-block;
    padding: 0 20px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #eaf8ff;
    text-align: center;
    color: #2562ea;
    background-image: -webkit-gradient(linear, left top, right top, from(#e5f2ff), color-stop(50%, #f2f8ff), to(#cce0ff));
    background-image: linear-gradient(to right, #e5f2ff 0%, #f2f8ff 50%, #cce0ff 100%);
    font-size: 20px;
}
.preprint_submit_container .preprint_submit i {
    margin-right: 10px;
    color: #2562ea;
    font-size: 20px;
}
.preprint_submit_container .preprint_submit:hover {
    background-color: #eaf8ff;
    opacity: 1;
}

/* 中间-最新预印本+最新活动 */
.new_list {
    margin-bottom: 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.new_list .new_list_left,
.section_new_activity_list_container {
    padding: 0 20px 10px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
.section_new_activity_list_container {
    height: calc(100% - 80px);
}

.new_list .new_list_left {
    width: 680px;
}
.new_list .new_list_right {
    width: 300px;
}

.new_preprint_item {
    padding: 5px 0;
}
.new_preprint_item .new_preprint_item_title {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    color: #151515;
}
.new_preprint_item .new_preprint_item_abstract {
    padding: 0;
    width: 100%;
    line-height: 26px;
    /* word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #333333;
}
.new_preprint_item .preprint_list_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 26px;
    font-size: 14px;
    color: #777777;
}
.new_preprint_item .preprint_list_bottom i {
    margin-right: 5px;
}
.new_preprint_item .preprint_list_bottom .preprint_list_bottom_authors {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new_preprint_item .preprint_list_bottom .preprint_list_bottom_time {
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.new_preprint_item .preprint_list_bottom .preprint_list_bottom_time .time_text {
    color: #0f6aec;
}
.new_activity_list .new_activity_item {
    height: 80px;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.new_activity_list .new_activity_item .new_activity_index {
    color: #bbbbbb;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    margin-right: 10px;
}
.new_activity_list .new_activity_item .new_activity_index_red {
    color: red;
}
.new_activity_list .new_activity_item .new_activity_index_orange {
    color: orange;
}
.new_activity_list .new_activity_item .new_activity_index_green {
    color: green;
}
.new_activity_list .new_activity_item .new_list_right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.new_activity_list .new_activity_item .new_activity_item_title {
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 22px;
    color: #151515;
    font-size: 14px;
}
.new_activity_list .new_activity_item .new_activity_item_time {
    color: #757575;
    font-size: 14px;
    line-height: 20px;
}

/* 合作联盟 */
.platform_union_container {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 350px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
.platform_union {
    position: absolute;
    top: -15px;
    margin-bottom: 30px;
    padding: 20px 20px;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    /* background-image: linear-gradient(to right, #f5fafe 0%, #eaf4fc 100%); */
    background-image: url('../images/new_bg_img_02.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_union_imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 290px;
    padding: 30px 0;
}
.section_union_imgs a {
    /* display: inline-block;
    width: 250px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 12px; */
}
.section_union_imgs .preprint_num_count {
    width: 350px;
    text-align: center;
    color: #151515;
    cursor: default;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.section_union_imgs .preprint_num_count:hover {
    opacity: 1;
}
.section_union_imgs .preprint_num_count .num {
    font-size: 28px;
    font-weight: bold;
}
.section_union_imgs .preprint_num_count p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
}
.section_union_imgs img {
    /* width: 100%; */
    width: 280px;
    vertical-align: top;
}
.section_union_imgs > a:nth-child(4) {
    margin-right: 30px;
}
/* 学科分类、专题 */
.subject_topic_container {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.subject_container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 20px 10px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    margin-right: 20px;
}
.topic_container {
    width: 300px;
    padding: 0 20px 10px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
.subject_list {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}
.subject_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-bottom: 16px;
    width: 200px;
    height: 120px;
    padding: 10px;
    color: #333333;
    background-color: #f8f8f8;
    border-radius: 8px;
}
.subject_item p {
    font-size: 14px;
}
.subject_item img {
    width: 30px;
    margin-bottom: 8px;
}
.topic_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
    height: 100%;
    font-size: 14px;
}
.topic_list .topic_item:nth-child(1) {
    margin-bottom: 25px;
}
.topic_list .no_data {
    text-align: center;
    font-size: 16px;
}
.topic_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.topic_item a:hover {
    opacity: 1;
}
.topic_item p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    line-height: 30px;
}
.topic_item .title {
    font-size: 16px;
    color: #151515;
}
.topic_item .content {
    font-size: 14px;
    color: #777777;
}
.topic_item img {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

/* 合作期刊 */
.cooperation_journal_container {
    margin-bottom: 30px;
    padding: 0 20px 10px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}

.swiper_container {
    padding: 20px 0;
    position: relative;
    height: 250px;
}

#swiper {
    position: absolute;
    width: 100%;
    height: calc(100% - 40px);
}

#swiper .img_text_container {
    position: relative;
    margin: 0 auto;
    width: 800px;
    height: 100%;
    overflow: hidden;
}

#swiper .img_text_item {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 2000%;
    height: 100%;
    overflow: hidden;
}

/* #swiper .img_text_item_temp_class {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
} */

#swiper .img_text_item li {
    margin-left: 20px;
    width: 140px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#swiper .img_text_item .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#swiper .img_text_item .item img {
    width: 100%;
    height: 180px;
}

#swiper .img_text_item .item p {
    margin-top: 5px;
    padding: 0;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#swiper .btn_operate {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    text-align: center;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

#swiper .but_left {
    top: 70px;
    left: 0px;
}

#swiper .but_right {
    top: 70px;
    right: 0px;
}

#swiper .btn_operate:hover {
    color: #333;
}

/* 国际预印本仓储 */
.international_preprint_storage_container {
    margin-bottom: 30px;
    padding: 0 20px 10px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}
.international_preprint_storage_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px;
}
.international_preprint_storage_item {
    width: 230px;
    height: 50px;
    line-height: 50px;
    /* padding: 10px 20px; */
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    color: #151515;
    font-weight: bold;
    border: 1px solid #eeeeee;
}
.international_preprint_storage_item img {
    width: 100%;
    height: 60px;
}
