body {
    background: #F3F4F5;
}

.new-activity-container {
    width: 100%;
    height: 100%;
}

.new-activity-container>.banner {
    width: 100%;
    height: 134px;
    background-image: url("./img/banner.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.new-activity-container>.main {
    width: 1280px;
    height: 808px;
    background: #FFFFFF;
    border-radius: 20px;
    margin: -59px auto 0;
    padding: 26px;
}

.new-activity-container>.main>.breads {
    width: 100%;
    height: 18px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 18px;
    float: left;
    position: relative;
}

.new-activity-container>.main>.breads a {
    color: #666666;
    text-shadow: 0px 0px 1px #666666;
}

.new-activity-container>.main>.breads a:last-of-type {
    color: #1395a7;
    text-shadow: 0px 0px 1px #1395a7;
}

.new-activity-container>.main>.tabs {
    height: 40px;
    border-bottom: 1px solid #E6E3DF;
    overflow: hidden;
    width: calc(100% - 60px);
    margin-top: 58px;
    padding-left: 30px;
    padding-right: 30px;
}

.new-activity-container>.main>.tabs>.tabs-item {
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    float: left;
    text-align: center;
    box-sizing: border-box;
    border-right: 2px solid #E6E3DF;
    transition: all 0.6s;
    cursor: pointer;
}

.new-activity-container>.main>.tabs>.tabs-item.active {
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #1395a7;
}

.new-activity-container>.main>.tabs>.tabs-item:nth-of-type(1) {
    border-left: 2px solid #E6E3DF;
}

.new-activity-container>.main>.activity-box {
    width: 1220px;
    height: 582px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.new-activity-container>.main>.activity-box>.card-item {
    width: 595px;
    height: 162px;
    background: #FAF9F7;
    border-radius: 10px;
    display: flex;
    transition: all 0.3s;
    overflow: hidden;
    margin-bottom: 30px;
}

.new-activity-container>.main>.activity-box>.card-item:hover {
    box-shadow: 0px 11px 16px 0px rgba(193, 193, 192, 0.35);
}

.new-activity-container>.main>.activity-box>.card-item img {
    width: 236px;
    height: 162px;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content {
    width: 359px;
    height: 162px;
    background: #FAF9F7;
    position: relative;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-title {
    width: 307px;
    height: 25px;
    font-size: 20px;
    line-height: 20px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #1395a7;
    overflow: hidden;
    margin-left: 20px;
    margin-top: 23px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-date {
    width: 307px;
    height: 20px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 500;
    line-height: 20px;
    margin-left: 20px;
    margin-top: 20px;
    color: #666666;
    display: flex;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-date>.date-icon {
    width: 20px;
    height: 20px;
    background: url("./img/card_date.png");
    background-size: 100% 100%;
    margin-right: 12px;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-date>.time-icon {
    width: 20px;
    height: 20px;
    background: url("./img/card_time.png");
    background-size: 100% 100%;
    margin-right: 12px;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-view-button {
    width: 90px;
    height: 30px;
    border: 1px solid #1395a7;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #1395a7;
    position: absolute;
    bottom: 20px;
    right: 20px;
    box-shadow: 0px 0px 1px #1395a7;
    text-shadow: 0px 0px 1px #1395a7;
    cursor: pointer;
    transition: all 0.3s;
}

.card-url {
    display: none;
}

.simple-pages-bar {
    display: none;
}

.new-activity-container>.main>.activity-box>.card-item>.card-content>.card-view-button:hover {
    color: #FFFFFF;
    background: #1395a7;
    text-shadow: 0px 0px 1px #FFFFFF;
}

.new-activity-container>.main>.page-pannel {
    width: 1220px;
    height: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.new-activity-container>.main>.page-pannel>.page-now-number {
    height: 24px;
    font-size: 24px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #1395a7;
    line-height: 24px;
}

.new-activity-container>.main>.page-pannel>.page-total-number {
    height: 24px;
    font-size: 20px;
    font-family: PingFang SC;
    color: #999999;
    line-height: 24px;
    margin-right: 30px;
}

.new-activity-container>.main>.page-pannel>.prev-button {
    width: 32px;
    height: 32px;
    background: url("./img/card_prev.png");
    background-size: 100% 100%;
    margin-right: 16px;
    cursor: pointer;
}

.new-activity-container>.main>.page-pannel>.next-button {
    width: 32px;
    height: 32px;
    background: url("./img/card_next.png");
    background-size: 100% 100%;
    cursor: pointer;
}

.new-activity-container>.hots {
    width: 100%;
    height: 442px;
    background: #EEEEEE;
    margin-top: 50px;
    padding-top: 50px;
    position: relative;
}

.new-activity-container>.hots>.hots-container {
    width: 1280px;
    position: relative;
    margin: 0 auto;
}

.new-activity-container>.hots>.hots-container>.hots-title {
    width: 99px;
    height: 23px;
    font-size: 24px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #1395a7;
    line-height: 23px;
    text-align: center;
    margin: 50px auto 0;
}

.new-activity-container>.hots>.hots-container>.hots-box {
    width: 100%;
    height: 202px;
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item {
    width: 290px;
    height: 202px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.currentTitle {
    display: none;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item>a>.cover-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(225, 225, 225, 0.85);
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item>a:hover>.cover-bar {
    opacity: 1;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item>a>.cover-bar>h2 {
    height: 40px;
    width: 100%;
    font-size: 26px;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.new-activity-container>.hots>.hots-container>.hots-box>.hots-item>a>.cover-bar>p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-indent: 30px;
    margin-top: 10px;
}