@charset "utf-8"; #loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

html {
    width: 100%;
    min-width: 320px;
    font-size: 100px;
    overflow-x: hidden;
}

.overflow {
    height: 100vh;
    overflow: hidden !important;
}

.container {
    width: 1400px;
    max-width: 84%;
    margin: 0 auto;
    font-size: .16rem;
}

.header {
    /* position: fixed; */
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1000;
    width: 100%;
    /* background-image: url("../images/head_bg1.png"); */
    background-repeat: no-repeat;
    /* background-position: 100% 50%; */
    background-color: #B01013;
    background-size: auto 100%;
    /* box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.302); */
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.header .container {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header .right-wrapper {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 90%;
    margin:  auto;
    -webkit-transform: translateY(-1rem);
    -moz-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    -o-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s;
    -moz-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s;
    -o-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s;
    transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s;
}

.header .right-wrapper .top-box {
    display: -ms-flexbox;
    display: none;
    align-items: flex-start;
}

.header.show .right-wrapper {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

.logo {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: .32rem 0;
}

.logo::before {
    position: absolute;
    top: 0;
    right: -2.5%;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 105%;
    height: 100%;
    -webkit-transform: skew(-15deg);
    -moz-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    -o-transform: skew(-15deg);
    transform: skew(-15deg);
    background: #B01013;
    content: "";
}

.logo a {
    display: block;
    position: relative;
    z-index: 2;
}

.logo img {
    max-height: .7rem;
    display: none;
}

.search-box {
    width: 2.95rem;
    background: #fff;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    border-radius: .36rem;
}

.search-box .form {
    display: -ms-flexbox;
    display: flex;
}

.search-box .input {
    width: calc(100% - .36rem);
    height: .36rem;
    padding: 0 .1rem 0 .2rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #333;
    text-align: left;
}

.search-box .input::placeholder {
    color: #9E9E9E;
}

.search-box .submit {
    width: .36rem;
    height: .36rem;
    vertical-align: top;
    background-image: url("../images/search1.png");
    background-repeat: no-repeat;
    background-position: 30% 50%;
    background-color: transparent;
    background-size: auto;
}

.top-link {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.top-link a {
    position: relative;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.38rem;
    color: #fff;
    text-align: left;
}

.top-link a:hover {
    color: #fff;
    text-decoration: underline;
}

.top-link span {
    display: inline-block;
    width: 1px;
    height: 13px;
    margin: 0 .22rem;
    background: #fff;
}

.nav {
    width: 100%;
    margin: .08rem 0 0;
}

.nav ul {
    display: flex;
    justify-content: space-between;
}

.nav li {
    position: relative;
}

.nav li a {
    position: relative;
    display: block;
    font-size: .22rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #fff;
    text-align: center;
}

.nav li > a {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.nav li:hover .sub-nav {
    visibility: visible;
    top: calc(100% + 10px);
    opacity: 1;
}

.nav .sub-nav {
    position: absolute;
    top: 180%;
    right: auto;
    bottom: auto;
    left: calc(50% - .8rem);
    z-index: 1;
    width: 1.6rem;
    padding: 0 0 .05rem;
    background: #B01013;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.2);
    background: white;
    border-radius: 2px;
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.nav .sub-nav::before {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 100%;
    height: 3px;
    background: #B01013;
}

.nav .sub-nav a {
    padding: .14rem 5px;
    font-size: .16rem;
    font-weight: 400;
    line-height: .24rem;
    color: #333;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.nav .sub-nav a:hover {
    color: #fff;
    background: #B01013;
}

.nav .sub-nav .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 10px;
    overflow: hidden;
}

.nav .sub-nav .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: #B01013;
    -webkit-transform: translate(0px, 6px) rotate(45deg);
    -moz-transform: translate(0px, 6px) rotate(45deg);
    -ms-transform: translate(0px, 6px) rotate(45deg);
    -o-transform: translate(0px, 6px) rotate(45deg);
    transform: translate(0px, 6px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.banner {font-size: 0;width: 100%;/* margin: 0.1rem 0; */}
.banner::after { position: absolute; top: auto; right: auto; bottom: 0; left: 0; z-index: 1; width: 100%; height: 15%; background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(84, 103, 97, 0) 100%, rgba(255, 255, 255, 0) 100%); content: ""; }
.banner .img { position: relative; display: block; width: 100%; padding: 33.54% 0 0; overflow: hidden; }
.banner .img img { position: absolute; top: 0; right: auto; bottom: auto; left: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; -webkit-transform: scale(1.07); -moz-transform: scale(1.07); -ms-transform: scale(1.07); -o-transform: scale(1.07); transform: scale(1.07); -webkit-transition: transform 0.5s linear 0s; -moz-transition: transform 0.5s linear 0s; -ms-transition: transform 0.5s linear 0s; -o-transition: transform 0.5s linear 0s; transition: transform 0.5s linear 0s; }
.banner .swiper-slide-active img { -webkit-transition: transform 6.5s linear 1.2s; -moz-transition: transform 6.5s linear 1.2s; -ms-transition: transform 6.5s linear 1.2s; -o-transition: transform 6.5s linear 1.2s; transition: transform 6.5s linear 1.2s; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
.banner .pagination { position: absolute; top: auto; right: auto; bottom: 0.32rem; left: 0%; z-index: 2; width: 100%; display: -ms-flexbox; display: flex; justify-content: center; align-items: center; }
.banner .pagination::before { display: block; content: ""; box-sizing: border-box; width: .85rem; height: 1px; background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }
.banner .pagination::after { display: block; content: ""; box-sizing: border-box; width: .85rem; height: 1px; background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%); }
.banner .pagination .swiper-pagination-bullet { width: 10px; height: 10px; margin: 0 .14rem; cursor: pointer; border-radius: 50%; border: 1px solid #fff; background: none; opacity: 1; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.banner .pagination .swiper-pagination-bullet:first-child { margin-left: 0; }
.banner .pagination .swiper-pagination-bullet:last-child { margin-right: 0; }
.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #fff; }

.pad-btn { display: none; align-items: center; font-size: 0; }
.pad-btn::after { position: absolute; top: 0; right: 0; bottom: 0; left: auto; z-index: 1; content: ""; border-top: 56px solid #fff; border-bottom: 0px solid transparent; border-right: 54px solid #fff; border-left: 10px solid transparent; }
.pad-btn .nav-btn { position: relative; z-index: 2; display: inline-block; vertical-align: middle; width: 24px; margin-right: .18rem; cursor: pointer; }
.pad-btn .nav-btn i { display: block; height: 2px; margin: 6px 0; border-radius: 2px; background: #B01013; -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 0, 1) 0s; -moz-transition: all 0.4s cubic-bezier(0.98, 0, 0, 1) 0s; -ms-transition: all 0.4s cubic-bezier(0.98, 0, 0, 1) 0s; -o-transition: all 0.4s cubic-bezier(0.98, 0, 0, 1) 0s; transition: all 0.4s cubic-bezier(0.98, 0, 0, 1) 0s; }
.pad-btn .nav-btn.close i:nth-child(1) { -webkit-transform: translate(0px, 8px) rotate(45deg); -moz-transform: translate(0px, 8px) rotate(45deg); -ms-transform: translate(0px, 8px) rotate(45deg); -o-transform: translate(0px, 8px) rotate(45deg); transform: translate(0px, 8px) rotate(45deg); }
.pad-btn .nav-btn.close i:nth-child(2) { opacity: 0; }
.pad-btn .nav-btn.close i:nth-child(3) { -webkit-transform: translate(0px, -8px) rotate(-45deg); -moz-transform: translate(0px, -8px) rotate(-45deg); -ms-transform: translate(0px, -8px) rotate(-45deg); -o-transform: translate(0px, -8px) rotate(-45deg); transform: translate(0px, -8px) rotate(-45deg); }

.mobile-box { display: none; position: fixed; top: 56px; right: auto; bottom: auto; left: 100%; z-index: 1; width: 100%; height: calc(100vh - 56px); padding: .4rem 4% .4rem; background-image: url("../images/index_bg1.jpg"); background-repeat: no-repeat; background-position: 0 0; background-color: #fff; background-size: auto; -webkit-transition: all 0.8s ease 0s; -moz-transition: all 0.8s ease 0s; -ms-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -ms-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); transform-origin: 100% 0%; opacity: 0; visibility: hidden; }
.mobile-box .nav { height: calc(100% - 1.5rem); padding: 0 0 .2rem; }
.mobile-box .nav ul { display: block; height: 100%; overflow-y: auto; }
.mobile-box .nav li { position: relative; width: 100%; border-bottom: 1px solid #ddd; border-top: 1px solid #f5f5f5; }
.mobile-box .nav li:first-child { border-top: none; }
.mobile-box .nav li:last-child { border-bottom: none; }
.mobile-box .nav li a { color: #323232; font-weight: 500; padding: 0 .1rem; line-height: .6rem; text-align: left; }
.mobile-box .nav li .icon { position: absolute; top: 0; right: 0; bottom: auto; left: auto; z-index: 1; width: .6rem; height: .6rem; background-image: url(../images/arrow3.png); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: 7px; cursor: pointer; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.mobile-box .nav li .icon.close { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); }
.mobile-box .nav li > a { font-size: .2rem; }
.mobile-box .nav .sub-nav { display: none; position: static; opacity: 1; width: 100%; padding: 0 0 12px 30px; background: none; box-shadow: none; transition: none; border: none; visibility: visible; }
.mobile-box .nav .sub-nav .tri { display: none; }
.mobile-box .nav .sub-nav a { color: #666 !important; line-height: .4rem; background: none !important; }
.mobile-box .nav .sub-nav::before { display: none; }
.mobile-box .search-box { width: 100%; margin: 0 0 .2rem; }
.mobile-box .search-box .input { width: calc(100% - .5rem); height: .5rem; padding: 0 .3rem 0 .3rem; font-size: .16rem; line-height: .5rem; }
.mobile-box .search-box .submit { width: .5rem; height: .5rem; }
.mobile-box .top-link { display: block; margin: 0 .2rem; text-align: center; }
.mobile-box .top-link a { margin: 0 .16rem; font-size: .18rem; font-weight: 700; color: #B01013; }
.mobile-box .top-link span { display: none; }
.mobile-box.show { left: 0; opacity: 1; visibility: visible; -webkit-transform: skew(0deg); -moz-transform: skew(0deg); -ms-transform: skew(0deg); -o-transform: skew(0deg); transform: skew(0deg); }

.tt1 { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tt2 { display: block; display: -webkit-box; -webkit-box-orient: vertical; -moz-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }

.tt3 { display: block; display: -webkit-box; -webkit-box-orient: vertical; -moz-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }

.tt4 { display: block; display: -webkit-box; -webkit-box-orient: vertical; -moz-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }

.tt5 { display: block; display: -webkit-box; -webkit-box-orient: vertical; -moz-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden; }

.img-scale { position: relative; display: block; overflow: hidden; }
.img-scale img { display: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; -webkit-transition: transform 0.8s ease 0s; -moz-transition: transform 0.8s ease 0s; -ms-transition: transform 0.8s ease 0s; -o-transition: transform 0.8s ease 0s; transition: transform 0.8s ease 0s; }
.img-scale .img-frame { position: relative; overflow: hidden; }
.img-scale .img { /*背景图替换img*/ height: 100%; background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: cover; -webkit-transition: transform 0.8s ease 0s; -moz-transition: transform 0.8s ease 0s; -ms-transition: transform 0.8s ease 0s; -o-transition: transform 0.8s ease 0s; transition: transform 0.8s ease 0s; }
.img-scale .img img { display: none; min-height: 100%; }
.img-scale:hover img { min-height: 100%; -webkit-transform: scale(1.07); -moz-transform: scale(1.07); -ms-transform: scale(1.07); -o-transform: scale(1.07); transform: scale(1.07); }
.img-scale:hover .img { -webkit-transform: scale(1.07); -moz-transform: scale(1.07); -ms-transform: scale(1.07); -o-transform: scale(1.07); transform: scale(1.07); }

.column { position: relative; display: -ms-flexbox; display: flex; justify-content: center; width: 100%; margin: .45rem 0 .5rem; }
.column .more { position: absolute; top: auto; right: 0; bottom: 0.1rem; left: auto; z-index: 2; }
.column h3 { position: relative; display: -ms-flexbox; display: flex; align-items: center; font-size: 0.34rem; font-weight: 700; line-height: 0.62rem; color: #2e2e2e; text-align: left; border-bottom: 3px solid rgba(176, 16, 19, 0.2); }
.column h3 img { margin: 0 .12rem 0 0; }
.column h3::before { position: absolute; top: auto; right: auto; bottom: -3px; left: 0; z-index: 1; width: .54rem; height: 0.06rem; background: #B01013; content: ""; }

.more { padding: 0 5px 0 0; font-size: 0.16rem; font-weight: 500; line-height: 30px; color: #959595; text-align: left; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.more::before { position: absolute; top: auto; right: auto; bottom: 0; left: 0; z-index: 1; content: ""; width: 100%; height: 1px; background-image: linear-gradient(90deg, rgba(187, 26, 26, 0.3) 28%, rgba(255, 255, 255, 0) 76%); }
.more::after { position: absolute; top: 4px; right: 0; bottom: auto; left: auto; z-index: 1; content: ""; width: 22px; height: 22px; border: 1px solid transparent; border-radius: 50%; background-clip: padding-box, border-box; background-origin: padding-box, border-box; background-image: linear-gradient(to right, #fff, #fff), linear-gradient(211deg, rgba(187, 26, 26, 0.3) 13%, rgba(255, 255, 255, 0) 82%); }
.more span { position: relative; z-index: 2; display: block; }
.more:hover { color: #B01013; }

.title { font-size: 0.18rem; font-weight: 500; line-height: 0.3rem; color: #3d3d3d; text-align: left; }

.info { font-size: 0.14rem; font-weight: 500; line-height: 0.22rem; color: #757575; text-align: justify; }

.date { font-family: Arial, Helvetica, sans-serif; font-size: 0.14rem; font-weight: 500; line-height: 0.3rem; color: #757575; text-align: left; padding: 0 0 0 20px; background-image: url("../images/icon1.png"); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: auto; }

.date1 { display: inline-block; vertical-align: top; width: 65px; font-size: 0.14rem; font-weight: 500; line-height: 0.26rem; color: #EB8508; text-align: center; }
.date1 p:first-child { font-size: .3rem; font-weight: 700; line-height: .36rem; }

.index-layer1 { padding: 1px 0 .46rem; background-image: url("../images/index_bg1.jpg"); background-repeat: no-repeat; background-position: 0 0; background-color: transparent; background-size: auto; }
.index-layer1 .container { position: relative; display: -ms-flexbox; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
.index-layer1 .img-swiper { width: 52.5%; }
.index-layer1 .img-swiper .swiper-container { margin: 0; }
.index-layer1 .news-list { width: 42.2%; }

.index-layer2 { padding: 1px 0 .8rem; background-image: url("../images/index_bg2.jpg"); background-repeat: no-repeat; background-position: 50% 100%; background-color: #fff6f7; background-size: 100%; overflow: hidden; }
.index-layer2 .container { display: -ms-flexbox; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
.index-layer2 .column { justify-content: flex-start; margin-bottom: .3rem; }
.index-layer2 .more::after { background-image: linear-gradient(to right, #fff6f7, #fff6f7), linear-gradient(211deg, rgba(187, 26, 26, 0.3) 13%, rgba(255, 255, 255, 0) 82%); }
.index-layer2 .left-box { width: 64.8%; display: -ms-flexbox; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
.index-layer2 .left-box .list1 { width: 48%; }
.index-layer2 .left-box .list1 li:first-child { padding-top: 0; }
.index-layer2 .right-box { width: 32%; }

.index-layer3 { padding: 1px 0 .8rem; background-image: url("../images/index_bg3.jpg"); background-repeat: no-repeat; background-position: 50% 100%; background-color: transparent; background-size: 100%; }
.index-layer3 .column { margin-top: .2rem; }

.img-swiper { position: relative; }
.img-swiper .img { padding: 4.83rem 0 0; }
.img-swiper .arrow { position: absolute; top: auto; right: auto; bottom: 0.38rem; left: 100%; z-index: 1; width: .38rem; height: .38rem; background-image: url("../images/arrow2.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: #E5A557; background-size: auto; cursor: pointer; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.img-swiper .arrow.swiper-next { bottom: 0; background-color: #B01013; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); }
.img-swiper .arrow:hover { z-index: 2; box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.3); }
.img-swiper .text-box { display: none; padding: .1rem 0 0; }
.img-swiper .date1 { width: calc(60px + .28rem); margin: .2rem 0 0; padding: 0 .28rem 0 0; font-family: Arial, Helvetica, sans-serif; color: #2e2e2e; line-height: .2rem; text-align: right; border-right: 1px solid #d8d8d8; }
.img-swiper .date1 p:first-child { font-size: .22rem; }
.img-swiper .text { position: relative; z-index: 1; display: block; width: calc(100% - (60px + .28rem)); padding: .09rem 0 .12rem .3rem; }
.img-swiper .text::before {position: absolute;top: calc(50% - .35rem);right: auto;bottom: auto;left: .1rem;z-index: -1;width: .14rem;height: .14rem;background-image: url("../images/icon3_1.png");background-repeat: no-repeat;background-position: 50% 50%;background-color: transparent;background-size: 100% 100%;content: "";opacity: 1;}
.img-swiper .title { margin: 0 0 .05rem; font-weight: 700; font-size: .2rem; -webkit-transition: color 0.4s ease 0s; -moz-transition: color 0.4s ease 0s; -ms-transition: color 0.4s ease 0s; -o-transition: color 0.4s ease 0s; transition: color 0.4s ease 0s; }
.img-swiper .pagination { display: none; width: 100%; margin: .1rem 0 0; text-align: center; }
.img-swiper .pagination .swiper-pagination-bullet { width: .3rem; height: 5px; margin: 0 .05rem; cursor: pointer; border-radius: 7px; background: #D8D8D8; opacity: 1; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.img-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #B01013; }

.news-list {
    position: relative;
    z-index: 1;
}

.news-list::after {
    position: absolute;
    top: 0.16rem;
    right: auto;
    bottom: auto;
    left: calc(60px + .28rem);
    z-index: -1;
    width: 1px;
    height: calc(100% - .32rem);
    background: #d8d8d8;
    content: "";
}

.news-list li {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news-list li.active .title {
    color: #B01013;
    font-weight: 700;
}

.news-list li.active .info, .news-list li.active .date1 {
    color: #B01013;
}

.news-list li.active .text::before {
    opacity: 1;
}

.news-list li.active .text::after {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.news-list .date1 {
    width: calc(60px + .28rem);
    padding: .2rem .28rem 0 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #2e2e2e;
    line-height: .2rem;
    text-align: right;
}

.news-list .date1 p:first-child {
    font-size: .22rem;
}

.news-list .text {
    position: relative;
    z-index: 1;
    display: block;
    width: calc(100% - (60px + .28rem));
    padding: .09rem 0 .12rem .3rem;
}

.news-list .text::before {
    position: absolute;
    top: calc(50% - .12rem);
    right: auto;
    bottom: auto;
    left: -0.12rem;
    z-index: -1;
    width: .24rem;
    height: .24rem;
    background-image: url("../images/icon3_1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100% 100%;
    content: "";
    opacity: 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.news-list .text::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url("../images/icon3_2.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100% 100%;
    content: "";
    opacity: 0;
    -webkit-transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    -o-transform: translateX(1rem);
    transform: translateX(1rem);
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -ms-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.news-list .title {
    margin: 0 0 .05rem;
    -webkit-transition: color 0.4s ease 0s;
    -moz-transition: color 0.4s ease 0s;
    -ms-transition: color 0.4s ease 0s;
    -o-transition: color 0.4s ease 0s;
    transition: color 0.4s ease 0s;
}

.news-list .info {
    height: .44rem;
}

.news-list .date1, .news-list .info {
    -webkit-transition: color 0.4s ease 0s;
    -moz-transition: color 0.4s ease 0s;
    -ms-transition: color 0.4s ease 0s;
    -o-transition: color 0.4s ease 0s;
    transition: color 0.4s ease 0s;
}

.nav-swiper {
    position: relative;
}

.nav-swiper .swiper-container {
    padding: 4px 1px;
}

.nav-swiper .swiper-wrapper {
    align-items: flex-end;
}

.nav-swiper .swiper-slide {
    position: relative;
    display: block;
}

.nav-swiper .swiper-slide::before {
    position: absolute;
    top: -4px;
    right: 50%;
    bottom: auto;
    left: auto;
    z-index: 2;
    content: "";
    width: 5px;
    height: calc(100% + 8px);
    opacity: 0;
    background: #E5A557;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-swiper .swiper-slide::after {
    position: absolute;
    top: -4px;
    right: auto;
    bottom: auto;
    left: 50%;
    z-index: 2;
    content: "";
    width: 5px;
    height: calc(100% + 8px);
    opacity: 0;
    background: #E5A557;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-swiper .swiper-slide:hover::before {
    right: 0;
    opacity: 1;
}

.nav-swiper .swiper-slide:hover::after {
    left: 0;
    opacity: 1;
}

.nav-swiper .swiper-slide:hover .title {
    color: #fff;
}

.nav-swiper .swiper-slide:hover .title::after {
    right: -1px;
    width: calc(100% + 2px);
    opacity: 1;
}

.nav-swiper .title {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 5px;
    text-align: center;
    line-height: .52rem;
    border: 1px solid rgba(181, 181, 181, 0.3);
}

.nav-swiper .title::after {
    position: absolute;
    top: -1px;
    right: 50%;
    bottom: auto;
    left: auto;
    z-index: -1;
    content: "";
    width: 0;
    height: calc(100% + 2px);
    background: #B01013;
    opacity: 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-swiper .pagination {
    width: 100%;
    margin: .32rem 0 0;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-swiper .pagination .swiper-pagination-bullet {
    width: .45rem;
    height: 7px;
    margin: 0 .1rem;
    cursor: pointer;
    border-radius: 7px;
    background: #D8D8D8;
    opacity: 1;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-swiper .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #B01013;
}

.nav-swiper .arrow {
    position: absolute;
    top: 30%;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .3rem;
    height: .3rem;
    background-image: url("../images/arrow1.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: auto;
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-swiper .arrow.swiper-prev {
    left: -.52rem;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-swiper .arrow.swiper-next {
    right: -.52rem;
}

.nav-swiper .arrow:hover {
    background-image: url("../images/arrow3.png");
}

.nav-swiper .arrow.swiper-button-disabled {
    background-image: url("../images/arrow1.png") !important;
}

.list1 li { position: relative; padding: .14rem 0; border-bottom: 1px dashed #dfdfdf; }
.list1 li::after { position: absolute; top: auto; right: auto; bottom: -1px; left: 0; z-index: 1; width: 0; height: 1px; background: #B01013; content: ""; }
.list1 li:hover::after { width: 100%; -webkit-transition: all 0.45s ease 0s; -moz-transition: all 0.45s ease 0s; -ms-transition: all 0.45s ease 0s; -o-transition: all 0.45s ease 0s; transition: all 0.45s ease 0s; }
.list1 li:hover .title { color: #B01013; font-weight: 700; }
.list1 li:hover .date { color: #B01013; background-image: url("../images/icon1_2.png"); }
.list1 .title { padding: 0 0 0 20px; line-height: .24rem; background-image: url("../images/icon2.png"); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: auto; }
.list1 .date { margin: .05rem 0 0 20px; line-height: .22rem; }
.list1 .first-news { padding: 0; border: none; }
.list1 .first-news .img-scale { display: -ms-flexbox; display: flex; justify-content: space-between; padding: .18rem .14rem .25rem .22rem; background: linear-gradient(108deg, #AF0C0F 14%, #E75D47 103%); }
.list1 .first-news .title { height: .6rem; line-height: .3rem; padding: 0; color: #fff !important; font-weight: 700; background: none; }
.list1 .first-news .date { padding: 0; margin: .13rem 0 0; font-size: .22rem; line-height: .3rem; font-weight: 700; background-image: url("../images/icon5.png"); background-repeat: no-repeat; background-position: 100% 50%; background-color: transparent; background-size: 1.9rem; color: #EED8A2 !important; }
.list1 .first-news .img-frame { width: 1.26rem; }
.list1 .first-news .img-frame .img { padding: 1rem 0 0; }
.list1 .first-news .text { width: calc(100% - 1.45rem); }

.list2 a { position: relative; z-index: 1; padding: .16rem .3rem .16rem 0; display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; }
.list2 a::after { position: absolute; top: -0.12rem; right: 0; bottom: auto; left: auto; z-index: 1; width: calc(100% - .3rem); height: calc(100% + .2rem); content: ""; background-image: url("../images/icon6.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: 100% 100%; opacity: 0; -webkit-transform: translateX(0.2rem); -moz-transform: translateX(0.2rem); -ms-transform: translateX(0.2rem); -o-transform: translateX(0.2rem); transform: translateX(0.2rem); }
.list2 a:hover .title { color: #B01013; font-weight: 700; }
.list2 a:hover .date1 { color: #B01013; }
.list2 a:hover::after { opacity: 1; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; -webkit-transform: translateX(0); -moz-transform: translateX(0); -ms-transform: translateX(0); -o-transform: translateX(0); transform: translateX(0); }
.list2 .title { width: calc(100% - 65px); padding-left: .2rem; -webkit-transition: color 0.4s ease 0s; -moz-transition: color 0.4s ease 0s; -ms-transition: color 0.4s ease 0s; -o-transition: color 0.4s ease 0s; transition: color 0.4s ease 0s; }
.list2 .date1 { -webkit-transition: color 0.4s ease 0s; -moz-transition: color 0.4s ease 0s; -ms-transition: color 0.4s ease 0s; -o-transition: color 0.4s ease 0s; transition: color 0.4s ease 0s; }

.footer { background: #A71D18; }
.footer .container { display: -ms-flexbox; display: flex; justify-content: space-between; padding: .5rem 0; }

.foot-img { width: 5.31rem; text-align: center; }
.foot-img img { display: block; margin: 0 auto; }

.foot-contact { font-size: 0.16rem; font-weight: 500; line-height: 0.4rem; color: #fff; text-align: left; }

.copy { padding: .12rem .1rem; font-size: 0.14rem; font-weight: 500; line-height: 0.24rem; color: rgba(255, 255, 255, 0.7); text-align: center; background: #8A1E1A; }
.copy a { color: rgba(255, 255, 255, 0.7); }

.section { padding: 1px 0 .65rem; background-image: url("../images/index_bg3.jpg"); background-repeat: no-repeat; background-position: 50% 100%; background-color: #fff; background-size: 100%; }
.section .container { display: -ms-flexbox; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; -webkit-transform: translateY(1rem); -moz-transform: translateY(1rem); -ms-transform: translateY(1rem); -o-transform: translateY(1rem); transform: translateY(1rem); opacity: 0; -webkit-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s; -moz-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s; -ms-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s; -o-transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s; transition: all 0.6s cubic-bezier(0.58, 0.22, 0.44, 0.94) 0s; }
.section.show .container { opacity: 1; -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%); -o-transform: translateY(0%); transform: translateY(0%); }

.decorate { position: relative; padding: 22% 0 0; margin: 1.29rem 0 0; }
.decorate img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

.sidebar { position: relative; z-index: 3; width: 2.6rem; margin: .3rem 0 0; box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2); }
.sidebar h3 { position: relative; font-size: 0.26rem; font-weight: 700; line-height: 0.8rem; color: #fff; text-align: center; background: #B01013; }
.sidebar .sub-nav { position: relative; }
.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: #B01013 !important; font-weight: 700; }
.sidebar .sub-nav li.cur > a p::after { width: 100%; opacity: 1; }
.sidebar .sub-nav li:hover > a { color: #B01013; }
.sidebar .sub-nav a { display: -ms-flexbox; display: flex; align-items: center; height: .7rem; padding: 0 .5rem 0 .3rem; font-size: 0.18rem; font-weight: 500; line-height: 0.25rem; color: #333; text-align: left; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.sidebar .sub-nav a p { position: relative; }
.sidebar .sub-nav a p::after { position: absolute; top: auto; right: auto; bottom: -0.03rem; left: 0; z-index: 1; width: 0; max-width: .9rem; height: .15rem; border-radius: .1rem 0 .1rem 0; background: #54a4e2; content: ""; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; opacity: 0; }
.sidebar .sub-nav a span { position: relative; z-index: 2; }
.sidebar .sub-nav .down { position: absolute; top: 0.22rem; right: 0.2rem; bottom: auto; left: auto; z-index: 1; width: .3rem; height: .3rem; background-image: url("../images/icon12_2.png"); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: auto; cursor: pointer; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.sidebar .sub-nav .down.close { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
.sidebar .sub-nav .lv3 { display: none; margin: -.1rem 0 0; padding: 0 0 .15rem; }
.sidebar .sub-nav .lv3 a { height: auto; font-size: .15rem; line-height: .36rem; }
.sidebar .sub-nav .lv3 a::before { display: inline-block; width: 4px; height: 4px; background: #bbb; margin: 0 .1rem 0 0; content: ""; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); }
.sidebar .sub-nav .lv3 a:hover { color: #B01013; }
.sidebar .sub-nav .lv3 a:hover::before { background: #B01013; }
.sidebar .sub-nav .lv3 a.cur { color: #B01013; font-weight: 700; }
.sidebar .sub-nav .lv3 a.cur::before { background: #B01013; }

.main { position: relative; z-index: 4; width: calc(100% - 3.1rem); min-height: 4rem; margin: .3rem 0 0; }
.main .list1 li { display: -ms-flexbox; display: flex; justify-content: space-between; padding: 0; }
.main .list1 .title { width: calc(100% - 120px); line-height: .64rem; }
.main .list1 .date { line-height: .64rem; margin: 0; }

.position { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; padding: 0 0 .2rem; margin: 0 0 .1rem 0; border-bottom: 1px solid #d8d8d8; }
.position h3 { padding: 0 0 0 .17rem; white-space: nowrap; font-family: "Source"; border-left: 5px solid #B01013; font-size: 0.25rem; font-weight: 500; line-height: 0.3rem; color: #333; text-align: left; }
.position .line { display: none; }

.place { font-size: 0.16rem; font-weight: 500; line-height: 0.3rem; color: #626262; text-align: left; padding: 0 0 0 26px; white-space: nowrap; background-image: url(../images/place2.png); background-repeat: no-repeat; background-position: 0 50%; background-color: transparent; background-size: auto; }
.place a { color: #626262; }
.place a:hover { color: #B01013; }

.article { padding: .3rem 0 0; }
.article .title { font-size: 0.26rem; font-weight: 500; line-height: 0.35rem; color: #000; text-align: center; }
.article .sub-title1 { margin: 0 0 .08rem; font-size: 0.17rem; font-weight: 500; line-height: 0.32rem; color: #000; text-align: center; }
.article .sub-title2 { margin: .08rem 0 0; font-size: 0.17rem; font-weight: 500; line-height: 0.32rem; color: #666; text-align: center; }
.article .sub { margin: .05rem 0 0; padding: .15rem 0 .25rem; font-size: 0.14rem; font-weight: 500; line-height: 0.22rem; color: #868686; text-align: center; border-bottom: 1px dashed #ddd; }
.article .content { padding: .3rem 0 .2rem; font-size: 0.17rem; font-weight: 500; line-height: 200%; color: #333; text-align: justify; }
.article .content p {text-indent: 2em;word-break: break-all;margin: 0 0 .25rem;font-size: .18rem !important;}
.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: .2rem auto; }
.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: .2rem auto; }
.article .cont-page { padding: .25rem .35rem .28rem; border-top: 3px solid #B01013; background: #fff; }
.article .cont-page a { display: block; padding: 4px 0; font-size: 0.17rem; font-weight: 500; line-height: 0.28rem; color: #333; text-align: left; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 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: #B01013; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; content: ""; }
.article .cont-page a:hover { text-decoration: none; color: #B01013; }
.article .cont-page a:hover span::after { width: 100%; }
.article.about { padding-left: 0; padding-right: 0; }
.article.about .title { margin: 0 0 .25rem; }
.article ul a, .article a { color: #2196f3; }
.article ul a:hover, .article a:hover { text-decoration: underline; }
.article .table-box { overflow-x: auto; }

.picture1 { font-size: 0; margin: 0 -0.15rem; margin-top: .3rem; }
.picture1 > li { display: inline-block; vertical-align: top; width: 33.3333333333%; padding: 0 0.15rem; }
.picture1 li { margin: 0 0 .3rem; }
.picture1 .img-scale { border: 1px solid #B9B9B9; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.picture1 .img-scale:hover { border-color: #B01013; background: #fff; box-shadow: 0px 4px 10px 0px rgba(14, 65, 150, 0.2); }
.picture1 .img-scale:hover .title { color: #fff; background: #B01013; font-weight: 700; }
.picture1 .img-frame .img { padding: 62.3% 0 0; }
.picture1 .title { padding: 0 .1rem; line-height: .6rem; text-align: center; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }

.picture2 { margin: .2rem 0 0; }
.picture2 a { display: block; padding: 0.28rem 0.25rem; font-size: 0; border-bottom: 1px solid #ddd; border-left: 1px solid transparent; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
.picture2 a:hover { background: #f9f9f9; border-color: #B01013; box-shadow: .1rem .1rem 0 0 #eee; }
.picture2 a:hover .title { font-weight: 700; color: #B01013; }
.picture2 .img-frame { display: inline-block; vertical-align: top; width: 2.4rem; }
.picture2 .img-frame .img { padding: 1.6rem 0 0; }
.picture2 .text { display: inline-block; vertical-align: top; width: calc(100% - 2.4rem); padding: 0 0 0 .3rem; }
.picture2 .date { margin: .15rem 0; padding: 0; font-size: .15rem; line-height: .22rem; font-style: inherit; background: none; color: #888; }
.picture2 .date span { font-size: .24rem; font-weight: 700; color: #B01013; }
.picture2 .title { font-size: .18rem; font-weight: 700; color: #333; }
.picture2 .info { height: .44rem; }

.teach-column { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: center; margin: .2rem 0 0; border-bottom: 1px solid #ddd; }
.teach-column h5 { margin: 0 0 -1px; font-size: 0.22rem; font-weight: 700; line-height: 0.5rem; color: #333; text-align: left; border-bottom: 3px solid #E5A557; }
.teach-column .more { font-size: .14rem; }

.teach-list { font-size: 0; margin: 0 -0.12rem; }
.teach-list > li { display: inline-block; vertical-align: top; width: 20%; padding: 0 0.12rem; }
.teach-list li { margin: .3rem 0 0; }
.teach-list .img-scale { padding: .1rem; background: #f2f2f2; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; border-radius: 4px; }
.teach-list .img-scale:hover { background: #B01013; box-shadow: 0px 4px 10px 0px rgba(14, 65, 150, 0.2); }
.teach-list .img-scale:hover .title { color: #fff; }
.teach-list .img-frame .img { padding: 120% 0 0; }
.teach-list .title { line-height: .5rem; text-align: center; }

#browser-modal { position: fixed; top: 0; right: auto; bottom: auto; left: 0; z-index: 10000; width: 100%; height: 100%; color: #303233; text-align: center; }
#browser-modal .browser-modal-cover { position: fixed; top: 0; right: auto; bottom: auto; left: 0; z-index: -1; height: 100%; width: 100%; background-color: #111; }
#browser-modal .browser-content { width: 700px; margin: 120px auto 0; padding: 50px 0 80px; background-color: #fff; border-radius: 5px; }
#browser-modal .browser-content .browser-dpc-logo img { height: 42px; margin: 45px auto 40px; }
#browser-modal .browser-content .browser-text-title { font-size: 24px; text-transform: uppercase; }
#browser-modal .browser-content .browser-text-desc { margin: 30px 0 20px; font-size: 14px; }
#browser-modal .browser-content .browser-list { width: 600px; height: 130px; margin: 20px auto; }
#browser-modal .browser-content .browser-item { float: left; width: 150px; margin: 0 auto; padding: 20px 0; }
#browser-modal .browser-content .browser-item .iconfont { width: 100px; height: 100px; margin: 0 auto 10px; font-size: 80px; line-height: 80px; }
#browser-modal .browser-content .browser-item .iconchrome { background: url(../images/bro.png) no-repeat 0 0; }
#browser-modal .browser-content .browser-item .iconfirefox { background: url(../images/bro.png) no-repeat 0 -100px; }
#browser-modal .browser-content .browser-item .iconopera { background: url(../images/bro.png) no-repeat 0 -200px; }
#browser-modal .browser-content .browser-item .iconEdge { background: url(../images/bro.png) no-repeat 0 -300px; }
#browser-modal .browser-content .browser-item a { display: block; cursor: pointer; }
#browser-modal .browser-content .browser-item a:hover { text-decoration: underline !important; }
#browser-modal .browser-content .browser-item a img { display: block; max-width: 100px; width: 100px; height: 100px; margin: 0 auto; }
#browser-modal .browser-content .browser-item a h4 { margin-top: 20px; text-align: center; font-size: 18px; font-weight: 700; }

#list-page { margin: .4rem 0 .2rem !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; }
#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a { padding: 8px 10px; color: #428bca; border: 1px solid #aaa; border-radius: 4px; }
#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a { background: #B01013; font-weight: bold; color: #fff; border-color: #B01013; }
#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: 4px; width: 40px; height: 32px; line-height: 32px; vertical-align: bottom; }

@media screen and (max-width: 1024px) { .container { max-width: 90%; }
  .header { box-shadow: none; }
  .header .container { position: relative; z-index: 2; max-width: 100%; padding: 7px 0 7px 4%; justify-content: space-between; background: #B01013; box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.302); }
  .header .right-wrapper { width: auto; padding: 0; opacity: 1 !important; transform: none !important; }
  .header .right-wrapper .top-link, .header .right-wrapper .nav, .header .right-wrapper .search-box { display: none; }
  .logo { max-width: calc(100% - 65px); height: 42px; padding: 0 .12rem 0 0; margin: 0 !important; display: flex; align-items: center; background: none; }
  .logo::before { display: none; }
  .logo img {max-height: 42px;display: block;}
  .pad-btn { display: flex; }
  .pad-btn .nav-btn { display: block; }
  .mobile-box { display: block; }
  .banner {/* margin: 56px 0 0; */}
  .banner .img { height: auto; padding: 42% 0 0; }
  .column { justify-content: flex-start; margin: .35rem 0 .3rem; }
  .column h3 { font-size: .3rem; }
  .index-layer1 .img-swiper { width: 100%; }
  .index-layer1 .news-list { display: none; }
  .index-layer2 { padding-bottom: .5rem; }
  .index-layer2 .left-box { width: 100%; }
  .index-layer2 .right-box { width: 100%; }
  .index-layer3 { padding-bottom: .5rem; }
  .img-swiper .img { padding: 60% 0 0; }
  .img-swiper .text-box { display: -ms-flexbox; display: flex; justify-content: space-between; align-items: flex-start; }
  .img-swiper .pagination { display: block; }
  .img-swiper .arrow { bottom: -6px !important; background-color: #E5A557; }
  .img-swiper .arrow.swiper-prev { left: 0; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); }
  .img-swiper .arrow.swiper-next { left: auto; right: 0; background-color: #E5A557; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
  .list1 .first-news .date { background: none; }
  .list2 a { border-bottom: 1px dashed #dfdfdf; }
  .list2 a::after { display: none; }
  .nav-swiper .arrow { display: none; }
  .nav-swiper .pagination .swiper-pagination-bullet { width: .3rem; height: 5px; margin: 0 .05rem; }
  .footer .container { flex-direction: column; align-items: center; padding: .2rem 0; }
  .foot-img { width: auto; }
  .foot-img br { display: none; }
  .foot-img img { margin: 0 auto .1rem; }
  .foot-contact { margin: .15rem 0 0; }
  .decorate { padding: 30% 0 0; margin: 56px 0 0; }
  .sidebar { width: 100%; margin: .15rem 0 0; padding: 0; border-radius: 3px; overflow: hidden; }
  .sidebar h3 { display: -ms-flexbox; display: flex; justify-content: space-between; position: relative; font-size: .2rem; line-height: .45rem; font-weight: 700; background: #B01013; border-width: 2px; text-indent: 0; }
  .sidebar h3::after { display: none; }
  .sidebar h3 i { width: .45rem; height: .45rem; background-image: url(); background-repeat: no-repeat; background-position: 50% 50%; background-color: transparent; background-size: 0.24rem; cursor: pointer; -webkit-transition: all 0.4s ease 0s; -moz-transition: all 0.4s ease 0s; -ms-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; }
  .sidebar h3.down i { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
  .sidebar h3 .return-sup { display: block; width: .45rem; height: .45rem; background-image: url(""); background-repeat: no-repeat; background-position: 30% 50%; background-color: transparent; background-size: 0.26rem; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); }
  .sidebar .sub-nav { display: none; min-height: auto; margin: 0; padding: 0; font-size: 0; background: #fff; border: 1px solid #B01013; border-radius: 0 0 4px 4px; }
  .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 0; margin: 0; box-shadow: none; background: none; }
  .main::before { display: none; }
  .position { padding: 0 0 .1rem; margin: 0; }
  .teach-list > li { width: 25%; } }
@media screen and (max-width: 768px) { .banner .pagination { bottom: .2rem; }
  .index-layer2 .left-box .list1 { width: 100%; }
  .list1 .first-news .img-scale { padding: .1rem .1rem .15rem .1rem; }
  .nav-swiper .swiper-slide .title { font-size: .16rem; }
  .position { padding: 0; border-bottom: 1px solid #B01013; }
  .position h3, .position .line { display: none; }
  .place { padding-top: .06rem; padding-bottom: .06rem; line-height: .22rem; white-space: initial; background-position-y: 7px; }
  .main { padding: .18rem 0 0; }
  .picture1 { margin: .2rem -.12rem 0; }
  .picture1 > li { width: 50%; padding: 0 .12rem; }
  .picture2 { margin: .1rem 0 0; }
  .picture2 .img-frame { width: 1.8rem; }
  .picture2 .img-frame .img { padding: 1.2rem 0 0; }
  .picture2 .text { width: calc(100% - 1.8rem); padding: 0 0 0 .17rem; }
  .picture2 .img-scale { background-color: #fff !important; }
  .teach-list { margin: 0 -7px; }
  .teach-list > li { padding: 0 7px; margin: .2rem 0 0; } }
@media screen and (max-width: 600px) { .teach-list > li { width: 50%; } }
@media screen and (max-width: 520px) { .container { max-width: 92%; }
  .column {margin: .25rem 0 .2rem !important;}
  .column h3 { font-size: .24rem; }
  .banner .img { padding: 55% 0 0; }
  .banner .pagination { bottom: .12rem; }
  .banner .pagination .swiper-pagination-bullet { margin: 0 3px; }
  .img-swiper .text-box { padding: .1rem 0 .2rem; flex-direction: column; }
  .img-swiper .date1 { width: auto; margin: 0; padding: 0; border: none; }
  .img-swiper .date1 p { display: inline-block; }
  .img-swiper .title { font-size: .18rem; margin: 0 0 6px; }
  .img-swiper .text { width: 100%; padding: 0; }
  .img-swiper .text::before { display: none; }
  .foot-contact { font-size: .14rem; line-height: .35rem; }
  .list1 li { flex-wrap: wrap; padding: .1rem  0 !important; border-bottom: 1px dashed #ddd; }
  .list1 .title { width: 100% !important; padding: 0 0 0 .24rem; line-height: .28rem !important; overflow: visible; text-overflow: clip; white-space: initial; background-position: 0 8px; }
  .list1 .title i { height: .28rem; }
  .list1 .date { font-size: .15rem; line-height: .4rem !important; }
  .section { padding: 0 0 .3rem; }
  .article .title { font-size: .21rem; line-height: .25rem; }
  .article .cont-page { padding: .12rem .15rem .15rem; }
  .picture1 { margin: .2rem 0 0; }
  .picture1 > li { width: 100%; margin: 0 0 .3rem; padding: 0 0; }
  .picture2 a { padding: .2rem 0; }
  .picture2 .img-frame { width: 100%; }
  .picture2 .img-frame .img { padding: 66.66% 0 0; }
  .picture2 .text { width: 100%; padding: .1rem 0 0 !important; } }

/*# sourceMappingURL=style.css.map */