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

img {
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

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;
    }
}

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%;
}


/*原文件配置*/

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

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

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

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

a:hover {
    color: #c3272b;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*纵向居中*/

.v_middle {
    vertical-align: middle;
}


/*横向居中*/

.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-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 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

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

.mt_8 {
    margin-top: .8rem;
}

.mr_100 {
    margin-right: 1rem;
}

.mr_40 {
    margin-right: .4rem;
}

@media (max-width:767px) {
    .mr_100,
    .mr_40 {
        margin-right: 0;
    }
}


/*全局样式 start*/

.header {
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}

.header .logo {
    height: 70px;
}

.header .logo img {
    /* height: .4rem; */
    height: 80%;
}

.nav>li>a {
    color: #FFF;
    line-height: 70px;
    padding: 0 .4rem;
    height: 70px;
}

.nav>li i {
    position: absolute;
    width: .18rem;
    height: .18rem;
    border-right: 2px #FFF solid;
    border-top: 2px #FFF solid;
    right: .4rem;
    top: .3rem;
    transform: rotate(45deg);
    display: none;
}

.nav .on::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 20px;
    height: 2px;
    width: 20px;
    background-color: #3269ff;
    transform: translateX(-50%);
}

.nav .subnav {
    position: absolute;
    background-color: rgba(0, 0, 0, .3);
    width: 1.5rem;
    padding-left: .4rem;
    display: none;
    padding-bottom: .2rem;
}

.nav .subnav a {
    color: #FFF;
    line-height: 2;
}

@media (min-width:1025px) {
    .nav>li:hover .subnav {
        display: block;
    }
    .nav .subnav a:hover {
        color: #3269ff;
    }
    .nav .on::before,
    .nav>li:hover::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 20px;
        height: 2px;
        width: 20px;
        background-color: #3269ff;
        transform: translateX(-50%);
    }
}

.m-btn {
    display: none;
    background: url(../images/m-btn.svg)no-repeat center;
    background-size: 100%;
    width: .5rem;
    height: .9rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    z-index: 101;
}

.m-btn.close {
    background-image: url(../images/close.svg);
    background-size: 80%;
}

@media (max-width:1199px) {
    .header .logo {
        height: .9rem;
    }
    .nav .on::before {
        display: none;
    }
    .m-btn,
    .nav>li i {
        display: block;
    }
    .nav {
        flex-flow: column;
        position: fixed;
        right: -80%;
        width: 40%;
        height: calc(100% - .9rem);
        top: .9rem;
        background-color: rgba(0, 0, 0, .3);
        z-index: 101;
        overflow-y: auto;
    }
    .nav>li>a {
        line-height: .7rem;
        height: .7rem;
    }
    .nav .subnav {
        position: inherit;
        padding-left: .6rem;
        width: 100%;
        background: none;
    }
}

@media (max-width:540px) {
    .nav {
        width: 50%;
    }
}

.banner {
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner .txt {
    font-size: .7rem;
    color: #FFF;
    line-height: 1.5;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.banner .swiper-pagination {
    bottom: 1.1rem;
}
.banner .swiper-pagination-bullet{
    width: .14rem;
    height: .14rem;
    background: #ffffff;
    opacity: .6;
}
.banner .swiper-pagination-bullet-active{
    opacity: 1;
    background: #007aff;
}

@media (max-width:540px) {
    .banner .txt {
        font-size: .5rem;
    }
}

.footer {
    background-color: #1a1a22;
    padding: .3rem 0;
    color: #FFF;
    margin-top: .7rem;
}

.footer .container {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
}

.footer .submenu {
    margin-top: .15rem;
    color: rgba(255, 255, 255, .5);
    font-size: .14rem;
    line-height: 2;
}

.footer .submenu a {
    width: 40%;
    color: rgba(255, 255, 255, .5);
}

.footer .submenu a:nth-child(even) {
    width: 60%;
}

.footer .code img {
    width: 70px;
    height: 70px;
    display: block;
    margin-top: 5px;
}

@media (max-width:1440px) {
    .footer .container {
        padding-left: 0;
        padding-right: 0;
    }
}

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

@media (max-width:767px) {
    .footer .item {
        width: 100%;
        margin: .2rem 0;
    }
}

.home-content {
    background-color: #FFF;
    z-index: 9;
    padding: .2rem .9rem .5rem 1.9rem;
    margin-top: -1rem;
}

.home-content .pic {
    width: 8.15rem;
    overflow: hidden;
}

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

.home-content .title {
    font-size: .4rem;
    font-weight: bold;
}

.home-content .text {
    line-height: 2;
    margin-top: .2rem;
    line-height: 2;
}

.home-content a {
    width: 2rem;
    height: .6rem;
    border-radius: .3rem;
    background-color: #3269ff;
    line-height: .6rem;
    color: #FFF;
    margin-top: .7rem;
    box-shadow: 0 .1rem .2rem rgba(50, 105, 255, .45);
}

@media (max-width:1199px) {
    .home-content {
        padding-left: .2rem;
        padding-right: .2rem;
        margin-top: 0;
    }
    .banner .swiper-pagination{
        bottom: .1rem;
    }
}

@media (max-width:1023px) {
    .home-content .pic {
        width: 6rem;
    }
}

@media (max-width:540px) {
    .home-content .pic {
        width: 100%;
    }
}

.home-tab {
    width: 100%;
    background-color: #3269ff;
}

.home-tab .title {
    font-size: .22rem;
    color: #FFF;
    height: 1.25rem;
    line-height: 1.25rem;
    margin-right: 2rem;
    cursor: pointer;
}

.home-tab .title:last-child {
    margin-right: 0;
}

.home-tab .on::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: .1rem transparent solid;
    border-right: .1rem transparent solid;
    border-bottom: .1rem #FFF solid;
    transform: translateX(-50%);
}

.home-tab-content {
    margin-top: .4rem;
    overflow: hidden;
}

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

@media (max-width:767px) {
    .home-tab .title {
        margin-right: .4rem;
    }
}

.pub-title {
    font-size: .4rem;
    font-weight: bold;
    margin-top: .7rem;
}

.pub-title img {
    height: .11rem;
    margin: 0 .1rem;
}

.warp {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
}

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

.pub-text {
    line-height: 2;
    color: #555;
    margin-top: .6rem;
}

.img img,
.pub-img img {
    max-width: 100%;
}

@media (max-width:1023px) {
    .pub-content .pub-img {
        width: 5rem;
    }
}

@media (max-width:767px) {
    .pub-content {
        flex-flow: column;
    }
    .pub-title {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .pub-content .pub-img {
        width: 100%;
    }
}

.copyright{
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: -0.1rem;
}
.copyright a{
    color: #ffffff;
    font-size: .16rem;
}