/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
}

body {
    color: #333;
    background-color: #f7f9fd;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3399ff;
    text-decoration: none;
}

img {
    vertical-align: middle;
}

li {
    list-style: none;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

/* 按钮样式 */
button {
    display: inline-block;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

input[type="text"], textarea, select {
    display: inline-block;
}

input[type="text"]:focus, textarea:focus, select:focus {
    outline: 0;
}

.box {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

header {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.header-logo {
    float: left;
}

.header-logo img {
    margin-top: -4px;
}

.header-logo h1 {
    color: #007bff;
}

nav {
    float: left;
    margin-left: 50px;
}

nav li {
    float: left;
    margin-right: 30px;
}

nav li:hover {
    border-bottom: 2px #3399ff solid;
}

nav li a {
    color: #333;
    text-decoration: none;
}

.header-search {
    float: right;
    padding-top: 12px;
}

.search-btn {
    display: none;
}

.header-search input {
    width: 180px;
    height: 36px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 10px;
    float: left;
    border-right: none;
}

.header-search input:focus {
    border: 1px #3399ff solid;
    outline: none;
    border-right: none;
}

.header-search button {
    width: 80px;
    height: 36px;
    font-size: 15px;
    color: #fff;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    float: left;
    background: url(images/ss-ico.png) no-repeat #3399ff 13px center;
    background-size: 20px 20px;
    padding-left: 20px;
}

.header-search button:hover {
    background-color: #238df7;
}

.nav-btn {
    display: none;
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #3399ff;
    position: relative;
    float: right;
    top: 18px;
    right: 10px;
}

.nav-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgba(51, 153, 255, 1);
    transition: background-color 0.3s;
}

.nav-btn.close i {
    background-color: transparent;
}

.nav-btn i:before,
.nav-btn i:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 153, 255, 1);
    content: '';
    transition: transform 0.3s;
}

.nav-btn i:before {
    transform: translateY(-400%);
}

.nav-btn i:after {
    transform: translateY(400%);
}

.nav-btn.close i:before {
    transform: translateY(0) rotate(45deg);
}

.nav-btn.close i:after {
    transform: translateY(0) rotate(-45deg);
}

.search-btn {
    float: left;
    display: none;
    width: 62px;
    height: 26px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 2px;
    background: url(images/ss-ico.png) no-repeat #3399ff 6px center;
    background-size: 15px 15px;
    padding-left: 12px;
    margin: 19px 0 0 30px;
}


main {
    width: 100%;
}

.main-left {
    width: 75%;
    float: left;
}

.main-right {
    width: 23%;
    float: right;
}

.index-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-size: 10px;
    --swiper-theme-color: #3399ff;
    --swiper-pagination-color: #3399ff;
    --swiper-navigation-sides-offset: 0px;
    --swiper-pagination-bottom: 10px;
    --swiper-pagination-bullet-inactive-color: #ffffff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 3px;
}

.swiper-slide {
    margin: 0px;
    position: relative;
}

.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.swiper-slide span {
    left: 15px;
    bottom: 10px;
    position: absolute;
    color: #fff;
    font-size: 18px;
}

.swiper-pagination {
    text-align: right;
    width: 20% !important;
    left: auto !important;
    right: 2%;
}

.swiper-pagination-bullet-active {
    width: 17px;
    border-radius: 20px;
}

.index-list {
    width: 100%;
}

.index-list-bt {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbfbfb;
    border: 1px solid #eaeaea;
    padding: 10px 20px;
    margin-bottom: -1px;
}

.index-list-bt h2 {
    font-size: 18px;
    font-weight: normal;
}

.index-list-bt i {
    color: #666;
    font-size: 32px;
}

.index-list-bt i:hover {
    color: #3399ff;
}

.index-list-li {
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
}

.index-list-li:hover {
    background-color: #FAFDFF;
    border-color: #3399ff;
    position: relative;
    z-index: 2;
}

.index-list-li.noimg .list-li-wen {
    width: 100%;
}

.list-li-img {
    width: 25%;
}

.list-li-img img {
    width: 100%;
    border-radius: 5px;
    height: 130px;
}

.list-li-wen {
    width: 72%;
}

.list-li-wen strong {
    color: #0188fb;
    background: none;
}

.list-li-wen-tit {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.list-li-wen-tit .lm {
    color: #fff;
    background-color: #3399ff;
    font-size: 12px;
    padding: 3px 10px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.list-li-wen-tit .lm:hover {
    opacity: 0.95;
    filter: alpha(opacity=95);
}

.list-li-wen-tit .lm i {
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: -4px;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-left: 4px solid #3399ff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.list-li-wen-tit .bt {
    display: inline-block;
    color: #333;
}

.list-li-wen-tit .bt:hover {
    color: #3399ff;
}

.list-li-wen-tit .bt h3 {
    font-size: 18px;
    font-weight: 600;
}

.list-li-wen-info {
    width: 100%;
    line-height: 36px;
    font-size: 13px;
    color: #666;
    margin: 3px 0px 0px 0px;
}

.list-li-wen-info span {
    margin-right: 10px;
}

.list-li-wen-info span i {
    margin-right: 3px;
}

.list-li-wen-con {
    width: 100%;
    line-height: 26px;
    font-size: 15px;
    color: #666;
}

.index-list-yema {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px 0px;
}

.index-zz {
    width: 100%;
    height: 350px;
    background: #fff;
    position: relative;
    border-radius: 5px;
    margin-bottom: 20px;
}

.index-zz-img {
    width: 100%;
    height: 120px;
    background-image: url(images/pbg.png);
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 6px;
}

.index-zz-img .tu {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: 20px;
    position: absolute;
    left: 35%;
    top: 50px;
}

.index-zz-img .tu img {
    height: 80px;
    border-radius: 50px;
    border: 3px dotted #fff;
    box-shadow: 2px 4px 10px #b9c8e3;
}

.index-zz-info {
    padding: 10px 0px;
    text-align: center;
}

.index-zz-info p {
    text-align: center;
}

.index-zz-info .p1 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    color: #3399ff;
}

.index-zz-info .p2 {
    color: #666;
    height: 20px;
    overflow: hidden;
}

.index-zz-about {
    text-align: justify;
    overflow: hidden;
    margin-top: 50px;
    font-size: 15px;
    display: none;
}

.index-zz-about p {
    padding: 0px 20px;
    line-height: 28px;
    color: #666;
}

.index-zz-cp {
    text-align: center;
    margin-top: 5px;
    border-top: 1px #ccc dashed;
    padding-top: 7px;
    margin-bottom: 10px;
}

.index-zz-cp .cp-hello {
    margin-bottom: 10px;
    display: inline-block;
}

.index-zz-cp a {
    display: inline-block;
    padding: 3px 10px;
    background: #3399ff;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
}

.index-zz-cp a:hover {
    background: #238df7;
}

.index-zz-num {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
    font-size: 12px;
}

.index-zz-num span {
    color: #666;
    border: 1px #ccc solid;
    padding: 5px 7px;
    border-radius: 3px;
}

.index-zz-num span:hover {
    border: 1px #3399ff solid;
}

.right-hot {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-hot-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-hot-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-hot-ul {
    width: 100%;
}

.right-hot-ul {
    width: 100%;
    padding: 0px 0px 5px 0px;
}

.right-hot-ul li {
    width: 100%;
    border-bottom: 1px #e7e7e7 solid;
    padding: 10px 10px 5px 10px;
    border-left: 2px #fff solid;
}

.right-hot-ul li:hover {
    background: #fdfcfc;
    border-left: 2px #3399ff solid;
}

.right-hot-ul li a {
    display: block;
    width: 100%;
    line-height: 22px;
    font-size: 15px;
    color: #666;
}

.right-hot-ul li a:hover {
    color: #3399ff;
}

.right-hot-ul li span {
    width: 100%;
    line-height: 20px;
    font-size: 12px;
    color: #999;
}

.right-tag {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-tag-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-tag-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-tag-ul {
    width: 100%;
    padding: 5px 10px;
}

.right-tag-ul li {
    margin: 5px 10px 5px 0px;
    display: inline-block;
}

.right-tag-ul li a {
    display: block;
    line-height: 30px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #f1f1f1;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
    padding: 0px 7px;
}

.right-tag-ul li a:hover {
    border: 1px solid #3399ff;
    background: #3399ff;
    color: #fff;
}

.right-link {
    width: 100%;
    background: #fff;
    margin-bottom: 20px;
}

.right-link-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-link-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-link-ul {
    width: 100%;
    padding: 5px 10px;
}

.right-link-ul a {
    display: inline-block;
    margin: 5px 10px 5px 0px;
    line-height: 30px;
    color: #666;
    font-size: 14px;
    padding: 0px 7px;
}

.right-link-ul a:hover {
    background: #3399ff;
    color: #fff;
    border-radius: 4px;
}

.right-pic {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-pic-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-pic-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-pic-ul {
    width: 100%;
}

.right-pic-ul {
    width: 100%;
    padding: 0px 0px 5px 0px;
}

.right-pic-ul li {
    width: 100%;
    border-bottom: 1px #e7e7e7 solid;
    padding: 10px 10px 10px 10px;
    border-left: 2px #fff solid;
    display: flex;
    justify-content: space-between;
}

.right-pic-ul li:hover {
    background: #fdfcfc;
    border-left: 2px #3399ff solid;
}

.right-pic-ul .zc {
    width: 30%;
}

.right-pic-ul .zc img {
    width: 100%;
    border-radius: 5px;
}

.right-pic-ul .yc {
    width: 66%;
}

.right-pic-ul .yc h3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.right-pic-ul .yc h3 a {
    color: #333;
}

.right-pic-ul .yc h3 a:hover {
    color: #3399ff;
}

.right-pic-ul .yc span {
    width: 100%;
    line-height: 20px;
    font-size: 12px;
    color: #999;
    display: block;
}

.right-cata {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-cata-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-cata-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-cata-ul {
    width: 100%;
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 10px;
}

.right-cata-ul li {
    width: calc(50% - 5px);
    margin: 0px 0px;
    display: flex;
    align-items: center;
}

.right-cata-ul li i {
    display: inline-block;
    font-size: 20px;
    color: #3399ff;
}

.right-cata-ul li a {
    display: block;
    line-height: 30px;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.right-cata-ul li a:hover {
    color: #3399ff;
}

.main-right .sidebox {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.main-right .sidetitle {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 15px;
    border-left: 2px #3399ff solid;
}

.main-right .sidetitle-ul {
    width: 100%;
    padding: 7px 10px;
    overflow: hidden;
}

.main-right .sidetitle-ul li {
    width: 100%;
    margin: 5px 0px;
}

.main-right .sidetitle-ul li a {
    display: block;
    line-height: 30px;
    padding-left: 5px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.main-right .sidetitle-ul li a:hover {
    color: #007bff;
    background: #fbfbfb;
}

.main-right .sidetitle-ul span {
    width: 100%;
    margin: 5px 0px;
}

.main-right .sidetitle-ul .cp-hello {
    margin-bottom: 10px;
    display: inline-block;
}

.main-right .sidetitle-ul #tbCalendar {
    width: 100%;
}

.sidetitle-ul input[type="text"] {
    width: 67%;
    height: 32px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 10px;
    float: left;
    border-right: none;
}

.sidetitle-ul input[type="submit"] {
    width: 33%;
    height: 32px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    float: left;
    background: url(images/ss-ico.png) no-repeat #3399ff 13px center;
    background-size: 20px 20px;
    padding-left: 20px;
}

#divContorPanel .sidetitle-ul {
    text-align: center;
}


footer {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

footer p {
    text-align: center;
    color: #666;
    font-size: 14px;
}

footer p a {
    color: #666;
    text-decoration: none;
    margin: 0px 5px;
}

.go-top {
    z-index: 10000;
    bottom: 90px;
    right: 10%;
    position: fixed;
    display: none;
}

.go-top a {
    width: 36px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 5px;
    display: block;
    background: url(images/gotop.png) #fff no-repeat center center;
    background-size: 50%;
}

.weizhi {
    width: 100%;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 20px;
}

.weizhi a {
    color: #666;
}

.weizhi a:hover {
    color: #3399ff;
}

.weizhi i {
    margin-right: 5px;
}

.weizhi b {
    color: #167ff1;
}

.yema a {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 2px;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    color: #666;
}

.yema a:hover {
    background-color: #3399ff;
    color: #fff;
    border-color: #3399ff;
}

.yema span {
    background-color: #3399ff;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
    margin: 0 2px;
    border: 1px solid #3399ff;
    border-radius: 3px;
}


.text-main {
    padding: 25px 25px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.text-zw h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 15px;
}

.text-zw-xx {
    font-size: 14px;
    border-bottom: 1px #ccc solid;
    color: #666;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.text-zw-xx span {
    margin-right: 10px;
}

.text-zw-xx a {
    color: #007bff;
}

.text-zw-zy {
    background-color: #f7f7f7;
    border-radius: 4px;
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.text-zw-nr p {
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin-bottom: 15px;
}

.text-zw-nr p img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.text-dy-nr {
    border-top: 1px #ccc solid;
    padding: 20px 0px;
    margin-bottom: 30px;
}

.text-zw-sm {
    background-color: #f7f7f7;
    border-radius: 4px;
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.text-zw-sm a {
    color: #007bff;
}

.text-zw-sxp {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    margin-bottom: 20px;
    line-height: 30px;
}

.text-zw-sxp div {
    display: block;
    width: 49%;
    padding: 7px;
    position: relative;
}

.text-zw-sxp div:hover {
    background: #f5f5f5;
    border-radius: 5px;
}

.text-zw-sxp a {
    display: block;
}

.text-zw-sxp .sp {
    padding-left: 35px;
    text-align: left;
}

.text-zw-sxp .sp a::after {
    left: 5px;
    content: '«';
    font-family: "Microsoft Yahei";
    position: absolute;
    font-size: 38px;
    top: 23%;
    color: #ccc;
}

.text-zw-sxp .xp {
    padding-right: 35px;
    text-align: right;
}

.text-zw-sxp .xp a::after {
    right: 5px;
    content: '»';
    font-family: "Microsoft Yahei";
    position: absolute;
    font-size: 38px;
    top: 23%;
    color: #ccc;
}

.text-tj {
    width: 100%;
    margin-bottom: 30px;
}

.text-tj-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.text-tj-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.text-tj-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.text-tj-ul li {
    width: calc(25% - 15px);
}

.text-tj-ul li a {
    display: block;
    color: #333;
}

.text-tj-ul li a:hover {
    color: #007bff;
}

.text-tj-ul li a img {
    width: 100%;
    margin-bottom: 8px;
    height: 130px;
}

.text-tj-ul li a span {
    line-height: 20px;
    display: block;
    font-size: 15px;
}

.text-zw-bq {
    width: 100%;
    font-size: 14px;
    margin: 25px 0px;
}

.text-zw-bq span {
    color: #666;
}

.text-zw-bq i {
    margin-right: 3px;
    color: #666;
}

.text-zw-bq a {
    display: inline-block;
    padding: 3px 10px;
    margin: 0px 2px;
    background: #f5f5f5;
    color: #666;
    border-radius: 3px;
}

.text-pl {
    width: 100%;
    margin-bottom: 30px;
}

.text-pl-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.text-pl-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.text-pl-hf {
    margin-bottom: 15px;
}

.text-pl-hf a {
    color: #007bff;
    margin-right: 15px;
}

.text-pl-bd {
    width: 100%;
}

.text-pl-bd-xx li {
    float: left;
    margin-bottom: 1em;
    width: 38.3%;
    padding-right: 3%;
    position: relative;
    list-style: none;
}

.text-pl-bd-xx li input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-indent: 10px;
}

.text-pl-bd-xx li input.yzm {
    width: 60%;
}

.text-pl-bd-xx li img {
    width: 37% !important;
    height: 38px !important;
}

.text-pl-bd-nr .textarea {
    border-radius: 3px;
    text-indent: 5px;
    margin: 0 0 20px 0;
    padding: 5px;
    width: 98%;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-appearance: none;
    font-size: 14px;
}

.text-pl-bd-an button {
    border-radius: 3px;
    border: none;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    background: #107bec;
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    opacity: .8;
    margin-right: 10px;
}

.text-pl-bd-an button:hover {
    opacity: 1;
}

.text-pl-bd-an button.qxhf {
    background: #f3a004;
}


.pl-list {
    width: 100%;
}

.pl-list-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.pl-list-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.pl-list-lb .ul {
    border-top: 1px solid #ededed;
    font-size: 14px;
}

.pl-list-lb .li {
    overflow: hidden;
    padding: 15px;
}

.pl-list-lb .li:hover {
    background: #f8f8f8
}

.pl-list-lb .li img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    float: left;
}

.pl-list-lb .li .yc {
    margin-left: 70px
}

.pl-list-lb .li .yc-yhhf {
    height: 20px;
}

.pl-list-lb .li .yc-yhhf a {
    color: #007bff;
}

.pl-list-lb .li .yc-yhhf span {
    float: right;
}

.pl-list-lb .li .yc-yhhf span a {
    color: #999;
}

.pl-list-lb .li .yc-yhhf span a:hover {
    color: #007bff;
}

.pl-list-lb .li .yc-hfsj {
    color: #666;
}

.pl-list-lb .li .yc p {
    word-wrap: break-word;
    font-size: 16px;
    line-height: 2;
    margin-top: 3px;
}

.pl-list-lb .ul .ul {
    margin-left: 4%
}

.pl-list-ym {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 20px 0px;
}


@media (max-width: 768px) {
    .box {
        width: 98%;
    }

    header {
        margin-bottom: 10px;
    }

    .header-logo {
        margin-left: 10px;
    }

    .nav-btn {
        display: block;
    }

    .search-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        border-top: 2px #3399ff solid;
        margin-left: 0px;
    }

    nav li {
        width: 100%;
        padding: 0 0 0 20px;
        border-bottom: 1px solid #f0f0f0;
        line-height: 40px;
        font-size: 14px
    }

    nav li:hover {
        border-bottom: none;
    }

    .header-search {
        display: none;
        position: absolute;
        top: 60px;
        z-index: 99;
        background: #fff;
        width: 100%;
        border-top: 2px #3399ff solid;
        padding: 15px;
    }

    .header-search input {
        width: 70%;
    }

    .header-search button {
        width: 30%;
    }

    .main-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-right {
        width: 100%;
    }

    .index-banner {
        height: 200px;
        margin-bottom: 10px;
    }

    .swiper-slide span {
        left: 10px;
        bottom: 11px;
        font-size: 14px;
    }

    .index-list {
        margin-bottom: 10px;
    }

    .index-list-bt {
        padding: 0px 15px;
    }

    .index-list-bt h2 {
        font-size: 16px;
    }

    .index-list-bt i {
        font-size: 26px;
    }

    .index-list-li {
        padding: 10px;
        align-items: center;
    }

    .list-li-img img {
        max-height: 60px;
    }

    .list-li-wen-tit .lm {
        display: none;
    }

    .list-li-wen-tit .bt h3 {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        overflow: hidden;
    }

    .list-li-wen-info {
        font-size: 12px;
        line-height: 25px;
    }

    .list-li-wen-info span {
        margin-right: 0px;
    }

    .list-li-wen-info span i {
        display: none;
    }

    .list-li-wen-con {
        display: none;
    }

    .index-zz {
        display: none;
    }

    .right-pic {
        margin-bottom: 10px;
    }

    .right-pic-ul .yc h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .right-hot {
        margin-bottom: 10px;
    }

    .right-tag {
        margin-bottom: 10px;
    }

    footer p {
        font-size: 12px;
    }

    .weizhi {
        margin-bottom: 10px;
    }

    .text-main {
        padding: 15px;
    }

    .text-zw-xx {
        font-size: 13px;
    }

    .text-zw-sxp {
        flex-direction: column;
    }

    .text-zw-sxp div {
        width: 100%;
    }

    .text-tj-ul {
        gap: 20px;
    }

    .text-tj-ul li {
        width: calc(50% - 10px);
    }

    .text-pl-bd-xx li {
        width: 50%;
    }

    .pl-list-lb .li {
        padding: 10px;
    }

}