.pic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.pic::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .25;
    pointer-events: none;
    /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}

a:hover .pic img {
    transform: scale(1.05);
}

a:hover .pic:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.pic div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    transition: all .8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

a:hover .pic div {
    width: 110%;
    height: 110%;
}


.modulepic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.modulepic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}

.modulepic video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}

.modulepic div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

a:hover .modulepic img {
    transform: scale(1.05);
}

a:hover .modulepic video {
    transform: scale(1.05);
}

a:hover .modulepic div {
    transform: scale(1.1);
}


.nymain {
    margin-top: 30px;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 0 10%;
}

.nymain .leftNav {
    float: left;
    width: 300px;
    position: relative;
    margin-right: 50px;
}

.nymain .leftNav>h2 {
    line-height: 80px;
    color: #fff;
    font-size: 23px;
    overflow: hidden;
    /* text-align: center; */
    /* font-weight: normal; */
    padding-left: 40px;
    background: var(--tech-blue);
    background: linear-gradient(120deg, var(--tech-blue), #003366);
}

.nymain .leftNav>h2 img {
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -5px;
}

.nymain .leftNav p {
    margin-left: 20px;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    padding: 20px 0;
}

.nymain .leftNav>ul {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(0deg, #eff7ff 0%, #FFFFFF 100%);
}

.nymain .leftNav>ul>li {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.nymain .leftNav>ul>li:first-child {
    border-top: none;
}

.nymain .leftNav>ul>li:last-child {
    border-bottom: 1px solid transparent;
}

.nymain .leftNav ul li a {
    display: block;
    font-size: 18px;
    line-height: 65px;
    padding-left: 40px;
    color: #333;
}

.nymain .leftNav>ul>li>span {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 12px;
    top: 20px;
    line-height: 50px;
    background: url(/qcgcxy/images/sub_left_down.png) no-repeat center center;
    cursor: pointer;
    transition: all 0.3s;
}

.nymain .leftNav>ul>li.on>span {
    transform: rotate(90deg);
}

.nymain .leftNav>ul>li.on>a {
    color: var(--tech-blue);
    border-left: 3px solid var(--tech-blue);
    font-weight: bold;
}

.nymain .leftNav>ul>li.activ {
    background: #dadada;
}

.nymain .leftNav>ul>li.active>a {
    color: var(--tech-blue);
    border-left: 5px solid var(--tech-blue);
    font-weight: bold;
}

.nymain .leftNav ul li:hover {}

.nymain .leftNav ul li.active {
    /*border-left: 3px solid #009194;*/
}

.nymain .leftNav ul li.active ul {
    display: block;
}

.nymain .leftNav ul li a:hover {
    background-position: 31px center;
    color: var(--tech-blue);
}

.nymain .leftNav>ul>li>ul {
    display: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.nymain .leftNav>ul>li>ul>li>a {
    font-size: 16px;
    line-height: 45px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-left: 65px;
    color: #666666;
}

.ny-right {
    overflow: hidden;
    min-height: 600px;
    padding-bottom: 60px;
    background: #fff;
    padding: 0 0 100px 0;
}

.position {
    padding-top: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid #D8D8D8;
}

.position>div {
    position: relative;
    text-align: right;
    font-size: 0;
    /* line-height: 66px; */
    /* border-bottom: 1px solid #a40000; */
}

.position h3 {
    font-weight: normal;
    position: absolute;
    font-size: 24px;
    line-height: 22px;
    color: #333;
    text-align: left;
    bottom: 0;
    left: 0;
    font-weight: bold;
    border-left: var(--tech-blue) 5px solid;
    padding-left: 15px;
}

.position span {
    color: #666666;
    font-size: 14px;
    vertical-align: middle;
}

.position img {
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.position a {
    font-size: 14px;
    color: #666666;
    margin: 0 5px;
    vertical-align: middle;
}

.position a:hover {
    color: var(--tech-blue);
}


/*  */
.jjy {
    margin-top: 40px;
}

.jjy>p {
    text-indent: 2em;
    font-size: 16px;
    line-height: 36px;
    color: #333;
}

.jjy>p img {
    max-width: 80% !important;
    display: block;
    margin: 0 auto;
}

.lists {
    padding: 30px 0;
}

.lists li {
    padding-right: 100px;
    background-position: left center;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #dfdfdf;
    line-height: 60px;
    background: url(/qcgcxy/images/ico_list.png) left center no-repeat;
    padding-left: 25px;
}

.lists li:hover {
    background-color: #f8f8f8;
}

.lists li a {
    display: block;
    color: #303030;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lists li a span {
    position: absolute;
    right: 10px;
    font-size: 16px;
    color: #999999;
}

.lists li a:hover {
    color: var(--tech-blue);
}

.lists li a span.list_time {
    position: absolute;
    right: 10px;
    font-size: 16px;
    color: #999999;
}



.pagination {
    text-align: center;
    font-size: 0;
    /* padding-top: 21px;
              padding-bottom: 105px; */
    padding-top: 50px;
    /* padding-bottom: 60px; */
}

.pagination a {
    display: inline-block;
    /*border: 1px solid #dcdcdc;*/
    padding: 0 12px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    color: #666;
    margin: 0 7px;
}

.pagination a.active {
    background: var(--tech-blue);
    color: #fff;
    border: 1px solid var(--tech-blue);
}

.pagination a:hover {
    background: var(--tech-blue);
    color: #fff;
    border: 1px solid var(--tech-blue);
}

.pagination span {
    display: inline-block;
    font-size: 14px;
}

.n_con_tit h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    line-height: 2em;
    margin-bottom: 6px;
}

.n_con_tit .sxdiv {
    font-size: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.n_con_tit .sxdiv span {
    display: inline-block;
    font-size: 16px;
    color: #999999;
    line-height: 2em;

}

.n_con_tit .sxdiv .share {
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #999999;
    text-align: right;
    flex-wrap: wrap;
}

.n_con_tit .sxdiv #share {
    width: auto;
}

.n_con_tit {
    padding-bottom: 22px;
    margin-bottom: 30px;
    border-bottom: .01rem solid #e5e5e5;
}

.n_con_txt p {
    font-size: 18px !important;
    color: #333333;
    line-height: 2.125em !important;
    text-indent: 2em;
    margin-bottom: 20px;
    text-align: justify;
}

.n_con_txt {
    padding: 0 0;
}

.n_con_link {
    border-top: solid .01rem #ddd;
    padding-top: 20px;
}

.n_con_link .txt-elise {
    line-height: 40px;
}

.n_con_link .txt-elise a {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.n_con_link .txt-elise a:hover {
    color: #BF1616
}

.n_content {
    padding-top: 35px;
}

.n_con_txt img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    height: auto
}


.nr_tabel {
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.08);
}



.nr_tabel tr:hover td {
    color: var(--tech-blue);
    font-weight: bold;
}

.nr_tabel th {
    background-color: var(--tech-blue);
    background: linear-gradient(0deg, var(--tech-blue), var(--tech-blue)), #F1F5F6;
    color: #fff;
    text-align: center;
    font-size: 20px;
    height: 50px;
    line-height: 50px
}

.nr_tabel {
    width: 100%;
}


/*  */
.img-lists ul {
    overflow: hidden;
    margin-left: -2%;
    margin-right: -2%;
}

.img-lists ul li {
    float: left;
    width: 29%;
    margin: 40px 2% 0 2%;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    top: 0;
}

.img-lists ul li:hover {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.16);
    top: -10px;
}

.img-lists ul li a {
    display: block;
    width: 100%;
}

.img-lists ul li a .pic {
    padding-top: 70%;
}

.img-lists ul li a>img {
    display: block;
    width: 100%;
    height: 196px;
}

.img-lists ul li a>div.info {
    padding: 10px;
    font-size: 0;
    text-align: center;
}

.img-lists ul li a>div.info p {
    color: #333;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
}

.img-lists ul li:hover a>div.info p {
    color: var(--tech-blue);
}

/* */
.timg-list ul li a {
    display: block;
    transition: all 0.3s;
}

.timg-list ul li a h3 {
    font-size: 18px;
    /* font-weight: normal; */
    line-height: 32px;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 12px;
}

.timg-list ul li a>div {
    overflow: hidden;
}

.timg-list-img {
    float: left;
    width: 300px;
    margin-right: 30px;
}

.timg-list ul {
    overflow: hidden;
}

.timg-list ul li {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 26px;
    padding-left: 30px;
    border-top: 1px solid #d2d2d2;
}

.timg-list ul li:first-child {
    border-top: 0;
}

.timg-list ul li a .pic {
    padding-top: 62.8%;
}

.timg-linfo {
    overflow: hidden;
}

.timg-linfo>p {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    color: #999999;
    max-height: 50px;
    overflow: hidden;
    margin-top: 14px;
    max-height: 90px;
    text-align: justify;
}

.timg-linfo span {
    display: block;
    line-height: 22px;
    color: #5f4253;
    margin-top: 13px;
    font-size: 18px;
}

.timg-list ul li:hover {
    background-color: var(--tech-blue);
    background: linear-gradient(120deg, var(--tech-blue), #003366);
}

.timg-list ul li a:hover {}

.timg-list ul li:hover h3 {
    color: #fff;
}

.timg-list ul li:hover .time p {
    color: #fff;
}

.timg-list ul li:hover .time span {
    color: rgba(255, 255, 255, 0.6);
}

.timg-list ul li:hover .timg-linfo>p {
    color: rgba(255, 255, 255, 0.68);
}

.timg-linfo .time {
    font-size: 0;
}

.timg-linfo .time p {
    display: inline-block;
    font-size: 24px;
    color: var(--tech-blue);
    font-weight: bold;
}

.timg-linfo .time>span {
    display: inline-block;
    font-size: 14px;
    color: var(--tech-blue);
    margin-left: 9px;
    margin-top: 0;
    vertical-align: bottom;
}


.ldcy ul {
    font-size: 0;
    padding-bottom: 10px;
    /* padding-left: 3px; */
    padding-right: 3px;
}

.ldcy ul li {
    padding: 0;
    /* transition: all 1s; */
    width: 48%;
    display: inline-block;
    /* border: solid 1px #e5e5e5; */
    margin-top: 35px;
    /* box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.15); */
}

.ldcy ul li:hover {
    /* border: none; */
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); */
}

.ldcy ul li:hover a {
    border-color: transparent;
    /* border: none; */
    box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.15);
}

.ldcy ul li:hover h4 {
    color: #1858B9;
}

.ldcy ul li:nth-child(2n) {
    margin-left: 4%;
}

.ldcy ul a {
    display: block;
    overflow: hidden;
    border: solid 1px #e5e5e5;
}

.ldcy ul a .tu {
    float: left;
    width: 150px;
    margin-right: 30px;
}

.ldcy ul a .pic {
    padding-top: 135%;
}

.ldcy ul .info {
    overflow: hidden;
}

.ldcy ul .info>span {
    width: 30px;
    height: 5px;
    background-color: #1858B9;
    display: block;
    margin-top: 30px;
    margin-bottom: 17px;
}

.ldcy ul .info h4 {
    /* font-weight: normal; */
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #333333;
}

.ldcy ul .info h4 .ldzw {
    margin-left: 15px;
}

.ldcy ul .info>p {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    color: #666666;
}


/*  */
.search_itembox {
    height: auto;
    overflow: hidden;
    margin: 30px auto 0 auto;
}

.search_item {
    margin: 0 auto;
    height: auto;
    padding: 0;
    overflow: hidden;
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search_item a {
    font-size: 22px;
    font-weight: normal;
    line-height: 30px;
    color: #333;
    padding: 0 20px;
}

.search_item a:hover {
    color: #1858B9;
    font-weight: bold;
}

.search_item a.on {
    color: #1858B9;
    font-weight: bold;

}

.lm-teacher-search {
    display: flex;
    margin: 30px auto 0 auto;
}

.lm-teacher-search h2 {
    /* border-radius: 20px; */
    /* background: #1858B9; */
    font-size: 20px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
    color: #333;
    width: 115px;
    height: 42px;
    margin-right: 10px;
    display: block;
}

.lm-teacher-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.lm-teacher-nav a {
    font-size: 18px;
    line-height: 42px;
    color: #666666;
    padding: 0 15px;
}

.lm-teacher-nav a:hover {
    color: #fff;
    font-weight: bold;
    background: #1858B9;
    border-radius: 20px;
}

.lm-teacher-nav a:first-child {
    /* width: 70px; */
    /* display: block; */
}

.lm-teacher-nav a.active {
    color: #fff;
    font-weight: bold;
    background: #1858B9;
    border-radius: 20px;
}

.szdw_tlist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.szdw_tlist ul li {
    width: 48%;
    padding: 13px 20px 13px 13px;
    border: 1px solid #C0C0C0;
    position: relative;
    margin-top: 40px;
}

.szdw_tlist ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 230px;
    background: rgba(7, 55, 141, 0.1);
    clip-path: polygon(0 0, 45% 0, 100% 100%, 0 100%);
    transition: all 0.3s;
}

.szdw_tlist ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.szdw_tlist ul li a .modulepics {
    width: 254px;
    margin-right: 6%;
}

.szdw_tlist ul li a .modulepics .modulepic {
    padding-top: 129%;

}

.szdw_tlist ul li a .moduleinfo {
    flex: 1;
    min-width: 0;
}

.szdw_tlist ul li a .moduleinfo h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
    color: #1858B9;
}

.szdw_tlist ul li a .moduleinfo div {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 33px;
    padding-top: 20px;
}

.szdw_tlist ul li a .moduleinfo div p {
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    letter-spacing: 0em;
    color: #9E9E9E;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

.szdw_tlist ul li a .moduleinfo span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0em;
    color: #9E9E9E;
    background: url(/qcgcxy/images/contchar14_5_itemmore.png) no-repeat;
    background-position: right center;
    margin-top: 20px;
}

.szdw_tlist ul li:hover::before {
    background: #1858B9;
}

/*  */
.sz_wztxt {}

.sz_wzitem {
    height: auto;
    overflow: hidden;
    margin-top: 30px;
}

.sz_wzitem h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1858B9;
    line-height: 46px;
}

.sz_wzitem ul {
    display: flex;
    flex-wrap: wrap;
}

.sz_wzitem ul li {
    width: 10%;
}

.sz_wzitem ul li a {
    font-size: 16px;
    line-height: 36px;
    color: #333;
    display: block;
    width: 100%;
    transition: all .3s;
}

.sz_wzitem ul li:hover a {
    color: #1858B9;
    font-weight: bold;
}

/*  */
.szlb-list {
    margin-top: 30px;
}

.szlb-list .jg-title {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}

.szlb-list .jg-title a {
    color: #333;
    position: relative;
}

.szlb-list .jg-title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50px;
    height: 3px;
    background: #1858B9;
}

.szlb-list .jg-title span {
    float: left;
    width: 50px;
}

.szlb-list .jg-ul li {
    float: left;
    height: 60px;
    min-width: 62px;
    margin: 0 31px;
}

.szlb-list .jg-ul li a {
    display: block;
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.szlb-list .jg-ul {
    margin-top: 30px;
    margin-bottom: 10px;
    height: auto;
    overflow: hidden;
}

.szlb-list .jg-ul li a:hover {
    color: #1858B9;
}

.szlb-list .jg-ul li a:after {
    display: inline-block;
    content: '';
    padding-left: 100%;
}

/*leaderbox */
.leaderbox {
    margin-top: 30px;
}

.leaderbox * {
    transition: all 0.3s;
}

.leaderbox .ld_item {
    background: #F6F6F6;
    margin: 30px auto;
    padding: 10px 30px 30px 30px;

}

.leaderbox .ld_p {
    display: flex;
    border-bottom: rgba(231, 231, 231, 0.6) 1px solid;
    padding: 24px 0;
}

.leaderbox .ld_title {
    font-family: Microsoft YaHei;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    color: #333333;
}

.leaderbox .ld_content {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #333333;
}

.ld_item:hover {
    background: #1858B9;
}

.ld_item:hover * {
    color: #fff !important;
}

.ld_item:hover .ld_p {
    border-bottom: rgba(231, 231, 231, 0.1) 1px solid;
}