<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bg-white {
    background: #fff;
}

.bg-gray {
    background: #F5F7FA;
}

.bg-green,
.status-1 {
    background: #19B21E !important;
}

.bg-grey,
.status-2 {
    background: #999 !important;
}

.bg-blue,
.status-0 {
    background: #2E57A7 !important;
}


/*首页标题样式*/
.v2-home-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-top: 80px;
}

.v2-home-title .title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    line-height: 32px;
    display: flex;
    align-items: center;
}

.v2-home-title .title .dot {
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #2E57A7;
    margin-right: 12px;
}

.v2-home-title .more, .v2-home-title .more a {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

/*轮播*/
.v2-banner {
    height: 560px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.v2-banner &gt; ul {
    height: 560px;
    width: 5500px;
    position: absolute;
    left: 0;
    top: 0;
}

.v2-banner &gt; ul li {
    float: left;
    min-width: 100vw;
}

.v2-banner &gt; ul li img {
    width: 100%;
    height: 560px;
}

.v2-banner .prev,
.v2-banner .next {
    width: 28px;
    height: 60px;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.25);
    color: #FFF;
    border: 0;
    outline: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    font-family: '宋体'
}

.v2-banner .prev {
    left: 20px;
}

.v2-banner .next {
    right: 20px;
}

/* 学会活动*/
.carousel-wrapper {
    margin-top: 40px;
    height: 482px;
    display: flex;
}

.carousel-wrapper .left-img {
    width: 720px;
}

.carousel-wrapper .left-img .img-box {
    width: 100%;
    height: 390px;
    display: block;
    overflow: hidden;
}

.carousel-wrapper .left-img img {
    display: block;
    width: 100%;
    height: 100%;
    background: #F5F7FA;
    object-fit: fill;
    transition: all .4s linear;
}

.carousel-wrapper .left-img .title {
    width: 100%;
    height: 92px;
}

.carousel-wrapper .left-img .title .desc {
    padding: 20px 40px;
    box-sizing: border-box;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    color: #18191A;
    font-family: Microsoft YaHei, Microsoft YaHei;
}

.carousel-wrapper .left-img .title .btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-wrapper .left-img .title .btns &gt; div {
    width: 48px;
    height: 4px;
    background: #CCDDF9;
    margin-left: 8px;
    cursor: pointer;
}

.carousel-wrapper .left-img .title .btns &gt; div:first-child {
    margin-left: 0;
}

.carousel-wrapper .left-img .title .btns &gt; div.active {
    background: #2763CE;
}

.carousel-wrapper .right-list {
    padding-left: 80px;
    width: calc(100% - 720px);
    box-sizing: border-box;
}

.carousel-wrapper .right-list .list-item {
    display: flex;
    align-items: center;
    margin-bottom: 54px;
}

.carousel-wrapper .right-list .list-item:hover {
    background-color: #F5F7FA;
}

.carousel-wrapper .right-list .list-item:last-child {
    margin-bottom: 0;
}

.carousel-wrapper .right-list .list-item .info {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 24px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-size: 20px;
    color: #18191A;
    line-height: 28px;
}


/*时间box*/
.v2-date-box {
    width: 80px;
    height: 80px;
    background: #2E57A7;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: center;
    padding: 8px 4px;
    box-sizing: border-box;
}

.v2-date-box div:first-child {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
}


/*公示公告*/
.notice-wrapper {
    padding: 40px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 24px;
}

.notice-wrapper .list-item {
    width: calc((100% - 48px) / 3);
    display: flex;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.notice-wrapper .list-item:hover {
    background-color: #F5F7FA;
}

.notice-wrapper .list-item .v2-date-box {
    background: #fff;
    color: #2E57A7;
}

.notice-wrapper .list-item .info {
    flex: 1;
    height: 48px;
    line-height: 24px;
    font-size: 16px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 16px 28px 16px 8px;
    box-sizing: border-box;
}

/*活动报名列表*/
.lf-wrapper {
    display: flex;
    column-gap: 80px;
    padding-bottom: 80px;
}

.lf-wrapper .list-box {
    flex: 1;
    width: calc((100% - 80px) / 2);
    box-sizing: border-box;
}

.lf-wrapper .list-box .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Microsoft YaHei, Microsoft YaHei;
    border-bottom: 1px dashed #CED4DB;
    padding: 19.5px 0;
}

.lf-wrapper .list-box .list-item:hover {
    background-color: #F5F7FA;
}


.lf-wrapper .list-box .list-item .desc {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 2px;
}

.lf-wrapper .list-box .list-item .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #2E57A7;
    transform: rotate(45deg);
}

.lf-wrapper .list-box .list-item .status {
    display: inline-block;
    width: 54px;
    height: 28px;
    line-height: 28px;
    background: #2E57A7;
    text-align: center;
    border-radius: 2px 2px 2px 2px;
    color: #fff;
    font-size: 14px;
    margin-left: 12px;
}

.lf-wrapper .list-box .list-item .info {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    padding-left: 12px;
    line-height: 26px;
}

.lf-wrapper .list-box .list-item .date {
    font-size: 18px;
    color: #999999;
    line-height: 26px;
    margin-left: 18px;
}

/*中间广告位*/
.adv-wrapper img {
    width: 100%;
    height: 140px
}

/*招聘*/
.job-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
    margin-top: 16px;
}

.job-list .list-item {
    width: calc((100% - 80px) / 2);
    padding: 21px 0;
}


.job-list .list-item:hover {
    background-color: #F5F7FA;
}

.job-list .list-item .desc {
    max-width: 60%;
}

.job-list .list-item .date {
    max-width: 35%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 24px;
}


.lf-wrapper .right-item {
    padding-top: 80px;
    color: #fff;
}

.lf-wrapper .right-item &gt; div {
    width: 280px;
    height: 110px;
    background: #2E57A7;
    margin-bottom: 24px;
    padding: 7px 6px;
    position: relative;
    box-sizing: border-box;
}

.lf-wrapper .right-item &gt; div:last-child {
    margin-bottom: 0;
}

.lf-wrapper .right-item &gt; div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lf-wrapper .right-item .box-info {
    height: 100%;
    padding-top: 20px;
    text-align: center;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    border: 1px solid #fff;

    box-sizing: border-box;
}

.lf-wrapper .right-item .box-info .bold {
    margin-top: 6px;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
}


/*合作伙伴*/
.partner-wrapper .img-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    padding-top: 40px;
}

.partner-wrapper .img-list a {
    display: block;
    width: 157px;
    height: 100px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0;
    margin-bottom: 32px;
    padding: 21px;
    box-sizing: border-box;
}

.partner-wrapper .img-list a img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}


/*hover*/
.carousel-wrapper .left-img .img-box:hover img {
    transform: scale(1.1);
}

.notice-wrapper .list-item:hover .v2-date-box {
    background: #2E57A7;
    color: #fff;
}

.carousel-wrapper .right-list .list-item:hover .info,
.notice-wrapper .list-item:hover .info,
.lf-wrapper .list-item:hover .info {
    color: #2E57A7 !important;
}

.lf-wrapper .list-item:hover .date {
    color: #333;
}


</pre></body></html>