/*Header*/
/**********************************************************************************************************************/
#xgzx_index #header {
    position: absolute;
    z-index: 50;
    width: 100%;
    background: linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)); /* 标准的语法 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)); /* Firefox 3.6 - 15 */
}

#header .header {
    background: transparent !important;
    /*background: rgba(203, 80, 41) !important;*/
    position: relative;
    width: 100%;
}

#header .bg {
    position: absolute;
    background: rgba(203, 80, 41, 0.7);
    display: none;
    width: 100%;
    height: 100%;
    min-height: 1200px;
}

#header .logo {
    display: inline;
    float: left;
    width: 268px;
    margin-left: 50px;
}

#header .logo img {
    width: 100%;
}

#header .right {
    float: right;
    margin-left: auto;
    margin-top: 20px;
    margin-right: 50px;
}

#header .up {
    margin-bottom: 5px;
}

#header .submit {
    float: right;
    font-size: 18px;
    font-weight: 600;
    font-family: "KaiTi";
    text-decoration: none;
    letter-spacing: 5px;
    color: #dfe6ed;
    margin: 1.5px 25px;
}

#header .text {
    float: right;
    margin: 0 20px;
}

#header .text div {
    float: right;
    font-family: "KaiTi";
    font-size: 20px;
    margin: 0 20px;
    color: #fff;
}

#header label {
    margin: 0;
}

#header .search {
    float: right;
}

#header .input {
    display: block;
    float: right;
    position: relative;
    left: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 0;
    border-radius: 20px 0 0 20px;
    width: 150px;
    padding: 4px 16px 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: width 1s;
    -moz-transition: width 1s;
    -webkit-transition: width 1s;
    -o-transition: width 1s;
}

#header .sub {
    position: relative;
    z-index: 10;
    float: right;
    display: block;
    margin-left: 3px;
    border: 0;
    border-radius: 20px;
    width: 27px;
    height: 27px;
    background-image: url("../img/Header/search.png");
}

#header .submit_1023, #header .search_1023 {
    display: none;
}

#header .my_nav {
    float: right;
}

#header .dropdown-toggle::after {
    display: none;
}

#header .nav-link {
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
}

#header .nav-item {
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    border-top: 0 solid rgba(0, 0, 0, 0);
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    width: 122px;
    height: 42px;
    font-size: 20px;
}

#header .nav-item:hover {
    background-color: rgb(255, 255, 255);
    border-top: 2px #ffb058 solid;
}

#header .dropdown-menu {
    display: block;
    visibility: hidden;
    overflow: hidden;
    background: rgb(255, 255, 255);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    padding: 0 0;
    min-width: 122px;
    max-height: 0;
    margin: 0;
    border-radius: 0 0 0.2rem 0.2rem;
    border: 0;
    transition: max-height 0.8s;
    -moz-transition: max-height 0.8s; /* Firefox 4 */
    -webkit-transition: max-height 0.8s; /* Safari 和 Chrome */
    -o-transition: max-height 0.8s; /* Opera */
}

#header .dropdown-item {
    font-size: 16px;
    padding: 14px 10px;
    text-align: center;
}

#header .dropdown-item:hover {
    background: rgba(34, 55, 83, 0.7);
    color: #fff;
}

@media screen and (max-width: 1440px) {
    #header .header {
        padding-top: 20px;
    }

    #header .logo {
        margin-left: 30px;
        width: 248px;
    }

    #header .right {
        margin-top: 20px;
        margin-right: 30px;
    }

    #header .submit {
        font-size: 18px;
        font-weight: 600;
        margin: 0 20px;
    }

    #header .text div {
        font-size: 18px;
        margin: 0 16px;
    }

    #header .nav-item {
        width: 108px;
        height: 42px;
        font-size: 18px;
    }

    #header .nav-link {
        padding: 8px 0 0;
    }

    #header .dropdown-menu {
        min-width: 108px;
    }

    #header .dropdown-item {
        font-size: 15px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 1200px) {
    #header .logo {
        margin-left: 15px;
        width: 228px;
    }

    #header .right {
        margin-top: 20px;
        margin-right: 15px;
    }

    #header .submit {
        font-size: 16px;
        font-weight: 600;
        margin: 0 20px;
    }

    #header .text div {
        font-size: 18px;
        margin: 0 16px;
    }

    #header .nav-item {
        width: 92px;
        height: 38px;
        font-size: 16px;
    }

    #header .dropdown-menu {
        min-width: 92px;
    }

    #header .dropdown-item {
        font-size: 13px;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 991px) {
    #header .header {
        padding: 0;
    }

    #header .text, #header .submit, .search {
        display: none;
    }

    #header .right {
        margin: 0;
    }

    #header .my_nav {
        position: absolute;
        z-index: 20;
        top: 80px;
        left: 0;
        width: 100%;
    }

    #header .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 176, 88, 0.8);
    }

    #header .navbar {
        width: 100%;
    }

    #header .nav-item {
        z-index: 20;
        width: 100%;
        height: 3em;
        padding: 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    #header .nav-item a {
        padding: 0;
        line-height: 3em;
    }

    #header .other {
        z-index: 20;
        margin-top: 20px;
        min-width: 300px;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    #header .submit_1023 {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        font-size: 16px;
        color: #e4d8b5;
        text-decoration: none;
    }

    #header .search_1023 {
        float: left;
        display: block;
    }

    #header .search_1023 .input {
        width: 250px !important;
    }

    #header .dropdown-menu {
        display: none;
    }

    #header .dropdown-item {
        display: inline-block;
        float: none;
    }
}

@media screen and (min-width: 992px) {
    #header .navbar-toggler {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    #header .logo {
        margin-left: 10px;
        margin-top: 10px;
        width: 168px;
    }

    #header .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

@media screen and (max-width: 425px) {
    #header .logo {
        margin-left: 5px;
        margin-top: 5px;
        width: 128px;
    }

    #header .navbar-toggler {
        padding: 2px 8px;
    }

    #header .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
}

/**********************************************************************************************************************/
/*Carousel*/
#carousel .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
}

#carousel a {
    z-index: 10;
}

#carousel .d-block {
    position: relative;
    z-index: 0;
}

/*!*园点状切换*!*/
/*#carousel .carousel-control-prev, .carousel-control-next{*/
/*width: 70px;*/
/*margin: auto 50px;*/
/*height: 70px;*/
/*background: #000;*/
/*opacity: 0.6;*/
/*border-radius: 100px;*/
/*border: 1px rgba(255, 255, 255, 0.5) solid;*/
/*}*/

/*方块状切换*/
#carousel .carousel-control-prev:hover {
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(0,0,0,0.5)", endColorstr="transparent", GradientType=0);
}

#carousel .carousel-control-next:hover {
    background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(0,0,0,0.5)", endColorstr="transparent", GradientType=0);
}

#carousel .carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 0.55;
}

#carousel .carousel-indicators {
    width: 20%;
    z-index: 10;
    margin: 0;
    padding: 5px 0;
    left: 180px;
    bottom: 160px;
}

#carousel .carousel-indicators li {
    float: left;
    width: 25px;
    height: 25px;
    padding: 0;
    border-radius: 30px;
}

#carousel .carousel-indicators li:hover {
    background: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1440px) {
    #carousel .carousel-indicators li {
        width: 22px;
        height: 22px;
    }

    #carousel .carousel-control-prev-icon, .carousel .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 1024px) {
    #carousel .carousel-indicators li {
        width: 20px;
        height: 20px;
    }

    #carousel .carousel-indicators {
        left: 20px;
        bottom: 10px;
    }

    #carousel .carousel-control-prev-icon, .carousel .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 425px) {
    #carousel .carousel-indicators li {
        width: 13px;
        height: 13px;
    }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*xgzx_index Content*/
#xgzx_index #content {
    position: relative;
    z-index: 3;
    background-image: url("../img/News/lowpoly.jpg");
    padding-bottom: 50px;
}

@media screen and (max-width: 1000px) {
    #xgzx_index #content {
        padding-bottom: 50px;
    }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*Trend*/
#trend {
    position: relative;
    top: -140px;
    margin: auto;
    width: 80%;
}

#trend ul {
    display: table;
}

#trend li {
    display: table-cell;
    width: 25%;
    vertical-align: top;
    position: relative;
    background: #fff;
    border-left: 1px solid #5e068c;
}

#trend li a {
    display: block;
    background: #fff;
    text-decoration: none;
    color: black;
}

#trend ul li a:hover {
    color: #d18e59;
}

#trend li .txt {
    font-size: 18px;
    padding: 35px 40px 65px;
    line-height: 1.5em;
}

#trend li .time {
    position: absolute;
    bottom: 20px;
    color: #9f8027;
    left: 38px;
}

#trend li img {
    width: 100%;

}

#trend .more {
    margin: 20px auto 0;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    width: 150px;
    background: #fff;
    color: #B63D25;
    text-decoration: none;
}

#trend .more:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #d18e59;
}

@media screen and (max-width: 1440px) {
    #trend {
        width: 90%;
        margin: auto;
    }

    #trend li .txt {
        font-size: 14px;
        padding: 20px 25px 45px;
    }

    #trend li .time {
        left: 23px;
    }

    #trend .more {
        margin-top: 15px;
        padding: 10px 25px;
        font-size: 13px;
        display: block;
        width: 130px;
    }
}

@media screen and (max-width: 1280px) {
    #trend li .time {
        bottom: 15px;
    }

    #trend .more {
        margin-top: 15px;
        padding: 10px 22px;
        font-size: 12px;
        width: 120px;
    }
}

@media screen and (max-width: 991px) {
    #trend {
        top: 0;
        padding-top: 50px;
    }

    #trend ul {
        display: block;
    }

    #trend li {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    #trend li a {
        position: relative;
        margin-left: 0;
        text-decoration: none
    }

    #trend li .txt {
        font-size: 16px;
        padding: 20px;
    }

    #trend .title {
        float: left;
    }

    #trend li .time {
        float: right;
        position: static;
    }

    #trend .more {
        margin-top: 5px;
        margin-bottom: 40px;
        padding: 10px 18px;
        width: 110px;
    }
}

@media screen and (max-width: 768px) {
    #trend {
        width: 95%;
        padding-top: 30px;
    }

    #trend li .time {
        font-size: 15px;
    }

    #trend li .txt {
        font-size: 15px;
    }

    #trend .more {
        margin-top: 0;
    }
}

@media screen and (max-width: 425px) {
    #trend {
        padding-top: 15px;
    }

    #trend li .time {
        font-size: 14px;
    }

    #trend li.left .txt, #trend li .txt {
        padding: 15px 5px;
    }

    #trend li .txt {
        font-size: 13px;
    }
}

@media screen and (max-width: 425px) {
    #trend li .txt {
        font-size: 12px;
    }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*Bulletin*/
#bulletin {
    position: relative;
    top: -50px;
    margin: auto;
}

#bulletin .writing {
    width: 80%;
    margin: auto;
}

#bulletin h2 {
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    line-height: 1em;
    margin-bottom: 20px;
}

#bulletin h2 b {
    height: 1px;
    width: 100px;
    background: #ffffff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
    opacity: 0.7;
}

#bulletin ul {
    margin-right: 15px;
}

#bulletin ul li {
    float: left;
    /*width: 33.33%;*/
    width: 25%;
    list-style-type: none;
    margin-bottom: 10px;
}

#bulletin ul li a {
    display: block;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
    text-decoration: none;
}

#bulletin ul li a:hover h3, #bulletin ul li a:hover .time {
    color: sandybrown;
}

#bulletin ul li .time {
    width: 80px;
    text-align: center;
    float: left;
    font-size: 32px;
}

#bulletin ul li .time .small {
    display: block;
    font-size: 12px;
}

#bulletin ul li .txt {
    margin-left: 100px;
    margin-right: 30px;
}

#bulletin ul li .txt h3 {
    font-size: 16px;
    line-height: 1.5em;
    margin: 0;
    padding: 6px 0 10px 0;
}

#bulletin ul li .txt p {
    opacity: 0.6;
    font-size: 13px;
    line-height: 1.4em;
    margin: 0;
    padding-top: 10px;
}

#bulletin .more {
    margin: 20px auto 0;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 12px 30px;
    font-size: 14px;
    display: block;
    width: 150px;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
}

#bulletin .more:hover {
    opacity: 1;
}

@media screen and (max-width: 1440px) {
    #bulletin .writing {
        width: 90%;
    }

    #bulletin h2 {
        font-size: 28px;
    }

    #bulletin h2 b {
        height: 2px;
        opacity: 0.5;
    }

    #bulletin ul li .time {
        width: 65px;
        font-size: 28px;
    }

    #bulletin ul li a {
        border: 0;
        padding-left: 0;
    }

    #bulletin ul li .txt {
        margin-left: 60px;
        margin-right: 20px;
    }

    #bulletin ul li .txt h3 {
        font-size: 14px;
    }

    #bulletin ul li .txt p {
        font-size: 13px;
    }

    #bulletin .more {
        margin-top: 15px;
        padding: 10px 25px;
        font-size: 13px;
        display: block;
        width: 130px;
    }
}

@media screen and (max-width: 1200px) {
    #bulletin .writing {
        width: 95%;
    }

    #bulletin h2 {
        font-size: 24px;
    }

    #bulletin h2 b {
        height: 2px;
        opacity: 0.3;
    }

    #bulletin ul li .time {
        width: 45px;
        font-size: 24px;
    }

    #bulletin ul li .txt {
        margin-left: 60px;
        margin-right: 20px;
    }

    #bulletin ul li .txt h3 {
        font-size: 14px;
    }

    #bulletin .more {
        margin-top: 5px;
        padding: 10px 22px;
        font-size: 12px;
        width: 120px;
    }
}

@media screen and (max-width: 991px) {
    #bulletin {
        top: 0;
    }

    #bulletin h2 {
        font-size: 22px;
    }

    #bulletin h2 b {
        height: 1px;
        width: 80px;
        opacity: 0.6;
    }

    #bulletin ul li {
        float: none;
        width: 100%;
        margin-top: 30px;
        border: 0;
    }

    #bulletin ul li .time {
        width: 80px;
        font-size: 26px;
    }

    #bulletin ul li .txt {
        margin-left: 60px;
        margin-right: 15px;
    }

    #bulletin ul li .txt h3 {
        font-size: 16px;
        padding: 5px 0 10px 0;
    }

    #bulletin ul li .txt p {
        padding-top: 3px;
        padding-left: 20px;
    }

    #bulletin .more {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 10px 18px;
        width: 110px;
    }
}

@media screen and (max-width: 768px) {
    #bulletin h2 b {
        width: 60px;
        height: 1px;
        opacity: 0.7;
    }

    #bulletin ul li {
        margin-top: 50px;
    }

    #bulletin ul li .txt h3 {
        font-size: 15px;
        padding: 5px 0 10px 0;
    }

    #bulletin ul li .txt p {
        font-size: 12px;
    }
}

@media screen and (max-width: 425px) {
    #bulletin ul li .txt h3 {
        font-size: 15px;
        padding: 6px 0 10px 0;
    }
}

/**********************************************************************************************************************/
/*Mien*/
#mine {
    width: 100%;
    margin: 3% 0 0 0;
}

#mine .center {
    width: 85%;
    margin: auto;
    padding: 0 5%;
}

#mine .title {
    width: 100%;
    padding: 0 2.5%;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    font-size: 28px;
}

#mine .title span {
    letter-spacing: 0.1em;
    font-size: 16px;
    color: #B63D25;
}

#mine .card {
    margin-left: auto;
    margin-right: auto;
    box-shadow: 1px 2px 6px 0 #b3bec6;
    max-width: 80%;
    min-height: 250px;
    border-radius: 0;
    transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s; /* Firefox 4 */
    -webkit-transition: box-shadow 0.2s; /* Safari 和 Chrome */
    -o-transition: box-shadow 0.2s; /* Opera */
}

#mine .card:hover {
    box-shadow: 1px 2px 10px 0 #a6b0b7;
}

#mine .piece {
    float: left;
    width: 25%;
    margin-bottom: 15px;
}

#mine .link {
    text-decoration: none;
}

#mine .card-title {
    display: inline-block;
    line-height: 1.5em;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #B63D25;
    transition: color 0.5s;
    -moz-transition: color 0.5s; /* Firefox 4 */
    -webkit-transition: color 0.5s; /* Safari 和 Chrome */
    -o-transition: color 0.5s; /* Opera */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#mine .card-body {
    font-size: 14px;
    height: 80px;
}

.text-muted {
    font-size: 14px;
}

#mine .btn-primary {
    background: #B63D25;
    width: 150px;
    text-align: center;
    margin: auto;
    border: 0;
    border-radius: 1px;
    padding: 12px 30px;
    font-weight: 300;
    font-size: 14px;
    transition: background 0.2s;
    -moz-transition: background 0.2s; /* Firefox 4 */
    -webkit-transition: background 0.2s; /* Safari 和 Chrome */
    -o-transition: background 0.2s; /* Opera */
}

#mine .btn-primary:hover {
    background: #B63D25;
}

#mine .more {
    width: 150px;
    margin: 20px auto;
}

@media screen and (max-width: 1440px) {
    #mine .title {
        font-size: 24px;
        padding: 0 3.5%;
        margin-bottom: 20px;
    }

    #mine .center {
        width: 90%;
        padding: 0;
    }

    #mine .card-title {
        font-size: 15px;
    }

    #mine .text-muted {
        font-size: 13px;
    }

    #mine .btn-primary {
        padding: 10px 26px;
        width: 130px;
        font-size: 13px;
    }

    #mine .more {
        width: 130px;
    }
}

@media screen and (max-width: 1200px) {
    #mine .btn-primary {
        padding: 10px 22px;
        font-size: 12px;
        width: 120px;
    }

    #mine .more {
        width: 120px;
    }
}

@media screen and (max-width: 991px) {
    #mine .title {
        font-size: 20px;
        padding: 0 5%;
        margin-bottom: 10px;
    }

    #mine .center {
        width: 100%;
    }

    #mine .piece {
        width: 50%;
    }

    #mine .card-title {
        font-size: 14px;
    }

    .text-muted {
        font-size: 12px;
    }

    #mine .btn-primary {
        padding: 10px 18px;
        width: 110px;
    }

    #mine .more {
        width: 110px;
    }
}

@media screen and (max-width: 768px) {
    #mine .title {
        font-size: 16px;
        padding: 0 5%;
    }

    #mine .piece {
        width: 50%;
    }

    #mine .card-title {
        font-size: 13px;
    }
}

@media screen and (max-width: 425px) {
    #mine .title {
        padding: 0 10%;
    }

    #mine .piece {
        margin-bottom: 20px;
        width: 100%;
    }
}

/**********************************************************************************************************************/
/*About*/
/*整体*/
#about {
    min-height: 300px;
    margin: 45px 0 0;
    padding: 50px 0;
    background: url("../img/News/lowpoly.jpg");
}

/*居中*/
#about .center {
    width: 50%;
    margin: auto;
}

/*标题*/
#about .title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 27px;
    font-weight: 500;
    color: #fff;
}

/*内容*/
#about p {
    text-indent: 2em;
    font-size: 18px;
    line-height: 3em;
    color: #fff;
}

@media screen and (max-width: 1440px) {
    #about {
        min-height: 350px;
    }

    #about .title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    #about p {
        font-size: 17px;
        line-height: 2.5em;
    }
}

@media screen and (max-width: 1200px) {
    #about {
        min-height: 300px;
    }

    #about .title {
        font-size: 20px;
    }

    #about p {
        font-size: 16px;
        line-height: 2em;
    }
}

@media screen and (max-width: 991px) {
    #about {
        min-height: 250px;
    }

    #about .center {
        width: 70%;
    }

    #about .title {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    #about .center {
        width: 80%;
    }
}

/**********************************************************************************************************************/
/*Navigation*/
#navigation {
    margin: 20px 0;
}

#navigation .title {
    text-align: center;
    font-family: PingFangSC-Medium;
    font-size: 30px;
    color: #213551;
    letter-spacing: 1.25px;
    margin: 10px 0;
}

#navigation .content {
    margin: auto;
    width: 80%;
}

#navigation .all {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#navigation .item {
    float: left;
    background: #FFFFFF;
    margin: 0 3.5%;
    width: 18%;
}

#navigation .icon {
    display: flex;
    float: left;
    /*margin: 20px 10px 20px 20px;*/
}

#navigation .icon img {
    width: 75%;
    height: 75%;
    margin: 20px 0;
}

#navigation .text {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 35%;
    height: 80px;
    margin-top: -40px;
    background: rgba(182, 61, 37, 0.73);
    line-height: 40px;
    font-family: PingFangSC-Medium;
    font-size: 20px;
    color: #cbd6d2;
    letter-spacing: 1.25px;
    text-align: left;
}

#navigation .text .left {
    width: 100%;
    text-align: left;
    padding-left: 12%;
}

#navigation .text .right {
    width: 100%;
    text-align: right;
    padding-right: 12%;
}

@media screen and (max-width: 1440px) {
    #navigation .title {
        font-size: 26px;
    }

    #navigation .content {
        width: 85%;
    }

    #navigation .item {
        margin: 0 1%;
        width: 23%;
    }

    #navigation .text {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    #navigation .title {
        font-size: 24px;
    }

    #navigation .content {
        width: 80%;
    }

    #navigation .item {
        margin: 0 7.5%;
        width: 35%;
    }

    #navigation .text {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    #navigation .title {
        font-size: 22px;
    }

    #navigation .content {
        width: 85%;
    }

    #navigation .item {
        margin: 0 5%;
        width: 40%;
    }

    #navigation .text {
        width: 35%;
        height: 70px;
        margin-top: -35px;
        line-height: 35px;
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    #navigation .title {
        font-size: 20px;
    }

    #navigation .content {
        width: 90%;
    }

    #navigation .item {
        margin: 0 2.5%;
        width: 45%;
    }

    #navigation .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 375px) {
    #navigation .title {
        font-size: 18px;
    }

    #navigation .text {
        font-size: 13px;
    }
}

/**********************************************************************************************************************/
/*Recommend*/
#recommend {
    float: right;
    width: 32%;
    margin: 30px 1%;
    max-width: 400px;
}

#recommend .title {
    font-size: 20px;
    padding: 10px;
    border: 1px rgba(219, 215, 228, 0.6) solid;
    border-bottom: 0;
}

#recommend .title span {
    color: rgb(34, 55, 83);
    font-size: 14px;
    padding-left: 10px;
}

#recommend .list {
    padding: 0;
    margin: 0;
}

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

#recommend .list li {
    list-style: none;
    height: 140px;
    font-size: 16px;
    padding: 10px 10px;
    border: 1px rgba(219, 215, 228, 0.6) solid;
}

#recommend .list li:hover {
    box-shadow: -1px -1px 1px rgb(232, 225, 244);
}

#recommend .list div {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5em;
    width: 60%;
}

#recommend .list img {
    float: right;
    width: 100px;
    height: 100px;
    box-shadow: 1px 1px 5px rgb(101, 98, 106);
}

#recommend .list span {
    display: inline-block;
    font-size: 14px;
    width: 100%;
}

@media screen and (max-width: 991px) {
    #recommend {
        display: none;
    }
}

/**********************************************************************************************************************/
/*xgzx_article Header*/
#xgzx_article #header {
    position: relative;
    z-index: 50;
    background: rgba(203, 80, 41);
}

/**********************************************************************************************************************/
/*xgzx_article Content*/
#xgzx_article #article .content {
    position: relative;
    top: -40px;
    width: 70%;
    margin: 0 15%;
    min-height: 960px;
    background: #fff;
}

@media screen and (max-width: 1440px) {
    #xgzx_article #article .content {
        margin: 0 5%;
        width: 90%;
    }
}

@media screen and (max-width: 991px) {
    #xgzx_article #article .content {
        margin: 0;
        width: 100%;
    }
}

/**********************************************************************************************************************/
/*Article*/
#article {
    background: #e8e8e8;
}

#article .h-bg {
    width: 100%;
    height: 100px;
    background: #B63D25;
}

#article .to-top {
    position: relative;
    top: -80px;
}

#article .h-title {
    width: 100%;
}

#article .h-title ul {
    width: 69%;
    margin: auto;
    padding-bottom: 40px;
}

#article .h-title li {
    display: inline-block;
    margin: 0 15px;
    font-size: 20px;
    text-align: center;
    width: 122px;
    height: 43px;
}

#article .h-title a {
    color: #fff;
}

#article .h-title span {
    display: inline-block;
    padding-top: 8px;
}

#article .active {
    background: #fff;
    width: 122px;
    height: 43px;
    color: #B63D25;
    font-weight: 600;
    border-radius: .15rem .15rem 0 0;
}

#article .article-body {
    float: left;
    margin: 30px 2%;
    width: 62%;
    background: #fff;
}

#article .title {
    font-size: 26px;
    text-align: center;
}

#article .sco {
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
}

#article .text p {
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1440px) {
    #article .h-title ul {
        width: 85%;
    }

    #article .h-title li {
        font-size: 17px;
        margin: 0 10px;
        width: 108px;
        height: 37px;
    }

    #article .active {
        width: 108px;
        height: 37px;
    }

    #article .title {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) {
    #article .h-title ul {
        width: 90%;
    }

    #article .h-title li {
        font-size: 14px;
        width: 96px;
        height: 32px;
    }

    #article .active {
        width: 96px;
        height: 32px;
    }

    #article .article-body {
        margin: 30px 4%;
        width: 92%;
    }

    #article .sco {
        margin-top: 10px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    #article .title {
        font-size: 20px;
    }
}

@media screen and (max-width: 425px) {
    #article .h-title li {
        font-size: 13px;
        margin: 0 5px;
        width: 76px;
        height: 30px;
    }

    #article .active {
        width: 76px;
        height: 30px;
    }

    #article .sco {
        font-size: 12px;
    }

    #article .title {
        font-size: 18px;
    }
}

/**********************************************************************************************************************/
/*xgzx_list Header*/
#xgzx_list #header {
    position: relative;
    z-index: 50;
    background: #213551;
}

/**********************************************************************************************************************/
/*xgzx_list Content*/
#xgzx_list #list .content {
    position: relative;
    top: -40px;
    width: 70%;
    margin: 0 15%;
    min-height: 960px;
    background: #fff;
}

@media screen and (max-width: 1440px) {
    #xgzx_list #list .content {
        margin: 0 5%;
        width: 90%;
    }
}

@media screen and (max-width: 991px) {
    #xgzx_list #list .content {
        margin: 0;
        width: 100%;
    }
}

/**********************************************************************************************************************/
/*List*/
#list {
    background: #e8e8e8;
}

#list .h-bg {
    width: 100%;
    height: 100px;
    background: #B63D25;
}

#list .to-top {
    position: relative;
    top: -80px;
}

#list .h-title {
    width: 100%;
}

#list .h-title ul {
    width: 69%;
    margin: auto;
    padding-bottom: 40px;
}

#list .h-title li {
    display: inline-block;
    margin: 0 15px;
    font-size: 20px;
    text-align: center;
    width: 122px;
    height: 43px;
}

#list .h-title a {
    color: #fff;
}

#list .h-title span {
    display: inline-block;
    padding-top: 8px;
}

#list .active {
    background: #fff;
    width: 122px;
    height: 43px;
    color: #B63D25;
    font-weight: 600;
    border-radius: .15rem .15rem 0 0;
}

#list .list-body {
    float: left;
    margin: 30px 2%;
    width: 62%;
    background: #fff;
}

#list .body {
    padding: 0 30px;
}

#list .body div {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 1em;
}

#list .body li {
    list-style-type: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 30px;
}

#list .body .remark {
    font-size: 12px;
    color: #a7a7a7;
}

#list .body .synopsis {
    font-size: 15px;
    color: #858585;
    line-height: 1.5em;
    margin-bottom: 1em;
}

#list .more {
    float: right;
    font-size: 14px;
}

#list .synopsis >>> table {
    width: auto !important;
}


@media screen and (max-width: 1440px) {
    #list .h-title ul {
        width: 85%;
    }

    #list .h-title li {
        font-size: 17px;
        margin: 0 10px;
        width: 108px;
        height: 37px;
    }

    #list .active {
        width: 108px;
        height: 37px;
    }
}

@media screen and (max-width: 991px) {
    #list .h-title ul {
        width: 90%;
    }

    #list .h-title li {
        font-size: 14px;
        width: 96px;
        height: 32px;
    }

    #list .active {
        width: 96px;
        height: 32px;
    }

    #list .list-body {
        margin: 30px 4%;
        width: 92%;
    }

    #list .body div {
        font-size: 20px;
    }

    #list .body .synopsis {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    #list .body div {
        font-size: 18px;
    }

    #list .body .synopsis {
        font-size: 14px;
    }
}


@media screen and (max-width: 425px) {
    #list .h-title li {
        font-size: 13px;
        margin: 0 5px;
        width: 76px;
        height: 30px;
    }

    #list .active {
        width: 76px;
        height: 30px;
    }

    #list .body div {
        font-size: 16px;
    }

    #list .body .synopsis {
        font-size: 12px;
    }
}

/**********************************************************************************************************************/
/*Footer*/
#footer {
    width: 100%;
    background: url("../img/Footer/background.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#footer .bg1 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(182, 61, 37, 0.8);
    z-index: 1;
}

#footer .text {
    position: relative;
    z-index: 2;
}

#footer .center {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: auto;
}

#footer .xgzx, #footer .call, #footer .link {
    height: 100%;
    float: left;
    display: inline;
}

#footer .xgzx {
    padding: 1.5% 0 0.5% 10%;
    width: 30%;
}

#footer .xgzx p {
    margin-bottom: 15px;
}

#footer .call {
    padding: 1.5% 3% 0.5% 3%;
    width: 30%;
}

#footer .link {
    padding: 1.5% 3% 0.5% 3%;
    width: 40%;
}

#footer .content {
    margin-top: 18px;
}

#footer h5 {
    display: inline-block;
    border-bottom: 3px rgb(255, 255, 255) solid;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 5px;
    left: 0;
}

#footer .call p {
    margin: 9px 0;
    font-size: 16px;
    font-family: PingFangSC-Regular;
    color: #FFFFFF;
    letter-spacing: 0.67px;
}

#footer .link tr {
    display: block;
    margin: 9px 0;
}

#footer .link p {
    display: block;
    margin: 9px 30px 9px 0;
}

#footer .link a {
    text-decoration: none;
    margin-right: 10px;
    display: inline;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.67px;
    text-align: left;
}

#footer .link a:hover {
    opacity: 1;
}

#footer .xgzx .logo {
    margin-top: 10px;
    font-family: HYi4gj;
    font-size: 30px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: left;
}

#footer .xgzx p {
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.67px;
    text-align: left;
}

@media screen and (max-width: 1440px) {
    #footer h5 {
        font-size: 18px;
    }

    #footer .xgzx .logo {
        margin-top: 8px;
        font-size: 28px;
    }

    #footer .call p {
        font-size: 15px;
    }

    #footer .link p {
        margin: 9px 0;
    }

    #footer .link a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px) {
    #footer h5 {
        font-size: 15px;
    }

    #footer .xgzx .logo {
        margin-top: 6px;
        font-size: 28px;
    }

    #footer .xgzx p {
        font-size: 14px;
    }

    #footer .call p {
        font-size: 14px;
    }

    #footer .link p {
        margin: 9px 0;
    }

    #footer .link a {
        font-size: 14px;
    }
}

@media screen and (min-width: 992px) {
    #footer .top {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    #footer .link {
        display: none;
    }

    #footer .xgzx {
        width: 40%;
        padding: 1.5% 3% 0.5% 3%;
    }

    #footer .xgzx .logo {
        margin-top: 0;
        font-size: 24px;
    }

    #footer .xgzx p {
        font-size: 14px;
    }

    #footer .call {
        width: 60%;
        padding: 1.5% 3% 0.5% 3%;
    }

    #footer .content {
        margin-top: 10px;
    }

    #footer .top {
        float: right;
        margin-right: 30px;
        border: 0;
        padding: 0;
        background: transparent;
        font-size: 14px;
        color: #cacfed;
    }

    #footer .top img {
        width: 40px;
    }
}

@media screen and (max-width: 768px) {
    #footer .top {
        font-size: 14px;
    }
}

@media screen and (max-width: 425px) {
    #footer .xgzx .logo {
        font-size: 22px;
    }

    #footer .xgzx p {
        font-size: 12px;
    }

    #footer .call p {
        font-size: 12px;
    }

    #footer .content {
        margin-top: 5px;
    }
}

