@charset "UTF-8"; /* 网站通用样式 */
@font-face {
    font-family: SourceHanSerifCN-Bold;
    src: url("../images/SourceHanSerifCN-Bold.otf");
}

input::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.8;
}

input::-moz-placeholder {
    color: #fff;
    opacity: 0.8;
}

input:-ms-input-placeholder {
    color: #fff;
    opacity: 0.8;
}

#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: .08rem;
}

html::-webkit-scrollbar-thumb {
    border-radius: .08rem;
    background: #123c86;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.3);
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 100%;
    max-width: 14rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.title {
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.24rem;
    color: #333;
    text-align: left;
}

.info {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #8a8a8a;
    text-align: justify;
}

.date {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 0 0 .26rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: #969799;
    text-align: left;
    background-image: url("../images/f_icon1_1.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.16rem;
}

.date1 {
    width: .54rem;
    padding: .1rem 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.18rem;
    color: #888;
    text-align: center;
    border-top: 2px solid #123c86;
}

.date1 p:first-child {
    font-size: .36rem;
    line-height: .42rem;
}

/* 网站头部 */
.header {
    z-index: 1000;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: #123c86;
    position: relative;
}

.header::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    height: 0%;
    content: "";
    background: #123c86;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.header .container {
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: none;
    padding: 0.15rem 0;
}

.header .topTxt {
    margin: 0 0.7rem;
    max-width: 8rem;
}

.header .topTxt p {
    font-size: 0.17rem;
    line-height: 0.24rem;
    text-indent: 2em;
    color: #fff;
    font-family: SourceHanSerifCN-Bold;
}

.header .r-wrap {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header .r-wrap > .flex {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
}

.logo {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo img {
    max-height: .93rem;
}

.serSub {
    width: 2.23rem;
    height: 0.34rem;
    position: relative;
    border-radius: 0.18rem;
    overflow: hidden;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin-top: 0.05rem;
}

.serSub .text {
    display: block;
    float: left;
    width: calc(100% - 0.3rem);
    height: 0.32rem;
    border: none;
    font-size: 0.14rem;
    line-height: 0.34rem;
    color: #fff;
    padding: 0 0.1rem;
    box-sizing: border-box;
    background: transparent;
}

.serSub .submit {
    display: block;
    float: left;
    width: 0.3rem;
    height: 0.32rem;
    background: transparent url(../images/search.png) no-repeat left center;
    background-size: 0.19rem auto;
    border: none;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
}

.nav {
    width: 100%;
    background: #08327c;
}

.nav .flex-between {
    max-width: 14rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.nav li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.5rem;
    color: #fff;
    text-align: center;
    padding: 0 0.08rem;
}

.nav li > a {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li:hover .sub-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
}

.nav .sub-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: calc(50% - .75rem);
    z-index: 9999;
    width: 1.5rem;
    background: #123c86;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 3px;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin: 50% 0%;
}

.nav .sub-nav dd {
    position: relative;
    padding: 0 .05rem;
}

.nav .sub-nav dd::before {
    position: absolute;
    top: 0;
    right: 0.12rem;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: calc(100% - .24rem);
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #123c86, #0052a2);
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-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: .08rem 0;
    font-size: .15rem;
    font-weight: 500;
    line-height: .26rem;
    color: #333;
    border-bottom: 1px dashed #eee;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -ms-transition: all 0.15s ease-out 0s;
    -o-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: 11px;
    overflow: hidden;
}

.nav .sub-nav .tri::before {
    display: none;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: #fff;
    -webkit-transform: translate(0px, 6px) rotate(45deg);
    -moz-transform: translate(0px, 6px) rotate(45deg);
    -ms-transform: translate(0px, 6px) rotate(45deg);
    -o-transform: translate(0px, 6px) rotate(45deg);
    transform: translate(0px, 6px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.top-link a {
    position: relative;
    display: block;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.34rem;
    color: #fff;
    text-align: left;
}

.top-link a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.04rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.top-link a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.top-link span {
    display: block;
    width: 1px;
    height: .12rem;
    margin: 0 .18rem;
    background: #fff;
}

.search-btn {
    position: relative;
    z-index: 5;
    display: inline-block;
    width: .36rem;
    height: .3rem;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: 50% 45%;
    background-color: transparent;
    background-size: 0.2rem;
    border-radius: 50%;
    cursor: pointer;
}

.nav-btn {
    display: none;
    position: relative;
    z-index: 5;
    width: 30px;
    margin: 0 0 0 .16rem;
    vertical-align: middle;
    cursor: pointer;
}

.nav-btn i {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
    -o-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;
}

.nav-btn i:nth-child(2) {
    width: 75%;
}

.nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0px, 9px) rotate(45deg);
    -moz-transform: translate(0px, 9px) rotate(45deg);
    -ms-transform: translate(0px, 9px) rotate(45deg);
    -o-transform: translate(0px, 9px) rotate(45deg);
    transform: translate(0px, 9px) rotate(45deg);
}

.nav-btn.close i:nth-child(2) {
    opacity: 0;
}

.nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0px, -9px) rotate(-45deg);
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    -ms-transform: translate(0px, -9px) rotate(-45deg);
    -o-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}

#mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0.4s;
    -moz-transition: all 0.3s ease-out 0.4s;
    -ms-transition: all 0.3s ease-out 0.4s;
    -o-transition: all 0.3s ease-out 0.4s;
    transition: all 0.3s ease-out 0.4s;
}

#mask::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    height: 30%;
    opacity: 0;
    background: linear-gradient(180deg, #0052a2, transparent);
    content: "";
    -webkit-transition: all 0.3s ease-out 0.2s;
    -moz-transition: all 0.3s ease-out 0.2s;
    -ms-transition: all 0.3s ease-out 0.2s;
    -o-transition: all 0.3s ease-out 0.2s;
    transition: all 0.3s ease-out 0.2s;
}

#mask .search-box {
    position: absolute;
    top: 40%;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: .2rem 0;
    overflow: hidden;
}

#mask .search-box .form {
    position: relative;
    background: #fff;
    white-space: nowrap;
    padding: .12rem .14rem .12rem .14rem;
    width: 80%;
    max-width: 7.5rem;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    box-shadow: 0 0 2px 0 #ccc;
    border-radius: 2px;
    -webkit-transform: translateY(150%);
    -moz-transform: translateY(150%);
    -ms-transform: translateY(150%);
    -o-transform: translateY(150%);
    transform: translateY(150%);
}

#mask .search-box .input {
    width: calc(100% - .55rem);
    height: .6rem;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.6rem;
    color: #333;
    text-align: left;
    border: 1px solid rgba(14, 65, 150, 0.2);
    border-radius: 2px;
}

#mask .search-box .submit {
    width: .5rem;
    height: .6rem;
    vertical-align: top;
    background-image: url("../images/search2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
}

#mask .search-box .close {
    width: .6rem;
    height: .6rem;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: calc(100% + .3rem);
    z-index: 1;
    cursor: pointer;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

#mask .search-box .close .line {
    display: block;
    width: 100%;
    height: 2px;
}

#mask .search-box .close .line i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

#mask .search-box .close .line.l1 {
    -webkit-transform: translate(0, 25px) rotate(45deg);
    -moz-transform: translate(0, 25px) rotate(45deg);
    -ms-transform: translate(0, 25px) rotate(45deg);
    -o-transform: translate(0, 25px) rotate(45deg);
    transform: translate(0, 25px) rotate(45deg);
}

#mask .search-box .close .line.l2 {
    -webkit-transform: translate(0, 23px) rotate(-45deg);
    -moz-transform: translate(0, 23px) rotate(-45deg);
    -ms-transform: translate(0, 23px) rotate(-45deg);
    -o-transform: translate(0, 23px) rotate(-45deg);
    transform: translate(0, 23px) rotate(-45deg);
}

#mask .search-box .close:hover .line.l1 i {
    animation: line-ani1 .5s ease-in-out .3s;
}

#mask .search-box .close:hover .line.l2 i {
    animation: line-ani1 ease-in-out .5s;
}

#mask.show {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#mask.show::after {
    opacity: 1;
    height: 100%;
    -webkit-transition: all 0.45s ease-out 0s;
    -moz-transition: all 0.45s ease-out 0s;
    -ms-transition: all 0.45s ease-out 0s;
    -o-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

#mask.show .search-box .form {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: .2s;
    -ms-transition-delay: .2s;
}

@keyframes line-ani1 {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.mobile-box {
    display: none;
    position: fixed;
    top: 65px;
    right: auto;
    bottom: auto;
    left: -100%;
    z-index: 1;
    width: 100%;
    height: calc(100vh - 65px);
    padding: .15rem 4% .4rem;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    background: #f8f8f8;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - 1rem);
    padding: 0 0 .2rem;
}

.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;
}

.mobile-box .nav li:first-child {
    border-top: none;
}

.mobile-box .nav li:last-child {
    border-bottom: none;
}

.mobile-box .nav li a {
    color: #333;
    font-weight: 500;
    padding: 0 .1rem;
    line-height: .6rem;
    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;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-box .nav li > a {
    font-size: .2rem;
}

.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 {
    font-size: .18rem;
    line-height: .4rem;
    color: #494949 !important;
    border-bottom: none;
}

.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%;
    overflow: hidden;
    border: 1px solid #123c86;
    border-radius: 3px;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .65rem);
    height: .5rem;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #333;
    text-align: left;
    background: #fff;
    overflow: hidden;
}

.mobile-box .mobile-search .submit-btn {
    background: #009b9d;
}

.mobile-box .mobile-search .submit {
    width: .65rem;
    height: .5rem;
    vertical-align: top;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.24rem;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

/* 网站底部 */
footer {
    padding: 0.22rem 0;
    background: #123c86 url(../images/footBg.png) no-repeat center;
    background-size: auto 100%;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code img {
    display: block;
    height: 0.94rem;
    width: auto;
    margin: 0 auto;
    border: 3px solid #e1eaf0;
}

.code span {
    display: block;
    font-size: 0.14rem;
    line-height: 0.2rem;
    color: #fff;
    margin-top: 0.1rem;
    text-align: center;
}

.bq p {
    font-size: 0.16rem;
    line-height: 0.38rem;
    color: #fff;
    padding-left: 0.3rem;
    box-sizing: border-box;
}

.bq p:nth-of-type(1) {
    background: url(../images/bqIcon1.png) no-repeat left center;
    background-size: 0.19rem auto;
}

.bq p:nth-of-type(2) {
    background: url(../images/bqIcon2.png) no-repeat left center;
    background-size: 0.16rem auto;
}

/* 内页样式 */
.decorate {
    position: relative;
    padding: 5.4rem 0 0;
}

.decorate::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(216, 216, 216, 0) 31%);
}

.decorate img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-box{
    margin-top: 0.5rem;
    min-height: calc(100vh - 3.95rem);
}
.sidebar {
    position: relative;
    z-index: 3;
    width: 2.8rem;
    margin: 0 0 .6rem;
}

.sidebar h3 {
    position: relative;
    z-index: 1;
    font-family: "SYST700";
    font-size: 0.26rem;
    font-weight: 500;
    line-height: 0.84rem;
    color: #fff;
    text-align: center;
    background: #123c86;
    letter-spacing: 2px;
}

.sidebar .sub-nav {
    position: relative;
    padding: 0 .18rem .18rem;
    border-left: 0.1rem solid #123c86;
    background: rgba(0, 0, 0, 0.03);
}

.sidebar .sub-nav li {
    position: relative;
    z-index: 1;
    border-bottom: 1px dashed rgba(72, 116, 203, 0.2);
}

.sidebar .sub-nav li:last-of-type {
    border-bottom: none!important;
}

.sidebar .sub-nav li.cur {
    border-bottom: 1px solid #123c86;
}

.sidebar .sub-nav li.cur::after {
    opacity: 1;
}

.sidebar .sub-nav li.cur > a {
    color: #123c86 !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: #123c86;
    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: .15rem .4rem .15rem .24rem;
    padding-left: 0;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.26rem;
    color: #333;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-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: "";
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-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: .56rem;
    background-image: url("../images/icon12_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.1rem;
    cursor: pointer;
    opacity: .32;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-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 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidebar .sub-nav .lv3 {
    display: none;
    margin: -.1rem 0 0;
    padding: 0 0 .15rem 0;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 0.08rem 0.2rem;
    font-size: .16rem;
    line-height: .22rem;
}

.sidebar .sub-nav .lv3 a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #123c86;
    margin: 0 .1rem 0 0;
    content: "";
    border-radius: 50%;
}

.sidebar .sub-nav .lv3 a:hover {
    color: #123c86;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #123c86;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #123c86;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #123c86;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.4rem);
    min-height: 4rem;
    padding: 0 0 .2rem;
}

.position {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
    margin-top: -0.15rem;
}

.position h3 {
    white-space: nowrap;
    font-size: 0.24rem;
    font-weight: 700;
    line-height: 0.56rem;
    color: #333;
    text-align: left;
    border-bottom: 3px solid #123c86;
    margin: 0 0 -2px;
}

.place {
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.6rem;
    color: #888;
    text-align: left;
    padding: 0 0 0 26px;
    background-image: url(../images/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.19rem;
}

.place a {
    position: relative;
    display: inline-block;
    color: #888;
}

.place a::after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0.18rem;
    left: auto;
    z-index: 1;
    content: "";
    width: 0;
    height: 1px;
    background: #123c86;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.place a:hover {
    color: #123c86;
}

.place a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.list1 {
    margin: .1rem 0 0;
}

.list1 li {
    position: relative;
}

.list1 a {
    position: relative;
    padding: .1rem .0rem;
    border-bottom: 1px dashed #e5e5e5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 a::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -1px;
    left: 0;
    z-index: 1;
    content: "";
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #123c86, #0052a2);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.list1 .date1 {
    width: .64rem;
    padding: 0;
    border: none;
}

.list1 .line {
    width: 1px;
    height: .5rem;
    background: #dfdfdf;
}

.list1 .text {
    width: calc(100% - 1.1rem);
}

.list1 .title {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 .info {
    margin: .08rem 0 0;
    color: #777;
}

.picture2 {
    margin: .2rem 0 0;
}

.picture2 li {
    position: relative;
    border-bottom: 1px dashed #cacaca;
}

.picture2 li.no-img .text {
    width: 100%;
    padding-left: 0;
}

.picture2 a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .15rem .15rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    align-items: center;
}

.picture2 .img-frame {
    width: 2.6rem;
}

.picture2 .img-frame .img {
    padding: 60% 0 0;
}

.picture2 .text {
    position: relative;
    width: calc(100% - 2.7rem);
    padding: 0 0 0 .2rem;
}

.picture2 .date {
    margin: .08rem 0 0;
}

.picture2 .title {
    line-height: .3rem;
    color: #222;
}

.picture2 .info {
    max-height: .56rem;
    margin: .1rem 0 0;
}

.picture3 {
    font-size: 0;
    margin: 0 -0.15rem;
}

.picture3 > li {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
    padding: 0 0.15rem;
}

.picture3 .img-zoom {
    margin: .3rem 0 0;
    padding: .1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: visible;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: #fcfeff;
    box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32);
}

.picture3 .img {
    padding: 65% 0 0;
}

.picture3 .text {
    padding: .15rem 0 .05rem;
}

.picture3 .title {
    font-family: "SYST400";
    font-size: 0.18rem;
    font-weight: 500;
    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;
    text-align: left;
    border-bottom: 3px solid #009b9d;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    font-size: 0;
    margin: 0 -0.15rem;
    margin-bottom: .3rem;
}

.teach-list > li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 0.15rem;
}

.teach-list li {
    margin: .44rem 0 0;
}

.teach-list .img-zoom {
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: .1rem .1rem 0;
    border-radius: .05rem;
    background: #FFFFFF;
    box-shadow: 0px 4px 0.15rem 0px rgba(14, 65, 150, 0.15);
}

.teach-list .img-zoom::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0%;
    z-index: 1;
    content: "";
    width: 100%;
    height: 2px;
    background: #123c86;
}

.teach-list .img-frame {
    background: #fff;
}

.teach-list .img-frame .img {
    padding: 120% 0 0;
    background-position-y: 10%;
}

.teach-list .title {
    font-weight: 700;
    font-size: .2rem;
    line-height: .6rem;
    text-align: center;
}

.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.27rem;
    font-weight: 500;
    line-height: 140%;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.article .sub-title1 {
    margin: 0 0 .08rem;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.32rem;
    color: #000;
    text-align: center;
}

.article .sub-title2 {
    margin: .08rem 0 0;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.32rem;
    color: #666;
    text-align: center;
}

.article .sub {
    margin: 0 0 .1rem;
    padding: .14rem 0 .3rem;
    font-size: 0.15rem;
    font-weight: 500;
    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;
    font-weight: 500;
    line-height: 200%;
    color: #333;
    text-align: justify;
}

.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0.05rem 0;
}

.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 #123c86;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #666;
    text-align: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-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: #123c86;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    content: "";
}

.article .cont-page a:hover {
    text-decoration: none;
    color: #123c86;
    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;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.article .return-list p {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 0.17rem;
    font-weight: 500;
    line-height: 200%;
    color: #123c86;
    text-align: center;
}

.article .return-list:hover p {
    font-weight: 700;
}

.article ul a, .article a {
    color: #123c86;
}

.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 .3rem !important;
    font-family: Arial;
    text-align: center;
}

#list-page div {
    font-family: Arial;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: .14rem;
    width: auto;
    height: auto;
    margin-top: 5px;
    -webkit-transition: all 0.24s ease-out 0s;
    -moz-transition: all 0.24s ease-out 0s;
    -ms-transition: all 0.24s ease-out 0s;
    -o-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: .11rem .13rem;
    color: #123c86;
    border: 1px solid #e2e2e2;
    border-radius: .3rem;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #123c86;
    font-weight: bold;
    color: #fff;
    border-color: #123c86;
}

#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: .3rem;
    border-color: #e2e2e2;
    width: .45rem;
    height: .36rem;
    line-height: .34rem;
    vertical-align: bottom;
}
.lshList{
    width:100%;
    margin: 0.3rem 0;
    float:left;
}
.lshList h2{
    font-size: 0.24rem;
    color: #123c86;
    text-align: center;
    margin-bottom: 0.15rem;
}
.lshList ul{
    display: flex;   
    align-items: center;     
    justify-content: center;     
    flex-wrap: wrap;
}
.lshList ul li{
    width: 18%;
    margin: 0.1rem;
}
.lshList ul li a{
    display: block;
    width: 100%;
    height: 1rem;
    border-radius: 0.1rem;
    position: relative;
    background: #fff;
    box-shadow: 0 0 0.2rem 0 rgba(0,0,0,0.15);
}
.lshList ul li  img{    
    display: block;       
    width: auto;        
    height: auto;        
    position: absolute;        
    left: 50%;        
    top: 50%;        
    transform: translate(-50%,-50%);        
    max-width: 80%;       
    max-height: 90%;
}
.fzlc{  
    margin: 0.5rem 0;       
    position: relative;
}
.fzlc::before{
    display:block;
    content: "";
    position: absolute;
    top:0;
    left: 50%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 0 solid transparent;
    border-bottom:10px solid #123c86;
    transform:translate(-50%,-100%);
}
.fzlc::after{
    display:block;
    content: "";
    position: absolute;
    bottom:0;
    left: 50%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #123c86;
    border-bottom: 0 solid transparent;
    transform:translate(-50%,100%);
}
.fzlc ul{
    width:100%;
    position:relative;
}
.fzlc li{
    width:100%;
    height:auto;
    padding: 0.4rem 0;
    position: relative;
}
.fzlc ul li::before{
    display:block;
    content:"";
    width: 0.2rem;
    height: 100%;
    background: #123c86;
    position: absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
}
.fzlc li .con,.fzlc li .tp{
    width: calc(50% - 10px);
    box-sizing: border-box;
}
.fzlc li.odd .con,.fzlc li.even .tp{
    float: left;
    padding-right: 0.8rem;
}
.fzlc li.even .con,.fzlc li.odd .tp{
    float: right;
    padding-left: 0.8rem;
}
.fzlc li .tit{
    font-size: 0.24rem;
    font-weight: bold;
    color: #123c86;
    position: relative;
    margin-bottom: 0.2rem;
    line-height: 1;
}
.fzlc li .tit::before{
    display:block;
    content: "";
    width: 0.6rem;
    height: 2px;
    background: #123c86;
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right: -0.9rem;
}
.fzlc li .tit::after{
    display:block;
    content: "";
    width: 8px;
    height: 8px;
    background: #123c86;
    border-radius: 100%;
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right: -0.3rem;
}
.fzlc li.even .tit::before{
    right: auto;
    left: -0.9rem;
}
.fzlc li.even .tit::after{
    right: auto;
    left: -0.3rem;
}
.fzlc li .tp img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin-top: 0.1rem;
}
.fzlc li .txt{
    font-size: 0.18rem;
    line-height: 0.3rem;
    color:#333;
    text-align:justify;
}
.fzlc li.odd .tit{
    text-align:right;
}
.fzlc li.even .tit{
    text-align:left;
}
.fzlc li.odd .tp{
    display: flex;
    justify-content: flex-end;
}
@media screen and (min-width: 1921px){
    .logo img{
        height: 0.93rem;
    }
}
@media screen and (min-width: 1025px) {
    .list1 a:hover {
        -webkit-transform: translateX(0.07rem);
        -moz-transform: translateX(0.07rem);
        -ms-transform: translateX(0.07rem);
        -o-transform: translateX(0.07rem);
        transform: translateX(0.07rem);
    }

    .list1 a:hover::after {
        width: 100%;
    }

    .list1 a:hover .title {
        color: #123c86;
    }

    .list1 a:hover .date1 {
        color: #123c86;
    }

    .list1 a:hover .line {
        background: #123c86;
    }

    .picture2 li {
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        z-index: 1;
    }

    .picture2 li::after {
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        z-index: -1;
        content: "";
        width: calc(100% + .14rem);
        height: 100%;
        background: #123c86;
        opacity: 0;
        -webkit-transform: translateX(0.14rem);
        -moz-transform: translateX(0.14rem);
        -ms-transform: translateX(0.14rem);
        -o-transform: translateX(0.14rem);
        transform: translateX(0.14rem);
    }

    .picture2 li:hover::after {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: all 0.38s ease-out 0s;
        -moz-transition: all 0.38s ease-out 0s;
        -ms-transition: all 0.38s ease-out 0s;
        -o-transition: all 0.38s ease-out 0s;
        transition: all 0.38s ease-out 0s;
    }

    .picture2 li:hover .title {
        color: #fff;
        font-weight: 700;
    }

    .picture2 li:hover .info {
        color: rgba(255, 255, 255, 0.6);
    }

    .picture2 li:hover .date {
        color: #fff;
        background-image: url("../images/f_icon1_2.png");
    }

    .picture3 .img-zoom:hover {
        border-color: #123c86;
        background: #123c86;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
        font-family: "SYST700";
    }

    .teach-list .img-zoom::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 2;
        content: "";
        width: 0;
        height: 2px;
        background: #0052a2;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
    }

    .teach-list .img-zoom:hover .title {
        color: #123c86;
    }

    .teach-list .img-zoom:hover::after {
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 1500px) {
    .container {
        max-width: none;
        padding: 0 0.3rem;
    }
}
@media screen and (max-width: 1760px) {
    .header .topTxt p{
        font-size: 0.16rem;
    }
    .header .topTxt{
        margin: 0 0.5rem;
        max-width: calc(100% - 7.7rem);
    }
}
@media screen and (max-width: 1024px) {
    html {
        font-size: 90px !important;
    }
    .header .topTxt{
        display:none;
    }
    .header {
        transition: all .2s;
        background: #123c86;
        border: none;
        box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.3);
        transition: none !important;
    }

    .header::after {
        display: none;
    }

    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 20px 0.3rem;
    }
    
    .header .r-wrap {
    }
    .nav .flex-between{
        max-width: 100%;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }
    .nav-btn {
        display: block;
    }

    .logo {
        width: auto;
        min-width: auto;
        height: auto;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 70px !important;
    }

    .mobile-box {
        display: block;
    }

    .mobile-box .mobile-search .submit {
        background-color: #123c86;
    }

    .top-link {
        justify-content: center;
    }

    .top-link a {
    }

    #mask {
        display: none !important;
    }
    footer .container{
        flex-wrap:wrap;
        flex-direction: column;
    }
    footer .bq{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0.2rem 0;
    }
    .main-box{
        margin-top: 0.3rem;
    }
    .title {
        font-size: .2rem;
    }

    .decorate {
        margin: 65px 0 0;
        padding: 36% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .15rem 0 0;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
    }

    .sidebar h3 {
        position: relative;
        font-size: .21rem;
        line-height: .5rem;
        text-align: center;
        background: #123c86;
    }

    .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;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .sidebar h3.down i {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-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;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-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: .55rem;
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
        font-size: .18rem;
        line-height: .55rem;
    }

    .sidebar .sub-nav .down {
        top: 0;
        height: .55rem;
    }

    .side-swiper {
        display: none;
    }

    .main {
        width: 100%;
        padding: .26rem 0 0;
        margin: 0;
        box-shadow: none;
        background: none;
    }
    .fy{
        margin: 0.25rem 0!important;
    }
    .main::before {
        display: none;
    }

    .place {
        line-height: .4rem;
    }

    .place .container {
        justify-content: flex-start;
        font-size: .15rem;
    }

    .teach-list {
        margin-bottom: 0;
        padding: 0 0 .3rem;
    }

    .teach-list li {
        width: 25%;
        margin: .3rem 0 0;
    }

    .article {
        padding: .3rem 0 0 !important;
    }
    .lshList ul li{
        width: 22%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .main-box{
        margin-top: 0.1rem;
    }
    .header .container{
        padding: 15px;
    }
    .nav .flex-between{
        padding: 0 15px;
    }
    .nav li {
        width: 25%;
    }
    .nav li a{
        line-height: 0.52rem;
    }
    .copy {
        text-align: center;
    }

    .teach-list {
        margin: 0 -.1rem;
        padding: 0 .2rem .3rem;
    }

    .teach-list li {
        width: 33.33%;
        margin: .2rem 0 0;
        padding: 0 .1rem;
    }

    .position h3 {
        line-height: .4rem;
        display: none;
    }

    .position .place {
        width: 100%;
    }

    .place {
        margin-bottom: 8px;
        line-height: .22rem;
        background-position-y: 0px;
        margin-top: 10px;
    }

    .list1 .text {
        width: calc(100% - 1rem);
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .1rem 0;
    }

    .article .cont-page {
        padding: .15rem 0 .35rem;
    }

    .article .share {
        justify-content: flex-start;
    }

    .picture2 {
        margin: 0;
    }

    .picture2 a {
        padding: .2rem 0;
    }

    .picture2 .img-frame {
        width: 2.1rem;
    }

    .picture2 .text {
        width: calc(100% - 2.1rem);
        padding: 0 0 0 .2rem;
    }

    .picture2 .text::after {
        display: none;
    }

    .picture3 {
        margin: 0 -.1rem;
    }

    .picture3 > li {
        width: 50%;
        padding: 0 .1rem;
    }

    .picture3 .img-zoom {
        margin: .2rem 0 0;
    }

    #list-page {
        margin: .3rem 0 .4rem !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;
    }
    .lshList ul li{
        width:30%;
    }
    .fzlc li.odd .con,.fzlc li.even .tp{
        float: left;
        padding-right: 30px;
    }
    .fzlc li.even .con,.fzlc li.odd .tp{
        float: right;
        padding-left: 30px;
    }
    .fzlc li .tit::before{
        width: 30px;
        right: -40px;
    }
    .fzlc li .tit::after{
        width: 6px;
        height: 6px;
        right: -10px;
    }
    .fzlc li.even .tit::before{
        right: auto;
        left: -40px;
    }
    .fzlc li.even .tit::after{
        right: auto;
        left: -10px;
    }
}

@media screen and (max-width: 520px) {
    .header {
    }

    .container {
        padding: 0 12px;
    }

    .header .container {
        padding: 12px;
    }
    .nav .flex-between{
        padding: 0 12px;
    }
    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .logo {
    }

    .logo img {
        max-height: 52px !important;
    }

    .mobile-box {
        height: calc(100vh - 54px);
        top: 54px;
    }

    .mobile-box .nav {
        height: calc(100% - 1.6rem);
    }

    .nav-btn {
        width: 26px;
    }

    .nav-btn i {
        margin: 6px 0;
    }

    .nav-btn.close i:nth-child(1) {
        -webkit-transform: translate(0px, 8px) rotate(45deg);
        -moz-transform: translate(0px, 8px) rotate(45deg);
        -ms-transform: translate(0px, 8px) rotate(45deg);
        -o-transform: translate(0px, 8px) rotate(45deg);
        transform: translate(0px, 8px) rotate(45deg);
    }

    .nav-btn.close i:nth-child(3) {
        -webkit-transform: translate(0px, -8px) rotate(-45deg);
        -moz-transform: translate(0px, -8px) rotate(-45deg);
        -ms-transform: translate(0px, -8px) rotate(-45deg);
        -o-transform: translate(0px, -8px) rotate(-45deg);
        transform: translate(0px, -8px) rotate(-45deg);
    }

    .decorate {
        margin: 54px 0 0;
    }

    .decorate .img {
        padding: 45% 0 0;
    }

    .picture2 .img-frame {
        width: 100%;
    }

    .picture2 .img-frame .img {
        padding: 66.6% 0 0;
    }

    .picture2 .text {
        width: 100%;
        padding: .14rem 0 0;
    }

    .picture2 .no-img .text {
        padding: 0;
    }

    .picture3 > li {
        width: 100%;
    }

    .teach-list {
        padding: 0 0 .25rem;
    }

    .teach-list li {
        width: 50%;
    }

    .list1 a {
        padding: .16rem 0;
    }

    .list1 .text {
        width: calc(100% - .8rem);
    }

    .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;
        font-size: 0.18rem;
    }

    .list1 .info {
        display: none;
    }
    .serSub{
        width: 160px;
    }
    .article .content table td{
        padding:5px!important;
    }
     .lshList ul li{
        width: 46%;
        margin: 5px;
    }
    .lshList{
        margin: 20px 0;
    }
    .lshList h2{
        font-size: 21px;
        margin-bottom: 5px;
    }
    .fzlc{
        padding-left: 10px;
    }
    .fzlc::before{
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 0 solid transparent;
        border-bottom:5px solid #123c86;
        left:0;
        transform:translate(0,-100%);
    }
    .fzlc::after{
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #123c86;
        border-bottom: 0 solid transparent;
        transform:translate(0,100%);
        left:0;
    }
    .fzlc ul li::before{
        left: -10px;
        width:10px;
        transform: none;
    }
    .fzlc li .con, .fzlc li .tp{
        float: none!important;
        width: 100%!important;
        padding: 0 0 0 20px!important;
    }
    .fzlc li .tit{
        text-align:left!important;
    }
    .fzlc li .tit::before{
        width:20px;
        right: auto;
        left: -30px!important;
    }
    .fzlc li .tit::after{
        right: auto;
        left: -10px;
    }
    .fzlc li{
        padding: 25px 0;
    }
    .fzlc li .txt{
        font-size: 15px;
        line-height: 26px;
    }
    .fzlc li .tit{
        font-size: 20px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 420px) {
    .header .r-wrap{
        display:none;
    }
    .logo img{
        max-height: none!important;
        width: auto;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .nav li a{
        line-height: 0.48rem;
    }
    .bq p{
        background: none!important;   
        padding-left: 0;     
        font-size: 14px;     
        line-height: 24px;   
        text-align: center;
    }
}
/*# sourceMappingURL=style.css.map */