@import url(anim.css);
@import url(lrtk3.css);

* {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: #ffffff;
    overflow-x: auto;
    color: white;
    font-size: 14px;
    font-family: "微软雅黑", "Arial", "Microsoft YaHei", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
}

a {
    text-decoration: none;
    color: inherit;
}

.banner {
    background-color: #000528;
    background-image: url(/template/1/default/picture/asti/banner_bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

.banner .el-card {
    border-radius: 15px;
}

.banner .header-v1 {
    width: 100%;
    height: 120px;
    margin-bottom: 0;
    background: none;
    box-shadow: none;
}

.banner .header-v1 .top-main {
    margin: 0 auto;
    width: 1510px;
    min-width: 1510px;
    max-width: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.banner .header-v1 .top-main .logo {
    /*width: 300px;*/
}

.banner .header-v1 .top-main .top-main-content {
    text-align: center;
}

.banner .header-v1 .top-main .top-main-content ul li {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    padding-bottom: 10px; /* 为下划线留出空间 */
    position: relative; /* 为伪元素定位做准备 */
    cursor: pointer;
}

.banner .header-v1 .top-main .top-main-content ul li:hover::after {
    content: ""; /* 伪元素的内容为空 */
    position: absolute; /* 绝对定位 */
    bottom: 0; /* 位于元素底部 */
    left: 50%; /* 从元素左侧开始 */
    margin-left: -10px;
    height: 4px; /* 下划线的高度 */
    width: 20px;
    background-color: #ffffff; /* 下划线的颜色 */
    cursor: pointer;
}

.banner .header-v1 .top-main .el-input .el-input__inner {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.banner .header-v1 .top-main .el-input .el-input-group__append {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.banner .header-v1 .top-main .search {
    width: 255px;
}

.banner .header-v1 .top-main .lingdang {
    width: 40px;
    text-align: center;
}

.banner .header-v1 .top-main .login {
    display: flex;
    margin-right: 0;
    font-size: 16px;
    padding-bottom: 10px;
}

.banner .header-v1 .top-main .login p {
    display: flex;
}

.banner .header-v1 .top-main .login_new {
    display: flex;
    margin-right: 0;
    font-size: 16px;
    padding-bottom: 10px;
}

.banner .header-v1 .top-main .login_new p {
    display: flex;
}

.banner .header-v1 .top-main .login_new span {
    line-height: 35px;
    cursor: pointer;
}

.banner .header-v1 .top-main .login_new span:first-child {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 55px;
    margin: 0;
    text-align: center;
}

.top-title {
    margin: 0 auto;
    width: 1510px;
    min-width: 1510px;
    max-width: none !important;
    display: flex;
}

.banner .title {
    /*margin-top: 90px;*/
    text-align: center;
    font-size: 54px;
}

.banner .box {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 70px;
}

.banner .box .dian-box {
    height: 40px;
    width: 880px;
    min-width: 760px;
}

.banner .box .dian-box hr {
    border: 1px solid #c0c4cc80;
    position: relative;
    top: 19px;
}

.banner .box .dian-box .dian-empty {
    float: left;
    width: 80px;
    height: 100px;
}

.banner .box .dian-box .dian {
    float: left;
    width: 120px;
    height: 100px;
    text-align: center;
    font-size: 22px;
    color: #c0c4cc80;
}

.dot span {
    height: 10px;
    width: 10px;
    display: inline-block;
    background-color: #c0c4cc;
    border-radius: 50%;
}

@keyframes scaleAndRepeat {
    0%, 100% {
        transform: scale(1);
        color: white;
    }
    50% {
        transform: scale(1.5);
        color: white;
    }
}

.banner .pos {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.banner .pos .el-card {
    width: 1170px;
    min-width: 1170px;
}

.banner .pos .el-card .el-card__body {
    padding-top: 10px;
    padding-bottom: 0;
}

.banner .pos .el-card .scut {
    display: flex;
    justify-content: space-around;
}

.banner .pos .el-card .scut .scut-box {
    margin: 10px 0;
    text-align: center;
    font-size: 22px;
    color: #0941e2;
    transition: all 1s;
    cursor: pointer;
}

.scut-box dt{
    width: 140px;
    height: 130px;
}

.scut-box dt img{
    width: 140px;
}

.banner .pos .el-card .scut .scut-box:hover {
    /* 鼠标经过时的样式 */
    transform: translateY(-12px); /* 向上移动10px */
}

.banner .pos .el-card .scut .scut-box dd {
    padding-bottom: 10px; /* 为下划线留出空间 */
    position: relative; /* 为伪元素定位做准备 */
}

.banner .pos .el-card .scut .scut-box:hover::after {
    content: ""; /* 伪元素的内容为空 */
    position: absolute; /* 绝对定位 */
    bottom: 0; /* 位于元素底部 */
    left: 50%; /* 从元素左侧开始 */
    margin-left: -10px;
    height: 4px; /* 下划线的高度 */
    width: 20px;
    background-color: #0941e2; /* 下划线的颜色 */
}

.banner .notice {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    /*margin-bottom: 20px;*/
}

.banner .notice .notice-content {
    width: 1170px;
    min-width: 1170px;
    display: flex;
}

.banner .notice .notice-content a:hover {
    text-decoration: underline;
    color: #0941e2;
}

.banner .notice .el-card {
    width: 1170px;
}

.banner .notice .el-card .el-card__body {
    padding: 10px 20px;
}

.banner .notice .notice-content .speaker {
    width: 40px;
}

#speaker {
    width: 56px;
    height: 57px;
    position: relative;
    right: 16px;
    bottom: 8px;
}

.banner .activity {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.banner .activity .activity-box {
    width: 1170px;
    min-width: 1170px;
    display: flex;
}

.banner .activity .activityLeft {
    width: 49%;
    height: 315px;
    margin-right: 2%;
    border-radius: 5px;
}

/*.banner .activity .activityLeft*/
.swiper {
    width: 100%;
    height: 100%;
}

.banner .activity .activityLeft .swiper .swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.banner .activity .activityLeft .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.banner .activity .activityLeft .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner .activity .activityRight {
    width: 49%;
    height: 315px;
}

.banner .activity .activityRight .el-card {
    height: 315px;
}

.banner .activity .activityRight .el-card .header {
    display: flex;
    line-height: 15px;
}

.banner .activity .activityRight .el-card .header span {
    display: inline-block;
    width: 5px;
    height: 15px;
    margin-right: 10px;
    background-color: blue;
}

.banner .activity .activityRight .el-card .header a {
    width: 315px;
    text-align: end;
    cursor: pointer;
}

.banner .activity .activityRight .el-card hr {
    border: 1px solid rgba(114, 114, 114, 0.76);
    position: relative;
    top: 10px;
}

.banner .activity .activityRight .el-card .content {
    margin-top: 20px;
}

.banner .activity .activityRight .el-card .content li {
    list-style-type: inherit; /* 继承父元素的列表样式 */
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap; /* 确保文本不会换行 */
    overflow: hidden; /* 隐藏超出容器的内容 */
    text-overflow: ellipsis; /* 当文本溢出时显示省略号 */
    width: 500px; /* 设置一个固定的宽度，你可以根据需要调整 */
}

.banner .activity .activityRight .el-card .content li span {
    margin-right: 15px;
}

.banner .activity .activityRight .el-card .content li a:hover {
    color: blue;
    cursor: pointer;
}

.banner .plan {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner .plan .plan-box {
    width: 1170px;
    min-width: 1170px;
    display: flex;
}

.banner .plan .planLeft {
    width: 49%;
    margin-right: 2%;
}

.banner .plan .planRight {
    width: 49%;
    height: 350px;
}

.banner .plan .planLeft .calendar_header {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5px;
}

.banner .plan .planLeft hr {
    border: 1px solid rgba(114, 114, 114, 0.76);
    position: relative;
    top: 10px;
}

.banner .plan .planLeft .calendar_technical {
    font-size: 28px;
}

.banner .plan .planLeft .calendar-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: end;
    width: 150px;
}

.banner .plan .planLeft .month_button span {
    cursor: pointer;
    margin-right: 20px;
}

.banner .plan .planLeft .el-calendar {
    background-color: #2D3C7400;
}

.banner .plan .planLeft .el-calendar .el-calendar__header {
    display: none;
}

.is-sixAndDay {
    color: #f1cb0a;
}

.is-sixAndDayLight {
    color: #b0a81d;
}

.isSelected {
    color: red;
}

.banner .plan .planLeft .el-calendar .el-calendar__body {
    padding: 0 0 20px;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table thead th {
    color: white;
    font-size: 16px;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table thead th:first-child {
    color: #f1cb0a;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table thead th:last-child {
    color: #f1cb0a;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table .el-calendar-day {
    text-align: center;
    height: 45px;
    font-size: 16px;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table .el-calendar-day:hover {
    background-color: #2D3C7400;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table td.is-selected {
    background-color: #2D3C7400;
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table .el-calendar-table__row td {
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top-width: 2px;
    border-top-color: rgba(114, 114, 114, 0.76);
}

.banner .plan .planLeft .el-calendar .el-calendar__body .el-calendar-table td.is-today {
    color: white;
}

.banner .plan .planLeft .el-calendar-table tr:last-child {
    /*display: none;*/
}

.banner .plan .planRight .el-card {
    height: 350px;
    background-color: #0000ff00;
    border: none;
    box-shadow: none;
    color: white;
}

.banner .plan .planRight .header {
    display: flex;
    line-height: 15px;
}

.banner .plan .planRight .el-card .header span {
    display: inline-block;
    width: 5px;
    height: 15px;
    margin-right: 10px;
    background-color: white;
}

.banner .plan .planRight .el-card hr {
    border: 1px solid rgba(114, 114, 114, 0.76);
    position: relative;
    top: 10px;
}

.banner .plan .planRight .el-card .content {
    margin-top: 20px;
    height: 273px;
    overflow-y: auto;
}

.banner .plan .planRight .el-card .content li {
    list-style-type: inherit; /* 继承父元素的列表样式 */
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap; /* 确保文本不会换行 */
    overflow: hidden; /* 隐藏超出容器的内容 */
    text-overflow: ellipsis; /* 当文本溢出时显示省略号 */
    width: 500px; /* 设置一个固定的宽度，你可以根据需要调整 */
    cursor: pointer;
}

.banner .plan .planRight .el-card .content li span {
    margin-right: 5px;
}

.activityInfo {
    height: 290px;
    margin-top: 20px;
}

.activityInfo .pTitle {
    display: inherit;
    align-items: center;
    font-size: 18px;
}

.activityInfo .swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.activityInfo .swiper .swiper-container .swiper-slide {
    display: grid;
}

.event-preview .contentInfo .current {
    display: flex;
}

.event-preview .contentInfo .current .pic {
    margin-right: 20px;
}

.event-preview .contentInfo .current .pic img {
    height: 160px;
}

.event-preview .contentInfo .current .text-intro {
    margin-left: 10px;
}

.event-preview .contentInfo .current .text-intro .datetime {
    display: flex;
}

.event-preview .contentInfo .current .text-intro .datetime .date {
    width: 90px;
    height: 42px;
    color: #3d3d3d;
    text-align: center;
    border: solid 1px #0038d7;
    background-color: white;
}

.event-preview .contentInfo .current .text-intro .datetime .date .year {
    padding-top: 4px;
    font-size: 12px;
}

.event-preview .contentInfo .current .text-intro .datetime .date .day {
    font-size: 14px;
    font-weight: bold;
}

.event-preview .contentInfo .current .text-intro .datetime .start-time {
    width: 90px;
    height: 42px;
    color: white;
    text-align: center;
    border: solid 1px #0038d7;
    background: #0038d7;

}

.event-preview .contentInfo .current .text-intro .datetime .start-time .time {
    padding-top: 4px;
    font-size: 12px;
}

.event-preview .contentInfo .current .text-intro .datetime .start-time .text {
    font-size: 14px;
    font-weight: bold;
}

.event-preview .contentInfo .current .text-intro .intro {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.event-preview .contentInfo .current .text-intro .go-details {
    background: #0038d7;
    color: white;
    padding: 4px 20px;
    cursor: pointer;
}


.channel {
    width: 1170px;
    margin: 0 auto;
    color: #3d3d3d;
}

.channel /*>*/ .title {
    font-weight: bold;
    font-size: 30px;
    color: #3d3d3d;
    display: block;
    position: relative;
    line-height: 50px;
    padding: 0 20px;
    border-bottom: solid 1px #b3b3b3;
}

.channel /*>*/ .title .important {
    color: #0038d7;
}

.channel /*>*/ .title .more {
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: normal;
    background: url("../picture/asti/more.png") no-repeat right center;
    cursor: pointer;
}

.channel /*>*/ .title .more_new {
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: normal;
    background: url("../picture/asti/more_new.png") no-repeat right center;
    cursor: pointer;
}

.channel /*>*/ .title::before {
    content: "";
    width: 6px;
    height: 18px;
    background-color: #0038d7;
    position: absolute;
    left: 0;
    bottom: 15px;
}

/*******************************************活动预告 开始************************************/
.event-preview {

}

/*.event-preview .content {
    display: flex;
    padding: 16px 0;
}*/

.event-preview .content .current {
    width: 798px;
    display: flex;
}

.event-preview .content .current .pic {
}

.event-preview .content .current .pic img {
}

.event-preview .content .current .text-intro {
    padding: 0 20px;
}

.event-preview .content .current .text-intro .datetime {
    display: flex;
}

.event-preview .content .current .text-intro .datetime .date {
    width: 110px;
    height: 48px;
    color: #3d3d3d;
    text-align: center;
    border: solid 1px #0038d7;
}

.event-preview .content .current .text-intro .datetime .date .year {
    padding-top: 4px;
    font-size: 14px;
}

.event-preview .content .current .text-intro .datetime .date .day {
    font-size: 16px;
    font-weight: bold;
}

.event-preview .content .current .text-intro .datetime .start-time {
    width: 110px;
    height: 48px;
    color: white;
    text-align: center;
    border: solid 1px #0038d7;
    background: #0038d7;

}

.event-preview .content .current .text-intro .datetime .start-time .time {
    padding-top: 4px;
    font-size: 14px;
}

.event-preview .content .current .text-intro .datetime .start-time .text {
    font-size: 16px;
    font-weight: bold;
}

.event-preview .content .current .text-intro .title {
    font-size: 16px;
    line-height: 36px;
    border: 0;
    padding-left: 0;
}

.event-preview .content .current .text-intro .title::before {
    display: none;
}

.event-preview .content .current .text-intro .intro {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 10px;
}

.event-preview .content .current .text-intro .go-details {
    background: #0038d7;
    color: white;
    padding: 4px 20px;
    cursor: pointer;
}


.event-preview .content .list {
    width: 347px;
    height: auto;
    border: solid 1px #b3b3b3;
    padding: 10px;
}

.event-preview .content .list .item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.event-preview .content .list .item:last-child {
    margin-bottom: 0px;
}

.event-preview .content .list .item .pic {

}

.event-preview .content .list .item .pic img {
    width: 118px;
    height: 66px;
}

.event-preview .content .list .item .text {
    color: #3d3d3d;
    font-size: 14px;
    line-height: 20px;
    padding-left: 10px;;
}

/*******************************************活动预告 结束************************************/

/*******************************************历年优秀奖项 开始************************************/
.glory {
    /*background: url("../picture/asti/glory_bg_temp.jpg") no-repeat top center;*/
    width: 100%;
}

.glory > .title {
    text-align: center;
    color: #fffbd1;
    border: 0;
}

.glory > .title::before {
    display: none;
}

.glory .row {
    width: 1170px;
    margin: 0 auto;
}

.glory .row a {

}

.glory .row a img {

}

#gloryrow1 {
    color: #fffbd1;
    width: 1570px;
    height: 720px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

#gloryrow1 #title-text {
    padding-top: 550px;
    text-align: center;
    font-size: 20px;
}

#gloryrow1 #alt-text {
    text-align: center;
    font-size: 16px;
}

#gloryrow1 .carouselLeft, #gloryrow1 .carouselRight {
    position: absolute;
    top: 300px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
}

#gloryrow1 .carouselLeft {
    background: url("../picture/asti/arrow_up.png");
    left: 90px;
    background-size: 50px;
}

#gloryrow1 .carouselRight {
    background: url("../picture/asti/arrow_down.png");
    right: 90px;
    background-size: 50px;
}

/*******************************************历年优秀奖项 结束************************************/

/*******************************************业务总览 开始************************************/
.service {
    color: #fff;
}

.service .list {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.service .list .column {
    width: 384px;
}

.service .list .column .type {
    margin-bottom: 10px;
}

.service .list .column .light-blue {
    background-color: #46b3f4;
}

.service .list .column .blue {
    background-color: #4082e2;
}

.service .list .column .green {
    background-color: #098c09;
}

.service .list .column .brown {
    background-color: #d56e22;
}

.service .list .column .light-green {
    background-color: #14b89b;
}

.service .list .column .red {
    background-color: #ab1919;
}

.service .list .column .type .header {
    padding: 20px 16px 10px;
    display: flex;
}

.service .list .column .type .header .icon {
    flex-grow: 1;
}

.service .list .column .type .header .icon img {
    width: 40px;
}

.service .list .column .type .header .name {
    font-size: 22px;
    position: relative;
    flex-grow: 3;
}

.service .list .column .type .header .name span {
    position: absolute;
    bottom: 0;
    right: 0;
}

.service .list .column .type .item-list {
    padding: 6px 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.service .list .column .type .item-list a {
    display: block;
    width: 114px;
    height: 112px;
    margin: 0 10px 10px 0;
    background-color: rgba(0, 0, 0, .3);
    text-align: center;
    font-size: 13px;
    position: relative;
}

.service .list .column .type .item-list a .icon {
    margin-top: 24px;
}

.service .list .column .type .item-list a .icon img {

}

.service .list .column .type .item-list a .name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94px;
    padding: 0 10px;
    height: 36px;
}

/*******************************************业务总览 结束************************************/

/* 在线云课堂 */
.cloud_classroom {
    width: 100%;
    min-width: 1170px;
    background-color: #eaeaea;
    justify-content: center;
    display: flex;
    margin: 0;
}

.cloud_classroom .channel-content .information {
    display: flex;
    height: 500px;
    font-size: 16px;
    justify-content: space-between;
    min-width: 1170px;
    max-width: 1170px;
    margin-top: 30px;
}

.cloud_classroom .channel-content .information .information-left {
    width: 66%;
    display: flex;
    justify-content: space-between;
}

.information-label {
    width: 18%;
}

.information-label .label-box {
    width: 100%;
    height: 124px;
    background-color: white;
    margin-bottom: 1px;
    text-align: center;
    display: grid;
    align-content: end;
    color: black;
    cursor: pointer;
}

.information-label .label-box-new {
    width: 100%;
    height: 124px;
    background-color: blue;
    margin-bottom: 1px;
    text-align: center;
    display: grid;
    align-content: end;
    color: white;
    cursor: pointer;
}

.to_right {
    border-bottom: 15px solid #fff0;
    border-right: 15px solid #fff0;
    border-left: 15px solid blue;
    border-top: 15px solid #fff0;
    width: 0;
    height: 0;
    position: relative;
    top: -45px;
    left: 100%;
}

.to_right-new {
    border: 15px solid #fff0;
    width: 0;
    height: 0;
    position: relative;
    top: -45px;
    left: 100%;
}

.information-label .label-box div:first-child {
    margin-bottom: 5px;
}

.information-label .label-box-new div:first-child {
    margin-bottom: 5px;
}

/*.label-box:hover {
    background-color: blue;
}*/

.information-card {
    width: 100%;
    display: grid;
    align-content: start;
    row-gap: 20px;
}

.information-card .card-box {
    width: 100%;
    height: 110px;
    background-color: white;
    display: flex;
    justify-content: space-around;
}

.information-card .card-box .box-img {
    width: 15%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    overflow: hidden; /* 隐藏超出div的图片部分 */
    position: relative; /* 用于定位图片 */
}

.information-card .card-box .box-img img {
    /*width: 100%;*/
    height: 100%;
    position: absolute; /* 绝对定位图片 */
    top: 50%; /* 图片顶部与div中心对齐 */
    left: 50%; /* 图片左侧与div中心对齐 */
    transform: translate(-50%, -50%); /* 调整图片位置，使其完全居中 */
}

.information-card .card-box .box-content {
    width: 80%;
    padding: 15px;
    display: grid;
    align-content: space-between;
}

.information-card .card-box .box-content h3 {
    overflow: hidden; /* 确保超出容器的文本被隐藏 */
    white-space: nowrap; /* 确保文本在一行内显示 */
    text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
    height: 1.5em;
}

.information-card .card-box .box-content p {
    line-height: 20px;
    width: 100%;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.information-card .card-box .box-content .box-bofang {
    display: flex;
    justify-content: flex-end;
    height: 21px;
}

.information-right .swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.information-right .swiper .swiper-container .swiper-pagination {
    left: 130px;
    bottom: 0;
}

.information-right .swiper .swiper-container .swiper-slide {
    /*display: grid;*/
}

.information-right .swiper .swiper-container .swiper-slide p {
    font-size: 14px;
    line-height: 30px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 7;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.information-right .swiper .swiper-container .swiper-slide .header-img {
    /*height: 240px;*/
}

.information-right .swiper .swiper-container .swiper-slide .header-img img {
    width: 100%;
    /*height: 100%;*/
}

.information-right .swiper .swiper-container .swiper-slide .slide-title {
    /*height: 22px;*/
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.information-right .swiper .swiper-container .swiper-slide .slideInfo {
    /*height: 190px;*/
    height: 215px;
}

.information-right .swiper .swiper-container .swiper-slide .slide-tag {
    width: 100%;
    height: 25px;
}

.information-right .swiper .swiper-container .swiper-slide .side-content {
    /*height: 189px*/
}

.information-right .swiper .swiper-container .swiper-slide .box-bofang {
    display: flex;
    justify-content: flex-start;
    height: 21px;
    margin-bottom: 5px;
}

/*.information-card .card-box .box-content */
.box-bofang a {
    display: flex;
    text-decoration: none;
    color: #1296db;
    cursor: pointer;
}

/*.information-card .card-box .box-content */
.box-bofang a img {
    width: 21px;
    margin-right: 5px;
}

.cloud_classroom .channel-content .information .information-right {
    width: 32%;
}

/* 科协频道 */
.kx_channel {
    min-width: 1170px;
    width: 100%;
    background-color: #eaeaea;
    justify-content: center;
    display: flex;
    margin: 0;
}

.channel-content {
    min-width: 1170px;
    margin: 20px 0;
    color: black;
}

.channel-content .channel-title {
    font-size: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.channel-content .channel-title .label {
    display: inline-block;
    width: 5px;
    height: 20px;
    margin-right: 5px;
    background-color: blue;
}

.channel-content .channel-title .spanColor {
    color: blue;
}

.channel-content .channel-title p {
    font-size: 14px;
}

.channel-content hr {
    border: 1px solid rgba(114, 114, 114, 0.76);
    margin: 10px 0;
}

.kx_channel .channel-content .video {
    display: flex;
    height: 295px;
    font-size: 16px;
    justify-content: space-between;
    min-width: 1170px;
    max-width: 1170px;
    margin-top: 10px;
}

.kx_channel .channel-content .video .new-release {
    width: 39%;
}

.pinDaoTitle {
    margin-bottom: 5px;
}

.kx_channel .channel-content .video .new-release .maxBox {
    width: 100%;
    height: 257px;
}

.kx_channel .channel-content .video .new-release .maxBox .swiper .swiper-container {
    width: 100%;
    height: 100%;
}

.kx_channel .channel-content .video .new-release .maxBox .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.kx_channel .channel-content .video .new-release .maxBox .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kx_channel .channel-content .video .new-release .maxBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kx_channel .channel-content .video .exciting-replay {
    width: 58%;
}

.kx_channel .channel-content .video .exciting-replay .minBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 18px;
}

.kx_channel .channel-content .video .exciting-replay .minBox div {
    width: 31%;
}

.kx_channel .channel-content .video .exciting-replay .minBox img {
    width: 100%;
    height: auto;
}

/* 友情链接 */
.footer {
    min-width: 1170px;
    background-color: #292C35;
    justify-content: center;
    display: flex;
}

.footer .footer-content {
    min-width: 1170px;
    margin-top: 40px;
    margin-bottom: 70px;
}

.footer .footer-content hr {
    border: 1px solid white;
    margin: 10px 0;
}

.footer .footer-content .footer-title {

}

.footer .footer-content .footer-title span:first-child {
    display: inline-block;
    width: 5px;
    height: 20px;
    margin-right: 10px;
    background-color: white;
}

.footer .footer-content .footer-title span:last-child {
    font-size: 28px;
    color: white;
}

.footer .footer-content .link {
    display: flex;
    justify-content: space-between;
}

.footer .footer-content .link .link-box {
    width: 140px;
    height: 70px;
    border: 1px solid white;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer .footer-content .link .link-box span {
    padding: 0 10px;
}

.footer-bottom {
    min-width: 1170px;
    background-color: #1A1D25;
    justify-content: center;
    display: flex;
}

.footer-bottom .footer-bottom-content {
    min-width: 1170px;
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.footer-bottom .footer-bottom-content .filing {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, .4);
}

.login_info {
    text-align: center;
    display: grid;
    align-content: space-between;
    height: 350px;
}

.login_info .el-form .el-form-item__error {
    left: 12px;
}

.detail-content {
    height: auto;
    display: flex;
    justify-content: center;
}

.detail-content .word {
    width: 1170px;
    min-height: 472px;
    min-width: 1170px;
    color: #000;
    font-size: 16px;
    line-height: 1.8em;
}

.detail-content .word .word-header {
    padding-top: 50px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cdcdcd;
}

.word-header h1 {
    text-align: center;
    line-height: 40px;
}

.word-header p {
    text-align: center;
    font-size: 16px;
    color: #555;
    padding-top: 10px;
}

.word-content {
    font-size: 16px;
    line-height: 1.8em;
    padding: 40px;
}

.word-content p {
    margin-top: 20px;
}

.word-content .indent {
    text-align: justify;
    text-indent: 2em;
}

.word-content .alignment {
    text-align: right;
    text-indent: 2em;
}

.word-content p img {
    max-width: 100%;
}

.detail-content .act {
    width: 1170px;
    min-height: 500px;
    min-width: 1170px;
    color: #000;
    font-size: 16px;
    line-height: 1.8em;
    margin: 40px 0;
    display: grid;
    row-gap: 10px;
}

.act_introduce {
    border: 1px solid #dee7f4;
    display: flex;
    justify-content: space-between;
    min-height: 100px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(49, 196, 224, 0.1);
    width: 1170px;
}

.act_content {
    font-size: 14px;
    color: #8f8d8d;
    width: 90%;
}

.act_title {
    font-size: 18px;
    color: #000000;
    /*font-weight: bold;*/
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    border-bottom: #f2f2f2 1px solid;
    width: 95%;
}

.act_title a {
    cursor: pointer;
}

.act_info {
    width: 95%;
}

.act_info div {
    font-size: 16px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    /*word-wrap: break-word;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

.act_bottom {
    width: 10%;
    display: flex;
    align-self: center;
    justify-content: center;
}

.act_date {
    width: 65px;
    height: 65px;
    border: 1px solid #4c69ba;
    border-radius: 10px;
    text-align: center;
}

.dateDay {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #4c69ba;
    height: 45px;
    line-height: 45px;
    color: #4c69ba;
}

.dateMonth {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    color: #4c69ba;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.treatDoInfo {
    height: auto;
    display: flex;
    justify-content: center;
    font-size: 16px;
}

.treatDoInfo .cardBox {
    width: 1170px;
    min-height: 500px;
    min-width: 1170px;
}

.treatDoInfo .cardBox .box-card {
    margin: 10px 0;
}

.treatDoInfo .cardBox .textP {
    line-height: 30px;
}

.treatDoInfo .cardBox .textP a{
    width: 100%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.treatDoInfo .cardBox .textP a:hover{
    color: blue;
    cursor: pointer;
}
