@charset "utf-8";
/* CSS Document */


/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {width: 6px; height: 16px; background-color: #fff;}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  border-radius:0px;
  background-color: #f2f2f2;
  }
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  background-color: rgba(43, 86, 152, 1);
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {background-color: rgba(43, 86, 152, 1);}
::-webkit-scrollbar-thumb:active {background-color: rgba(43, 86, 152, 1);}


html {height: 100%;}

body{margin: 0; padding: 0; }
.img{text-align: center;}
.img img{max-width: 100%;}

body {
	font-family:"microsoft Yahei",arial,"STXihei";
	font-size:14px; 
	color:#333; 
	line-height:24px; 
	background-color: #fff;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	
}

div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,em,dt,form,p,i,span{margin:0;padding:0; font-size:100%; font-family:inherit; list-style:none; font-weight: normal; font-style: normal;}
select,input,textarea{ border-radius:0; -webkit-border-radius:0; color:#555555;}
input:focus { outline: none;}
input,button,select,textarea{outline:none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/ }
textarea{resize:none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/ }
textarea,input,select { background:none; border:none; margin:0; padding:0;}


a{color: #333;text-decoration: none;transition: all .2s ease-in-out;}
a:hover {color: #2b5698; text-decoration: none;}
a:active,a:focus {outline: 0;color: #2b5698; text-decoration: none;}
img {border:0; vertical-align: middle;}

.clearfix:after { visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0;} 
.clearfix { zoom:1;}

.ellipsis {text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}

.hang1{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient:vertical;box-sizing: border-box;}
.hang2{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient:vertical;box-sizing: border-box;}
.hang3{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient:vertical;box-sizing: border-box;}
.hang4{overflow: hidden; text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 4; webkit-box-orient:vertical;box-sizing: border-box;}

.fl{ float:left;}
.fr{ float: right;}

/*图片放大*/
.pic-scale{ position: relative; overflow: hidden; }
.pic-scale img { -webkit-transition: .5s; -o-transition: .5s; transition: .5s;max-width: 100%; }
.pic-scale:hover img { -webkit-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); }

.item-inner {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

table{
    width: 100%;
    border-collapse: collapse;
}
table th,
table td{
    text-align: center;
	padding:12px;
}
table tbody tr.firstRow{background: #2b5698;color: #FFF;font-size: 14px;}

/*地图*/
.map{display: block;clear: both;margin-bottom: 50px;}
.map .title{ font-size: 22px; line-height: 34px;}

/*上一条，下一条*/
.nextpage{overflow: hidden; margin: 30px 0;}
.nextpage a{display: block; padding: 15px 0;border-bottom: 1px solid #e7e7e7;}




/*pages分页*/

.pagination {display: block; text-align: center;}
.pagination ul{display: inline-block;}
.pagination ul li{float: left;}
.page-link {position: relative;display: block;padding: .6rem 1rem;margin-left: -1px;line-height: 1.25;color: #2b5698;background-color: #fff;border: 1px solid #dee2e6;font-size: 16px;}
.page-link:hover {z-index: 2;color: #2b5698;text-decoration: none;background-color: #e9ecef;border-color: #2b5698;}
.page-link:focus {z-index: 2;outline: 0;box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)}
.page-item:first-child .page-link {margin-left: 0;border-top-left-radius: .25rem;border-bottom-left-radius: .25rem}
.page-item:last-child .page-link {border-top-right-radius: .25rem;border-bottom-right-radius: .25rem}
.page-item.active .page-link {z-index: 1;color: #fff;background-color: #2b5698;border-color: #2b5698;font-size: 16px;}
.page-item.disabled .page-link {color: #333;pointer-events: none;cursor: auto;background-color: #fff;border-color: #2b5698; font-size: 16px;}

@media screen and (max-width:767px) {

.page-link {font-size: 14px;padding: .6rem .6rem;}
.page-item.active .page-link {font-size: 14px;}
.page-item.disabled .page-link { font-size: 14px;}


}

.page-slide {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 100px;
        z-index: 999;

        background: rgba(0, 0, 38, 0.30);
        /*overflow: hidden;*/
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        transition: all .3s;
    }

    .page-slide-item {
        cursor: pointer;
        position: relative;
        width: 100%;
        height: 100px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all .3s;
    }

    .page-slide-item img {
        width: 45px;
        margin-bottom: 4px;
    }

    .page-slide-item-text {
        color: #FFF;
        text-align: center;
        font-family: "Microsoft YaHei";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .page-slide-item-flot {
        z-index: 99999;
        display: none;
        position: absolute;
        border-radius: 8px;
        background: #FFF;
        box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.10);
        left: 0;
        top: 0;
        transform: translate(-90%, 26%);
    }

    .page-slide-item-tel {
        border-radius: 8px 0px 0px 0px;
    }

    .page-slide-item-tel .page-slide-item-flot {
        width: 150px;
        /*display: inline-flex;*/
        padding: 16px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .page-slide-item-flot-item-t1 {
        color: #212121;
        font-family: "Microsoft YaHei";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .page-slide-item-flot-item-t2 {
        color: #FF882D;
        font-family: "Microsoft YaHei";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .page-slide-item:hover {
        background-color: #529b02 !important;
    }

    .page-slide-item:hover .page-slide-item-flot {
        display: inline-flex !important;
    }

    .page-slide-item-wechat .page-slide-item-flot {
        display: none;
        padding: 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;

        border-radius: 9.6px;
        background: #FFF;
        box-shadow: 4.8px 4.8px 4.8px 0px rgba(0, 0, 0, 0.10);
    }

    .page-slide-item-wechat .page-slide-item-flot {
        width: calc(96px + 24px);
        color: #212121;
        text-align: center;
        font-family: "Microsoft YaHei";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
        font-size: max(0.625vw, 13px);
    }

    .page-slide-item-wechat .page-slide-item-flot img {
        width: 96px;
    }

    .page-slide-item-top {
        height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.30);
        transition: height 0.3s;
    }

    .page-slide-item-top.active {
        height: 100px;
    }

    .page-slide > .page-slide-item:nth-last-child(1) {
        border-radius: 0px 0px 0px 8px;
    }

    @media screen and (max-width: 1000px) {
        .page-slide {
            display: none;
        }
    }


    .page-slide.style2 {
        background: rgba(101, 101, 154, 0.30);
    }

    .page-slide.style3 {
        background-color: #fff;
    }


    .page-slide .style3-show { display: none; }
    .page-slide.style3 .page-slide-item .default-show { display: none }
    .page-slide.style3 img.style3-show { display: block; }

    .page-slide.style3 .page-slide-item-text {
        color: #FF882D !important;
        text-align: center;
        font-family: "Microsoft YaHei";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .page-slide.style3 .page-slide-item.page-slide-item-top {
        background: #eeeeee;
    }

    .page-slide.style3 .page-slide-item:hover .default-show {
        display: block;
    }
    .page-slide.style3 .page-slide-item:hover .style3-show {
        display: none;
    }

    .page-slide.style3 .page-slide-item:hover .page-slide-item-text {
        color: #fff !important;
    }

    .page-slide-item-tel .page-slide-item-flot-item {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }


    .page-slide-item-chat.my-rounded {
        border-radius: 0px 0px 0px 8px;
    }

    .page-slide.style3 {
        filter: drop-shadow(-4px 4px 8.4px rgba(0, 0, 0, 0.05));
    }

    @media screen and (min-width: 1000px) and (max-width: 1900px) {
        .page-slide {
            width: 5.2083vw;
            border-top-left-radius: 0.4167vw;
            border-bottom-left-radius: 0.4167vw;
        }

        .page-slide-item {
            height: 5.2083vw;
        }

        .page-slide-item.page-slide-item-top {
            height: 0;
        }

        .page-slide-item img {
            width: 2.3438vw;
            margin-bottom: 0.2083vw;
        }

        .page-slide-item-text {
            font-size: max(0.625vw, 13px);
            letter-spacing: 0.0625vw;
        }

        .page-slide-item-flot {
            border-radius: 0.4167vw;
            box-shadow: 0.2083vw 0.2083vw 0.2083vw 0px rgba(0, 0, 0, 0.10);
        }

        .page-slide-item-tel {
            border-radius: 0.4167vw 0px 0px 0px;
        }

        .page-slide-item-tel .page-slide-item-flot {
            width: 8.9125vw;
            padding: 0.8333vw 1.0417vw;
            gap: 0.5208vw;
        }

        .page-slide-item-flot-item-t1 {
            font-size: max(0.625vw, 13px);
            letter-spacing: 0.0625vw;
        }

        .page-slide-item-flot-item-t2 {
            font-size: max(0.7292vw, 13px);
        }

        .page-slide-item-wechat .page-slide-item-flot {
            padding: 0.625vw;
            gap: 0.3125vw;
            border-radius: 0.5vw;
            box-shadow: 0.25vw 0.25vw 0.25vw 0px rgba(0, 0, 0, 0.10);
            width: 8vw;
        }

        .page-slide-item-wechat .page-slide-item-flot img {
            width: 5vw;
        }

        .page-slide-item-top.active {
            height: 5.2083vw;
        }

        .page-slide > .page-slide-item:nth-last-child(1) {
            border-radius: 0px 0px 0px 0.4167vw;
        }

        .page-slide-item-chat.my-rounded {
            border-radius: 0px 0px 0px 0.4167vw;
        }

        .page-slide.style3 .page-slide-item-text {
            font-size: max(0.625vw, 13px);
            letter-spacing: 0.0625vw;
        }
    }