@charset "UTF-8"; /* 网站通用样式 */
@font-face {
    font-family: "MongolianBaiti";
    src: url("../fonts/MongolianBaiti.ttf") format("truetype");
}
#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #f6f6f6;
}

#loading img {
    width: .48rem;
    animation: load-ti 2s linear infinite;
}

@keyframes load-ti {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: .06rem;
}

html::-webkit-scrollbar-thumb {
    background: #940f16;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
}
.header input::-webkit-input-placeholder {  color: #fff;opacity: 0.8;}
.header input::-moz-placeholder {  color: #fff;opacity: 0.8;}
.header input:-ms-input-placeholder {   color: #fff;opacity: 0.8;}
.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 100%;
    max-width: 15.6rem;
    margin: 0 auto;
    font-size: .18rem;
}

.title {
    font-size: 0.2rem;
    line-height: 0.3rem;
    color: #333;
}

.info {
    font-size: 0.16rem;
    line-height: 0.26rem;
    color: #666;
    text-align: justify;
}

.date {
    font-size: 0.18rem;
    line-height: 0.28rem;
    color: #999;
}

.date1 {
    font-size: 0.14rem;
    line-height: 1;
    color: #940f16;
    text-align: center;
}

.date1 p:first-child {
    font-size: .3rem;
    line-height: 1;
    color: #940f16;
    margin-bottom: 0.05rem;
}

/* 网站头部 */
.header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1000;
    width: 100%;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.header.head1 {
    top: -100%;
    padding: .13rem 0;
    background: rgba(148 , 15 ,22,1);
    box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.35);
    visibility: hidden;
    -moz-transition: all 1.2s ease 0s;
    transition: all 1.2s ease 0s;
}

.header.head1.show {
    top: 0;
    visibility: visible;
    border: none;
}

.header.head2 {
    top: -80%;
    visibility: hidden;
    -moz-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    border-top: 4px solid #940f16;
}
.header.head2::before,.header.head3::before{
    display: block;
    content: "";
    width: 100%;
    height: 2.4rem;
    background: url(../images/headerBg.png) no-repeat top center;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.header.head3.scroll::before{
    display: none;
}
.header .container {
    position: relative;
    z-index: 2;
}

.header .right-wrapper {
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.header.head3::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 100%;
    height: 0;
    background: rgba(148 , 15 ,22,1);
    -moz-transition: all 0.32s ease-out 0s;
    transition: all 0.32s ease-out 0s;
}

.header.head3.scroll {
    padding: .12rem 0;
    background: none;
}

.header.head3.scroll::after {
    height: 100%;
    box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.6);
}

.logo {
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo img {
    max-height: .73rem;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.linkTop{
    position: relative;
    z-index: 1001;
    margin-bottom: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.linkTop ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.linkTop li{
    position: relative;
}
.linkTop a{
    position: relative;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: 0em;
    color: #fff;
    z-index: 99;
    padding-left: 0.3rem;
    display: block;
    margin-right: 0.3rem;
    background: url(../images/topIcon.png) no-repeat left center;
    background-size: 0.19rem auto;
}
.linkTop a::before{
    display:block;
    content:"";
    width:1px;
    height: 10px;
    background:#fff;
    position:absolute;
    right:0;
    top:50%;
    transform: translateY(-50%);
}
.linkTop a:hover{
    color:#f17b0a;
}
.linkTop li:last-of-type a::before{
    display:none;
}
.searchSub{
    width: 2.3rem;
    height: 0.34rem;
    position: relative;
    border-radius: 0.16rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}
.searchSub .text{
    display: block;
    float: left;
    width: calc(100% - 0.34rem);
    height: 0.32rem;
    border: none;
    font-size: 0.16rem;
    line-height: 0.32rem;
    color: #fff;
    padding: 0 0.1rem;
    box-sizing: border-box;
    background: transparent;
}
.searchSub .submit{
    display: block;
    float: left;
    width: 0.34rem;
    height: 0.34rem;
    background: transparent url(../images/search.png) no-repeat left center;
    background-size: 0.2rem auto;
    border: none;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
}
.nav {
}

.nav li {
    position: relative;
    margin-right: 0.34rem;
}
.nav li:last-of-type{
    margin-right: 0;
}
.nav li a {
    position: relative;
    display: block;
    font-size: 0.2rem;
    line-height: 0.3rem;
    color: #fff;
    text-align: center;
}

.nav li > a {
    -moz-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li > a::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0%;
    height: .03rem;
    margin: 0 auto;
    border-radius: 2px;
    background: #fff;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: absolute;
    bottom: -0.13rem;
}

.nav li:hover > a::after {
    width: 100%;
}

.nav li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    -moz-transform: rotateX(0);
    transform: rotateX(0);
}

.nav .sub-nav {
    position: absolute;
    top: calc(100% + .1rem);
    right: auto;
    bottom: auto;
    left: calc(50% - .8rem);
    z-index: 1;
    width: 1.6rem;
    padding: .07rem 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 3px;
    border-top: 0.03rem solid #fff;
    -moz-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin: 50% 0%;
}

.nav .sub-nav dd {
    position: relative;
    padding: 0 .15rem;
}

.nav .sub-nav dd::before {
    position: absolute;
    top: 0;
    right: 0.15rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: calc(100% - .3rem);
    height: 100%;
    content: "";
    background: #940f16;
    opacity: 0;
    -moz-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav .sub-nav dd:last-child a {
    border: none;
}

.nav .sub-nav dd:hover::before {
    right: 0;
    width: 100%;
    opacity: 1;
}

.nav .sub-nav dd:hover a {
    color: #fff;
    border-color: transparent;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: .11rem 0;
    font-size: .16rem;
    font-weight: 500;
    line-height: .2rem;
    color: #333;
    border-bottom: 1px dashed #e2e2e2;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.nav .sub-nav .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 0.2rem;
    overflow: hidden;
}

.nav .sub-nav .tri::before {
    display: none;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 0.14rem;
    height: 0.14rem;
    margin: 0 auto;
    background: #fff;
    -moz-transform: translate(0px, 0.11rem) rotate(45deg);
    transform: translate(0px, 0.11rem) rotate(45deg);
}

.pad-btn {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -0.03rem;
}
.pad-btn .nav-btn {
    display: none;
    position: relative;
    z-index: 5;
    width: 28px;
    vertical-align: middle;
    cursor: pointer;
}

.pad-btn .nav-btn i {
    display: block;
    height: 1px;
    margin: 8px 0;
    background: #fff;
    -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
}

.pad-btn .nav-btn i:nth-child(2) {
    width: 75%;
}

.pad-btn .nav-btn.close i:nth-child(1) {
    -moz-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.pad-btn .nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.pad-btn .nav-btn.close i:nth-child(3) {
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}
@keyframes line-ani1 {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
.mobile-box {
    display: none;
    position: fixed;
    top: 76px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 76px);
    padding: .15rem 5% .4rem;
    background: #F8F8F8;
    -moz-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - 1.4rem);
    padding: 0 0 .2rem;
    box-sizing: border-box;
}

.mobile-box .nav ul {
    display: block;
    height: 100%;
    overflow-y: auto;
}

.mobile-box .nav li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #fff;
    margin-right: 0;
}

.mobile-box .nav li:first-child {
    border-top: none;
}

.mobile-box .nav li:last-child {
    border-bottom: none;
}

.mobile-box .nav li a {
    color: #494949;
    padding: 0;
    line-height: .6rem !important;
    text-align: left;
}

.mobile-box .nav li a::after {
    display: none;
}

.mobile-box .nav li .icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .6rem;
    height: .6rem;
    background-image: url(../images/arrow2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 7px;
    cursor: pointer;
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-box .nav li > a {
    font-size: .19rem;
}

.mobile-box .nav .sub-nav {
    display: none;
    position: static;
    opacity: 1;
    width: 100%;
    padding: 0 0 12px 20px;
    background: none;
    box-shadow: none;
    transition: none;
    border: none;
    visibility: visible;
}

.mobile-box .nav .sub-nav dd::before {
    display: none;
}

.mobile-box .nav .sub-nav .tri {
    display: none;
}

.mobile-box .nav .sub-nav a {
    padding: 0 .1rem;
    font-weight: 500;
    line-height: .46rem !important;
    color: #494949 !important;
    border-bottom: 1px dashed #ddd;
}

.mobile-box .nav .sub-nav::before {
    display: none;
}

.mobile-box .mobile-search {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0 0 1px;
    margin: .1rem auto .15rem;
    overflow: hidden;
}

.mobile-box .mobile-search .form {
    display: flex;
    width: 100%;
    border: 1px solid #940f16;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .65rem);
    height: .48rem;
    margin: 0 .1rem 0 0;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    line-height: 0.48rem;
    color: #333;
    background: #fff;
}

.mobile-box .mobile-search .submit {
    width: .65rem;
    height: .48rem;
    vertical-align: top;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #940f16;
    background-size: auto;
}

.mobile-box .top-link a {
    margin: 0 0 0 .2rem;
    font-size: .15rem;
    color: #940f16;
    white-space: nowrap;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

/* 网站底部 */
.footer {
    background: url(../images/footerBg.png) no-repeat center;
    background-size: cover;
}
.footer .flex{
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
}
.footer .logo img{
    max-height: 0.85rem;
}
.footer .lxfs p{
    font-size: 0.18rem;
    line-height: 0.52rem;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer .lxfs p img{
    display: block;
    width: auto;
    height: auto;
    max-width: 0.26rem;
    margin-right: 0.1rem;
}
.copy {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: #fff;
    padding-top: 0.13rem;
    margin-top: 0.2rem;
}

/* 内页样式 */
.decorate {
    position: relative;
    padding: 5.2rem 0 0;
}

.decorate img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-box {
    padding: 0 0 .5rem;
    background: url(../images/bg3.png) no-repeat center bottom;
    background-size: 100% auto;
}

.main-box .container {
    align-items: flex-start;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 2.8rem;
    margin: 0.3rem 0 .6rem;
}

.sidebar::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    background: #940f16;
}

.sidebar h3 {
    position: relative;
    z-index: 2;
    font-size: 0.32rem;
    font-weight: 700;
    line-height: 0.8rem;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}
.sidebar .sub-nav {
    position: relative;
    z-index: 2;
    padding: 0 .2rem .2rem;
    margin: 0 0 0 .05rem;
    background: #fff;
    box-shadow: 0 0 0.1rem 0 rgba(102, 51, 51, 0.1);
}

.sidebar .sub-nav li {
    position: relative;
    z-index: 1;
    border-bottom: 1px dashed rgba(72, 116, 203, 0.2);
}

.sidebar .sub-nav li:last-child {
    border: none;
}

.sidebar .sub-nav li.cur {
    border-bottom: 1px solid #940f16;
}

.sidebar .sub-nav li.cur::after {
    opacity: 1;
}

.sidebar .sub-nav li.cur > a {
    color: #940f16 !important;
    font-weight: 700;
}

.sidebar .sub-nav li.cur .lv3 {
    display: block;
}

.sidebar .sub-nav li.cur .down {
    opacity: 1;
}

.sidebar .sub-nav li:hover > a {
    color: #940f16;
    font-weight: 700;
}

.sidebar .sub-nav li:hover .down {
    opacity: 1;
}

.sidebar .sub-nav a {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: .2rem .4rem .2rem 0;
    font-size: 0.2rem;
    line-height: 0.3rem;
    color: #333;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar .sub-nav a p {
    position: relative;
}

.sidebar .sub-nav a p::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -0.03rem;
    left: 0;
    z-index: 1;
    width: 0;
    max-width: .9rem;
    height: .15rem;
    border-radius: .1rem 0 .1rem 0;
    background: #54a4e2;
    content: "";
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.sidebar .sub-nav a span {
    position: relative;
    z-index: 2;
}

.sidebar .sub-nav .down {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .3rem;
    height: .66rem;
    background-image: url("../images/icon12_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.08rem;
    cursor: pointer;
    opacity: .4;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar .sub-nav .down.has {
    z-index: 3;
}

.sidebar .sub-nav .down.close {
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar .sub-nav .lv3 {
    display: none;
    margin: -.1rem 0 0;
    padding: 0 0 .15rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .16rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #940f16;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #940f16;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #940f16;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #940f16;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.4rem);
    min-height: 4rem;
    margin: .2rem 0 0;
}

.position {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
}

.position h3 {
    position: relative;
    white-space: nowrap;
    font-size: 0.24rem;
    line-height: 0.52rem;
    color: #333;
    margin: 0 0 -1px;
    border-bottom: 3px solid #940f16;
}

.place {
    font-size: 0.15rem;
    line-height: 0.52rem;
    color: #999;
    padding: 0 0 0 .28rem;
    background-image: url(../images/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.2rem;
}

.place a {
    position: relative;
    display: inline-block;
    color: #999;
}

.place a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.12rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #940f16;
    -moz-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.place a:hover {
    color: #940f16;
}

.place a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.list1 {
    margin: .15rem 0 0;
}

.list1 li {
    position: relative;
    border-bottom: 1px dashed #c2c8d5;
}

.list1 a {
    position: relative;
    z-index: 1;
    padding: .3rem .1rem;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 .text {
    width: calc(100% - 1rem);
}

.list1 .title {
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 .info {
    margin: .08rem 0 0;
}

.list1 .line {
    width: 1px;
    height: .4rem;
    background: #d4dded;
}

.list1 .date1 {
    color: #940f16;
    line-height: 1;
}

.list1 .date1 p:first-child {
    color: #940f16;
    font-size: .36rem;
    font-weight: 700;
}

.picture2 {
    margin: .3rem 0 0;
}

.picture2 li {
    position: relative;
    border-bottom: 1px dashed #c2c8d5;
}

.picture2 li:first-child {
    margin: 0;
}

.picture2 li.no-img .text {
    width: 100%;
    padding-left: 0;
}

.picture2 a {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .3rem .24rem;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    align-items: center;
}

.picture2 .img-frame {
    width: 2.6rem;
    margin: 0 0.3rem 0 0;
}

.picture2 .img-frame .img {
    padding: 64% 0 0;
}

.picture2 .line {
    width: .5rem;
    height: 2px;
    margin: .1rem 0 .12rem;
    background: #940f16;
}

.picture2 .text {
    position: relative;
    width: calc(100% - 2.9rem);
}
.picture2 .noImg .text{
    width: 100%;
}
.picture2 .date {
    font-family: MongolianBaiti;
    margin: 0;
    color: #940f16;
}

.picture2 .title {
    font-size: .2rem;
    line-height: .3rem;
    color: #333;
    font-weight: 400;
}

.picture2 .info {
    max-height: .52rem;
    margin: .12rem 0 .18rem;
    color: #666;
}

.picture3 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.15rem;
}

.picture3 > li {
    width: 33.3333333333%;
    padding: 0 0.15rem;
}

.picture3 .img-zoom {
    margin: .3rem 0 0;
    padding: .1rem;
    border: 1px solid #eee;
    border-radius: 0.12rem;
    overflow: visible;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0 0 0.2rem 0 rgba(102, 51, 51, 0.2);
}

.picture3 .img {
    padding: 65% 0 0;
}

.picture3 .text {
    padding: .15rem 0 .05rem;
}

.picture3 .title {
    font-size: 0.18rem;
    line-height: 0.36rem;
    color: #333;
    text-align: center;
}

.teach-column {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .2rem 0 0;
    border-bottom: 1px solid #ddd;
}

.teach-column h5 {
    margin: 0 0 -1px;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 0.5rem;
    color: #333;
    border-bottom: 3px solid #940f16;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}
.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.28rem;
    line-height: 140%;
    color: #333;
    text-align: center;
}

.article .sub-title1 {
    margin: 0 0 .08rem;
    font-size: 0.17rem;
    line-height: 0.32rem;
    color: #000;
    text-align: center;
}

.article .sub-title2 {
    margin: .08rem 0 0;
    font-size: 0.17rem;
    line-height: 0.32rem;
    color: #666;
    text-align: center;
}

.article .sub {
    margin: 0 0 .1rem;
    padding: .14rem 0 .3rem;
    font-size: 0.15rem;
    line-height: 0.22rem;
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.article .sub span {
    margin: 0 .1rem;
}

.article .sub span span {
    margin: 0;
}

.article .content {
    padding: .3rem 0 .2rem;
    font-size: 0.18rem;
    line-height: 200%;
    color: #333;
    text-align: justify;
}

.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0 0 .15rem;
}

.article .content img, .article .content video {
    max-width: 100%;
    height: auto !important;
}

.article .content video {
    display: block;
    margin: 0 auto;
}

.article .content table {
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .content table td {
    word-break: break-all;
}

.article .content table p {
    text-indent: 0;
    margin: 0;
}

.article .content table img, .article .content table video, .article .content table iframe {
    margin-top: 0;
    margin-bottom: 0;
}

.article .content iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto .2rem;
}

.article .cont-page {
    position: relative;
    padding: .3rem 90px .28rem .1rem;
    border-top: 2px solid #940f16;
}
.teacherCon.article .cont-page{
    padding-top: 0.5rem;
}
.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.17rem;
    line-height: 0.28rem;
    color: #666;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.article .cont-page a span {
    position: relative;
}

.article .cont-page a span::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 0;
    height: 1px;
    background: #940f16;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    content: "";
}

.article .cont-page a:hover {
    text-decoration: none;
    color: #940f16;
    font-weight: 700;
}

.article .cont-page a:hover span::after {
    width: 100%;
}

.article .return-list {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    text-align: center !important;
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article .return-list p {
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 0.17rem;
    line-height: 200%;
    color: #940f16;
    text-align: center;
}

.article .return-list:hover p {
    font-weight: 700;
}

.article ul a, .article a {
    color: #2196f3;
}

.article ul a:hover, .article a:hover {
    text-decoration: underline;
}

.article .table-box {
    overflow-x: auto;
}

.article .share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .1rem 0 .3rem;
    -webkit-transition: top 0.01s linear 0s;
    -moz-transition: top 0.01s linear 0s;
    -ms-transition: top 0.01s linear 0s;
    -o-transition: top 0.01s linear 0s;
    transition: top 0.01s linear 0s;
}

.article .share p {
    margin: 0 0 0;
    text-indent: 0;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.2rem;
    color: #999;
    text-align: center;
}

.article .share .share-icon {
    display: flex;
    justify-content: center;
}

.article .share .share-icon .s-icon {
    width: .45rem;
    height: .45rem;
    margin: 0 .07rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: 60%;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    -ms-transition: all .3s;
    border: 1px solid #eee;
}

.article .share .share-icon .s-icon:hover {
    box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.15);
}

.article .share .share-icon .s-icon.sina {
    background-image: url(../images/share4_2.png);
}

.article .share .share-icon .s-icon.wechat {
    position: relative;
    background-image: url(../images/share4_1.png);
}

.article .share .share-icon .s-icon.qq {
    background-image: url(../images/share4_3.png);
}

.article .share .share-icon .s-icon.qzone {
    background-image: url(../images/share4_4.png);
}

.article .share .qrid_zz {
    position: absolute;
    bottom: 120%;
    right: 0;
    left: 50%;
    z-index: 1000;
    display: none;
    width: 1.5rem;
    height: auto;
    padding: .14rem .14rem .06rem;
    background: #fff;
    border-radius: 5px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.2);
}

.article .share .qrid_zz #qrid {
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz #qrid canvas {
    vertical-align: top;
    width: 100%;
    height: 100%;
}

.article .share .qrid_zz p {
    font-size: .14rem;
    line-height: .3rem;
    color: #666;
    text-align: center;
    margin: 4px 0 0;
}
/* 翻页样式 */
#list-page {
    margin: .4rem 0 .2rem !important;
    font-family: Arial;
    text-align: center;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: 14px;
    width: auto;
    height: auto;
    margin-top: 5px;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: 9px 11px;
    color: #940f16;
    border: 1px solid #aaa;
    border-radius: 4px;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #940f16;
    font-weight: bold;
    color: #fff;
    border-color: #940f16;
}

#list-page .p_t {
    padding: 0 2px 0 0;
    color: #777;
}

#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d {
    display: inline-block;
}

#list-page .p_pages span {
    color: #aaa;
}

#list-page .p_goto input {
    font-family: 'Arial';
    color: #333;
    border-radius: 4px;
    width: 40px;
    height: 32px;
    line-height: 32px;
    vertical-align: bottom;
}

.to-top-part {
    position: fixed;
    top: auto;
    right: 0.2rem;
    bottom: 23%;
    left: auto;
    z-index: 1;
    overflow: hidden;
    padding: .08rem;
    visibility: hidden;
}

.to-top-part #to-top {
    display: block;
    width: .46rem;
    height: .46rem;
    border-radius: 4px;
    background-image: url("../images/toTop.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #940f16;
    background-size: 0.24rem;
    cursor: pointer;
    box-shadow: 0 0 0.06rem 0 rgba(0, 0, 0, 0.3);
    -moz-transform: translateY(120%);
    transform: translateY(120%);
    -moz-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

.to-top-part #to-top:hover {
    background-color: #940f16;
}

.to-top-part.show {
    visibility: visible;
}

.to-top-part.show #to-top {
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.newList li{
    border-bottom: 1px solid #dbdad9;
    width: 100%;
    position: relative;
}
.newList li a{
    display: block;
    font-size: 0.18rem;
    line-height: 0.3rem;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.22rem 0;
    padding-left: 0.25rem;
    box-sizing: border-box;
    background: url(../images/listIcon1.png) no-repeat left center;
    background-size: 0.14rem auto;
    position: relative;
}
.newList li::before{
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: #940f16;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: all .5s;
}
.newList li a span.fr{
    display: block;
    float: right;
    margin-left: 0.1rem;
    font-size: 0.18rem;
    font-family: MongolianBaiti;
    color: #999;
}
/* 师资内容 */
.teacherCon .teaSubT{
    display: flex;
    padding: 0.3rem;
    box-sizing: border-box;
    position: relative;
    align-items: flex-end;
    background: #fff;
    box-shadow: 0 0 0.2rem 0 rgba(102, 51, 51, 0.1);
    border:1px solid #ececec;
}
.teacherCon .teaSubT::before{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/noticeBg.png) repeat-x center top;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.2;
}
.teacherCon .teaSubT .img{
    width: 1.8rem;
    padding: 2.4rem 0 0;
    overflow: hidden;
    position: relative;
}

.teacherCon .teaSubT .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teacherCon .teaSubT .con{
    width: calc(100% - 1.8rem);
    box-sizing: border-box;
    padding-left: 0.3rem;
}
.teacherCon .teaSubT .con p{
    font-size: 0.16rem;
    font-weight: 350;
    line-height: 0.4rem;
    letter-spacing: 0em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #666;
}
.teacherCon .teaSubT .con p span{
    display: block;
    width: auto;
}
.teacherCon .teaSubT .con p span b{
    color: #940f16;
}
.teacherCon .teaSubT .con p:nth-of-type(1){
    display: block;
    font-size: 0.24rem;
    font-weight: bold;
    line-height: 0.5rem;
    letter-spacing: 0em;
    color: #940f16;
    padding-bottom: 0.15rem;
    margin-bottom: 0.1rem;
    border-bottom: 1px solid rgba(139,149,157,0.3);
}
.teacherCon .teaSubT .con p:nth-of-type(1) span{
    font-size: 0.18rem;
    line-height: 0.3rem;
    font-weight: normal;
}
/* 师资队伍 */
.teaCon li{
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-top: 0.7rem;
    padding-left: 0.3rem;
    box-sizing: border-box;
}
.teaCon li:nth-of-type(2n){
    margin-right: 0;
}
.teaCon li a{
    display: flex;
    box-sizing: border-box;
    position: relative;
    align-items: flex-end;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 0 0.2rem 0 rgba(102, 51, 51, 0.1);
    z-index: 9;
}
.teaCon li a::before{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/noticeBg.png) repeat-x center top;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.2;
}
.teaCon li a .img{
    width: 2.04rem;
    padding: 2.55rem 0 0;
    border-radius: 0.15rem 0 0.15rem 0;
    overflow: hidden;
    position: relative;
    transform: translate(-0.3rem,-0.3rem);
}
.teaCon li a .con{
    width: calc(100% - 2.04rem);
    padding: 0.3rem 0.2rem;
    padding-left: 0;
    box-sizing: border-box;
}
.teaCon li a .con .txt span{
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    color: #333;
    margin-top: 0.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 0.72rem;
}
.teaCon li a .con .txt span:nth-of-type(1){
    font-size: 0.22rem;
    line-height: 0.28rem;
    color: #940f16;
    font-weight: bold;
    margin-top: 0;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(148,15,22,0.1);
    max-height: max-content;
}
.teaCon li a .con .txt span:nth-of-type(1) i{
    font-size: 0.16rem;
    font-weight: normal;
    margin-left: 0.1rem;
    font-style: normal;
    color: #333;
}
.teaCon li a .con .more{
    display: block;
    text-align: right;
    font-size: 0.16rem;
    line-height: 0.24rem;
    color: #940f16;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    border-top: 1px solid #eaeaea;
}

@media screen and (min-width: 1921px) {
    .logo img{
        height: 0.73rem;
    }
    .footer .lxfs p img{
        width: 0.25rem;
    }
}
@media screen and (min-width: 1041px) {
    .list1 li {
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .list1 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 1px;
        background: #940f16;
        -moz-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .list1 li .line {
        -moz-transition: all 0.42s ease-out 0s;
        transition: all 0.42s ease-out 0s;
    }

    .list1 li:hover {
        -moz-transform: translateX(0.06rem);
        transform: translateX(0.06rem);
    }

    .list1 li:hover .title {
        color: #940f16;
    }

    .list1 li:hover .line {
        -moz-transform: rotateX(180deg);
        transform: rotateX(180deg);
        background: #940f16;
    }

    .list1 li:hover::after {
        width: 100%;
    }

    .picture2 a {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .picture2 a::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        background-color: #940f16;
        opacity: 0;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .picture2 li:hover a::after {
        opacity: 1;
    }

    .picture2 li:hover .info {
        color: rgba(255, 255, 255, 0.8);
    }

    .picture2 li:hover .title, .picture2 li:hover .date {
        color: #fff;
    }

    .picture3 .img-zoom:hover {
        border-color: #940f16;
        background: #940f16;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
    }
    .newList li a:hover{
        background: url(../images/listIcon2.png) no-repeat left center;
        background-size: 0.14rem auto;
        color: #940f16;
        font-weight: bold;
    }
    .newList li a:hover span.fr{
        font-weight: normal;
    }
    .newList li:hover::before{
        width: 100%;
    }
    .newBanner li:hover .tit{
        color: #940f16;
        font-weight: bold;
    }
    .teaCon li a .con .more:hover{
        color: #fed71a;
    }
    .teaCon li a:hover .img p{
        transform: scale(1.08);
    }
}
@media screen and (max-width: 1620px) {
    .container{
        max-width: none;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1040px) {
    html {
        font-size: 90px;
    }

    .header {
        padding: 8px 0 !important;
        transition: all .2s;
        border: none;
        box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.3);
        transition: none !important;
    }

    .header::after {
        display: none;
    }
    .header.head2::before, .header.head3::before{
        display: none;
    }
    .header.head2 {
        display: none !important;
    }

    .header.head1 {
        top: 0;
        visibility: visible;
    }

    .header.head3 {
        background: #940f16 !important;
    }

    .header .container {
        padding: 0 0.3rem;
        flex-wrap: nowrap;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .header .right-wrapper .linkTop,.header .right-wrapper .top-link, .header .right-wrapper .nav, .header .right-wrapper .search-btn, .header .right-wrapper .line, .header .right-wrapper .pc-nav-btn {
        display: none;
    }

    .header.mobile-show {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .header.mobile-show::after {
        display: none;
    }

    .header .top-box {
        display: none !important;
    }

    .logo {
        width: auto;
        min-width: auto;
        height: 60px;
        padding: 0 .12rem 0 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 60px !important;
    }

    .pad-btn {
        border: none;
    }

    .pad-btn .nav-btn {
        display: block;
    }

    .mobile-box {
        display: block;
    }

    .title {
        font-size: .2rem;
    }

    .footer {
        background-size: cover;
    }

    .foot-link {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -0.1rem;
        padding: .3rem 0 .14rem;
    }

    .foot-link > li {
        width: 25%;
        padding: 0 0.1rem;
    }

    .foot-link li {
        margin: 0 0 .16rem;
    }

    .foot-link a {
        height: 1.2rem;
    }

    .foot-link .title {
        font-size: .18rem;
    }

    .foot-link .icon {
        width: .46rem;
        height: .46rem;
    }

    .foot-link .icon img {
        width: .42rem;
    }

    .to-top-part {
        display: none !important;
    }

    .decorate {
        margin: 65px 0 0;
        padding: 32% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .15rem 0 0;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
    }

    .sidebar h3 {
        position: relative;
        font-size: .22rem;
        line-height: .5rem;
        text-align: left;
        text-indent: .16rem;
        background: #940f16;
    }

    .sidebar h3::after {
        display: none;
    }

    .sidebar h3 i {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .5rem;
        height: .5rem;
        background-image: url(../images/daohang.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        cursor: pointer;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sidebar h3.down i {
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sidebar h3 .return-sup {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: 1;
        display: block;
        width: .5rem;
        height: .5rem;
        background-image: url("../images/fanhui.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 0.24rem;
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .sidebar .sub-nav {
        display: none;
        padding: .1rem .2rem .2rem;
    }

    .sidebar .sub-nav li .lv3 {
        margin: 0;
        padding-top: 0;
    }

    .sidebar .sub-nav a {
        height: .5rem;
        text-align: left;
        font-size: .18rem;
        line-height: .5rem;
    }

    .sidebar .sub-nav .down {
        top: 0;
        height: .45rem;
    }

    .main {
        width: 100%;
        padding: .26rem 0 0;
        margin: 0;
        box-shadow: none;
        background: none;
    }

    .main::before {
        display: none;
    }

    .position {
        margin: 0;
    }

    .position h3 {
        font-size: .21rem;
    }
    .article {
        padding: .3rem 0 0 !important;
    }

    .article .sub {
        margin: .2rem 0 0;
        padding: 0 0 .18rem;
    }
    footer .logo{
        width: 100%;
        justify-content: center;
        height: auto!important;
        max-width: 100%;
    }
    footer .logo img{
        max-height: none!important;
        height: 54px!important;
        max-width: 100%;
    }
    .footer .lxfs p{
        line-height: 0.42rem;
    }
    .footer .flex{
        flex-wrap: wrap;
    }
    .list1 a{
        padding: 0.2rem 0;
    }
    .picture2 a{
        padding: 0.2rem 0;
    }
    .picture2{
        margin: 0.1rem 0 0;
    }
    .teacherCon .teaSubT{
        padding: 20px;
    }
    .teacherCon .teaSubT::before{
        height: 100%;
    }
    .teacherCon .teaSubT .con p{
        flex-wrap: wrap;
    }
    .teacherCon .teaSubT .con p span{
        width: 100%;
    }
    .teacherCon .teaSubT .con p{
        font-size: 16px;
        line-height: 30px;
    }
    .teacherCon .teaSubT .con p:nth-of-type(1){
        font-size: 18px;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .teacherCon .teaSubT .con{
        padding-left: 20px;
    }
    .teaCon li{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .foot-link > li {
        width: 50%;
    }

    .position {
        padding: 0 0 5px;
        border-bottom: 1px solid #940f16;
    }

    .position h3, .position .line {
        display: none;
    }

    .place {
        padding-top: .06rem;
        padding-bottom: .06rem;
        line-height: .22rem;
        white-space: initial;
        background-position-y: 5px;
    }

    .main {
        padding: .18rem 0 0;
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .2rem 0 .1rem;
    }

    .article .content p {
    }

    .article .cont-page {
        padding: .15rem 0 0;
    }
    .teacherCon.article .cont-page{
        
padding: 0.15rem 0 0;
    }
    .cont-page {
        padding-right: .1rem;
    }

    .cont-page .return-list {
        display: block;
        position: static;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    .cont-page .return-list p {
        font-weight: 700;
    }
    .picture2 a::after {
        display: none;
    }

    .picture2 .img-frame {
        width: 2.1rem;
        margin: 0 0.2rem 0 0;
    }

    .picture2 .text {
        width: calc(100% - 2.3rem);
    }

    .picture3 {
        margin: 0 -.1rem;
    }

    .picture3 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .picture3 .img-zoom {
        margin: .2rem 0 0;
    }

    #list-page {
        margin: .3rem 0 0rem !important;
    }

    #list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
        padding: 7px 9px;
    }

    #list-page .p_goto input {
        width: 36px;
        height: 28px;
        line-height: 28px;
    }

    .list1 {
        margin: 6px 0 0;
    }

    .list1 a {
        padding: 0.2rem 0;
    }

    .list1 .text {
        width: calc(100% - .85rem);
    }

    .list1 .line {
    }

    .list1 .info {
        display: none;
    }

    .list1 .title {
        text-overflow: clip;
        white-space: initial;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: 0.6rem;
    }
    .container{
        padding: 0 0.2rem;
    }
    .header .container{
        padding: 0 0.2rem;
    }
    .footer .flex{
        padding: 0.2rem;
        flex-direction: column-reverse;
    }
    .footer .lxfs{
        margin-bottom: 0.15rem;
    }
    .copy{
        text-align: center;
    }
    .picture2 .info{
        margin: 0.1rem 0 0;
    }
    .main-box{
        padding: 0 0 0.3rem;
    }
    .newList li a{
        background-size: 14px auto;
    }
}

@media screen and (max-width: 540px) {
    .header {
        padding: 7px 0 !important;
    }

    .container{
        padding: 0 12px;
    }
    .header .container{
        padding: 0 12px;
    }
    .footer .flex{
        padding: 12px;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .logo {
        height: 42px !important;
    }

    .logo img {
        max-height: 42px !important;
    }

    .mobile-box {
        height: calc(100vh - 56px);
        top: 56px;
    }

    .mobile-box .nav {
        height: calc(100% - 1.6rem);
    }

    .pad-btn .nav-btn {
        width: 26px;
    }

    .pad-btn .nav-btn i {
        margin: 7px 0;
    }

    .pad-btn .nav-btn.close i:nth-child(1) {
        -moz-transform: translate(0px, 8px) rotate(45deg);
        transform: translate(0px, 8px) rotate(45deg);
    }
    .pad-btn .nav-btn.close i:nth-child(3) {
        -moz-transform: translate(0px, -8px) rotate(-45deg);
        transform: translate(0px, -8px) rotate(-45deg);
    }

    .foot-link a {
        height: 1rem;
    }

    .foot-link a .icon {
        margin-bottom: 0;
    }
    .list1 .title {
        width: 100%;
        line-height: .28rem !important;
        max-height: 0.56rem;
        font-size: 0.18rem;
    }

    .list1 .title i {
        margin: 0 .1rem 0 0;
    }

    .list1 .date {
        line-height: .4rem !important;
    }

    .decorate {
        margin: 56px 0 0;
        padding: 40% 0 0;
    }

    .sidebar h3 {
        font-size: .2rem;
    }

    .picture2 .img-frame {
        width: 100%;
        margin: 0;
    }

    .picture2 .img-frame .img {
        padding: 56.25% 0 0;
    }

    .picture2 .text {
        width: 100%;
        padding: .14rem 0 0;
    }
    .picture2 .noImg .text{
        padding: 0;
    }
    .picture2 .no-img .text {
        padding: 0;
    }

    .picture3 > li {
        width: 100%;
    }
    footer .code{
        width: 100%;
        text-align: center;
    }
    footer .code img{
        margin: 0 auto;
    }
    footer .logo img{
        width: auto;
        height: auto!important;
        max-width: 100%;
        max-height: 54px!important;
    }
    .footer .lxfs p{
        font-size: 0.16rem;
        line-height: 0.38rem;
    }
    .list1 a{
        padding: 0.15rem 0;
    }
    .list1 .date1 p:first-child{
        font-size: 0.3rem;
    }
    .article .content {
        padding: 0.1rem 0;
        line-height: 180%;
    }
    .article .sub {
        margin: .1rem 0 0;
        padding: 0 0 .1rem;
    }
    .article .content p{
        margin: 0 0 0.1rem;
    }
    .sidebar .sub-nav li .lv3{
        padding-left: 0.1rem;
    }
    .sidebar .sub-nav{
        padding: 0.1rem;
    }
    .newList li a{
        text-overflow: clip;
        white-space: normal;
        display: flex;
        flex-direction: column-reverse;
        padding: 12px 0;
        padding-left: 24px;
        background-position: 0 18px;
    }
    .newList li a span.fr{
        float: none;
        margin-left: 0;
        margin-top: 8px;
        line-height: 1;
    }
    .newList li a:hover{
        background: url(../images/listIcon1.png) no-repeat 0 18px;
    }
     .newList li a:hover{
         color: #333333;
         font-weight: normal;
     }
    .newList li:hover::before{
        width: 0;
    }
    .picture2 a{
        padding: 0.18rem 0;
    }
    .teacherCon .teaSubT{
        padding: 15px;
    }
    .teacherCon .teaSubT .con{
        height: 100%;
    }
    .teacherCon .teaSubT{
        flex-wrap: wrap;
    }
    .teacherCon .teaSubT .con p{
        font-size: 15px;
        line-height: 28px;
    }
    .teacherCon .teaSubT .con p:nth-of-type(1){
        text-align: center;
    }
    .teacherCon .teaSubT .con p:nth-of-type(1) span{
        font-size:16px;
    }
    .teacherCon .teaSubT .con{
        padding: 0;
        width: 100%;
    }
    .teacherCon .teaSubT .img{
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        border-radius: 0 10px 0 0;
    }
    .teacherCon .teaSubT .img img{
        position: static;
        width: auto;
        height: auto;
        margin: 0 auto;
        max-width: 180px;
        display: block;
    }
    .teaCon li{
        margin-top: 0.25rem;
        padding-left: 0;
        margin-right: 0;
    }
    .teaCon li a .img{
        width: 1.6rem;
        padding: 2rem 0 0;
        transform: none;
        border-radius: 0;
    }
    .teaCon li a .con{
        width: calc(100% - 1.6rem);
        padding: 0.15rem;
        box-sizing: border-box;
    }
    .teaCon li a .con .txt span{
        margin-top: 5px;
    }
    .teaCon li a .con .txt span:nth-of-type(1){
        font-size: 0.2rem;
        padding-bottom: 5px;
    }
    .teaCon li a .con .txt span:nth-of-type(1) i{
        display: block;
        margin-left: 0;
    }
}
@media screen and (max-width: 440px) {
    .teaCon li a .con .txt span{        
        font-size: 13px;
        line-height: 20px;
        max-height: 60px;
    }
    .teaCon li a .con .txt span:nth-of-type(1) i{
        font-size: 13px;
        line-height: 20px;
        margin-top: 3px;
    }
    .teaCon li a .con{
        padding: 0 10px 5px;
    }
}

/*# sourceMappingURL=style.css.map */