.index .logo {
    background-image: url(../images/logo.png);
    background-size: 100%;
}

.index .header {
    background: none;
}

.index .navbar-nav>li .dropnav {
    top: 0;
    background: #fff;
}

.index .navbar-default .navbar-nav>.open>a,
.index .navbar-default .navbar-nav>.open>a:focus,
.index .navbar-default .navbar-nav>.open>a:hover {
    position: relative;
    z-index: 1001;
}

.index .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.index .gcode,
.index .gcode a {
    color: #fff;
}

.index .gcode .radius-half {
    color: #727272;
    background: #fff;
}

.index .gcode i {
    background: #fff
}

@media (min-width: 992px) {
    .index .navbar-nav>li>a {
        color: #fff;
        font-weight: bold;
    }

    .index .navbar-nav>li .dropdown-menu {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {
    .index .navbar-nav>li>a {
        -webkit-transition: none;
        transition: none;
    }

    .index .navbar-nav>li>a:visited {
        color: #fff;
    }

    .navbar-collapse .navbar-nav>li>a:visited {
        color: #eee;
    }
}

/* 0602 */
.top-logo {
    width: 100%;
    margin: 0 auto;
    background: #136ef3
}

a {
    color: #333;
}

.f18 {
    font-size: 18px;
    font-weight: bold;
}

.f14 {
    font-size: 16px;
    color: #888;
}

.f14 {
    font-size: 14px;
    color: #888;
}

.f12 {
    font-size: 12px;
    color: #888;
}

.logo-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 搜索框 */
.sear {
    display: inline-block;
}

.field-container {
    position: relative;
    padding: 0;
    margin: 0;
    border: 0;
    width: 2.8rem;
    height: 40px;
}

.icons-container {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 35px;
    height: 35px;
    overflow: hidden;
}

.icon-close {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 75%;
    height: 75%;
    opacity: 0;
    cursor: pointer;
    transform: translateX(-200%);
    border-radius: 50%;
    transition: opacity 0.25s ease, transform 0.43s cubic-bezier(0.694, 0.048, 0.335, 1);
}

.icon-close:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 2px solid transparent;
    border-top-color: #a6b5ff;
    border-left-color: #a6b5ff;
    border-bottom-color: #a6b5ff;
    transition: opacity 0.2s ease;
}

.icon-close .x-up {
    position: relative;
    width: 100%;
    height: 50%;
}

.icon-close .x-up:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 3px;
    width: 50%;
    height: 2px;
    background-color: #a6b5ff;
    transform: rotate(45deg);
}

.icon-close .x-up:after {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 0px;
    width: 50%;
    height: 2px;
    background-color: #a6b5ff;
    transform: rotate(-45deg);
}

.icon-close .x-down {
    position: relative;
    width: 100%;
    height: 50%;
}

.icon-close .x-down:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 50%;
    height: 2px;
    background-color: #a6b5ff;
    transform: rotate(-45deg);
}

.icon-close .x-down:after {
    content: "";
    position: absolute;
    top: 5px;
    right: 1px;
    width: 50%;
    height: 2px;
    background-color: #a6b5ff;
    transform: rotate(45deg);
}

.is-type .icon-close:before {
    opacity: 1;
    -webkit-animation: spin 0.85s infinite;
    animation: spin 0.85s infinite;
}

.is-type .icon-close .x-up:before,
.is-type .icon-close .x-up:after {
    -webkit-animation: color-1 0.85s infinite;
    animation: color-1 0.85s infinite;
}

.is-type .icon-close .x-up:after {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.is-type .icon-close .x-down:before,
.is-type .icon-close .x-down:after {
    -webkit-animation: color-1 0.85s infinite;
    animation: color-1 0.85s infinite;
}

.is-type .icon-close .x-down:before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.is-type .icon-close .x-down:after {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.icon-search {
    position: relative;
    top: 5px;
    left: 8px;
    width: 50%;
    height: 50%;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid #c7d0f8;
    transition: opacity 0.25s ease, transform 0.43s cubic-bezier(0.694, 0.048, 0.335, 1);
}

.icon-search:after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -4px;
    width: 2px;
    border-radius: 3px;
    transform: rotate(-45deg);
    height: 8px;
    background-color: #c7d0f8;
}

.field {
    border: 0;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    background: rgb(0, 0, 0, 0.3);
    border-radius: 3px;
    box-shadow: 0px 8px 15px rgba(75, 72, 72, 0.1);
    transition: all 0.4s ease;
    border-radius: 0.4rem;
    border: 1px solid #eee
}

.field:focus {
    outline: none;
    box-shadow: 0px 9px 20px rgba(75, 72, 72, 0.3);
}

.field:focus+.icons-container .icon-close {
    opacity: 1;
    transform: translateX(0);
}

.field:focus+.icons-container .icon-search {
    opacity: 0;
    transform: translateX(200%);
}


.search_wrap{
    position: relative;
    height:40px;
}
.search_wrap .form-control {
    border-radius: 20px;
    height:40px;
    border:1px solid #ffffff;
    width:260px;
    background-color:rgba(0,0,0,0.3);
    color:#ffffff;
}
.search_wrap .form-control:focus {

}
.search_icon {
    border-radius: 22px;
    position: absolute;
    right: 2px;
    top: 3px;
    width:32px;
    height:32px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    color: #666;
}
.search_icon .icon {
    display: block;
    position: relative;
    top: 0;
    left:-2px;
    width: 20px;
    height: 20px;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid #c7d0f8;
    transition: opacity 0.25s ease, transform 0.43s cubic-bezier(0.694, 0.048, 0.335, 1);
}

.search_icon .icon:after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -4px;
    width: 2px;
    border-radius: 3px;
    transform: rotate(-45deg);
    height: 8px;
    background-color: #c7d0f8;
}

/* 轮播图首屏 */
.idx-banner {
    height: 64vh
}

.idx-banner .swiper-container {
    width: 100%;
    z-index: 0;
    height: 100%;
}

.idx-banner .swiper-slide {
    background-color: rgba(0, 0, 0, .5);
}

.idx-banner .swiper-wrapper,
.idx-banner [data-swiper-parallax] {
    will-change: transform
}

.idx-banner .headbg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.idx-banner .headbg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .1);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, 0) 30%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, 0) 30%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#00000000', GradientType=0);
    z-index: 1;
}

.idx-banner .textbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
}

.idx-banner .weui-cell {
    width: 100%;
    height: 100%;
}

.idx-banner .cn {
    margin-top: .3rem;
    font-size: .5rem;
    text-shadow: 0 1px 16px rgba(0, 0, 0, .16);
    -webkit-animation: fadeOutDown 2s;
    animation: fadeOutDown 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.idx-banner .cn.f28 {
    font-size: 0.24rem;
}

.idx-banner .cn img {
    max-width: 100%;
    margin: 0 auto;
}

.idx-banner .cn.yellow {
    font-size: 0.24rem;
    color: #ff0;
}

.idx-banner .swiper-slide-active .headbg {
    -webkit-animation: scaleBigToSmall 4s;
    animation: scaleBigToSmall 4s;
}

.idx-banner .swiper-slide-active .en {
    opacity: .5;
    -webkit-animation: fadeInDown 1.5s;
    animation: fadeInDown 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.idx-banner .swiper-slide-active .cn {
    -webkit-animation: fadeInUp 1.5s;
    animation: fadeInUp 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.idx-banner .swiper-button-prev,
.idx-banner .swiper-button-next {
    top: 25%;
    left: 36%;
    right: 0;
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    background: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.idx-banner .swiper-button-next {
    margin-top: 20px;
}

.idx-banner .swiper-button-prev::before,
.idx-banner .swiper-button-next::before {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.idx-banner .swiper-button-prev::before {
    margin-left: -3px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.idx-banner .swiper-button-next::before {
    margin-left: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.idx-banner .swiper-pagination {
    width: auto !important;
    bottom: .5rem !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.idx-banner .swiper-pagination-bullet {
    position: relative;
    width: 16px;
    ;
    height: 16px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 .3rem !important;
}

.idx-banner .swiper-pagination-bullet::after {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    bottom: 0;
    width: 12px;
    height: 12px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .4s cubic-bezier(0.28, 0.51, 0.38, 1);
    transition: all .4s cubic-bezier(0.28, 0.51, 0.38, 1);
}

.idx-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: none;
    opacity: 1;
}

.idx-banner .swiper-pagination-bullet-active::after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #136ef3;
    opacity: 1 !important;
}

.idx-banner .swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
}

.idx-banner .swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

/* 新闻动态 */
.news-container {
    width: 100%;
    margin: 0 auto;
    background: #eef3f7;
}

.tab-a {
    width: 100%;
    margin: 0 auto;
    /* background: #136ef3; */
    text-align: center;
    margin-bottom: 0.56rem;
    padding-top: 0.56rem;
}

.tab-a a {
    display: inline-block;
    padding:0.16rem 0.32rem;
    margin: 0 0.2rem;
    border-radius: 0.1rem;
    color: rgb(0, 0, 0, 0.6);
    font-size: 0.2rem;
    transition: all ease 0.2s;
}

.tab-a a.active {
    color: #fff;
    background: #136ef3;
    font-weight: bold;
}

.ntab-con {
    transition: all ease 0.2s;
}

.hot-news {
    position: relative;
    display: inline-block;
    width: 100%;
    /* min-height: 4.2rem; */
}

.hot-news img {
    width: 100%;
}

.s-span {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0, 0.4);
}

.s-span .hot-tit {
    font-size: 18px;
    padding: 12px 16px;
    color: #fff;
    display: block;
}

.flex {
    display: flex;
}

.news-right {
    /* height: 5.6rem; */
    background: #fff;
    box-shadow: 0 0 5px rgb(224, 238, 254);
    padding: 0.2rem 0.24rem;
}

.news-right a.a-bg {
    padding: 0.11rem 0;
    border-bottom: 1px dashed #eee;
}

.time b {
    font-size: 36px;
    color: #136ef3;
}

.time span {
    font-size: 12px;
    color: #888;
}

.n-cnt {
    padding-left: 12px;
}

.n-cnt .f16 {
    font-weight: bold;
    /* padding-bottom: 0.08rem; */
}

.hotb-list {
    margin-top: 0.36rem;
    display: block;
    background: #fff;
    box-shadow: 0 0 5px rgb(224, 238, 254);
}

a.hotb-list:hover .a-bg {
    background: #136ef3;
    transition: all ease 0.2s;
}

a.hotb-list:hover .a-bg h4,
a.hotb-list:hover .a-bg p,
a.hotb-list:hover .a-bg span {
    color: #fff;
}

a.hotb-list:hover .a-bg img {
    filter: brightness(100);
}

a.hotb-list .a-bg img {
    width: 11px;
    height: 7px;
}

.hotb-list img {
    width: 100%;
}

.hotb-list .flex {
    justify-content: space-between;
    align-items: flex-end;
}

a.hotb-list:hover {
    background: #fff;
}

.hotb-list .flex span {
    font-size: 12px;
    color: #999;
}

.hotb-list .flex img {
    width: 21px;
    height: 10px;
}

.hotb-list .a-bg {
    padding: 0.1rem 0.16rem 0.24rem;
}

.hotb-list .a-bg .f16 {
    font-weight: bold;
}

.more,
.back-a {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    padding-bottom: 50px;
}

.more a,
.back-a a {
    border: 1px solid #136ef3;
    color: #136ef3;
    font-size: 14px;
    padding: 6px 24px;
    letter-spacing: 2px;
    border-radius: 30px;
    display: inline-block;
}

.more a:hover,
.back-a a:hover {
    background: #136ef3;
    color: #fff;
    transition: all ease-in 0.4s;
}


/* 教学工作 */
.word-container {
    width: 100%;
    margin: 0 auto;
    background: url(../imgs/t-bg.jpg) left top no-repeat #fff;
    background-size: 100% 60%;
    padding-top: 0.64rem;
}

.tab-a2 {
    width: 100%;
    margin: 0 auto;
}

.tab-a2 a {
    display: inline-block;
    width: 25%;
    float: left;
    margin-left: -1px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding: 0.64rem 0;
    border-bottom: 3px solid rgb(255, 255, 255, 0);
    display: inline-block;
}


.tab-a2 a:nth-child(1) {
    background: url(../imgs/tab-img1.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a:nth-child(2) {
    background: url(../imgs/tab-img2.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a:nth-child(3) {
    background: url(../imgs/tab-img3.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a:nth-child(4) {
    background: url(../imgs/tab-img4.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a.active:nth-child(1) {
    font-weight: bold;
    border-bottom: 3px solid #fff;
    background: url(../imgs/tab-img1.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a.active:nth-child(2) {
    font-weight: bold;
    border-bottom: 3px solid #fff;
    background: url(../imgs/tab-img2.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a.active:nth-child(3) {
    font-weight: bold;
    border-bottom: 3px solid #fff;
    background: url(../imgs/tab-img3.jpg) left top no-repeat;
    background-size: 100% 100%;
}

.tab-a2 a.active:nth-child(4) {
    font-weight: bold;
    border-bottom: 3px solid #fff;
    background: url(../imgs/tab-img4.jpg) left top no-repeat;
    background-size: 100% 100%;
}

/* 公告 */
.affiche{
    margin-bottom: 0.48rem;
}
.affiche .work-right{
    margin-top: 0;
}
.affiche .work-right a.word-hot{
    margin-top: 0;
    margin-bottom: 0.24rem;
}

/* hot */
.hot-img {
    padding-bottom: 0.24rem;
    padding-top: 0.36rem;
}

.hot-img img {
    width: 100%;
}

.word-cnt {
    background: #fff;
    /* padding: 20px; */
    margin-top: 0.64rem;
}

a.word-hot {
    display: block;
    padding: 0;
    border:1px solid #eee;
    background: #fff;
}

.word-hot .f16 {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.word-hot .flex {
    justify-content: space-between;
    padding-bottom: 8px;
    align-items: end;
}

.word-hot .flex span {
    color: #999;
}

.word-hot .flex img {
    width: 11px;
    height: 7px;
}

a.word-hot:hover .flex img {
    transition: all ease 0.2s;
    margin-right: 20px;
}

.work-right {
    margin-top: 0.64rem;
    /* background: #f9f9f9; */
}

.work-right .f16 {
    margin-bottom: 0.12rem;
}

.work-right a.word-hot {
    padding: 0.12rem 0.2rem;
    border: 1px solid #eee;
    margin-top: 0.22rem;
}

.work-right a.word-hot:hover {
    border: 1px solid #136ef3;
    transition: all ease-in 0.3s;
    box-shadow: 0 0 10px #c6ceda;
}

.work-item {
    padding: 0 20px;
}



/* 友情链接 */
.link-box {
    width: 100%;
    margin: 0 auto;
    background: url(../imgs/bbg.jpg) left top no-repeat;
    background-size: 100% 100%;
    padding: 0.72rem 0;
}

.link-box a {
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #eef3f7;
    padding: 0.24rem 0;
    border-radius: 0.08rem;
}

.link-box a img {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 6px;
}

.link-box a span {
    display: block;
}

.link-box a:hover {
    border-radius: 0.5rem;
    box-shadow: 0 0 10px #bbd4ff;
    transition: all ease-in 0.5s;
}

.link-box a:hover span {
    font-weight: bold;
}

/* 底部 */
.footer {
    padding-top: 40px;
    background-image: linear-gradient(to right, #2857f0 0%, #1ba5f7 100%);
}

.footer p,
.footer span {
    color: #fff;
}

.copy {
    text-align: center;
    color: #fff;
}

.contact {
    width: 70%;
    margin: 0 auto;
}

.contact p {
    line-height: 32px;
}

.copy {
    border-top: 1px solid #daf4ff;
    padding-top: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.flex {
    vertical-align: middle;
}

.f-logo {
    display: block;
}

.f-logo img {
    margin-top: 20px;
}

.rq {
    text-align: center;
}

.rq img {
    display: inline-block;
    text-align: center;
}

.rq span {
    display: block;
    padding-top: 0.1rem;
}

.clear {
    clear: both;
    font-size: 0;
}

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

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

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

/* 新闻列表 */
.page-banner {
    width: 100%;
    height: 2.4rem;
    margin: 0 auto;
    background-position: center center;
    background-size: cover;
}

.newslist-page {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0.48rem;
    background: #eef3f7;
}

.tab-a3 {
    margin: 0 auto;
    text-align: center;
    padding: 0.48rem 0 0.20rem 0;
}

.tab-a3 a {
    font-size: 0.20rem;
    background: #fff;
    color: #666;
    padding: 0.16rem 0.48rem;
    border-radius: 0.04rem;
    display: inline-block;
    margin-bottom:20px;
}

.tab-a3 a.active,
.tab-a3 a:hover {
    background: #136ef3;
    color: #fff;
    font-weight: bold;
}

.newspage-bg {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.28rem;
    background: #fff;
}

.newspage-bg ul {
    padding: 0;
}

/*  */
.news-main {
    width: 100%;
    margin: 0 auto;
}

.news-item {
    border-bottom-width: 1px;
}

.news-main .news-item-box {
    display: flex;
    vertical-align: middle;
}

.news-main .news-con-box {
    width: 80%;
    padding-right: 8px;
    display: flex;
}

.news-time {
    display: inline-block;
    float: left;
}

.news-time time {
    position: relative;
    margin-bottom: 16px;
    padding-top: 14px;
    font-size: 18px;
    color: #999;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: inline-block;
}

time {
    font-size: 24px;
}

.news-con {
    display: inline-block;
    width: 84%;
    padding-left: 30px;
    margin-top: 19px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.news-con .f16 {
    font-weight: bold;
}

.news-item .news-icon {
    position: relative;
    width: 35px;
    height: 35px;
    border: 1px solid transparent;
    background-color: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
    top: -10px;
}

.news-item .news-icon span {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 14px;
    height: 15px;
    background: url(../imgs/icon.png) no-repeat center;
}

.news-img {
    width: 20%;
}

.news-item {
    padding: 14px 0;
    clear: both;
    border-bottom: 1px solid #dddddd;
}


.news-item:hover .news-icon {
    background-color: #136ef3;
}

.news-item:hover {
    border-color: #136ef3;
    transition: all ease 1s;
}

.news-item:hover .news-icon span {
    background: url(../imgs/icon_hover.png) no-repeat center;
}

/* 无图 */
.news-main .no-img .news-con-box {
    width: 100%;
}

.news-main .no-img .news-con {
    width: 100%;
}

/* 分页 */
.pages {
    height: auto;
    margin: 0 auto;
    margin-top: 0.64rem;
    padding-bottom: 0.36rem;
    text-align: center;
}

.pages a {
    padding: 0;
    margin: 5px;
    color: #5a6f7c;
    text-decoration: none;
    background-color: #fff;
    border-radius: 2px;
    display: inline-block;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 37px;
    border: 1px solid #eaeff5;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
}

.pages a img {
    display: inline;
    vertical-align: middle;
    padding-bottom: 5px;
}

.pages a:first-child {
    background: #3389ff;
    border: 1px solid #3389ff;
    border-radius: 2px;
    color: #fff;
}

.pages a:first-child img {
    padding-top: 10px;
}

.pages a:last-child {
    background: #35434e;
    border: 1px solid #35434e;
    border-radius: 2px;
    color: #fff;
}

.pages a:first-child img {
    transform: rotate(180deg);
}

.pages a:hover,
.pages a.active {
    background: #136ef3;
    color: #fff;
    border-color: #136ef3;
    box-shadow: 0 3px 12px rgba(26, 82, 238, 0.2);
}

/* 详情页面 */
.news-content {
    background: #fff;
    padding: 0.36rem;
}

.news-content h2.c-tit {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #666666;
    padding-bottom:15px;
}

.news-content .c-tag {
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid #eee;
color: #666666;
}

.content-box {
    padding: 0.32rem 0;
    line-height: 32px;
    font-size: 16px;
    color: #333;
}

.content-box img {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.content-box p {
    text-indent: 2em;
}

/* 下一条*/
.tips-next {
    padding-top: 0.32rem;
    border-top: 1px solid #eee;
}

.tips-next a {
    color: #136ef3;
}

.tips-next a:hover {
    text-decoration: underline;
}

.tips-next div {
    margin-bottom: 10px;
}

.map {
    padding: 0.28rem 0;
    font-size: 14px;
}

.map a {
    color: #136ef3;
    padding-right: 10px;
}
.map span{
    padding-left: 10px;
}



@media (min-width: 640px) {
    .idx-banner .en {
        margin-left: -10%;
    }
}

@media (min-width: 1200px) {

    .idx-banner .swiper-button-prev:hover,
    .idx-banner .swiper-button-next:hover {
        border-color: #fff;
    }
}

.idx-title .en {
    line-height: 15px;
    font-size: 12px;
    color: #888;
}

.idx-title .cn {
    margin-top: 15px;
    font-size: 0.45rem;
    color: #3a3a3a;
    font-weight: bold;
}

@media (max-width: 639px) {
    .idx-title {
        text-align: center;
    }
}

.idx-overview {
    padding-top: .88rem;
    padding-bottom: .88rem;
}

.idx-overview .idx-title {
    padding-bottom: .7rem;
}

.idx-overview .textbox {
    padding: 8% 7%;
}

.idx-overview .textbox h4 {
    font-size: 26px;
    color: #383838;
    margin-right: -100px;
}

.idx-overview .textbox h4 i {
    position: relative;
    top: -8px;
    display: inline-block;
    margin-right: .25rem;
    width: 30%;
    height: 2px;
    background: #4e3b3c;
}

.idx-overview .textbox h6 {
    margin: 18% 0 12%;
    font-size: 16px;
    line-height: 28px;
    color: #2f2f2f;
}

.idx-overview .textbox p {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
}

.idx-overview .textmore {
    margin-top: 12%;
}

@media (min-width: 992px) {
    .idx-overview .col-md-7 {
        width: 60%
    }

    .idx-overview .col-md-5 {
        width: 40%;
        float: right;
    }
}

.idx-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
}

.logo-box {
    padding: 0.2rem 0;
}

.app {
    display: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .app {
        display: block;
        width: 4rem;
    }
    .logo-box{
        position:absolute;
        z-index: 10;
    }
    .sear{
        display: none;
    }

    .field-container {
        width: 2rem;
        height: 32px;
    }

    .icons-container {
        width: 28px;
        height: 28px;
    }

    .tab-a a {
        font-size: 0.28rem;
    }

    .idx-banner {
        height: 40vh;
    }

    .contact {
        width: 100%;
    }

    .link-box .container a {
        margin-bottom: 0.28rem;
    }

    .link-box {
        padding-bottom: 0.44rem;
    }

    .f-logo img {
        margin-bottom: 0.28rem;
    }

    .contact p {
        margin-bottom: 0;
    }

    .work-right {
        margin-top: 0.32rem;
        border-top: 1px solid #eee;
    }

    .footer {
        padding-top: 0px;
    }

    .rq span {
        font-size: 13px;
    }

    /* tab */
    .tab-a3 a {
        font-size: 0.28rem;
    }

    .news-item {
        padding: 14px 0;
    }

    .news-con {
        width: 100%;
        padding-left: 0;
        margin-top: 0.12rem;
    }

    .news-main .news-item-box {
        width: 100%;
        align-items: baseline;
    }

    .news-main .news-con-box {
        display: block;
        width: 60%;
    }

    .news-img {
        width: 40%;
    }

    .news-time {
        width: 100%;
    }

    .news-time time {
        margin-bottom: 0;
        padding-top: 0;
    }

    .news-item .news-icon {
        display: inline-block;
        top: 0;
    }

    .news-item .news-icon span {
        top: 18px;
    }

    p.news-desc {
        margin: 0;
    }

    .navbar-default .navbar-nav>.open>a {
        color: #136ef3;
    }

    .sear {
        padding-right: 10px;
    }

    .logo-box a img {
        padding-left: 10px;
        margin-right: 0;
    }
    .map{
        padding-left: 10px;
    }




}

@media (max-width: 639px) {}

@media (max-width:421px) {
    body {
        min-width: 320px;
        overflow-x: hidden;
    }

    .col-xs-6 {
        padding: 0;
    }

    .c-item {
        width: 90%;
    }

    .c-item:nth-child(2n+1) {
        margin-left: 5%;
    }

    .culture-content .c-item p {
        height: 1.2rem;
    }

}


.dummy{
    margin:10px 0;
    font-weight: bold;
}
/*images size */
.aspect-box {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}
.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
    position: relative;
    display: block;
    content: "";
    box-sizing: border-box;
}

.rectangle16-9{
    aspect-ratio: '16:9';
}
.rectangle16-9:before {
    padding-top: 56.25%;
}
.rectangle16-10{
    aspect-ratio: '16:10';
}
.rectangle16-10:before {
    padding-top: 62.5%;
}
.rectangle3-4{
    aspect-ratio: '3:4';
}
.rectangle3-4:before {
    padding-top: 120%;
}
