@charset "utf-8"; /* 网站通用样式 */
#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;
}
@font-face { font-family: "Poppins"; src: url("../fonts/Poppins-Medium.ttf") format("truetype"); }
@font-face { font-family: "SourceHanSansCN_Medium"; src: url("../fonts/SourceHanSansCN_Medium.ttf") format("truetype"); }
#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 {
    border-radius: .06rem;
    background: #134b8c;
}

html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 1720px;
    max-width: 90%;
    margin: 0 auto;
    font-size: .18rem;
}

.title {
    font-size: 0.17rem;
    line-height: 0.3rem;
    color: #333;
}

.info {
    font-size: 0.14rem;
    line-height: 0.26rem;
    color: #999;
    text-align: justify;
}

.date {
    font-family: "Poppins";
    font-size: 0.16rem;
    line-height: 0.3rem;
    color: #003d83;
}

.date1 {
    width: .7rem;
    font-family: "Poppins";
    font-size: 0.12rem;
    line-height: 0.2rem;
    color: #003d83;
    text-align: center;
}

.date1 p:first-child {
    font-size: .28rem;
    line-height: .3rem;
}

.date1::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .47rem;
    height: 4px; border-radius: 2px;
    margin: .08rem auto 0;
    background: #f4bd42;
}

/* 网站头部 */
.header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1000;
    width: 100%;
    height: 1rem;
    padding: .13rem 0;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-top: .04rem solid #007fc6;
    background-image: url("../images/head_bg.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header .container {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .right-wrap {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 9.6rem;
    max-width: calc(100% - 6.2rem);
}

.header .line {
    width: 1px;
    height: .33rem;
    background: #e9eaeb;
}

.header.scroll {
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.3);
}

.logo {
font-size: 5px;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo img {
    max-height: .7rem;
}

.nav {
    width: calc(100% - 1.1rem);
}

.nav ul {
    display: flex;
    justify-content: space-between;
}

.nav li {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav li a {
    position: relative;
    display: block;
    padding: 0 .09rem 0 0;
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 0.6rem;
    color: #003d83;
    text-align: center;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li .icon {
    display: block;
    width: .15rem;
    height: .13rem;
    background-image: url("../images/f_icon1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav li > a {
    -moz-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav li:hover .icon {
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nav li:hover .sub-nav {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav .sub-nav {
    position: absolute;
    top: 120%;
    right: auto;
    bottom: auto;
    left: calc(50% - .95rem);
    z-index: 1;
    width: 1.9rem;
    padding: .16rem 0 1rem;
    background: #003d83;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(180deg, #003d83, transparent);
    border-radius: 6px 6px 0 0;
    -moz-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.nav .sub-nav dd:hover a {
    color: #f4bd42;
    border-color: #003d83;
}

.nav .sub-nav a {
    z-index: 2;
    width: 100%;
    padding: .1rem 0;
    font-size: .18rem;
    font-weight: 500;
    line-height: .24rem;
    color: #fff;
}

.pad-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.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: 1px;
    margin: 8px 0;
    background: #003d83;
    -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;
}

.nav-btn i:nth-child(2) {
    width: 75%;
}

.nav-btn.close i:nth-child(1) {
    -moz-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) {
    -moz-transform: translate(0px, -9px) rotate(-45deg);
    transform: translate(0px, -9px) rotate(-45deg);
}

.search-btn {
    position: relative;
    z-index: 5;
    display: inline-block;
    width: .45rem;
    height: .45rem;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #f4bd42;
    background-size: 0.25rem;
    border-radius: 50%;
    cursor: pointer;
}

#mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.45s ease-out 0.4s;
    transition: all 0.45s ease-out 0.4s;
}

#mask::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    height: 0%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    content: "";
    -moz-transition: all 0.45s ease-out 0.2s;
    transition: all 0.45s ease-out 0.2s;
}

#mask .search-box {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: .5rem 0 .7rem;
    overflow: hidden;
    background: #134b8c;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

#mask .search-box .over {
    overflow: hidden;
}

#mask .search-box h4 {
    margin: 0 0 .2rem;
    font-size: 0.28rem;
    line-height: 0.5rem;
    color: #fff;
    text-align: center;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    -moz-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

#mask .search-box .form {
    position: relative;
    background: white;
    white-space: nowrap;
    padding: .12rem .14rem .12rem .14rem;
    width: 80%;
    max-width: 7.5rem;
    margin: 0 auto;
    opacity: 0;
    -moz-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
    box-shadow: 0 0 2px 0 #ccc;
    border-radius: 2px;
    -moz-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;
    line-height: 0.6rem;
    color: #333;
    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: .5rem;
    height: .5rem;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: calc(100% + .5rem);
    z-index: 1;
    cursor: pointer;
    -moz-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 {
    -moz-transform: translate(0, 25px) rotate(45deg);
    transform: translate(0, 25px) rotate(45deg);
}

#mask .search-box .close .line.l2 {
    -moz-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;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#mask.show::after {
    opacity: 1;
    height: 100%;
    -moz-transition: all 0.45s ease-out 0s;
    transition: all 0.45s ease-out 0s;
}

#mask.show .search-box {
    -moz-transform: translateY(0);
    transform: translateY(0);
}

#mask.show .search-box h4 {
    -moz-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    transition-delay: .3s;
    -ms-transition-delay: .3s;
}

#mask.show .search-box .form {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
    transition-delay: .3s;
    -ms-transition-delay: .3s;
}

@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% .3rem;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    background: #eef3fc;
}

.mobile-box .nav {
    width: 100%;
    height: calc(100% - 1.2rem);
    padding: 0 0 .2rem;
    border: none;
}

.mobile-box .nav ul {
    display: block;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
}

.mobile-box .nav li {
    position: relative;
    width: 100%;
    display: block;
    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 {
    width: 100%;
    color: #333;
    font-weight: 500;
    font-size: .2rem;
    color: #003d83;
    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: 3;
    width: .6rem;
    height: .6rem;
    background-size: .16rem;
    cursor: pointer;
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

.mobile-box .nav li > a {
    font-size: .19rem;
}

.mobile-box .nav li > a::before {
    display: none;
}

.mobile-box .nav .sub-nav {
    display: none;
    position: static;
    width: 100%;
    padding: 0 0 12px 20px;
    background: none;
    box-shadow: none;
    border: none;
    visibility: visible;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.mobile-box .nav .sub-nav dd::before {
    display: none;
}

.mobile-box .nav .sub-nav a {
    font-size: .16rem;
    line-height: .34rem;
    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 #134b8c;
    border-radius: 3px;
}

.mobile-box .mobile-search .input {
    width: calc(100% - .6rem);
    height: .46rem;
    padding: 0 .1rem 0 .2rem;
    vertical-align: top;
    font-size: 0.17rem;
    line-height: 0.46rem;
    color: #333;
    background: #fff;
    overflow: hidden;
}

.mobile-box .mobile-search .submit {
    width: .6rem;
    height: .46rem;
    vertical-align: top;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #134b8c;
    background-size: 0.18rem;
}

.mobile-box .top-link {
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-box .top-link a {
    color: #003d83;
    margin: 0 .1rem;
}

.mobile-box .top-link span {
    display: none;
}

.mobile-box .top-link::after {
    display: none;
}

.mobile-box.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

/* 网站底部 */
.footer {
    padding: .55rem 0;
    background-image: url("../images/foot_bg.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
}

.footer .r-box {
    width: calc(100% - 6.8rem);
}

.footer .r-box .line {
    width: 1px;
    height: 2.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.foot-img img {
    max-height: .7rem;
}

.copy {
    margin: .3rem 0 0;
    font-size: 0.16rem;
    line-height: 0.38rem;
    color: #99ccff;
}

.copy a {
    color: #99ccff;
}

.contact {
    font-size: 0.16rem;
    line-height: 0.38rem;
    color: #fff;
}

.contact a {
    color: #fff;
}

/* 内页样式 */
.decorate {
    position: relative;
    padding: 4.8rem 0 0;
    margin: 1rem 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 .container {
    width: 1520px;
}

.sidebar {
    position: relative;
    z-index: 3;
    width: 3.2rem;
    margin: -.8rem 0 .6rem;
}

.sidebar h3 {
    position: relative;
font-family: "SourceHanSansCN_Medium";
    font-size: 0.4rem;
    font-weight: 400;
    line-height: 1.3rem;
    color: #fff;
    text-align: center;
    background-image: url("../images/f_icon2_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #134b8c;
    background-size: auto 96%;
    letter-spacing: 1px;
    border-radius: .1rem;
}

.sidebar .sub-nav {
    position: relative;
    padding: .2rem .3rem;
    margin: .15rem 0 0;
    box-shadow: 0px 0 0.18rem 0px rgba(165, 186, 199, 0.32);
    background: #fcfeff;
    border-radius: .1rem;
}

.sidebar .sub-nav li {
    position: relative;
    border-bottom: 1px solid #ededed;
}

.sidebar .sub-nav li:last-child {
    border: none;
}

.sidebar .sub-nav li.cur > a {
    color: #003d83 !important;
    font-weight: 700;
}

.sidebar .sub-nav li.cur > a p::after {
    width: 100%;
    opacity: 1;
}

.sidebar .sub-nav li.cur .lv3 {
    display: block;
}

.sidebar .sub-nav li.cur .down {
    opacity: .8;
}

.sidebar .sub-nav li:hover > a {
    color: #003d83;
}

.sidebar .sub-nav a { position: relative; z-index: 2;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: .2rem .3rem .2rem .2rem;
    font-size: 0.2rem;
    line-height: 0.28rem;
    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: 3;
    width: .3rem;
    height: .7rem;
    background-image: url("../images/icon12_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    cursor: pointer;
    opacity: .3;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.sidebar .sub-nav .down.icon { z-index: 1; }
.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 .12rem;
}

.sidebar .sub-nav .lv3 a {
    height: auto;
    padding: .08rem 0 .08rem .2rem;
    font-size: .17rem;
    line-height: .24rem;
}

.sidebar .sub-nav .lv3 a::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #bbb;
    margin: 0 .1rem 0 0;
    content: "";
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sidebar .sub-nav .lv3 a:hover {
    color: #f4bd42;
}

.sidebar .sub-nav .lv3 a:hover::before {
    background: #f4bd42;
}

.sidebar .sub-nav .lv3 a.cur {
    color: #003d83;
    font-weight: 700;
}

.sidebar .sub-nav .lv3 a.cur::before {
    background: #003d83;
}

.main {
    position: relative;
    z-index: 4;
    width: calc(100% - 3.8rem);
    min-height: 4rem;
    margin: .4rem 0 0;
    padding: 0 0 .2rem;
}

.position {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 .2rem;
    border-bottom:2px solid #134b8c;
}

.position h3 {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    white-space: nowrap;
font-family: "SourceHanSansCN_Medium";
    font-size: 0.32rem;
    font-weight: 400;
    line-height: 0.3rem;
    color: #333;
}

.position h3::before {
    display: block;
    content: "";
    box-sizing: border-box;
    width: .08rem;
    height: .33rem;
    margin: 0 .15rem 0 0;
    border-radius: 0.4rem;
    background: linear-gradient(0deg, #a2ddfe, #0682c8);
}

.place {
    font-size: 0.14rem;
    line-height: 0.3rem;
    color: #999;
    padding: 0 0 0 .3rem;
    white-space: nowrap;
    background-image: url(../images/place.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-color: transparent;
    background-size: 0.2rem;
}

.place a {
    color: #888;
}

.place a:hover {
    color: #003d83;
}

.list1 {
    margin: .15rem 0 0;
}

.list1 li {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}

.list1 a {
    position: relative;
    z-index: 1;
    padding: .25rem 0;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.list1 .date1::after {
    display: none;
}

.list1 .text {
    width: calc(100% - 2rem);
    padding: 0 .2rem 0 0;
}

.list1 .title {
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; font-size: .19rem; font-weight: 700;
}

.list1 .info {
    margin: .08rem 0 0;
}

.list1 .line {
    width: 1px;
    height: .4rem;
    background: #d4dded;
}

.list1 .icon {
    width: .5rem;
    height: .5rem;
    background-image: url("../images/f_icon6_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.25rem;
    border: 1px dashed #a5bbd7;
    border-radius: 50%;
}

.picture2 {
    margin: .3rem 0 0;
}

.picture2 li {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}

.picture2 li:first-child {
    margin: 0;
}

.picture2 li.no-img .img-frame {
    display: none;
}

.picture2 li.no-img .text {
    width: calc(100% - 1rem);
    padding-top: 0;
}

.picture2 a {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .28rem .1rem;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.picture2 .img-frame {
    width: 2.5rem;
    border-radius: .1rem;
}

.picture2 .img-frame .img {
    padding: 60% 0 0;
}

.picture2 .text {
    position: relative;
    width: calc(100% - 4rem);
    padding: .2rem .2rem 0 0;
}

.picture2 .title {
    font-weight: 400;
    font-size: .2rem;
    line-height: .3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: .15rem;
}

.picture2 .info {
    max-height: .52rem;
    margin: .15rem 0 .24rem;
}

.picture2 .icon {
    align-self: center;
    width: .5rem;
    height: .5rem;
    background-image: url("../images/f_icon6_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.22rem;
    border: 1px dashed #a5bbd7;
    border-radius: 50%;
}

.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: 4px;
    overflow: visible;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0 0.03rem 0.15rem 0 rgba(176, 208, 230, 0.6);
}

.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 #134b8c;
}

.teach-column .more {
    padding: 0;
    font-size: .16rem;
    line-height: .5rem;
    background: none;
}

.teach-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.2rem;
    margin-bottom: .3rem;
}

.teach-list > li {
    width: 20%;
    padding: 0 0.2rem;
}

.teach-list li {
    margin: .44rem 0 0;
}

.teach-list .img-zoom {
    z-index: 1;
    -moz-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.1);
}

.teach-list .img-zoom::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0%;
    z-index: 1;
    content: "";
    width: 100%;
    height: 2px;
    background: #003d83;
}

.teach-list .img-frame {
    background: #fff;
}

.teach-list .img-frame .img {
    padding: 120% 0 0;
    background-position-y: 10%;
}

.teach-list .title {
    line-height: .6rem;
    text-align: center;
}

.article {
    padding: .4rem 0 .2rem;
}

.article .title {
    font-size: 0.25rem;
    line-height: 140%;
    color: #333;
    font-weight: 700;
    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.24rem;
    color: #999;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.article .sub span {
    margin: 0 .05rem;
white-space: pre-wrap;
}

.article .sub span span {
    margin: 0;
}

.article .content {
    min-height: 3rem;
    padding: .3rem 0 .2rem;
    font-size: 0.18rem;
    line-height: 200%;
    color: #333;
    text-align: justify;
}
.article.about .content {
padding-top: 0;
}


.article .content p {
    text-indent: 2em;
    word-break: break-all;
    margin: 0 0 .1rem;
}

.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 #003d83;
}

.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: #003d83;
    -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: #003d83;
    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: #003d83;
    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;
}

.teach-article {
    display: flex;
    justify-content: space-between;
}

.teach-article .teach-img {
    width: 2rem;
}

.teach-article .teach-img .name {
    margin: .2rem 0 .1rem;
    font-size: .21rem;
    font-weight: 700;
    line-height: .3rem;
    color: #333;
    text-align: center;
}

.teach-article .teach-img .p1 {
    margin: .1rem 0 0;
    font-size: .16rem;
    line-height: .24rem;
    color: #666;
    text-align: center;
}

.teach-article .teach-content {
    width: calc(100% - 2.4rem);
}

.teach-article .teach-title {
    font-size: .19rem;
    line-height: .55rem;
    color: #003d83;
    border-bottom: 1px solid #ddd;
    font-weight: 700;
}

.teach-article .teach-title i {
    display: inline-block;
    width: 0;
    height: 0;
    border: .06rem solid transparent;
    border-left-color: #003d83;
    margin: 0 4px 0 0;
}

.teach-article .content {
    padding: .2rem 0;
}

/* 翻页样式 */
#list-page {
    margin: .4rem 0 .4rem !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;
    transition: all .2s;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: 10px 12px;
    color: #134b8c;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: #003d83;
    font-weight: bold;
    color: #fff;
    border-color: #003d83;
}

#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: 2px;
    border-color: #e0e0e0;
    width: 40px;
    height: 34px;
    line-height: 34px;
    vertical-align: bottom;
}

.to-top-part {
    position: fixed;
    top: auto;
    right: 0.2rem;
    bottom: 10%;
    left: auto;
    z-index: 10;
    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: #f4bd42;
    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: #003d83;
}

.to-top-part.show {
    visibility: visible;
}

.to-top-part.show #to-top {
    -moz-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (min-width: 1025px) {
    .list1 li {
        position: relative;
    }

    .list1 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: #003d83;
        -moz-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .list1 li .icon {
        position: relative;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .list1 li .icon::after {
        position: absolute;
        top: -5px;
        right: -5px;
        bottom: auto;
        left: auto;
        z-index: 1;
        content: "";
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border-radius: 50%;
        border: 1px dashed #134b8c;
        opacity: 0;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .list1 li:hover::after {
        width: 100%;
    }

    .list1 li:hover .line {
        background: #f4bd42;
    }

    .list1 li:hover .title {
        font-weight: 700;
        color: #003d83;
    }

    .list1 li:hover .icon {
        background-color: #134b8c;
        background-image: url("../images/f_icon6_2.png");
        border: 1px dashed #134b8c;
    }

    .list1 li:hover .icon::after {
        opacity: 1;
        animation: ani-yuan 16s linear infinite;
    }

    .picture2 li {
        position: relative;
    }

    .picture2 li::after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1px;
        left: 0;
        z-index: 1;
        content: "";
        width: 0;
        height: 2px;
        background: #003d83;
        -moz-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
    }

    .picture2 li .icon {
        position: relative;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .picture2 li .icon::after {
        position: absolute;
        top: -5px;
        right: -5px;
        bottom: auto;
        left: auto;
        z-index: 1;
        content: "";
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border-radius: 50%;
        border: 1px dashed #134b8c;
        opacity: 0;
        -moz-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .picture2 li:hover::after {
        width: 100%;
    }

    .picture2 li:hover .line {
        background: #f4bd42;
    }

    .picture2 li:hover .title {
        font-weight: 700;
        color: #003d83;
    }

    .picture2 li:hover .icon {
        background-color: #134b8c;
        background-image: url("../images/f_icon6_2.png");
        border: 1px dashed #134b8c;
    }

    .picture2 li:hover .icon::after {
        opacity: 1;
        animation: ani-yuan 16s linear infinite;
    }

    .picture3 .img-zoom:hover {
        border-color: #003d83;
        background: #003d83;
    }

    .picture3 .img-zoom:hover .title {
        color: #fff;
        font-weight: 700;
    }
}

@media screen and (max-width: 1750px) {
    .footer .r-box {
        width: calc(100% - 5.2rem);
    }
.foot-img img { max-height: .62rem; }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 90px !important;
    }

    .mobile-show {
        display: block !important;
    }

    .container {
        max-width: 94%;
    }

    .header {
        padding: 10px 0 !important;
        height: auto;
        box-shadow: 0 0 0.14rem 0 rgba(0, 0, 0, 0.3);
        transition: none !important;
    }

    .header::before {
        display: none !important;
    }

    .header .container {
        flex-wrap: nowrap;
    }

    .header .right-wrap {
        width: auto;
        max-width: none;
    }

    .header .right-wrap .line, .header .right-wrap .nav {
        display: none;
    }

    .header.mobile-show {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .header.scroll {
        background-image: url("../images/head_bg.jpg");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: cover;
    }

    .pad-btn .search-btn {
        display: none;
    }

    .nav-btn {
        display: block;
    }

    .logo {
        width: auto;
        min-width: auto;
        height: 45px;
        padding: 0 .12rem 0 0;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 45px !important;
    }

    .mobile-box {
        display: block;
    }

    .title {
        font-size: .19rem;
    }

    .to-top-part {
        display: none !important;
    }

    .footer {
        padding: .25rem 0;
    }

    .footer .r-box {
        display: block;
        width: 100%;
        order: 1;
    }

    .footer .r-box .line {
        display: none;
    }

    .footer .l-box {
        order: 2;
    }

    .foot-img {
        margin: .12rem 0;
    }

    .copy {
        margin: 0;
    }

    .decorate {
        margin: 68px 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: #003d83;
    }

    .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;
        margin: 0;
        background: #eef3fc;
        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 .3rem;
        margin: 0;
        box-shadow: none;
        background: none;
    }

    .main::before {
        display: none;
    }

    .position {
        margin: 0;
    }

    .position h3 {
        font-size: .21rem;
    }

    .teach-list > li {
        width: 33.333%;
    }

    .article {
        padding: .3rem 0 0 !important;
    }

    .article .sub {
        margin: .2rem 0 0;
        padding: 0 0 .18rem;
    }
}

@media screen and (max-width: 768px) {
    .position {
        padding: 0 0 5px;
        border-bottom: 1px solid #003d83;
    }

    .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 .3rem;
    }

    .list1 .text {
        width: calc(100% - .88rem);
        padding: 0;
    }

    .list1 .title {
        text-overflow: clip;
        white-space: initial;
    }

    .list1 .line {
        display: none;
    }

    .list1 .info {
        display: none;
    }

    .list1 .icon {
        display: none;
    }

    .article {
        padding: .25rem 0 0 !important;
    }

    .article .title {
        font-size: .22rem;
    }

    .article .content {
        padding: .2rem 0 .1rem;
    }

    .article .content p {
        margin: 0 0 .2rem;
    }

    .article .cont-page {
        padding: .15rem 0 .35rem;
    }

    .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;
    }

    .teach-list {
        margin: 0 -7px;
    }

    .teach-list > li {
        padding: 0 7px;
        margin: .2rem 0 0;
    }

    .picture2 {
        margin: .1rem 0 0;
    }

    .picture2 a {
        padding: .22rem 0;
    }

    .picture2 a::after {
        display: none;
    }

    .picture2 .img-frame {
        width: 100%;
    }

    .picture2 .text {
        width: 100% !important;
        padding: .15rem 0 0 !important;
    }

    .picture2 .title {
        overflow: visible;
        text-overflow: clip;
        white-space: initial;
    }

    .picture2 .info {
        margin: .1rem 0;
    }

    .picture2 .icon {
        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 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;
    }

    .teach-article {
        flex-wrap: wrap;
        justify-content: center;
    }

    .teach-article .teach-content {
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .header {
        padding: 7px 0 !important;
    }

    .header .container {
        width: 94%;
    }

    .header .right-wrapper {
        width: auto;
        max-width: none;
    }

    .logo {
        height: 40px !important;
    }

    .logo img {
        max-height: 40px !important;
    }

    .mobile-box {
        height: calc(100vh - 54px);
        top: 54px;
    }

    .mobile-box .top-link2 {
        margin: 0 .1rem;
    }

    .pad-btn .nav-btn {
        width: 26px;
    }

    .pad-btn .nav-btn i {
        margin: 6px 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);
    }

    .contact {
        line-height: .3rem;
    }

    .decorate {
        margin: 57px 0 0;
        padding: 40% 0 0;
    }

    .sidebar h3 {
        font-size: .2rem;
    }

    .picture3 > li {
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */