:root {
  --bg-orange: #F3B52F;
}
body {
  font: 0.875rem 'SourceSansPro', PingFang SC, Helvetica, Arial, Microsoft YaHei, sans-serif;
  color: #4d4d4d;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------
GENERAL
----------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
select,
input,
textarea,
p,
blockquote,
table,
th,
td,
hr,
button,
main,
article,
aside,
details,
figcaption,
figure,
dialog,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
video {
  margin: 0;
  padding: 0;
}
caption,
th {
  color: #454545;
  text-align: left;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
/* --------------------------------------
LINK STYLE
------------------------------------------*/
a {
  color: #4d4d4d;
  -webkit-transition: color .3s ease-out 0s, background .3s ease-out 0s;
  transition: color .3s ease-out 0s, background .3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: #ffa000;
}

a:focus,
button:focus {
  outline-style: none;
}

img,
input,
button,
select {
  border: 0 none;
  vertical-align: middle;
}

/* --------------------------------------------------
LIST STYLE
----------------------------------------------------- */
ol,
ul {
  list-style: none;
}

ul>li>p {
  margin-bottom: 0;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

/*-------------------------------*/
/* 特殊的动画效果类名 
-------------------------------*/
[class*=animation-] {
  -webkit-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animation-slide-bottom {
  -webkit-animation-name: slide-bottom;
  -o-animation-name: slide-bottom;
  animation-name: slide-bottom;
}

.animation-zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/*-------FONT AWESOME CORE-----*/
[class^="icon-"],
[class*=" icon-"] {
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  background-image: none;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
}

.icon-search::before {
  content: "\f002";
}

.icon-remove::before,
.icon-close::before {
  content: "\f00d";
}
/*-------列表项------*/
ul.item-list li {
  padding-bottom: .5rem;
  border-bottom: 1px rgba(0, 0, 0, .1) solid;
}

ul.item-list li+li {
  padding: .5rem 0;
}

ul.item-list li .download {
  padding-left: 1.2rem;
  background: url(../images/download.gif) no-repeat left;
}

ul.item-list li h6 {
  font-size: 0.875rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 0.75rem;
  background: url(../images/newsdot.gif) no-repeat left center;
}

/*-------侧边栏-------*/
.section-title {
  background: #e5e5e5;
}

.section-title h2 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: .75rem 1.25rem;
  background: #50b2fc;
}

.section-title a {
  padding-right: 10px;
}

.recommend-list {
  border: 1px solid #dee2e6;
  border-top: 0 none;
}

.recommend-list .scroll-box {
  padding: 15px;
  background-color: #fff;
}
.recommend-list .scroll-box .scrolltop {
  height: 260px;
  overflow: hidden;
}
.recommend-list .scroll-box li{
  white-space: nowrap;
  text-overflow: ellipsis;

}
.recommend-list .scroll-box li:not(:last-child) { 
  padding-bottom: 0.5rem;
}

/*-----分页样式-----*/
.pagination {
  margin-bottom: -0.625rem;
}

.pagination li:not(:last-child) {
  margin-right: 0.625rem;
}

.pagination li {
  display: flex;
  margin-bottom: 0.625rem;
}

.pagination li a {
  padding: 5px 10px;
  border: 1px solid #faaf3c;
  color: #faaf3c;
}

.pagination li a:hover,
.pagination li.active a {
  color: #fff;
  background: #faaf3c;
  border-color: #faaf3c;
}

.disabled {
  pointer-events: none;
}

.pagination li.active a {
  pointer-events: none;
}

/*-----右侧浮动-----*/
.float-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}

.float-right ul li {
  width: 100%;
  height: 58px;
  margin-bottom: 5px;
  position: relative;
}

.float-right ul li .item-list{
  position: relative;
  transition: all 0.3s linear;
  width: 58px;
  height: 58px;
  border-radius: 6px 0 0 6px;
  background-color: rgba(0, 0, 0, .7);
}

.float-right ul li .item-list:hover {
  background-color: #128fff;
}


.float-right ul li .wechat {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  right: 70px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.float-right ul li .wechat.pop {
  transform: translateY(-50%) scale(0.8);
  transition: .15s linear;
}

.float-right ul li .wechat.out {
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
}

.float-right ul li .wechat.in {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
}

.float-right ul li .qrcode {
  position: relative;
  width: 120px;
  padding: 5px;
}
.float-right ul li .qrcode::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
  left: auto;
  border-left: 8px solid rgba(0, 0, 0, 0.2);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: '';
  z-index: 120;
}
.float-right ul li .qrcode::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7px;
  left: auto;
  border-left: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  content: '';
  z-index: 120;
}

.float-right ul li .item-list:hover span{
  right: 0;
}

.float-right ul li .item-list span {
  font-size: 1.5rem;
  color: #fff;
  transition: right 0.3s linear;
  position: absolute;
  right: -170px;
  width: 170px;
  
}

.float-right ul li .item-list a {
  width: 58px;
  color: #fff;
}

.float-right ul li .item-list a i {
  font-size: 1.75rem;
}
.float-right ul li .item-list a i.fa-triangle{
  font-size: .25rem;
}
.float-right ul li .item-list a span{
  font-size: 1rem;
}

/*-------swiper 滚动按钮----------*/
.swiper-button-prev,
.swiper-button-next {
  font-size: 1.25rem;
  color: #eee;
  background: rgba(0, 0, 0, .2);
  transition: opacity ease .4s;
  opacity: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-prev {
  border-radius: 0 3px 3px 0;
  left: 0;
}

.swiper-button-next {
  border-radius: 3px 0 0 3px;
  right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(222, 0, 16, .5);
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  opacity: 1;
}


/*-------百度地图API-------*/
.iw_poi_title {
  font-size: 15px;
  color: #CC5522;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap
}

.iw_poi_content {
  font: 13px arial, sans-serif;
  overflow: visible;
  padding-top: 5px;
  line-height: 1.6;
  white-space: -moz-pre-wrap;
  word-wrap: break-word
}

.map {
  height: 400px;
  border: #ccc solid 1px;
}