@charset "UTF-8";
/*!
 * Author: ch233
 * Last update: 2020-05-03
 * Version: 1.0
 * Normalize CSS default properties
 */
* {
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:link,
a:visited,
a:hover {
    text-decoration: none;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
    color: #1b1b1b;
}

header,
footer,
main,
section,
div,
p,
span,
i,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: normal;
    font-style: normal;
}

ul,
ol,
li,
dl,
dd {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    margin: 0;
    padding: 0;
    border: 0;
}

span,
i,
b {
    font-style: normal;
}

textarea {
    resize: none;
}

.swiper {
    position: absolute;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

    .swiper .swiper-content {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

        .swiper .swiper-content li {
            transition: all 1s;
            opacity: 0;
            z-index: 9;
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            overflow: hidden;
        }

            .swiper .swiper-content li a {
                display: block;
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
            }

                .swiper .swiper-content li a img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    object-fit: cover;
                    transform: scale(1.1);
                }

                .swiper .swiper-content li a .tt {
                    position: absolute;
                    top: 50%;
                    left: 13vw;
                    right: 13vw;
                    transform: translateY(-50%);
                    font-size: 6vh;
                    font-weight: bold;
                    color: #fff;
                    text-shadow: 0px 3px 12px rgba(77, 77, 77, 0.37);
                }

            .swiper .swiper-content li.current {
                opacity: 1;
                z-index: 99;
            }

                .swiper .swiper-content li.current a img {
                    animation: coverScale 6s linear 0s 1;
                }

@keyframes coverScale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.swiper .swiper-flags {
    width: 100%;
    position: absolute;
    z-index: 99;
    bottom: 10vh;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

    .swiper .swiper-flags li {
        transition: all 0.5s;
        width: 64px;
        height: 64px;
        opacity: 0.6;
        margin: 0 1.2rem;
    }

        .swiper .swiper-flags li img {
            display: block;
            width: 100%;
            height: 100%;
            height: 100%;
            border-radius: 100%;
            border: 1px solid transparent;
        }

        .swiper .swiper-flags li:hover {
            transition: all 0.5s;
            opacity: 1;
        }

        .swiper .swiper-flags li.current {
            transition: all 0.5s;
            opacity: 1;
        }

            .swiper .swiper-flags li.current img {
                border: 1px solid #fff;
            }

.swiper .swiper-prev,
.swiper .swiper-next {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

    .swiper .swiper-prev img,
    .swiper .swiper-next img {
        display: block;
        width: 100%;
        height: 100%;
    }

.swiper .swiper-prev {
    left: 1.5vw;
}

.swiper .swiper-next {
    right: 1.5vw;
}

@font-face {
    font-family: DIN-b;
    src: url(../fonts/DIN-Bold.ttf);
}

@font-face {
    font-family: DIN-m;
    src: url(../fonts/DIN-Medium.ttf);
}

body {
    width: 100vw;
    overflow-x: hidden;
}

.page-guide {
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

    .page-guide .linear-mask {
        width: 100vw;
        height: 30vh;
        position: fixed;
        z-index: 9;
        top: 0;
        left: 0;
        background: linear-gradient(180deg, #0F1D2C 0%, rgba(15, 29, 44, 0) 100%);
        opacity: 1;
        transition: all 1s;
    }

    .page-guide .header {
        transition: all 1s;
        position: fixed;
        top: 0;
        z-index: 999;
        width: 96vw;
        padding: 2vh 2vw;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
    }

        .page-guide .header .logo {
            height: 74px;
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
        }

            .page-guide .header .logo img {
                display: block;
                height: 74px;
            }

            .page-guide .header .logo h1 {
                margin-left: 2.5rem;
                font-size: 22px;
                font-weight: bold;
                color: #fff;
            }

        .page-guide .header .nav {
            display: flex;
            flex-flow: column nowrap;
            align-items: flex-end;
        }

            .page-guide .header .nav .nav-tools {
                width: fit-content;
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
                justify-content: flex-end;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

                .page-guide .header .nav .nav-tools .item {
                    margin: 0 20px 20px;
                }

                    .page-guide .header .nav .nav-tools .item a {
                        display: flex;
                        flex-flow: row nowrap;
                        align-items: center;
                    }

                    .page-guide .header .nav .nav-tools .item:first-of-type {
                        margin-left: 10px;
                    }

                    .page-guide .header .nav .nav-tools .item:last-of-type {
                        margin-right: 10px;
                    }

                .page-guide .header .nav .nav-tools img,
                .page-guide .header .nav .nav-tools span {
                    display: block;
                }

                .page-guide .header .nav .nav-tools img {
                    height: 23px;
                    margin-right: 8px;
                }

                .page-guide .header .nav .nav-tools span {
                    font-size: 15px;
                    font-weight: 200;
                    color: rgba(255, 255, 255, 0.85);
                }

            .page-guide .header .nav .nav-navigation {
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
                margin-top: 20px;
                /*        padding-right: 60px;*/
            }

                .page-guide .header .nav .nav-navigation .item {
                    position: relative;
                    transition: all 0.5s;
                   margin: 0 5px;
                    min-width: 100px;
                    text-align: center;
                    padding-bottom: 10px;
                    border-bottom: 1px solid transparent;
                }

                    .page-guide .header .nav .nav-navigation .item a {
                        font-size: 20px;
                        font-weight: 400;
                        color: rgba(255, 555255, 255, 0.9);
                        white-space: nowrap;
                        font-weight: bold;
                    
                    }

                    .page-guide .header .nav .nav-navigation .item .item-nav {
                        display: none;
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        top: 60px;
                        line-height: 30px;
                        bottom: -35px;
                        flex-flow: row nowrap;
                        align-items: center;
                        /* left: -20%; */
                        text-align: center;
                        min-width: 100px;
                    }

                        .page-guide .header .nav .nav-navigation .item .item-nav a {
                            line-height: 35px;
                            font-weight: bold;
                            display: block;
                            padding: 0 20px;
                            white-space: nowrap;
                            font-size: 18px;
                            font-weight: 600;
                            color: #1253a0;
                            ;
                            /* padding: 10px 0; */
                            background: #fff;
                        }

                    .page-guide .header .nav .nav-navigation .item.right .item-nav {
                        left: auto;
                        right: 20px;
                        transform: translateX(0);
                    }

                    .page-guide .header .nav .nav-navigation .item.current {
                        border-bottom: 1px solid white;
                    }

                        .page-guide .header .nav .nav-navigation .item.current .item-nav {
                            /*display: flex !important;*/
                            display: block;
                        }

            

                    .page-guide .header .nav .nav-navigation .item:last-of-type {
                        margin-right: 0;
                    }

        .page-guide .header.blue-header {
            background: #084F9C;
        }

            .page-guide .header.blue-header .nav-navigation .item {
                border-bottom: 0;
            }

                .page-guide .header.blue-header .nav-navigation .item.current {
                    border-bottom: 0;
                }

                    .page-guide .header.blue-header .nav-navigation .item.current .item-nav {
                        z-index: 99;
                        bottom: -80px;
                      /*  display: flex !important;*/
                    }

                        .page-guide .header.blue-header .nav-navigation .item.current .item-nav a {
                      
                            /*  color: rgba(0, 0, 0, 0.9);
                            font-weight: 400;*/
                            color: #1253a0;
                            font-size: 18px;
                            font-weight: 550;
                        }

             


                    .page-guide .header.blue-header .nav-navigation .item.current::before {
                        content: "";
                        position: absolute;
                        bottom: -20px;
                        left: 50%;
                        transform: translateX(-50%);
                        border-top: 6px solid transparent;
                        border-left: 6px solid transparent;
                        border-right: 6px solid transparent;
                        border-bottom: 6px solid #fff;
                    }

                    .page-guide .header.blue-header .nav-navigation .item.current::after {
                    /*    content: "";*/
                        opacity: 0.9;
                        position: fixed;
                        width: 100vw;
                        top: 142px;
                        left: 0;
                        height: 60px;
                        background: #FFF;
                        box-shadow: 0px 4px 10px 0px rgba(8, 79, 156, 0.5);
                    }

    .page-guide .start-button {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        position: absolute;
        z-index: 99;
        left: 50%;
        bottom: 2.5vh;
        transform: translateX(-50%);
        border-radius: 128px;
        border: 1px solid #1253A0;
        background: rgba(18, 83, 160, 0.5);
        padding: 12px;
    }

        .page-guide .start-button img {
            display: block;
            height: 15px;
            margin-left: 5px;
        }

        .page-guide .start-button span {
            display: block;
            font-size: 15px;
            color: #fff;
        }

/* page */
.page {
    position: relative;
    width: 100vw;
}

    .page .page-inner {
        margin: 0 8vw;
        padding: 10vh 0;
    }

    .page .page-title h2,
    .page .page-title h3 {
        position: relative;
        color: #084F9C;
        text-align: center;
    }

    .page .page-title h2 {
        font-size: 33px;
        font-weight: bold;
    }

        .page .page-title h2::before {
            content: "";
            position: absolute;
            top: 86%;
            left: 34%;
            width: 150px;
            border-top: 1px solid #084F9C;
        }

        .page .page-title h2::after {
            content: "";
            position: absolute;
            top: 86%;
            right: 34%;
            width: 150px;
            border-top: 1px solid #084F9C;
        }

    .page .page-title h3 {
        font-size: 13px;
        font-weight: 200;
        text-transform: uppercase;
        letter-spacing: 7px;
    }

    .page .page-title.reverse h2,
    .page .page-title.reverse h3 {
        color: #fff;
    }

        .page .page-title.reverse h2::before {
            content: "";
            border-top: 1px solid #FFF;
        }

        .page .page-title.reverse h2::after {
            content: "";
            border-top: 1px solid #FFF;
        }

    .page .page-more {
        position: relative;
        width: 180px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto;
        background-image: url("../images/icon_more_white.svg");
        background-repeat: no-repeat;
        background-position: 82% 43%;
        background-color: #084F9C;
        text-align: center;
        border-radius: 4px;
    }

        .page .page-more a {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            text-align: center;
            font-size: 15px;
            font-weight: 200;
            text-indent: -1em;
            color: #fff;
        }

        .page .page-more.reverse {
            background-image: url("../images/icon_more_black.svg");
            background-color: #fff;
        }

            .page .page-more.reverse a {
                color: black;
            }

/* news page */
.page-news {
    min-height: 500px;
    background-image: url("../images/news_col_bg.png");
    background-size: 85vw auto;
    background-position: top left;
    background-repeat: no-repeat;
}

.page-notice {
    min-height: 500px;
    background-image: url("../images/notice_col_bg.jpg");
    background-size: 100vw auto;
    background-position: top left;
    background-repeat: no-repeat;
}

.news-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 7vh 0;
}

.notice-content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 5vh 0;
}

    .notice-content .item {
        width: 23vw;
        padding: 1vw 1.6vw;
        margin: 2.5vh 0;
        border-radius: 4px;
        background: #FFF;
        box-shadow: 0px 3px 10px 0px rgba(13, 80, 154, 0.5);
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
    }

        .notice-content .item .time {
            flex-grow: 2;
            flex-shrink: 0;
            text-align: center;
            border-right: 1px solid rgba(60, 114, 176, 0.3);
            padding-right: 1.2vw;
            margin-right: 1.2vw;
        }

            .notice-content .item .time .day {
                margin-bottom: 8px;
                color: #084F9C;
                font-size: 40px;
                font-family: DIN-b;
            }

            .notice-content .item .time .month {
                padding-top: 8px;
                color: rgba(0, 0, 0, 0.8);
                font-size: 16px;
                font-family: DIN-m;
                border-top: 1px solid rgba(60, 114, 176, 0.3);
            }

        .notice-content .item .tt a {
            font-size: clamp(1.2rem, 1vw, 2rem);
            color: rgba(0, 0, 0, 0.8);
        }

.abroad-content .abroad-media {
    margin: 6vh auto;
    width: 38vw;
}

    .abroad-content .abroad-media .video-element {
        object-fit: fill;
    }

.abroad-content .entrys {
    padding: 2vw;
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(180deg, #E4F0FD 0%, rgba(237, 243, 250, 0) 59.55%);
    display: flex;
    flex-flow: row nowrap;
}

    .abroad-content .entrys .entry-big {
        transition: all 1s;
        position: relative;
        flex-shrink: 0;
        width: 35vw;
        height: 42vh;
        margin-right: 2vw;
        background-color: #339DDC;
        border-radius: 8px;
        text-align: center;
    }

        .abroad-content .entrys .entry-big img {
            width: 40%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .abroad-content .entrys .entry-big a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .abroad-content .entrys .entry-big .tt {
            margin-top: 15vh;
            font-size: 40px;
            color: #fff;
        }

        .abroad-content .entrys .entry-big .tx {
            font-size: 46px;
            font-weight: 100;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.2);
        }

        .abroad-content .entrys .entry-big:hover {
            background-color: #2082bc;
        }

    .abroad-content .entrys .entry-others {
        display: flex;
        flex-flow: row wrap;
    }

        .abroad-content .entrys .entry-others .entry {
            transition: all 1s;
            position: relative;
            width: 13vw;
            margin-right: 2vw;
            border-radius: 4px;
            text-align: center;
        }

            .abroad-content .entrys .entry-others .entry a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .abroad-content .entrys .entry-others .entry img {
                width: 20%;
                margin-top: 3.5vh;
                margin-bottom: 1vh;
            }

            .abroad-content .entrys .entry-others .entry .tt {
                font-size: 20px;
                color: #fff;
            }

            .abroad-content .entrys .entry-others .entry .tx {
                font-size: 12px;
                font-weight: 100;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.5);
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(1) {
                margin-bottom: 2vw;
                background-color: #B8C974;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(2) {
                margin-bottom: 2vw;
                background-color: #74AAC9;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(3) {
                margin-bottom: 2vw;
                margin-right: 0;
                background-color: #7ECCD1;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(4) {
                background-color: #D2B96D;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(5) {
                background-color: #637CBA;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(6) {
                margin-right: 0;
                background-color: #D79B7A;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(1):hover {
                background-color: #98ad43;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(2):hover {
                background-color: #4387ad;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(3):hover {
                background-color: #46b6bd;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(4):hover {
                background-color: #b99a39;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(5):hover {
                background-color: #405791;
            }

            .abroad-content .entrys .entry-others .entry:nth-of-type(6):hover {
                background-color: #c56f3f;
            }

/* news-swiper */
.news-swiper {
    position: relative;
    width: 40vw;
    aspect-ratio: 16/10;
}

    .news-swiper .swiper-content {
        width: 100%;
        height: 100%;
    }

        .news-swiper .swiper-content li {
            transition: all 1s;
            opacity: 0;
            z-index: 9;
            position: absolute;
            width: 100%;
            height: 100%;
        }

            .news-swiper .swiper-content li img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .news-swiper .swiper-content li .tt {
                position: absolute;
                bottom: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                font-size: 15px;
                color: #fff;
                padding: 15px 0;
                text-indent: 1em;
            }

            .news-swiper .swiper-content li.current {
                opacity: 1;
                z-index: 99;
            }

    .news-swiper .swiper-flags {
        position: absolute;
        bottom: 21px;
        right: 15px;
        z-index: 99;
        display: flex;
        flex-flow: row nowrap;
    }

        .news-swiper .swiper-flags li {
            margin: 0 3px;
            width: 7px;
            height: 7px;
            border-radius: 100%;
            background-color: rgba(255, 255, 255, 0.8);
        }

            .news-swiper .swiper-flags li.current {
                background-color: #084F9C;
            }

    .news-swiper .swiper-prev {
        position: absolute;
        z-index: 99;
        top: 42%;
        left: 0;
    }

    .news-swiper .swiper-next {
        position: absolute;
        z-index: 99;
        top: 42%;
        right: 0;
    }

/* news-list */
.news-list {
    flex-grow: 2;
    padding-left: 3vw;
}

    .news-list .list {
        width: 100%;
    }

        .news-list .list li {
            position: relative;
            display: flex;
            flex-flow: row nowrap;
            justify-content: flex-start;
            align-items: center;
            border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
            padding: 0 0 1vw;
            margin-top: 1vw;
        }

            .news-list .list li a {
                width: 100%;
                display: flex;
                flex-flow: row nowrap;
                justify-content: space-between;
                align-items: center;
            }

            .news-list .list li .tt,
            .news-list .list li .date {
                font-size: clamp(1.2rem, 1vw, 2.5rem);
            }

            .news-list .list li .tt {
                flex-grow: 2;
                padding-left: 0.5em;
                color: #000;
                max-width: 32em;
                overflow-x: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

            .news-list .list li .date {
                color: rgba(0, 0, 0, 0.3);
            }

            .news-list .list li a:hover .tt {
                color: #084F9C;
            }

            .news-list .list li::before {
                content: "";
                display: block;
                width: 8px;
                height: 8px;
                background-color: rgba(8, 79, 156, 0.3);
                border-radius: 100%;
            }

            .news-list .list li:first-of-type {
                margin-top: 0;
            }

/* links */
.links {
    position: relative;
    margin-top: -3vh;
    padding: 5vh 0;
    background-color: rgba(8, 79, 156, 0.1);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

    .links .tt {
        margin-right: 2vw;
        text-align: right;
    }

        .links .tt h2 {
            font-size: 30px;
            font-weight: bold;
            color: #084F9C;
        }

        .links .tt h3 {
            font-size: 13px;
            font-weight: 200;
            color: #084F9C;
            text-transform: uppercase;
        }

    .links .selected-wrap {
        position: relative;
        z-index: 999;
        width: 30vw;
        height: 8vh;
        background-image: url("../images/links_bg.svg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

        .links .selected-wrap .selected {
            line-height: 8vh;
            text-indent: 1em;
            font-size: clamp(1.2rem, 1.2vw, 2.5rem);
        }

        .links .selected-wrap .select {
            display: none;
            position: absolute;
            top: 50%;
            left: 0;
            background-color: #dbe6f1;
            transform: translateY(-50%);
            width: 30vw;
            padding: 2vh 0;
            border-radius: 8px;
        }

            .links .selected-wrap .select .option {
                margin: 0 2vh;
                padding: 2vh 0;
                border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
                text-indent: 1em;
                font-size: clamp(1.2rem, 1.2vw, 2rem);
            }

                .links .selected-wrap .select .option a {
                    font-size: inherit;
                    color: rgba(0, 0, 0, 0.8);
                }

        .links .selected-wrap.show .select {
            display: block;
        }

/* copy */
.copy {
    position: relative;
    padding: 5vh 8vw 2vh;
    background-color: #084F9C;
}

    .copy .copy-info {
        position: relative;
    }

        .copy .copy-info p {
            margin: 2vh 0;
            color: #fff;
            font-size: 13px;
            text-transform: uppercase;
        }

        .copy .copy-info .wa {
            height: 13px;
            margin: 0 5px 0 15px;
        }

        .copy .copy-info .logo {
            margin-top: 3vh;
            height: 5vh;
        }

        .copy .copy-info .contact {
            position: absolute;
            top: -1vh;
            left: 350px;
        }

    .copy .qrcode {
        position: absolute;
        top: 7vh;
        right: 6vw;
        display: flex;
        flex-flow: row nowrap;
    }

        .copy .qrcode .item {
            margin-right: 2vw;
            text-align: center;
        }

            .copy .qrcode .item img {
                width: 6vw;
                margin-bottom: 0.5vw;
            }

            .copy .qrcode .item p {
                font-size: 15px;
                color: #fff;
            }

/* list */
.page-list {
    height: auto;
    padding-top: 150px;
    background: rgba(8, 79, 156, 0.1);
}

    .page-list .list-page-inner {
        margin: 0 8vw;
        padding: 5vh 0 10vh;
    }

        .page-list .list-page-inner .page-title {
            text-align: center;
        }

            .page-list .list-page-inner .page-title h2 {
                font-size: 40px;
                font-weight: bold;
                color: rgba(0, 0, 0, 0.8);
                margin-bottom: 1vh;
            }

            .page-list .list-page-inner .page-title h3 {
                font-size: 20px;
                font-weight: bold;
                color: rgba(0, 0, 0, 0.7);
                text-transform: uppercase;
                letter-spacing: 5px;
            }

        .page-list .list-page-inner .page-content .list {
            padding: 5vh 5vw;
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            align-items: flex-start;
            background: #fff;
        }

            .page-list .list-page-inner .page-content .list li {
                /* width: 16.6vw; */
                width: 100%;
                /* border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background-color: #fff; */
                overflow: hidden;
                margin-bottom: 1vh;
                border-bottom: 1px solid #ccc;
            }

                .page-list .list-page-inner .page-content .list li img {
                    width: 100%;
                    height: 23vh;
                    object-fit: cover;
                }

                .page-list .list-page-inner .page-content .list li .tt {
                    /* margin: 2vh 1vw;
  font-weight: bold; */
                    width: 80%;
                    font-size: 16px;
                    color: rgba(0, 0, 0, 0.8);
                    float: left;
                    padding-bottom: 15px;
                    /* height: 4.2em;
  overflow: hidden; */
                }

                    .page-list .list-page-inner .page-content .list li .tt a {
                        color: rgba(0, 0, 0, 0.8);
                        font-size: 16px;
                    }

                .page-list .list-page-inner .page-content .list li a {
                    width: 80%;
                    /* height: 23vh;
  object-fit: cover; */
                }

                .page-list .list-page-inner .page-content .list li .time {
                    /* padding: 1vh 1vw 2vh; */
                    font-size: 15px;
                    /* font-family: DIN-m; */
                    color: rgba(0, 0, 0, 0.4);
                    width: 15%;
                    float: right;
                }

.page-content .list #mypage {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
}

.page-content .list #mypage {
    /* background-color: rgba(0, 0, 0, 0.05); */
    margin: 0 8px;
}

    .page-content .list #mypage a {
        display: block;
        padding: 10px 15px;
        font-size: 17px;
        font-weight: inherit;
        color: inherit;
        text-align: center;
    }

    .page-content .list #mypage .now {
        display: block;
        padding: 10px 15px;
        font-size: 17px;
        font-weight: inherit;
        color: inherit;
        text-align: center;
    }

    .page-content .list #mypage :hover,
    .page-content .list #mypage .current {
        background: rgba(0, 0, 0, 0.7);
    }

        .page-content .list #mypage :hover a,
        .page-content .list #mypage .current a {
            color: #fff;
        }


/* .page-list .list-page-inner .page-content .pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.page-list .list-page-inner .page-content .pagination li {
  background-color: rgba(0, 0, 0, 0.05);
  margin: 0 8px;
}
.page-list .list-page-inner .page-content .pagination li a {
  display: block;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: inherit;
  color: inherit;
  text-align: center;
}
.page-list .list-page-inner .page-content .pagination li:hover,
.page-list .list-page-inner .page-content .pagination li.current {
  background: rgba(0, 0, 0, 0.7);
}
.page-list .list-page-inner .page-content .pagination li:hover a,
.page-list .list-page-inner .page-content .pagination li.current a {
  color: #fff;
} */

.page-article {
    height: auto;
    padding-top: 150px;
    background: rgba(8, 79, 156, 0.1);
}

    .page-article .article-page-inner {
        margin: 0 15vw;
        padding: 5vh 0 10vh;
        min-height: 600px;
    }

        .page-article .article-page-inner .article-title {
            font-size: 32px;
            font-weight: bold;
            color: rgba(0, 0, 0, 0.8);
        }

        .page-article .article-page-inner .article-time {
            margin-top: 2vh;
            font-size: 17px;
            font-family: DIN-b;
            color: rgba(0, 0, 0, 0.5);
            text-indent: 5px;
        }

        .page-article .article-page-inner .page-content {
            margin-top: 3vh;
            padding-top: 3vh;
            display: flex;
            flex-flow: row nowrap;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
        }

            .page-article .article-page-inner .page-content .article {
                width: 75%;
                font-size: 17px;
                line-height: 34px;
                text-align: justify;
            }

                .page-article .article-page-inner .page-content .article p {
                    font-size: 17px;
                    line-height: 34px;
                    text-align: justify;
                    padding-bottom: 1em;
                }

                .page-article .article-page-inner .page-content .article a {
                    font-size: 17px;
                }

            .page-article .article-page-inner .page-content .list {
                margin-left: 2.5vw;
                padding-left: 2vw;
                border-left: 1px solid rgba(0, 0, 0, 0.1);
            }

                .page-article .article-page-inner .page-content .list .list-title {
                    margin-bottom: 20px;
                    font-size: 18px;
                    font-weight: bold;
                    color: rgba(0, 0, 0, 0.8);
                }

                .page-article .article-page-inner .page-content .list .lis {
                    margin-bottom: 50px;
                }

                    .page-article .article-page-inner .page-content .list .lis li {
                        margin-bottom: 30px;
                    }

                        .page-article .article-page-inner .page-content .list .lis li a {
                            display: flex;
                            flex-flow: row nowrap;
                            align-items: center;
                        }

                        .page-article .article-page-inner .page-content .list .lis li img {
                            height: 90px;
                            width: 130px;
                            object-fit: cover;
                            border-radius: 4px;
                        }

                        .page-article .article-page-inner .page-content .list .lis li p {
                            font-size: 15px;
                            margin-left: 20px;
                            width:300px;
                            white-space: nowrap;
                            overflow: hidden;
                            color: rgba(0, 0, 0, 0.8);
                            white-space: nowrap;
                            text-overflow: ellipsis;
                            -o-text-overflow: ellipsis;
                            color: rgba(0, 0, 0, 0.8);
                        }



.linkBox {
    background: #ebeef3;
    padding: 40px 0;
}

 .links {
 /*   padding: 60px 0 0;
    margin-bottom: 60px;*/
}

 .f-links {

    float: left;
}

 .f-links b {
        float: left;
        display: block;
        width: 42px;
        font-size: 16px;
        line-height: 30px;
        color: #333;
        margin-right: 10px;
    }

 .select-group {
    float: left;
    display: block;
    width: 450px;
    margin: 0px auto;
    background: #fff;
    padding-left: 20px;
}

.select-group,
.select-group .select-selected {
    height: 52px;
    line-height: 52px;
    font-size: 18px;
    position: relative;
    text-align: left;
    color: #222;
}

    .select-group .select-selected {
        padding-right: 60px;
        user-select: none;
    }

.links .select-value {
    display: block;
    line-height: 52px;
    margin-right: 20px;
    float: left;
    color: #000;
    font-size: 40px;
    font-family: "CastleT";
}

.select-group .select-arrow {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 0px;
    right: 0px;
    background: url(http://subsites.chinadaily.com.cn/yunnanuniversity/att/4579.files/i/arr_ico3.png) no-repeat center;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
}

.select-group .select-options {
    position: absolute;
    width: 100%;
    background: #fff;
    left: 0px;
    bottom: 100%;
    display: none;
}

.select-group ul {
    background: #e2e2e2;
}

.select-group li {
}

.select-group a {
    display: block;
    padding: 10px 15px;
    line-height: 20px;
    color: #000;
    font-size: 17px;
}

    .select-group a:hover {
        background: #eee;
        text-decoration: none;
    }




.breadcrumb {
    margin-bottom: 40px
}

    .breadcrumb .icon, .breadcrumb ul, .breadcrumb ul > li {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        padding-right: 8px;
        color: rgba(67,67,67,.6)
    }

        .breadcrumb .icon a, .breadcrumb ul a, .breadcrumb ul > li a {
            color: #434343;
            font-size: inherit
        }

            .breadcrumb .icon a:hover, .breadcrumb ul a:hover, .breadcrumb ul > li a:hover {
                text-decoration: underline
            }

    .breadcrumb li:after {
     /*   content: "/";*/
        padding: 0 0 0 12px;
        color: rgba(67,67,67,.6)
    }

    .breadcrumb li:last-of-type:after {
        content: ""
    }

    .breadcrumb .icon {
        padding-right: 15px
    }

        .breadcrumb .icon img {
            height: 20px
        }



.page-content .article p img {
    max-width: 95%;
    height: auto;
}


