﻿@charset "utf-8";

/* 重置浏览器默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 设置字体和颜色 */

body {
    font-size: 14px;
    background-color: #f3f3f3;
}

body a {

    text-decoration: none;
}

input {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}





.daohang {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.header+.daohang {
    margin-top: 40px;
}

@media (max-width: 1300px) {
    .daohang {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .daohang {
        width: 98%;
    }
}

@media (max-width: 767px) {
    .daohang {
        width: 100%;
    }

    .header+.daohang {
        margin-top: 33px;
    }
}



.dingbu {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #fff;
    border: 1px solid #ededed;
}

.dingbu h1 {
    margin-top: 0;
}

/* 设置头部样式 */
.header {
    position: fixed;
    display: flex;
    margin-bottom: 10px;
    width: 100%;
    height: 45px;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10%;
    font-size: 14px;
    background: #104610;
    z-index: 999;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .header {
        height: 45px;
    }
}

.header.fixed {
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px #ddd;
}

@media (min-width: 767px) {
    .header.fixed {
        height: 45px;
    }

    .header.fixed a {
        color: #666;
    }

    .nav-bar {
        display: none;
    }
}

.nav-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.nav-bar.active {
    -webkit-transform: rotateZ(90deg) scale(0.8);
    -moz-transform: rotateZ(90deg) scale(0.8);
    -o-transform: rotateZ(90deg) scale(0.8);
    transform: rotateZ(90deg) scale(0.8);
}

.nav-bar span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 24px auto;
    width: 30px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}

.nav-bar span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #aaa;
    border-radius: 25px;
}


.logo {
    display: inline-flex;
    justify-content: center;
    height: 45px;
    width: 220px;
    padding: 8px 0;
    color: #ffffff;
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        margin-left: 1px;
        height: 45px;
        padding: 10px 0 0 -55px;
        padding-right: 48%;
        color: #1c686b;
        font-weight: normal;
    }
}

.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    margin-left: 20px;
    font-size: 14px;
    float: right;
}

@media (max-width: 767px) {
    .nav {
        flex-direction: column;
        position: fixed;
        top: 45px;
        right: 0;
        float: none;
        margin-left: 0;
        opacity: 0;
        visibility: hidden;
        text-align: right;
        z-index: 999;
        width: 60%;
        height: 35px;
        line-height: 3px;
        text-overflow: ellipsis;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav.show {
        opacity: 1;
        visibility: visible;
    }
}

.nav li {
    position: relative;
    list-style-type: none;
    margin-left: 1px;
    letter-spacing: 2px;
    font-size: 14px;


}

.nav.show li {
    -webkit-transform: translateX(-105%);
    -moz-transform: translateX(-105%);
    -o-transform: translateX(-105%);
    transform: translateX(-105%);
}

.nav.show li:nth-child(even) {
    transition-duration: .4s;
}

.nav li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 50%;
    bottom: 0;
    background: #ffffff;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav li.active::after,
.nav li:hover::after {
    width: 100%;
    margin-left: 50%;
}

@media (max-width: 767px) {
    .nav li {
        right: -100%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;


    }

    .nav li::after {
        display: none;
    }
}

.nav li a {
    display: inline-block;
    list-style-type: none;
    color: #ffffff;
    padding: 0 10px;
    height: 45px;
    line-height: 45px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 767px) {
    .nav li a {
        padding: 8px 8px 8px 5px;
        font-size: 14px;
        color: #000000;
        height: auto;

        line-height: normal;
        margin: 3px 0;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 8px #ccc;
        border-radius: 10px 0 0 10px;
    }

    .nav li a:hover,
    .nav li a.active {
        color: #fff;
        background: #ffffff;
        box-shadow: 0 0 8px #aaa;
    }
}

@media (min-width: 767px) {
    .transparent-mark {
        display: none;
    }
}

.transparent-mark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* 头部样式结束*/




.search form {
    display: flex;
    margin-top: 1px;
    background-color: #fff;

}

.search form input {
    flex: 1 1 auto;
    padding: .375rem .75rem;
    border: 1px solid #ced4da;
}

.search form button {
    border: 1px solid transparent;
    margin-left: -1px;
    color: #757575;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-color: #ced4da;
    background-color: #fff;
}

.clear {
    clear: both;
}

.more {
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #f3f3f3;
}








.list,
.news,
.pager,
.foot {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
    border: 1px solid #ededed;
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 3px;
}

.list ul {
    margin: 0 0 -2px 0;
    padding: 2px;
    width: 100%;
    overflow: hidden;

}

.list ul li {
    margin: 0 0px 0px 0;
    width: 12.5%;
    float: left;
    list-style-type: none;

}

.list ul li a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    padding: 10px 4px;
    display: block;
    border: 1px solid #f3f3f3;
    color: #004c37;
}









.list ul li a:hover {
    text-decoration: none;
    outline: 0
}








.car {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
}

.list h3 {

    width: 12.3%;
    background-color: #3dd6f4;
    font: none;
    font-size: 14px;
    margin: 0;
    padding: 12px 0;
    text-align: center;
    color: red;
    border-bottom: 1px solid #ededed;
    background-color: #065567;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.list h3:hover {
    cursor: pointer;
    background-color: #ff061f;
    transform: scale(1.1);
}

.list h4 {
    width: 12.3%;
    background-color: #ffffff;
    font: none;
    font-size: 14px;
    margin: 0;
    padding: 12px 0;
    text-align: center;
    color: red;
    border-bottom: 1px solid #ededed;

    color: #ff0000;
    transition: background-color 0.3s, transform 0.3s;
}

.list h4 a {
    color: #333;

}

.list h4:hover {
    cursor: pointer;
    background-color: #45d3ef;
    color: #ff0000;
    transform: scale(1.1);
}


















.list p {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #ededed;
}

.list p span {
    float: right;
}

.pager .current {
    color: #f00;
}


.pager {
    padding-left: 0;
    text-align: center;
    list-style: none
}

.pager li {
    display: inline
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px;
}

.webxinxi {
    padding: 10px;
    line-height: 1.8;
}

.webxinxi img {
    width: 100%;
}

.webxinxi ul {
    width: 100%;
}

.webxinxi ul li {
    float: left;
    width: 40%;
}

.webxinxi p {
    margin: 0;
    line-height: 30px;
}

.webxinxi h2 {
    font-size: 18px;
    margin: 0;
    padding-bottom: 10px;
}

.webxinxi pre {
    padding: 10px;
    margin: 0;
    font-size: 13px;
    line-height: 1.42857143;
    background-color: #f5f5f5;
}

.webxinxi .link {
    color: #888;
    padding: 10px;
    font-size: 12px;
    background: none repeat 0 0 #F6F6F6;
}

.xinxi {
    width: 100%;
    border: 1px;
    border-color: #ced4da;
    border-collapse: collapse;
    border-top-style: solid;
    border-top-color: #ced4da;
    border-top-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ced4da;
   color: #fc0000;
}

.xinxi td {
    padding: 5px;
    width: 50%;
    text-align: center;
   color: #fc0000;
}

.xinxi td a {

   color: #fc0000;
}


.xinxi .bg {
    background-color: #eee;
}

.aizhan {
    max-width: 100%;
    width: auto !important;
}

.dnwu {
    display: none;
}

.daohang-box {
    position: relative;
    line-height: 38px;
    overflow: hidden;
    border-top: 1px solid #e6e6e6;
    padding: 10px;
}

.daohang-box li {
    list-style-type: none;
}

.daohang-box li a {
    color: #333333 !important;
    cursor: pointer;
    pointer-events: none;
}

.daohang-box li input {
    border-radius: 3px;
    line-height: 38px;
    height: 38px;
    padding: 5px;
    color: #666666;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e9ef;
    resize: vertical;
}

.daohang-box li select {
    border: 1px solid #e5e9ef;
    line-height: 38px;
    height: 38px;
    width: 100%;
    padding: 0 10px;
}

.daohang-box li textarea {
    border-radius: 3px;
    max-width: 100%;
    padding: 5px;
    color: #666666;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e9ef;
    resize: vertical;
}

.daohang-box li button {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 26px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer
}

.daohang-box .post-btn {
    margin-top: 10px;
    text-align: center;
}

.daohang-box .yanzhengma {
    display: flex;
}

.daohang-box .yanzhengma .ccode {
    height: 38px !important;
}

.daohang-box li button:hover {
    opacity: .8
}

@media (max-width:1200px) {
    .dnwu {
        display: block;
    }

    .sjwu {
        display: none;
    }

    .list ul li {
        width: 33%;
    }

    .list h3 {
        width: 32.4%;
        color: #fff;
        background-color: #006290;

    }

    .list h4 {
        width: 20%;
        color: #fff;
        background-color: #74777f;

    }

    .car {
        width: 100%;
    }

}

/* 设置脚部样式 */
.foot p {
    margin-top: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    margin: 0;
 
    width: 100%;

    background-color: #ffffff;

}