@charset "utf-8";
/* CSS Document */

body { color:#666;font:15px "微软雅黑"!important;background: #fff!important;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,th,var,optgroup{font-style:inherit;font-weight:inherit;}
del,ins{text-decoration:none;}
li{list-style:none;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:baseline;}
sub{vertical-align:baseline;} 
input,button,textarea,select,optgroup,option,button{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline: none;border: none;}
input,button,textarea,select{*font-size:100%;}
input,select{vertical-align:middle;}
i,em{ font-style:normal;}
select,input,button,textarea,button{font:99% '微软雅黑',helvetica,clean,sans-serif;}
table{font-size:inherit;font:100%; border-collapse:collapse;}
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
dl,dt{font-weight: normal;}
a {color:#666; text-decoration:none;} 
a:focus,input, button, textarea, select{outline:0;} 
a:hover{text-decoration: none;}
textarea{resize: none;}
img{max-width: 100%;}

.c{clear: both;}
.fl{float: left;}
.fr{float: right;}
.imgfd{overflow: hidden;width: 100%;}
.imgfd img{transition: all 0.5s ease;height: auto;width: 100%;object-fit: cover;display: block;}
/* .imgfd:hover img{transform: scale(1.1);} */
.listpage{
  margin-top: 50px;
  gap:8px;
}
.pagination{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:8px;
}
.listpage .page_total,
.pagination>li>a,
.pagination>li>span {
  padding: 0 12px;
  border: 1px solid #eee;
  color: #000;
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  border-radius: 2px;
}

.pagination li.first,
.pagination li.last {
  display: none;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background: #244DA7;
  border-color: #244DA7;
  color: #fff;
}
.listpage .page_total:hover,
.pagination>li>a:hover {
  color: #fff;
  background: #244DA7;
  border-color: #244DA7;
}
.listpage select{
  border: 1px solid #eee;
  color: #000;
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  border-radius: 2px;
}


.digg{text-align: center;width: 100%;}

.clearfix:before,.clearfix:after {
  content:"";
  display:table;
}
.clearfix:after {
  clear:both;
  overflow:hidden;
}
.clearfix {
  zoom:1; /* for ie6 & ie7 */
}
/*flex*/
.flex-wrap{
  flex-wrap: wrap;
}
.flex{
display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */  
display: -moz-box; /* Firefox 17- */  
display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */  
display: -moz-flex; /* Firefox 18+ */  
display: -ms-flexbox; /* IE 10 */  
display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */  
}
.flex-center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-end{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.space-between{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-start{
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.align-items_flex-end{
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-items_center{
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_baseline{
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-direction_column{
	flex-direction:column;
}


/* 侧边悬浮按钮样式 */
.floating-buttons {
    position: fixed;
    right: 10px;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.button-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.floating-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #244DA7;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.floating-button svg{
  width: 24px;
  height: 24px;
}

.floating-button:hover {
    transform: scale(1.1);
    background: #47B850;
}

.info-panel {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.button-wrapper:hover .info-panel {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.info-panel h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.qrcode {
    text-align: center;
    padding: 10px 0;
}

.qrcode img {
    width: 120px;
    height: 120px;
    display: inline-block;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #47B850;
    text-align: center;
    padding: 15px 0;
}

.service-text {
    text-align: center;
    font-size: 18px;
    color: #47B850;
    padding: 15px 0;
    font-weight: bold;
    display: block;
}

.info-panel::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}
.top-button { 
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.top-button.visible {
    display: flex;
    opacity: 1;
}


.pc{
	display: block;
}
.phone{
	display: none;
}

.center{max-width: 1560px;margin: 0 auto;width: 92%;}
.center2{width: 100%;margin: 0 auto;}
@media (max-width: 1740px){.center{width: 92%;}.center2{width: 92%;}}
@media (max-width: 1540px){}

.f16{font-size: 16px;}
.f18{font-size: 18px;}

/* 侧边悬浮 */
@media (max-width: 920px) {
  	.pc{
		display: none !important;
	}
	.phone{
		display: block;
	}
    .floating-buttons {
        right: 15px;
        display: none;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .info-panel {
        width: 160px;
        padding: 15px;
    }
    
    .qrcode img {
        width: 100px;
        height: 100px;
    }
}


@media (max-width: 600px){
	/* .pagination{margin-top: 30px;} */
}
