* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: "Ë¼Ô´ºÚÌå"
}

body {
    width: 100%;
    height: 100%
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #4d8dbe;
    width: 100%
}

.title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.header-title {
    width: 28vw;
    color: #fff;
    margin-left: 2%
}

.more-img {
    float: right;
    width: 5%;
    height: 3vw;
    display: none
}

.header-title img {
    width: 28vw;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.header-search {
    margin-top: 10%
}

.search {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-shadow: 0 0 3px 0px #fff;
    box-shadow: 0 0 3px 0px #fff;
    -webkit-transition: 1s;
    transition: 1s;
    margin-right: 2%
}

.search input {
    width: 0px;
    padding: 0;
    font-size: 17px;
    outline: none;
    border: none;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: 1s linear;
    transition: 1s linear;
    display: none;
    pointer-events: none
}

.search .img1 {
    padding: 6px;
    background-color: #fff;
    border-radius: 25px;
    width: 30px;
    height: auto;
    margin-right: 5px;
    -webkit-transition: 1s;
    transition: 1s
}

.search .img2 {
    padding: 6px;
    background-color: #4d8dbe;
    border-radius: 25px;
    width: 30px;
    height: auto;
    margin-right: 5px;
    -webkit-transition: 1s;
    transition: 1s;
    display: none
}

.search:focus-within {
    width: 270px;
    border: 2px solid #4d8dbe;
    background-color: #fff
}

.search:focus-within input {
    display: inline-block;
    width: 210px;
    pointer-events: auto
}

.search:focus-within .img1 {
    display: none
}

.search:focus-within .img2 {
    display: block
}

.search:hover {
    width: 270px;
    border: 2px solid #4d8dbe;
    background-color: #fff
}

.search:hover input {
    display: inline-block;
    width: 210px;
    pointer-events: auto
}

.search:hover .img1 {
    display: none
}

.search:hover .img2 {
    display: block
}

.header-navbar {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: #4d8dbe;
    width: 25%;
    height: 100%;
    z-index: 20;
    -webkit-transition: right .5s ease-in-out;
    transition: right .5s ease-in-out;
    opacity: 1
}

.header-shouye {
    margin-top: 40%
}

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: none;
    z-index: 5
}

.header-navbar li {
    display: block;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    text-decoration: none;
    border-bottom: dashed 1px #fff;
    font-size: 2vw;
    margin-left: 5%;
    margin-right: 5%
}

.header-navbar li a {
    float: left;
    color: #fff
}

.dropdown-content {
    width: 100%;
    min-width: 160px;
    position: absolute;
    left: 0;
    z-index: 50
}

.dropdown-content li {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    text-align: center;
    background-color: #03619f
}

.dropdown-content li a {
    color: #fff
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: #000
}

.navigation-div {
    width: 60%;
    height: auto;
    background-color: #4d8dbe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.navigation-ul {
    list-style-type: none;
    margin-bottom: 0;
    overflow: hidden;
    margin-left: 6%
}

.navigation-li {
    float: left
}

.navigation-li a {
    display: block;
    font-size: 1vw;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    position: relative
}

.navigation-li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fc0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease
}

.navigation-li a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

.submenu {
    width: 10%;
    background: #03619f;
    display: none;
    margin-top: -0.2%;
    margin-left: -1.2%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: absolute;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 204, 0)), to(rgb(255, 204, 0))) 1% top, -webkit-gradient(linear, left top, left bottom, color-stop(66%, rgb(255, 255, 255)), to(rgb(255, 255, 255))) bottom;
    background: linear-gradient(to bottom, rgb(255, 204, 0), rgb(255, 204, 0)) 1% top, linear-gradient(to bottom, rgb(255, 255, 255) 66%, rgb(255, 255, 255)) bottom;
    background-size: 100% 3px, 100% calc(100% - 3px);
    background-repeat: no-repeat;
    z-index: 1
}

.submenu li {
    display: grid
}

.submenu a {
    color: #000 !important;
    padding-top: 5%;
    padding-bottom: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: center
}

.submenu a:hover {
    color: #03619f
}

.navigation-li:hover .submenu {
    display: block;
    z-index: 100
}

.carousel-container {
    height: 40vh;
    margin: auto;
    overflow: hidden;
    position: relative
}

.carousel-slide {
    float: left;
    width: 100%;
    display: none
}

.carousel-slide img {
    width: 100%;
    height: 20vw;
    -o-object-fit: cover;
    object-fit: cover
}

.carousel-slide:first-child {
    display: block
}

.carousel-slide {
    position: relative
}

.prev,
.next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 10px;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.prev img,
.next img {
    width: 20%
}

.prev:hover,
.next:hover {
    opacity: 1
}

.prev {
    left: 5%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%
}

.next {
    right: 5%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%
}

.slide-indicator-container {
    width: 20%;
    position: absolute;
    top: 80%;
    right: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slide-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.indicator-dot {
    width: 1vw;
    height: 1vw;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px
}

.indicator-dot.active {
    background-color: #555
}

.content1-div {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-top: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3%
}

.content1-gradient img {
    margin-top: 2%;
    width: 100%;
    max-height: 30vh;
    margin-bottom: 3%;
    -o-object-fit: cover;
    object-fit: cover
}

.content1-div .content1-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 5%
}

.content1-div .content1-overlop {
    position: relative;
    padding: 1%;
    background-color: #1296db;
    color: #fff;
    margin-top: -8%;
    z-index: 1
}

.content1-div .content1-overlop span {
    font-size: 1.2vw
}

.content1-div .content1-overlop span:hover {
    color: #1296db;
    cursor: pointer
}

.content1-div .content1-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.content1-div .content1-title {
    font-size: 1.5vw;
    margin-bottom: 0;
    width: 100%
}

.content1-div .content1-title a {
    margin-top: 1%;
    font-size: 1vw;
    float: right;
    color: #bbb
}

.content1-div .content1-title a:hover {
    color: #1179c2
}

.content1-div .content1-gradient {
    width: 100%
}

.content1-div .content1-title2 {
    color: #fff;
    font-size: 1vw;
    margin-top: 13%;
    position: absolute;
    left: 3%
}

.content1-div .content1-title2:hover {
    color: #1179c2;
    cursor: pointer
}

.content1-list img {
    display: none
}

.content1-div .content1-list li {
    font-size: 1vw;
    width: 98%;
    padding: 2%;
    margin-top: 2.5%;
    border-bottom: 1px solid #bbb
}

.content1-div .content1-list li:hover {
    color: #1179c2;
    cursor: pointer
}

.content1-div .content1-list .content1-time {
    float: right;
    font-size: 1vw
}

.content1-div .content1-top img {
    width: 10%;
    margin-top: 0
}

.content1-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.content2-div {
    width: 100%;
    height: auto;
    padding-right: 10%;
    padding-left: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f5f5f5
}

.content2-div .clearfix::after {
    content: "";
    display: table;
    clear: both
}

.content2-left {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2
}

.content2-left .content2-top p {
    margin-top: 3%;
    width: 100%;
    float: right;
    font-size: 1.5vw;
    margin-bottom: 0
}

.content2-left .content2-top img {
    float: left;
    width: 8%
}

.content2-left .content2-top a {
    margin-top: 1%;
    float: right;
    font-size: 1vw;
    color: #bbb
}

.content2-left .content2-top a:hover {
    color: #1296db
}

.content2-left-list {
    float: left;
    width: 45%;
    overflow: hidden;
    background-color: #fff;
    margin-top: 2%;
    margin-left: 2%;
    margin-bottom: 2%;
    cursor: pointer
}

.content2-left-list:hover {
    background-color: #1296db;
    color: #fff
}

.content2-list-left {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 3%;
    padding-top: 10%;
    padding-right: 5%;
    color: #bbb
}

.content2-list-left hr {
    margin-top: 0;
    margin-bottom: 0
}

.content2-list-right {
    float: left;
    width: 65%;
    padding-top: 10%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.content2-list-right p {
    font-size: 1.2vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 0
}

.content2-list-right img {
    margin-top: 20%;
    float: right;
    width: 10%;
    margin-bottom: 5%;
    margin-right: 5%
}

.content2-data {
    margin-left: 35%;
    font-size: 1.5vw;
    font-weight: bold;
    margin-bottom: 0
}

.content2-month {
    font-size: 1vw;
    margin-left: 15%;
    margin-top: 5%;
    white-space: nowrap;
    margin-bottom: 0
}

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

.content2-right .content2-top p {
    margin-top: 5%;
    width: 100%;
    font-size: 1.5vw;
    margin-bottom: 0;
    padding-right: 10%;
    float: left
}

.content2-right .content2-top img {
    width: 12%;
    float: left
}

.content2-right .content2-top a {
    margin-top: 1%;
    float: right;
    font-size: 1vw;
    color: #bbb
}

.content2-right .content2-top a:hover {
    color: #1179c2
}

.content2-right-content {
    height: 23vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2%
}

.content2-right-content ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.content2-right-content ul li {
    width: 30%;
    height: 8vw;
    margin-right: 3.3%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.content2-right-content ul li p {
    font-size: 1vw;
    color: #000;
    text-decoration: none;
    margin-bottom: 0;
    z-index: 10;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.content2-right-content ul li img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    -o-object-fit: cover;
    object-fit: cover
}

.content2-right-content ul li:hover img {
    display: block;
    cursor: pointer
}

.content2-right-content ul li:hover p {
    opacity: 0;
    cursor: pointer
}

.content3-div {
    width: 95%;
    height: auto;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 5%;
    margin-bottom: 3%
}

.content3-div .active {
    display: block
}

.content3-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.content3-top img {
    width: 5%
}

.content3-title {
    font-size: 1.5vw;
    text-align: center;
    margin-bottom: 0
}

.content3-nr {
    overflow: hidden;
    display: none;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease
}

.content3-part {
    width: 20%;
    float: left;
    text-align: center;
    margin-top: 3%
}

.content3-img {
    border-radius: 50%;
    border: 2px dashed #bbb;
    overflow: hidden;
    width: 80%;
    height: 15vw;
    margin: 0 auto 2% auto
}

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

.content3-title1 {
    margin-top: 3%;
    font-size: 1.5vw;
    font-weight: bold;
    margin-bottom: 0
}

.content3-title2 {
    margin-top: 3%;
    color: #bbb;
    font-size: 1vw;
    margin-bottom: 0
}

.content4-div {
    width: 96%;
    height: auto;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 2%;
    margin-bottom: 3%;
    overflow: hidden
}

.content4-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.content4-top img {
    width: 5%
}

.content4-title {
    font-size: 1.5vw;
    text-align: center;
    margin-bottom: 0
}

.content4-nr {
    margin-top: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.content4-nr img {
    width: 20vw;
    height: auto;
    margin: 0 10px
}

.bottom-div {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1%;
    background-color: #00629f;
    background-image: url(/image/houqinzhichanchu/bottom-bj.png);
    background-size: 100% 100%
}

.bottom-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 10%;
    padding-top: 3%;
    padding-bottom: 3%
}

.bottom-left p {
    width: 100%;
    font-size: 1vw;
    margin-top: 4%;
    display: block;
    float: left;
    margin-bottom: 0;
    color: #fff;
    margin-left: 3%
}

.bottom-left span {
    margin-left: 2%
}

.bottom-logo {
    width: 60%;
    float: left
}

.bottom-hangkong {
    width: 20%;
    float: left
}

.bottom-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10%;
    padding-top: 3%;
    padding-bottom: 3%
}

.bottom-right p {
    color: #fff;
    float: right;
    text-align: right;
    display: block;
    width: 100%;
    font-size: 1vw;
    margin-top: 5%;
    margin-bottom: 0
}

.bottom-weixin {
    width: 10%;
    float: right
}

.liebiaoye-div {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.liebiaoye-left {
    float: left;
    width: 20%;
    height: auto;
    margin-left: 5%;
    margin-top: -7%
}

.liebiaoye-ul {
    margin-bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#f3f4f4), to(#eef5f9));
    background: linear-gradient(to bottom, #f3f4f4, #eef5f9)
}

.list-img {
    width: 100%
}

.liebiaoye-li {
    position: relative
}

.liebiaoye-li a {
    display: block;
    color: #000;
    font-size: 1.3vw;
    line-height: 7vw;
    font-weight: bold;
    text-align: center;
    position: relative;
    text-decoration: none
}

.liebiaoye-li a.active {
    color: #fff;
    background-image: url(/image/houqinzhichanchu/list-mode1-leftnav-hd-bg.png), url(/image/houqinzhichanchu/list-mode1-leftnav-hd-bg1.png);
    background-color: #03619f;
    background-size: cover
}

.liebiaoye-li .lgaoliang::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: #03619f;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width .3s ease, left .3s ease;
    transition: width .3s ease, left .3s ease;
    color: #03619f
}

.liebiaoye-right {
    margin-top: 5%;
    float: left;
    width: 60%;
    height: auto;
    margin-left: 5%;
    margin-bottom: 20%
}

.liebiaoye-right p {
    font-size: 1.3vw;
    text-indent: 2em;
    margin-bottom: 0
}

.liebiaoye-right hr {
    height: 2px;
    border: none;
    background-color: #bbb;
    margin-top: 5%;
    margin-bottom: 2%;
    width: 100%
}

.liebiaoye-hello {
    color: #03619f;
    font-size: 1.5vw;
    font-weight: bold
}

.content-teacher {
    float: left;
    width: 20%;
    margin-right: 5%;
    margin-bottom: 2%
}

.content-teacher img {
    width: 90%;
    height: 15vw;
    margin: 4%;
    border-radius: 10%;
    -o-object-fit: cover;
    object-fit: cover
}

.content-over {
    position: absolute;
    width: 11%;
    height: 15vw;
    border-style: solid;
    border-color: #94b1d5;
    border-radius: 10%;
    margin-top: -15%;
    margin-left: 1%;
    z-index: -1
}

.content-intro {
    margin-top: 4%;
    width: 100%;
    height: 100%;
    margin-left: 9%
}

.content-nr:hover {
    color: #03619f;
    cursor: pointer
}

.content-teacher-name {
    font-size: 1.2vw !important;
    text-indent: 0 !important;
    font-weight: bold;
    overflow: hidden;
    margin-bottom: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #5887bf
}

.content-post {
    font-size: 1vw !important;
    text-indent: 0 !important;
    font-weight: bold;
    margin-top: 2%;
    margin-bottom: 2%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #5887bf
}

.content-nr {
    font-size: 1vw !important;
    text-indent: 0 !important;
    margin-right: 2%;
    margin-top: 2%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.new-files {
    margin-top: 50px;
    margin-left: 16px
}

.new-files .newfile-title {
    float: left
}

.new-files .new-file {
    float: left;
    margin-left: 10px
}

.new-files div {
    font-size: 12px;
    color: #9e2424
}

.new-files a {
    font-size: 12px;
    color: #000
}

.navigation {
    float: right;
    margin-top: 3.5%
}

.navigation a {
    text-indent: 2em;
    color: #000;
    font-size: 1.2vw
}

.navigation a:hover {
    color: #03619f
}

.subpage-list li {
    list-style-type: disc;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 2%;
    font-size: 1.3vw
}

.subpage-list li:hover,
.subpage-list z:hover {
    color: #03619f;
    cursor: pointer
}

.subpage-list z {
    float: left;
    width: 85%;
    display: block;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.subpage-list .subpage-list-time {
    float: right
}

.fenye {
    font-size: 1.2vw;
    width: 100%;
    float: right;
    margin-top: 10%;
    text-align: right;
    clear: both
}

.change-page {
    margin: 1%
}

.change-page input {
    width: 10%
}

.prev-page,
.next-page,
.first-page,
.page-num {
    padding: 1%;
    border: #000 1px solid;
    border-radius: 10%;
    margin: 1%
}

.skip {
    padding: 1%;
    border-radius: 10%;
    border: #000 1px solid;
    margin-left: 1%
}

.xiangqingye-div {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-top: 3%
}

.xiangqingye-div .list-body-2-right-skip {
    margin-top: 50px
}

.xiangqingye-div .list-body-2-right-skip .prev-news {
    width: 100%;
    margin: 5px
}

.xiangqingye-div .list-body-2-right-skip .prev-news .prev-list {
    color: #9e2424;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(200, 200, 200, .1);
    font-size: 12px
}

.xiangqingye-div .list-body-2-right-skip .prev-news a {
    color: #000;
    text-decoration: none;
    font-size: 12px
}

.xiangqingye-div .list-body-2-right-skip .next-news {
    width: 100%;
    margin: 5px
}

.xiangqingye-div .list-body-2-right-skip .next-news .next-list {
    color: #9e2424;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(200, 200, 200, .1);
    font-size: 12px
}

.xiangqingye-div .list-body-2-right-skip .next-news a {
    color: #000;
    text-decoration: none;
    font-size: 12px
}

.dayin:hover {
    color: #0a5e9e;
    cursor: pointer
}

.xiangqingye-content hr {
    border: none;
    height: 2px;
    background-color: #ddd;
    margin-top: 1%;
    margin-bottom: 1%
}

.xiangqingye-content h2 {
    text-align: center;
    color: #0054a0;
    margin-top: 3%;
    font-size: 2vw;
    font-weight: bold
}

.xiangqingye-hr-bt {
    background-color: #0054a0 !important;
    height: 3px !important
}

.xiangqingye-content img {
    max-width: 80%
}

.xiangqingye-navigation {
    margin-top: 3.5%;
    font-size: 1.2vw
}

.xiangqingye-navigation a {
    text-indent: 2em;
    font-weight: bold;
    color: #000;
    font-size: 1.2vw
}

.xiangqingye-navigation a:hover {
    color: #f35709
}

.xiangqingye-headlineintro {
    text-align: center;
    color: #9999a6;
    margin-top: 1%;
    font-size: 1vw
}

.xiangqingye-headlineintro span {
    margin-right: 5%
}

.xiangqingye-contentintro {
    margin-bottom: 2%;
    font-size: 1.5vw
}

.xiangqingye-contentintro p {
    margin-bottom: 0
}

.search-div {
    width: 100%;
    height: auto
}

.search-top {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 2%;
    border-bottom: 2px solid #000
}

.search-font1 {
    margin-top: 2%;
    font-size: 2vw;
    margin-bottom: 3%;
    color: #03619f
}

.search-font2 {
    font-size: 1.2vw;
    margin-bottom: 2%
}

.search-font2 span {
    font-size: 1.2vw;
    color: #000
}

.search-font2 span:hover {
    color: #ecb847;
    cursor: pointer
}

.search-content-list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 1px solid #000;
    margin-bottom: 2%;
    padding-bottom: 2%
}

.search-content-list img {
    float: left;
    width: 20vw;
    height: 12vw;
    margin-bottom: 1%
}

.search-content-list a {
    width: 65%;
    font-size: 1vw;
    float: left;
    color: #000;
    margin-left: 5%;
    margin-bottom: 2%
}

.search-content-list a:hover {
    color: #ecb847
}

.search-content-list p {
    width: 65%;
    font-size: 1vw;
    margin-bottom: 0;
    float: left;
    margin-left: 5%
}

.search-time {
    width: 65%;
    font-size: 1vw;
    float: left;
    margin-left: 5%;
    margin-bottom: 2%
}

.fenye-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    width: 20%;
    padding-top: 25px;
    padding-bottom: 25px
}

.fenye-search .first-search {
    background-color: #fff;
    height: 30px;
    text-align: center;
    color: #4d8dbe;
    border-radius: 5px;
    margin-right: 1%
}

.fenye-search .prev-page-search {
    height: 30px;
    text-align: center;
    color: #4d8dbe;
    border-radius: 5px;
    margin-right: 1%
}

.fenye-search .page-num-search {
    width: 30px;
    height: 30px;
    text-align: center;
    color: #4d8dbe;
    border-radius: 5px;
    margin-right: 1%
}

.fenye-search .next-page-search {
    height: 30px;
    text-align: center;
    color: #4d8dbe;
    border-radius: 5px;
    margin-right: 1%
}

.a-input {
    height: calc(1.5em + 1.3rem + 2px)
}

.margin-left {
    margin-left: 0px;
    padding: 6px 25px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 8px;
    color: #007bff;
    border-color: #007bff
}

@media screen and (max-width: 768px) {
    .header {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .header-title img {
        width: 40vw
    }

    .search {
        width: 40% !important
    }

    .search .img1 {
        width: 4vw
    }

    .search .img2 {
        width: 4vw
    }

    .navigation-div {
        display: none
    }

    .content3-img {
        border: 1px dashed #bbb
    }

    .content1-div {
        display: block
    }

    .content1-left {
        margin-right: 0 !important;
        margin-bottom: 2%
    }

    .content1-list li {
        margin-top: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, .1) !important
    }

    .content1-top img {
        width: 5% !important
    }

    .content1-gradient {
        display: none
    }

    .content2-left {
        display: block
    }

    .xiangqingye-content h2 {
        font-size: 2vw
    }

    .xiangqingye-navigation {
        font-size: 2vw
    }

    .xiangqingye-navigation a {
        font-size: 2vw
    }

    .xiangqingye-content hr {
        height: 1px
    }

    .xiangqingye-headlineintro {
        font-size: 1.5vw
    }

    .xiangqingye-contentintro {
        font-size: 2.5vw
    }

    .more-img {
        display: block
    }

    .liebiaoye-right hr {
        height: 1px;
        border: none;
        background-color: rgba(0, 0, 0, .2);
        margin-top: 5%;
        margin-bottom: 2%;
        width: 100%
    }

    .navigation {
        margin-top: 6%
    }
}

.content2-left .content2-top p {
    padding-right: 6%
}
