/* ------ 公共样式 ------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    font-size: 100px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
}

:focus {
    outline: 0
}

a {
    text-decoration: none;
    color: #333333;
}

a:hover {
    color: #005193;
}

button {
    user-select: none;
}

img:not([src]), img[src=""] {
    opacity: 0;
}

img {
    display: inline-block;
    padding: 0;
    border: none;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select, button, textarea {
    font-size: 100%;
    font: inherit;
}

hr {
    height: 0;
    border: none;
    border-top: 1px solid #f4f3f2;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
}

body {
    color: #333;
    position: relative;
    overflow-x: hidden;
    font-size: 0.16rem;
    font-family: Microsoft YaHei;
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

i, em {
    font-style: normal;
}

input, textarea, select {
    padding: 0;
    font-family: inherit;
    outline: none;
    resize: none;
    background: none;
    border: none;
    font-size: inherit;
    color: inherit;
}

textarea::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
    font-size: inherit;
}

select::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
    font-size: inherit;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.5;
    font-size: inherit;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 0.5;
    font-size: inherit;
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #ddd
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #005193;
}

.clearfix:after {
    clear: both;
    display: block;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    content: "."
}

.container {
    width: 12.2rem;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width:1024px) {
    html {
        font-size: 95px !important;
    }
}

@media (max-width:900px) {
    html {
        font-size: 90px !important;
    }
}

@media (max-width:750px) {
    html {
        font-size: 85px !important;
    }

    .wp {
        width: 90%
    }
}

@media (max-width:540px) {
    html {
        font-size: 80px !important;
    }

    body {
        font-size: .18rem;
    }

    .eclips {
        display: inline-block;
        overflow: visible;
        text-overflow: inherit;
        white-space: normal;
    }
}

@media (max-width:360px) {
    html {
        font-size: 75px !important;
    }
}

/* ------ 公共样式 ------*/

@font-face {
    font-family: "PingFang SC";
    src: url("../fonts/PingFang_Regular.ttf");
}

/* header */

.header {
    width: 100%;
    height: 1.11rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    padding: .25rem .5rem;
    box-shadow: 0px 0px .59rem 0px rgba(0, 0, 0, 0.06);
    background-color: #fff;
}

.header .logo {
    width: 30%;
    display: inline-block;
    float: left;
}

.header .nav {
    width: 70%;
    display: inline-block;
    padding-top: .25rem;
    padding-right: .5rem;
    position: relative;
}

.header .nav .navs {
    float: right;
}

.header .nav .navs>li {
    width: 1.5rem;
    float: left;
    text-align: center;
    position: relative;
    height: .6rem;
}

.header .nav .navs>li>a {
    font-size: .2rem;
    font-family: "PingFang SC";
    padding: .1rem .1rem;
}

.header .nav .sub-nav {
    display: none;
}

.header .nav .search-btn {
    position: absolute;
    right: 0;
    cursor: pointer;
}

.header-top {
    width: 100%;
    height: 1.11rem;
}

.header-searchbox {
    position: fixed;
    top: 1.11rem;
    left: 0;
    z-index: 100;
    display: none;
}

.header .nav .navs>li.select>a {
    color: #005193;
    font-weight: 700;
    border-bottom: 2px solid #005193;
}

.header .nav .navs>li:hover>a {
    background-color: #005193;
    color: #fff;
    transition: .5s;
    border-radius: .05rem;
}

.header .nav .navs>li .sub-nav {
    background-color: #005193;
    transition: .5s;
    border-radius: .05rem;
    position: absolute;
    top: .5rem;
    width: 100%;
}

.header .nav .navs>li .sub-nav li {
    line-height: .4rem;
}

.header .nav .navs>li .sub-nav li a {
    color: #fff;
    font-size: .18rem;
    font-family: "PingFang SC";
    padding: .1rem .1rem;
}

.header .nav .navs li:hover .sub-nav {
    display: block;
}

.header .nav .navs>li .sub-nav li:hover a {
    color: #e2610b;
    transition: .5s;
}

/* 搜索  */

.searchbox {
    background-color: #f7f7f7;
    width: 100%;
}

.searchbox .mainbox {
    width: 8rem;
    padding: .6rem 0;
    margin: 0 auto;
    font-style: normal;
}

.searchbox h2 {
    font-size: .36rem;
    padding-bottom: .6rem;
    font-weight: bold;
    color: #0F0C0C;
    text-align: center;
}

.search {
    position: relative;
}

.search input {
    width: 100%;
    height: .6rem;
    line-height: .32rem;
    border-bottom: 1px solid #ccc;
    font-size: .24rem;
    color: #ccc;
    padding: .15rem .4rem;
    position: relative;
    z-index: 1;
}

.search input.search-input {
    padding-right: .8rem;
}

.search input.searchbox-btn {
    cursor: pointer;
    width: .4rem;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    background: url(../images/search.png) no-repeat center;
}

.banner .swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner .swiper-slide {
    text-align: center;
    font-size: .18rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/* 轮播图 */

.banner {
    width: 100%;
    /* position: fixed;
    top: 1.11rem;
    z-index: 10; */
    background-color: #f7f7f7;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper {
    margin-left: auto;
    margin-right: auto;
}

.banner .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    width: .25rem;
    border-radius: 5px;
    background-color: #fff;
}

.banner .swiper-pagination-bullet {
    transition: 1s;
}

.banner .swiper-pagination-bullet {
    opacity: 1;
    background-color: #fff;
}

.banner .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: .3rem;
}

.dongtai {
    padding: .5rem 0;
}

.dongtai-title {
    position: relative;
}

.dongtai .dongtai-title h2 {
    font-size: .24rem;
    line-height: .6rem;
    background: url(../images/dt-title-bg.png) no-repeat;
    background-size: cover;
    margin-right: 1rem;
    font-family: "PingFang SC";
    margin-bottom: .3rem;
}

.dongtai .dongtai-title a {
    position: absolute;
    right: 0;
    top: .2rem;
    display: inline-block;
    width: .99rem;
    height: .43rem;
    background: url(../images/more.png) no-repeat;
    background-size: cover;
}

.dongtai .dongtai-hot {
    width: 66.66%;
    float: left;
    padding-right: .6rem;
}

.dongtai .dongtai-hot ul li {
    width: 46%;
    float: left;

}

.dongtai .dongtai-hot ul li:first-child {
    margin-right: 8%;
}

.dongtai .dongtai-hot ul li .date {
    width: .65rem;
    height: .66rem;
    background: url(../images/date-bg.jpg) no-repeat;
    text-align: center;
    display: inline-block;
    float: left;
}

.dongtai .dongtai-hot ul li p {
    width: 79%;
    height: .66rem;
    padding-top: .1rem;
    padding-left: .1rem;
    line-height: .24rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.dongtai .dongtai-hot ul li .img {
    margin: .3rem 0 .2rem 0;
    width: 3.43rem;
    height: 2.31rem;
    overflow: hidden;
}

.dongtai .dongtai-hot ul li .img img {
    width: 100%;
    height: auto;
}

.dongtai .dongtai-hot ul li:hover .img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.dongtai .dongtai-hot ul li .date .day {
    color: #fff;
    font-size: .3rem;
    font-family: 'Georgia';
    padding-top: .04rem;
}

.dongtai .dongtai-hot ul li .date .month {
    color: #fff;
    font-size: .14rem;
    font-family: 'Georgia';
}

.dongtai .dongtai-hot ul li span {
    color: #777;
    font-size: .12rem;
    line-height: .22rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.dongtai .dongtai-hot ul li a {
    float: right;
    color: #777;
    margin-top: .2rem;
    font-size: .12rem;
}

.dongtai .dongtai-hot ul li a:hover {
    color: #005193;
}

.dongtai .dongtai-list {
    width: 33.33%;
    display: inline-block;
}

.dongtai .dongtai-list ul li {
    line-height: .32rem;
}

.dongtai .dongtai-list ul li a {
    white-space: nowrap;
    display: inline-block;
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dongtai .dongtai-list ul li a::before {
    content: '';
    display: inline-block;
    width: .05rem;
    height: .05rem;
    border-radius: 50%;
    background-color: #bdbcbe;
    vertical-align: middle;
    margin-right: .1rem;
}

.dongtai .dongtai-list ul li span {
    float: right;
    color: #7f7f7f;
}

.main-2 {
    background: url(../images/bg-1.jpg) no-repeat center;
    background-size: cover;
    padding: .8rem 0;
}

.main-2 .fuwuyuanyou {
    width: 60%;
    float: left;
    display: inline-block;
}

.main-2 .juanzengzhinan {
    width: 40%;
    display: inline-block;
    padding-left: .44rem;
}

.main-2 h2 {
    font-size: .24rem;
    line-height: .36rem;
    width: .24rem;
    font-family: "PingFang SC";
    float: left;
    padding-top: .2rem;
}

.main-2 ul li:first-child {
    margin-left: 0rem;
}

.main-2 ul li {
    width: 1.76rem;
    float: left;
    margin-left: .84rem;
    text-align: center;
    height: 1.76rem;
    padding-top: 0.4rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.main-2 ul li .bg {
    width: 117%;
    height: 117%;
    position: absolute;
    top: 46%;
    left: 45%;
    background: url(../images/quan.png) no-repeat center;
    /* z-index: 1; */
    margin: -54% 0 0 -54%;
    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
    background-size: contain;
}

.main-2 ul li::before {
    content: '';
    width: 108%;
    height: 108%;
    border: 1px solid #d0d0d0;
    position: absolute;
    top: -0.08rem;
    left: -0.08rem;
    border-radius: 50%;
}

.main-2 ul li a .in img {
    width: .61rem;
    height: .68rem;
}

.main-2 ul li:hover a .in img {
    transition: 1s all;
    transform: rotateY(360deg);
}

.main-2 ul li a .in .main-2 ul li a p {
    font-family: "PingFang SC";
    font-size: .18rem;
    line-height: .32rem;
    font-weight: 700;
}

.main-2 ul li a:hover p {
    color: #333;
}


.main-3 {
    background: url(../images/bg-2.jpg) no-repeat;
    background-size: cover;
    padding: .6rem 0 0 0;
}

.main-3 .main-3-title {
    position: relative;
}

.main-3 .main-3-title h2 {
    width: 4.9rem;
    font-size: .24rem;
    line-height: .47rem;
    background: url(../images/minglu.png) no-repeat;
    background-size: cover;
    margin-right: 1rem;
    font-family: "PingFang SC";
    margin-bottom: .3rem;
}

.main-3 .main-3-title a {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: .99rem;
    height: .43rem;
    background: url(../images/more.png) no-repeat;
    background-size: cover;
}

.main-3 ul {
    display: flex;
}

.main-3 ul li {
    display: flex;
    margin-right: .24rem;
}

.main-3 ul li a {
    position: relative;
    top: 0;
    transition: .5s;
}

.main-3 ul li:hover a {
    top: -0.1rem;
    transition: .5s;
}

.main-3 ul li a span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, 0px);
    bottom: 50%;
    font-size: .24rem;
    color: #fff;
    font-family: "PingFang SC";
}

.main-4 {
    background: url(../images/bg-3.jpg) no-repeat;
    background-size: cover;
    padding: .45rem 0 .66rem 0;
    position: relative;
}

.main-4-title {
    height: .5rem;
}

.main-4-title h2 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 3.85rem;
    font-size: .24rem;
    height: .47rem;
    line-height: .64rem;
    color: #fff;
    background: url(../images/fanghua.png) no-repeat;
    background-size: cover;
    margin-right: 1rem;
    font-family: "PingFang SC";
    margin-bottom: 0.3rem;
}

.main-4 ul {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin: .2rem 0;
}

.main-4 ul li {
    float: left;
    font-size: .2rem;
    color: #fff;
    margin: 0 .4rem;
    line-height: .35rem;
    padding: 0 .15rem;
}

.main-4 ul li.select {
    background-color: #fff;
    color: #005193;
    position: relative;
    font-weight: bold;
}

.main-4 ul li.select::after {
    content: '';
    border: .1rem solid;
    border-color: #fff #87ceeb00 #87ceeb00 #9acd3200;
    position: absolute;
    top: .35rem;
    left: 50%;
    transform: translate(-50%, 0);
}

#container {
    color: #fff;
    text-align: center;
    margin-top: .8rem;
}

.main-4 .mySwiper.biyezhao .swiper-slide {
    background-color: rgba(255, 255, 255, 0);
}

.main-4 .mySwiper.fanghua .swiper-slide {
    background-color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.main-4 .mySwiper.biyezhao .swiper-slide .photo {
    width: 54%;
    height: 2.27rem;
    background-color: #00519373;
    overflow: hidden;
    position: relative;
    left: 23%;
}

.main-4 .mySwiper.fanghua .swiper-slide .photo {
    width: 100%;
    height: 2.19rem;
    overflow: hidden;
    position: relative;
}

.main-4 .mySwiper.fanghua .swiper-slide .photo img {
    width: 100%;
}

.main-4 .mySwiper.fanghua .swiper-slide .photo img.video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0px);
    display: block;
    width: .5rem;
    height: .5rem;
}


.pulse-animation {
    width: .38rem;
    height: .4rem;
    text-align: center;
    border: 0px solid #fff;
    z-index: 1;
    position: absolute;
}

.pulse-animation,
.pulse-animation:before,
.pulse-animation:after {
    position: absolute;
    top: 60%;
    left: 50%;
    height: .38rem;
    width: .4rem;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: pulse-animation 3s infinite;
    -khtml-animation: pulse-animation 3s infinite;
    -moz-animation: pulse-animation 3s infinite;
    -ms-animation: pulse-animation 3s infinite;
    -o-animation: pulse-animation 3s infinite;
    animation: pulse-animation 3s infinite;
}

.pulse-animation:before {
    -webkit-animation-delay: 0.9s;
    -khtml-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.pulse-animation:after {
    -webkit-animation-delay: 0.6s;
    -khtml-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes pulse-animation {
    70% {
        -webkit-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-animation {
    70% {
        -webkit-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 .4rem rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.main-4 .mySwiper.biyezhao .swiper-slide span {
    width: 54%;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: block;
    font-size: .16rem;
    line-height: .5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 .1rem;
    position: relative;
    left: 23%;

}

.main-4 .mySwiper.fanghua .swiper-slide span {
    color: #fff;
    display: block;
    font-size: .16rem;
    line-height: .5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 .1rem;
}

.main-4 .mySwiper.biyezhao.swiper-pointer-events,
.main-4 .mySwiper.fanghua.swiper-pointer-events {
    padding: .2rem 0;
    background-color: #ffffff30;
}

.main-4 .mySwiper.biyezhao .swiper-button-prev:after,
.main-4 .mySwiper.fanghua .swiper-button-prev:after {
    content: '';
    width: .58rem;
    height: .58rem;
    display: block;
    background: url(../images/left.png);
    background-size: cover;
}

.main-4 .mySwiper.biyezhao .swiper-button-next:after,
.main-4 .mySwiper.fanghua .swiper-button-next:after {
    content: '';
    width: .58rem;
    height: .58rem;
    display: block;
    background: url(../images/right.png);
    background-size: cover;
}

.main-4 .swiper-button-next, .main-4 .swiper-button-prev {
    width: .58rem;
    height: .58rem;
}

.main-4 .mySwiper.biyezhao .swiper-button-prev, .main-4 .mySwiper.biyezhao .swiper-rtl .swiper-button-next,
.main-4 .mySwiper.fanghua .swiper-button-prev, .main-4 .mySwiper.fanghua .swiper-rtl .swiper-button-next {
    left: 20%;
    right: auto;
}

.main-4 .mySwiper.biyezhao .swiper-button-next, .main-4 .mySwiper.biyezhao .swiper-rtl .swiper-button-prev,
.main-4 .mySwiper.fanghua .swiper-button-next, .main-4 .mySwiper.fanghua .swiper-rtl .swiper-button-prev {
    right: 20%;
    left: auto;
}

/* footer 部分 */
footer .contact-us {
    padding: .4rem 0;
    position: relative;
    margin-bottom: .4rem;
}

footer .contact-us p {
    font-size: .16rem;
    color: #666;
}

footer .contact-us p.address::before {
    content: url(../images/position.png);
    vertical-align: middle;
    padding-right: .2rem;
}

footer .contact-us p.tel::before {
    content: url(../images/tel.png);
    vertical-align: middle;
    padding-right: .2rem;
}

footer .contact-us img {
    position: absolute;
    right: 0;
    top: .4rem;
}

footer .copyright {
    border-top: 1px solid #ececec;
    text-align: center;
    position: relative;
}

footer .copyright ul {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: .25rem;
}

footer .copyright ul li {
    float: left;
    padding: 0 .25rem;
    border-right: 1px solid #666;
}

footer .copyright ul li:last-child {
    border-right: 1px solid rgba(102, 102, 102, 0);
}

footer .copyright p {
    height: .5rem;
    line-height: .5rem;
    margin-top: .43rem;
}

footer .ny {
    background-color: #005193;
}

footer .ny .contact-us p {
    font-size: .16rem;
    color: #fff;
}

footer .ny .contact-us p.address::before {
    content: url(../images/position-bai.png);
}

footer .ny .contact-us p.tel::before {
    content: url(../images/tel-bai.png);
}

footer .ny .copyright {
    border-top: 1px solid #ececec71;
}

footer .ny .copyright ul li {
    border-right: 1px solid #fff;
}

footer .ny .copyright ul li:last-child {
    border-right: 1px solid #fff0;
}

footer .ny .copyright ul li a {
    color: #fff;
}

footer .ny .copyright ul li:hover a {
    color: #e2610b;
}

footer .ny .copyright p {
    color: #fff;
}

/* 电气芳华 */

.banner.ny {
    position: relative;
}

.banner.ny>img {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0)
}

.banner.ny .shadow img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0)
}

.cont {
    background: url(../images/ny-bg.png) no-repeat right bottom;
    padding: .3rem 0;
}

.cont-left {
    width: 22%;
    float: left;
    display: inline-block;
}

.cont-left h2 {
    background: url(../images/lm_bg.png) no-repeat;
    background-size: cover;
    line-height: .96rem;
    color: #fff;
    font-size: .3rem;
    text-align: center;
}

.cont-left ul {
    border-left: 1px solid #ececec;
}

.cont-left ul .nav_menu li{
    display:none;
}

.cont-left ul li {
    line-height: .59rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ececec;
}

.cont-left ul li.select {
    background-color: #ececec;
}

.cont-left ul li a {
    position: relative;
    display: block;
    /* width: 100%; */
    text-align: center;
}

.ml1 .cont-left ul li a {
    text-align:left;
    text-indent: .6rem;
}

.ml1 .cont-left ul .nav_menu li a{
    text-indent: .8rem;
    color: #666;
}

.ml1 .cont-left ul .nav_menu li.on a{
    color: #005193;
}

.ml1 .cont-left ul .nav_menu li a::before{
    display:none;
}

.cont-left ul li a::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    height: 0;
    width: .05rem;
    background: #005193;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.cont-left ul li.select a::before {
    height: 100%;
}

.cont-left ul li:hover a::before {
    height: 100%;
}

.cont-left ul li:hover {
    background-color: #ececec;
}

.cont-left ul li:hover a span {
    color: #005193;
}

.cont-left ul li.select>a>span {
    color: #005193;
    font-weight: bold;
}

.cont-left ul li a span {
    font-size: .16rem;
}

.cont-right {
    width: 78%;
    display: inline-block;
    padding-left: .37rem;
    position: relative;
    padding-bottom: .37rem;
}

.cont-right h2.lanmu {
    font-size: .18rem;
    color: #000;
    line-height: .36rem;
    border-bottom: 1px solid #eaeaea;
    padding-left: .05rem;
}

.cont-right .position {
    position: absolute;
    right: 0;
    top: .1rem;
    color: #999;
    font-size: .12rem;
}

.cont-right .position a {
    color: #999;
}

.cont-right ul {
    margin-top: .35rem;
}

.cont-right ul.fanghua li {
    float: left;
    overflow: hidden;
    width: 32%;
    margin-right: .12rem;
    margin-bottom: .12rem;
}

.cont-right ul.fanghua li .img {
    width: 2.89rem;
    height: 1.82rem;
    overflow: hidden;
}

.cont-right ul.fanghua li .img-box,
.cont-right ul.fanghua li .img {
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding-right: 2px;
    padding-bottom: 2px;
}

.cont-right ul.fanghua li:hover .img-box,
.cont-right ul.fanghua li:hover .img {
    transition: 1s;
    border-right: 1px solid #005193;
    border-bottom: 1px solid #005193;
    padding-right: 2px;
    padding-bottom: 2px;
}

.cont-right ul.fanghua li:hover .img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.cont-right ul.fanghua li p {
    font-size: .14rem;
    line-height: .5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
}

/* 捐赠页面 */

.cont-right ul.juanzeng li {
    background: url(../images/icon-jzlc01.png) left center no-repeat;
    padding-left: .8rem;
    position: relative;
}

.cont-right ul.juanzeng li::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 1px;
    background: #dddcdc;
    left: .16rem;
    z-index: -1;
    bottom: -0.4rem;
    top: 0;
}

.cont-right ul.juanzeng li::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: .8rem;
    height: 1px;
    background: #dddcdc;
    top: 50%;
    left: 0;
    z-index: -1;
}

.cont-right ul.juanzeng li .juanzeng-lc {
    display: flex;
    margin-bottom: .4rem;
}

.cont-right ul.juanzeng li .juanzeng-lc .bz {
    width: .94rem;
    background: #d6e1ea;
    text-align: center;
    line-height: .94rem;
    color: #fff;
    font-size: .32rem;
    font-weight: bold;
    min-width: .94rem;
}

.cont-right ul.juanzeng li .juanzeng-lc .info {
    padding: .14rem .5rem;
    background: #e8f0f6;
}

.cont-right ul.juanzeng li .juanzeng-lc .info h2 {
    font-size: .2rem;
    color: #000000d9;
    font-weight: bold;
    line-height: .4rem;
}

.cont-right ul.juanzeng li .juanzeng-lc .info p {
    margin-top: .05rem;
}

/* 文字列表页 */
.cont-right ul.txt-list li {

    border-bottom: 1px solid #eaeaea;
}

.cont-right ul.txt-list li .title {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
    line-height: .36rem;
}

.cont-right ul.txt-list li .title::before {
    content: '';
    width: .05rem;
    height: .05rem;
    display: inline-block;
    background-color: #aaa;
    vertical-align: middle;
    border-radius: 50%;
    margin: 0 .25rem 0 .15rem;
}

.cont-right ul.txt-list li p {
    display: inline-block;
    float: right;
    color: #999;
    line-height: .36rem;
}

.cont-right ul.txt-list li:hover .title {
    color: #005193;
    font-weight: bold;
}

/* 院友名录 */
.yearBox {
    margin: 0 .4rem;
    position: relative;
}

.yearBox a {
    display: inline-block;
    width: 100%;
}

.yearBox .swiper {
    margin: .25rem 0;
}

.yearBox .swiper-slide {
    text-align: center;
    line-height: .58rem;
    background-color: #e9e9e9;
    border-radius: .05rem;
    cursor: pointer;
}

.yearBox .swiper-slide:hover,
.yearBox .swiper-slide#select {
    background: url(../images/year-bg.png) no-repeat;
    background-size: cover;
}

.yearBox .swiper-slide:hover a,
.yearBox .swiper-slide#select a {
    color: #fff;
}

.yearBox .swiper-button-next {
    width: .32rem;
    height: .58rem;
    background: url(../images/right-2.png) no-repeat;
    background-size: cover;
}

.yearBox .swiper-button-prev {
    width: .32rem;
    height: .58rem;
    background: url(../images/left-2.png) no-repeat;
    background-size: cover;
}

.yearBox .swiper-button-next:after, .yearBox .swiper-button-prev:after {
    opacity: 0;
}

.yearBox .swiper-button-next,
.yearBox .swiper-rtl .swiper-button-prev {
    right: -.4rem;
    top: .22rem;
}

.yearBox .swiper-button-prev,
.yearBox .swiper-rtl .swiper-button-next {
    left: -.4rem;
    top: .22rem;
}

.yuanyouminglu h2 {
    font-size: .16rem;
    font-weight: 400;
}

.yuanyouminglu ul li {
    float: left;
    width: 10%;
    margin-bottom: .2rem;
}

.yuanyouminglu ul li a {
    padding: 0 .19rem;
    display: block;
    width: .93rem;
    font-size: .18rem;
    margin: 0 auto;
    padding-left: .2rem;
    cursor: default;
    text-align-last: justify;
    text-align: justify;
}

/* 新闻详情页 */
.article {
    width: 73%;
    float: left;
    display: inline-block;
    padding-right: .5rem;
}

.article .arc-title h1 {
    font-size: .26rem;
    font-weight: bold;
    margin-bottom: .3rem;
    text-align: center;
}

.article .arc-info {
    margin-bottom: .2rem;
}

.article .arc-info span {
    padding-right: .2rem;
    font-size: .14rem;
    line-height: .25rem;
}

.article .arc-con p {
    padding: .22rem 0;
    line-height: .3rem;
    text-indent: .32rem;
    position: relative;
}

.article .arc-con img {
    display: block;
    /* width: 100% !important; */
    margin: 0.1rem auto;
    max-width: 7rem;
    height: auto !important;
}

.new-read {
    width: 27%;
    display: inline-block;
    padding: .2rem;
    box-shadow: 0 0 .15rem rgba(0, 0, 0, .1);
}

.dingwei {
    position: sticky;
    top: 1.5rem;
}

.new-read h2 {
    font-size: .18rem;
    font-weight: 400;
}

.new-read h2::before {
    content: url(../images/news.png);
    vertical-align: middle;
    margin-right: .15rem;
}

.new-read ul {
    margin-left: .07rem;
    margin-top: .2rem;
}

.new-read ul li {
    padding-left: .13rem;
    border-left: 1px solid #f3f3f3;
    position: relative;
    padding-bottom: .3rem;
}

.new-read ul li span {
    display: block;
    color: #999;
    line-height: .14rem;
    font-size: .14rem;
    margin-bottom: .05rem;
}

.new-read ul li span::before {
    content: url(../images/clock.png);
    margin-right: .08rem;
    vertical-align: middle;
    position: absolute;
    left: -0.07rem;
}

.new-read ul li a {
    line-height: .26rem;
}

.new-read ul li:hover a {
    color: #005193;
}

/* 毕业照片 弃用*/
.cont-right ul.txt-list.byzp li {
    border-bottom: 0px;
    width: 29%;
    float: left;
    box-shadow: 0px 0px 10px -3px #aaa;
    margin: 2%;
    text-align: center;
}

.cont-right ul.txt-list.byzp li:hover {
    background-color: #005193;
}

.cont-right ul.txt-list.byzp li:hover .title {
    color: #fff;
}

.cont-right ul.txt-list.byzp li .title {
    line-height: .5rem;
    width: 100%;
}

.cont-right ul.txt-list.byzp li .title::before {
    width: 0px;
    margin: 0px;
}

/* graduate_photo */
.graduate_photo_nav {
    margin-bottom: .5rem;
}

.graduate_photo_nav li {
    width: 32%;
    float: left;
    font-size: .2rem;
    font-weight: 700;
    text-align: center;
    padding: 0.15rem;
    color: #fff;
    margin: .05rem;
    border-radius: .1rem;
}

.graduate_photo_nav li:nth-child(1) a {
    color: #005193;
}

.graduate_photo_nav li:nth-child(2) a {
    color: #e2610b;
}

.graduate_photo_nav li:nth-child(3) a {
    color: #115740;
}

.graduate_photo_nav li:nth-child(1) {
    border: 2px solid #005193;
}

.graduate_photo_nav li:nth-child(2) {
    border: 2px solid #e2610b;
}

.graduate_photo_nav li:nth-child(3) {
    border: 2px solid #115740;
}

.graduate_photo_nav li.select:nth-child(1) a,
.graduate_photo_nav li.select:nth-child(2) a,
.graduate_photo_nav li.select:nth-child(3) a {
    color: #fff;
}

.graduate_photo_nav li.select:nth-child(1) {
    background-color: #005193;
}

.graduate_photo_nav li.select:nth-child(2) {
    background-color: #e2610b;
}

.graduate_photo_nav li.select:nth-child(3) {
    background-color: #115740;
}

#graduate_photo h2 {
    line-height: .5rem;
    border-radius: .1rem;
    color: #fff;
    text-align: center;
    font-size: .18rem;
}

#graduate_photo .dqgc h2 {
    background: url(../images/bg1.jpg);
}

#graduate_photo .zdh h2 {
    background: url(../images/bg2.jpg);
}

#graduate_photo .cnkx h2 {
    background: url(../images/bg3.jpg);
}

#graduate_photo ul {
    margin: .2rem 0rem;
}

#graduate_photo ul li {
    width: 32%;
    float: left;
    margin: 0.1rem 0.05rem;
    box-shadow: 0px 0px 10px -3px #aaa;
    text-align: center;
    line-height: .5rem;
    padding: 0 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

#graduate_photo ul li:hover {
    color: #fff;
}

#graduate_photo ul li::before {
    content: '';
    width: .02rem;
    height: .3rem;
    position: absolute;
    left: 0;
    top: .1rem;
}

#graduate_photo .dqgc ul li::before,
#graduate_photo .dqgc ul li:hover {
    background-color: #005193;
}

#graduate_photo .zdh ul li::before,
#graduate_photo .zdh ul li:hover {
    background-color: #e2610b;
}

#graduate_photo .cnkx ul li::before,
#graduate_photo .cnkx ul li:hover {
    background-color: #115740;
}

#graduate_photo ul li:hover a {
    color: #fff;
}

#graduate_photo ul li a::before {
    width: 0px;
    margin: 0px;
}
.tips{
    background-color:#edf3f7;
    padding: .34rem;
    color: #005193;
    margin-top: .2rem;
    text-indent: .3rem;
    line-height: .25rem;
}