* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}


/* @media (max-width:950px) {
    html {
        font-size: 8.2vw;
    }
} */

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}

body {
    color: #333;
    background: #ffffff;
    font: .16rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
}

@media (max-width:767px) {
    body {
        font-size: 12px;
    }
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #ffce00;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    width: 100%;
    background-color: #FFFFFF;
}

.header .logo {
    height: 1.25rem;
}

.header .logo img {
    height: .9rem;
}

.header .lang {
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn {
    display: none;
    background: url(../images/menu.png)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav {
    /* margin-right: 2.6rem; */
    margin: 0 auto;
}

.nav li {
    margin-right: .3rem;
    height: 1.25rem;
}

.nav li>a {
    line-height: 2;
    /* color: rgb(255, 206, 0); */
    color: #F08400;
    font-size: .18rem;
    padding: 0 .2rem;
    min-width: 1.1rem;
}

.nav li.on>a {
    /* background-color: rgb(255, 206, 0); */
    background-color: #F08400;
    color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.nav .drop {
    /* width: 2.2rem; */
    min-width: 100%;
    left: 0;
    top: 1.25rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: rgba(117, 116, 116, .5);
    padding: .2rem;
    line-height: 2;
    white-space: nowrap;
}

.nav .drop::after {
    content: '';
    position: absolute;
    left: .4rem;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 12px transparent solid;
    border-right: 12px transparent solid;
    border-bottom: 12px rgb(117, 116, 116) solid;
}

.nav .drop a {
    color: #FFF;
}

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner .swiper-button-white {
    width: 1rem;
    height: 1rem;
    background-color: rgba(0, 0, 0, .6);
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.banner .swiper-button-prev {
    left: .7rem;
}

.banner .swiper-button-next {
    right: .7rem;
}

.footer {
    width: 100%;
    background: url(../images/banner.png)no-repeat center;
    background-size: cover;
    padding: .7rem 0;
    color: #FFF;
    font-size: .18rem;
    line-height: 2;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1;
}

.footer a {
    color: #FFF;
}

.footer .copyright {
    z-index: 9;
    border-top: 1px #FFF dashed;
    padding-top: .4rem;
    margin-top: .4rem;
}

.footer .container {
    z-index: 9;
}

.footer .title {
    font-size: .2rem;
    font-weight: bold;
}

.footer .logo {
    height: 1.75rem;
    margin-right: .7rem;
}

.footer .logo img {
    height: 100%;
}

.footer .item {
    /* width: 1.4rem; */
    margin-left: .4rem;
}

.footer .item .erwma {
    width: 1.4rem;
    height: 1.4rem;
    padding: 5px;
    background-color: #FFF;
    margin: 0 auto;
    margin-top: .1rem;
    overflow: hidden;
}

.footer .item .erwma img {
    width: 100%;
}

.submenu {
    width: 100%;
    background-color: rgba(198, 166, 110, .17);
    height: 1rem;
    font-size: .14rem;
}

.submenu a {
    border: 1px rgb(158, 155, 155) dashed;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 1.3rem;
    height: .6rem;
    overflow: hidden;
    color: rgb(158, 155, 155);
    margin-right: .8rem;
}

.submenu a img {
    max-width: 100%;
    max-height: 100%;
}

.submenu a:last-child {
    margin-right: 0;
}

.home-logo  {
    padding: .2rem 0;
    background: rgb(198, 166, 110, .17);
}

.home-logo .swiper-slide {
    text-align: center;

}

.home-logo .swiper-slide img {
    width: 1.2rem;
    height: .6rem;
    object-fit: contain;
}

.home-about {
    width: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    /* padding-bottom: .7rem;
    padding-top: .9rem; */
}

.home-about .container {
    justify-content: flex-end;
}

.home-about .pagination-bpx {
    position: absolute;
    left: 50%;
    bottom: 0.4rem;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
}

.home-about .pagination-bpx .swiper-pagination {
    width: 8.2rem;
    right: 0;
    bottom: 0;
}

.home-about .swiper-slide {
    padding-top: .9rem;
    padding-bottom: .9rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.home-about .text-content {
    width: 8.2rem;
    line-height: 2.2;
}

.home-about .title {
    font-size: .32rem;
}

.home-about h3 {
    font-size: .24rem;
    margin-top: .3rem;
}

.home-about .des {
    font-size: .2rem;
}

.home-about .more {
    width: 2.4rem;
    height: .8rem;
    border-radius: .4rem;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    background-color: rgb(255, 206, 0);
    font-size: .2rem;
    margin-top: .4rem;
    margin-left: auto;
    margin-right: auto;
}

.home-about .swiper-container {
    /* padding-bottom: .9rem; */
    /* bottom: 0; */
}

.home-about .swiper-pagination-bullet {
    width: .2rem;
    height: .2rem;
    background-color: #dddada;
    opacity: 1;
    margin: 0 .1rem !important;
}

.home-about .swiper-pagination-bullet-active {
    background-color: #ffce00;
}

.pub-title {
    line-height: 1.5;
    font-size: .32rem;
    font-weight: bold;
}

.home-gongyi {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: .7rem 0;
}

.home-gongyi .content {
    margin-top: .4rem;
}

.home-gongyi .swiper-slide {
    overflow: hidden;
}

.home-gongyi img {
    max-width: 100%;
}

.home-gongyi .text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .8);
    color: #FFF;
    font-size: .3rem;
    padding: 0 .5rem;
    height: 1.1rem;
    width: 100%;
}

.home-gongyi .swiper-button-next {
    right: -.6rem;
}

.home-gongyi .swiper-button-prev {
    left: -.6rem;
}

.home-xinxi {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: .7rem 0;
}

.home-xinxi .content {
    width: 8rem;
}

.home-xinxi .swiper-container {
    padding-bottom: .7rem;
}

.home-xinxi .item {
    border-bottom: 1px #dddada dashed;
    padding-top: .3rem;
    padding-bottom: .3rem;
    line-height: 1.8;
}

.home-xinxi .tit {
    font-size: .2rem;
    font-weight: bold;
    min-width: 0;
    margin-right: .4rem;
}

.home-xinxi .date {
    font-size: .14rem;
    font-weight: bold;
}

.home-xinxi .des {
    color: #666;
    margin-top: .1rem;
    line-height: 1.8;
}

.home-xinxi .swiper-pagination-bullet {
    width: .2rem;
    height: .2rem;
    background-color: #dddada;
    opacity: 1;
    margin: 0 .1rem !important;
}

.home-xinxi .swiper-pagination-bullet-active {
    background-color: #ffce00;
}

.home-zuopin {
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: .7rem 0;
    line-height: 1.8;
}

.home-zuopin .content {
    margin-top: 1rem;
}

.home-zuopin .pic {
    height: 3.6rem;
    overflow: hidden;
}

.home-zuopin .pic img {
    max-width: 100%;
    max-height: 100%;
}

.home-zuopin .tit {
    margin-top: .3rem;
    font-size: .2rem;
}

.home-zuopin .swiper-button-next {
    right: -.6rem;
}

.home-zuopin .swiper-button-prev {
    left: -.6rem;
}

.home-zuopin .more {
    width: 2.2rem;
    height: .5rem;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    border: 1px #333 solid;
    margin-left: auto;
    margin-right: auto;
    margin-top: .5rem;
}

.home-juan {
    padding-top: .7rem;
    padding-bottom: .7rem;
}

.home-juan .content {
    margin-top: .4rem;
}

.home-juan .pic-con {
    width: 5.95rem;
    overflow: hidden;
    margin-right: .5rem;
}

.home-juan .pic-con img {
    width: 100%;
}

.home-juan .erwma-con {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .5);
    width: 3.1rem;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    padding-bottom: .2rem;
}

.home-juan .erwma-con .tit {
    font-weight: bold;
    color: rgb(187, 82, 102);
    font-size: .24rem;
    line-height: 2;
}

.home-juan .erwma-con .txt {
    margin-top: .1rem;
    font-size: .18rem;
    color: #666;
}

.home-juan .title {
    font-size: .28rem;
    line-height: 1.8;
}

.home-juan .text {
    line-height: 2.4;
    margin-top: .2rem;
    font-size: .2rem;
}

.pub-banner {
    overflow: hidden;
}

.pub-banner .title {
    position: absolute;
    left: 50%;
    bottom: .4rem;
    background-color: #FFF;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    font-size: .36rem;
    font-weight: bold;
    padding: 0 .6rem;
    line-height: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.pub-banner img {
    width: 100%;
}

.subnav {
    width: 100%;
    background-color: rgba(198, 166, 110, .4);
    line-height: .7rem;
}

.subnav a {
    padding: 0 .7rem;
}

.subnav a.on {
    background-color: #FFF;
}

.search {
    margin-left: auto;
    margin-right: auto;
    margin-top: .7rem;
    width: 8rem;
    height: .7rem;
    border-radius: .4rem;
    -webkit-border-radius: .4rem;
    -moz-border-radius: .4rem;
    -ms-border-radius: .4rem;
    -o-border-radius: .4rem;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.search input[type='text'] {
    border: 1px rgb(171, 167, 167) solid;
    border-radius: .4rem 0 0 .4rem;
    -webkit-border-radius: .4rem 0 0 .4rem;
    -moz-border-radius: .4rem 0 0 .4rem;
    -ms-border-radius: .4rem 0 0 .4rem;
    -o-border-radius: .4rem 0 0 .4rem;
    overflow: hidden;
    background: #FFF url(../images/search.svg)no-repeat .3rem center;
    background-size: .3rem;
    border-right: 0;
    padding-left: .8rem;
    font-size: .18rem;
}

.search input[type='submit'] {
    width: 1.6rem;
    background-color: #ffce00;
    color: #FFF;
    font-size: .24rem;
}

.search input[type='submit']:active {
    background-color: #F08400;
}

.page {
    margin-top: .6rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.page a {
    line-height: .4rem;
    overflow: hidden;
    padding: 0 .15rem;
    margin: 0 3px;
}

.page .prev,
.page .next {
    width: .4rem;
    border: 0;
    height: .4rem;
}

.page .prev::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-left: 1px #797979 solid;
    border-top: 1px #797979 solid;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.page .next::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-right: 1px #797979 solid;
    border-top: 1px #797979 solid;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.page .on {
    color: rgb(254, 102, 55);
    font-weight: bold;
}

.page .active a {
    color: rgb(254, 102, 55);
    font-weight: bold;
}

.page span {
    line-height: 38px;
    margin: 0 3px;
}

.picture-text {
    margin-top: .4rem;
}

.picture-text .item {
    width: 24%;
    margin-right: 1.333%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: .15rem;
    margin-top: .4rem;
    padding-bottom: .8rem;
}

.picture-text .item:nth-of-type(4n) {
    margin-right: 0;
}

.picture-text .item .pic {
    height: 2.4rem;
    overflow: hidden;
}

.picture-text .item .tit {
    font-size: .18rem;
    font-weight: bold;
    margin-top: .1rem;
    line-height: 1.8;
    min-height: .66rem;
}

.picture-text .item .des {
    color: #666;
    margin-top: .1rem;
    line-height: 1.8;
}

.picture-text .item .date {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: .6rem;
    background-color: rgb(198, 166, 110);
    color: #FFF;
    font-weight: bold;
}

.picture-text .item .date img {
    width: .24rem;
    margin-right: .2rem;
}

.details {
    background-color: rgba(198, 195, 195, .16);
    padding: .5rem 1rem;
    margin-bottom: .8rem;
    margin-top: .5rem;
}

.details h1 {
    font-size: .24rem;
    line-height: 1.8;
}

.details .time {
    border-bottom: 1px #cdc9c9 dashed;
    color: #999;
    margin-top: .2rem;
    padding-bottom: .2rem;
    font-weight: bold;
    font-size: .18rem;
}

.details .body {
    padding: .2rem;
    line-height: 2;
    font-size: .18rem;
}

.details .body img {
    max-width: 100%;
}

.hua-details {
    background-color: rgba(198, 195, 195, .16);
    padding: .9rem 1rem;
    margin-bottom: .8rem;
    margin-top: .5rem;
}

.hua-details .pic {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hua-details .pic img {
    width: 100%;
}

.hua-details .title {
    font-size: 24px;
    font-weight: bold;
    line-height: 2;
    margin-top: .3rem;
}

.hua-details .author {
    margin-top: .2rem;
}

.hua-list {
    margin-top: .4rem;
}

.hua-list .item {
    width: 23.5%;
    margin-right: 2%;
    margin-top: .4rem;
}

.hua-list .item:nth-of-type(4n) {
    margin-right: 0;
}

.hua-list .item .pic-con {
    padding: .15rem .15rem .75rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.hua-list .item .pic {
    height: 2.4rem;
    overflow: hidden;
}

.hua-list .item .tit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: .6rem;
    font-size: .18rem;
    font-weight: bold;
    color: #FFF;
    background-color: rgb(198, 166, 110);
}

.hua-list .item .author {
    line-height: 2;
    margin-top: .2rem;
    color: #666;
}

.text-list .item {
    padding: .4rem .3rem;
    border-bottom: 1px #99BBED dashed;
}

.text-list .item .date {
    width: .95rem;
    line-height: 1.8;
    font-size: .3rem;
    margin-right: .7rem;
    font-weight: bold;
    color: rgb(198, 166, 110);
}

.text-list .item .date::after {
    content: '';
    position: absolute;
    right: -.35rem;
    top: 50%;
    width: 1px;
    height: .5rem;
    background-color: #FFEEEE;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.text-list .item .date span {
    border: 1px rgb(198, 166, 110) solid;
    font-size: 16px;
    color: #9E9E9E;
    font-weight: normal;
}

.text-list .item .des {
    color: #8D8D8D;
    margin-top: .1rem;
    line-height: 1.8;
}

.text-list .item .tit {
    font-weight: bold;
    font-size: .18rem;
}

@media (min-width:1025px) {
    .nav li:hover>a {
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border: 1px #FFF solid;
    }
    .nav li:hover .drop {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .nav .drop a:hover {
        text-decoration: underline;
    }
    .home-about .more:hover {
        background-color: #FFF;
        border: 1px rgb(255, 206, 0) solid;
        color: #333;
    }
    .home-gongyi .swiper-slide:hover img,
    .home-zuopin .swiper-slide:hover .pic img,
    .picture-text .item:hover .pic img,
    .hua-list .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-zuopin .more:hover {
        background-color: #ffce00;
        border-color: #ffce00;
        color: #333;
    }
    .subnav a:hover {
    background-color: #FFF;
}
}

@media (max-width:1199px) {
    .header .logo {
        height: 1rem;
    }
    .header .logo img {
        height: .8rem;
    }
    .fixed {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999;
    }
    .menu-btn {
        display: block;
    }
    .header .lang,
    .nav .drop::after,
    .subnav {
        display: none;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1rem;
        margin-top: 0;
        bottom: 0;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        padding: .2rem .3rem;
    }
    .nav li {
        height: auto;
        padding: .2rem 0;
        display: block;
        margin-right: 0;
    }
    .nav li>a {
        color: #333;
        padding: 0;
        min-width: 100%;
        text-align: left;
        font-size: 14px;
        display: block;
    }
    .nav li.on a{
        background-color: #FFF;
        color: #333
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: .3rem;
        width: 10px;
        height: 10px;
        border-right: 1px rgba(120, 165, 237, 0.5) solid;
        border-top: 1px rgba(120, 165, 237, 0.5) solid;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
        padding-top: .2rem;
        white-space: normal;
    }
    .nav .drop a {
        color: #666;
        line-height: 2;
    }
    .nav .cur .arrow {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
    }
    .banner .swiper-button-prev {
        left: .3rem;
    }
    .banner .swiper-button-next {
        right: .3rem;
    }
    .banner .swiper-button-white {
        background-size: .3rem;
        width: .8rem;
        height: .8rem;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }
    .footer {
        padding: .4rem 0;
    }
    .footer .logo {
        height: 1.2rem;
    }
    .footer .item .erwma {
        width: 1.2rem;
        height: 1.2rem;
    }
    .footer .item {
        width: 1.2rem;
    }
    .submenu {
        padding: 0 .2rem;
    }
    .submenu a {
        width: 1.6rem;
    }
    .home-gongyi .swiper-button-next,
    .home-zuopin .swiper-button-next {
        right: .1rem;
        background-size: .2rem;
    }
    .home-gongyi .swiper-button-prev,
    .home-zuopin .swiper-button-prev {
        left: .1rem;
        background-size: .2rem;
    }
    .home-xinxi {
        background: none !important;
    }
    .home-xinxi .content {
        width: 100%;
    }
    .pub-banner img {
        width: auto;
        height: 4.5rem;
    }
    .details {
        background: none;
        margin-top: 0;
        padding: 0 .2rem;
    }
    .details h1,
    .hua-details .title {
        font-size: 18px;
    }
    .details .body {
        padding-left: 0;
        padding-right: 0;
    }
    .hua-details {
        background: none;
        margin-top: 0;
        padding: 1rem 0;
    }
    .picture-text .item,
    .hua-list .item {
        width: 32%;
    }
    .picture-text .item:nth-of-type(4n),
    .hua-list .item:nth-of-type(4n) {
        margin-right: 2%;
    }
    .picture-text .item:nth-of-type(3n),
    .hua-list .item:nth-of-type(3n) {
        margin-right: 0;
    }
    .text-list .item .date {
        width: 1.4rem;
        font-size: 20px;
    }
    .text-list .item .date span {
        font-size: 14px;
    }
    .text-list .item .tit {
        font-size: 16px;
    }
}

@media (max-width:950px) {
    .home-about {
        background: none !important;
    }
    .home-about .swiper-slide {
        background: none !important;
    }
    .home-about .pagination-bpx {
        max-width: 100%;
    }
    .home-about .pagination-bpx .swiper-pagination {
        width: 100%;
    }
    .home-about .text-content {
        width: 100%;
    }
    .picture-text .item .tit {
        font-size: 14px;
        min-height: .8rem;
    }
}

@media (max-width:767px) {
    .home-juan .text {
        font-size: 14px;
        line-height: 1.8;
    }
    .footer .erwma-con {
        display: none;
    }
    .footer .logo {
        margin-right: .3rem;
    }
    .banner .swiper-button-white {
        background-size: .2rem;
        width: .6rem;
        height: .6rem;
    }
    .banner .swiper-button-prev {
        left: .2rem;
    }
    .banner .swiper-button-next {
        right: .2rem;
    }
    .submenu a {
        margin-right: .2rem;
    }
    .home-about .title {
        font-size: 18px;
    }
    .home-about h3 {
        font-size: 14px;
    }
    .pub-title {
        font-size: 20px;
    }
    .home-gongyi .text {
        font-size: 18px;
    }
    .picture-text .item,
    .hua-list .item {
        width: 49%;
    }
    .picture-text .item:nth-of-type(3n),
    .hua-list .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .picture-text .item:nth-of-type(2n),
    .hua-list .item:nth-of-type(2n) {
        margin-right: 0;
    }
    .details h1,
    .hua-details .title,
    .hua-list .item .tit,
    .text-list .item .tit {
        font-size: 14px;
    }
    .text-list .item .date span {
        font-size: 12px;
    }
}

@media (max-width:480px) {
    .submenu {
        height: auto;
        padding-top: .2rem;
        padding-bottom: .2rem;
    }
    .submenu a {
        width: 49%;
        margin-right: 2%;
        margin-top: .05rem;
        margin-bottom: .05rem;
        height: 1rem;
    }
    .submenu a:nth-child(even) {
        margin-right: 0;
    }
    .home-about {
        /* padding-top: .4rem;
        padding-bottom: .4rem; */
    }
    .home-about .swiper-slide {
        padding-top: .4rem;
        padding-bottom: .8rem;
    }
    .home-about .pagination-bpx {
        bottom: .2rem;
    }
    .home-gongyi .swiper-button-next {
        right: .05rem;
        background-size: .25rem;
    }
    .home-gongyi .swiper-button-prev {
        left: .05rem;
        background-size: .25rem;
    }
    .home-gongyi .text,
    .home-xinxi .tit,
    .home-zuopin .tit {
        font-size: 14px;
    }
    .home-zuopin {
        padding-top: 0;
    }
    .home-juan .pic-con {
        width: 100%;
        margin-right: 0;
    }
    .home-juan .title {
        margin-top: .4rem;
        font-size: 14px;
    }
    .pub-banner .title {
        font-size: 24px;
    }
    .search {
        width: 90%;
        margin-top: .3rem;
    }
    .picture-text .item {
        width: 49%;
    }
    .picture-text .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .picture-text .item:nth-of-type(2n) {
        margin-right: 0;
    }
    .picture-text .item {
        width: 100%;
        margin-right: 0;
    }
    .picture-text .item .pic {
        height: 4rem;
    }
    .picture-text .item .tit {
        min-height: auto;
    }
    .page {
        justify-content: center;
    }
    .page .prev,
    .page .next {
        height: .8rem;
        margin: 0 .6rem;
    }
    .hua-details .pic {
        width: 100%;
    }
}