/* Overlay */
.fr-overlay {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  zoom: 1;
  overlay: hidden;
}
.fr-overlay-background {
  background: #000;
  filter: alpha(opacity=90);
  opacity: .9;
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Window */
.fr-window {
  z-index: 100000;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* z-index */
.fr-ui-outside .fr-info { z-index: 100001; }

/* Loading icon */
.fr-loading {
  z-index: 100001;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  margin-left: -26px;
  overflow: visible;
}
.fr-loading-offset {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.fr-loading-background, .fr-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-loading-background {
  background: #0d0d0d url('skins/loading.gif') 50% 50% no-repeat;
  opacity: .8;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(80,80,80,.2);
}
.fr-loading-icon { display: none; }


/* Bubble (holds everything) */
.fr-bubble {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Fonts */
.fr-ui,
.fr-info { 
  font: normal 13px/21px "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
}

/* Frames / UI */
.fr-frames {
  height: 100%;
  width: 100%;
  position: absolute;
  display:inline;
  top: 0;
  left: 0;
  overflow: hidden;
}
.fr-frames-move {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.fr-frame, .fr-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fr-frame-touch {
  position: relative;
  float: left;
  top: auto;
  left: auto;
  width: 100%;
}

.fr-window *:not(.fr-caption)::selection,
.fr-window *:not(.fr-caption)::-moz-selection,
.fr-window *:not(.fr-caption)::-webkit-selection {
  background: transparent;
}

.fr-mobile-touch-enabled .fr-frame .fr-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-frame-touch .fr-box {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-mobile-touch-enabled .fr-ui,
.fr-mobile-touch-enabled .fr-ui-spacer,
.fr-mobile-touch-enabled .fr-ui-wrapper,
.fr-mobile-touch-enabled .fr-ui-padder,
.fr-mobile-touch-enabled .fr-ui-toggle,
.fr-mobile-touch-enabled .fr-ui-outer-border,
.fr-mobile-touch-enabled .fr-side { pointer-events: none; }


/* Content */
.fr-box { position: absolute; top: 0; left: 0; height: 100%; width: 100%; }
.fr-box-has-ui-outside { overflow: hidden; }
.fr-box-spacer, .fr-ui-spacer {
  position: absolute; 
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fr-box-wrapper, .fr-ui-wrapper {
  position: relative;
  background: url('skins/blank.gif');
  overflow: hidden;
}

.fr-box-padder, .fr-ui-padder {
  position: absolute;
  top: 0;
  left: 0;
  zoom: 1;
  border-color: transparent;
  border-style: solid;
  border-width: 0;
  background: url('skins/blank.gif');
}

.fr-box-padder, .fr-ui-padder {
  position: absolute;
  top: 0;
  left: 0;
}
.fr-ui-padder { zoom: 1; }

.fr-box-wrapper, .fr-ui-wrapper, .fr-ui-toggle {
  position: relative;
  float: left;
  display: inline;
  zoom: 1;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fr-box-wrapper { background: #101010; }

.fr-ui-wrapper-outside {
  float: left;
  height: 100%;
  width: 100%;
}

/* outer-border */
.fr-box-outer-border,
.fr-ui-outer-border {
  position: relative;
  float: left;
  display: inline;
  height: 100%;
  width: 100%;
  zoom: 1;
}
/* IE < 8 has a bug where dimensions are ignored without a border */
.fr-ltIE9 .fr-box-outer-border,
.fr-ltIE9 .fr-ui-outer-border { border: 0px solid transparent; }  

.fr-content {
  height: 100%;
  width: 100%;
  zoom:1;
  *display:inline;
  margin: 0;
  padding: 0;
}

.fr-content-image {
  position: absolute;
  top: 0;
  left: 0;
  image-rendering: optimizeQuality;
  max-width: none;
}

.fr-content-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fr-download-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-user-drag: element;
  user-drag: element;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
}

/* onClick inside ui-outside */
.fr-onclick-side {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(skins/blank.gif);
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.fr-onclick-side img { cursor: pointer; }
.fr-onclick-previous { left: 0; }
.fr-onclick-next { right: 0;}

/* onClick: 'next' has full width */
.fr-frame-onclick-next .fr-onclick-next { width: 100%; }

.fr-side {
  position: absolute;
  top: 0;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  background: url('skins/blank.gif') 0 0 repeat;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  zoom: 1;
}
.fr-side-disabled { cursor: default; }

.fr-side-button {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  margin: 0 9px;
  margin-top: -36px;
  pointer-events: auto;
}
.fr-side-button-icon {
  float: left;
  position: relative;
  height: 100%;
  width: 100%;
  zoom: 1;
}

.fr-side-previous { left: 0; width: 50%; }
.fr-side-next { right: 0; width: 50%;}

.fr-side-previous .fr-side-button { left: 0; }
.fr-side-next .fr-side-button { right: 0; }


/* sides (UI outside), smaller area */
.fr-ui-outside .fr-side {
  width: 72px;
  height: 72px;
  top: 50%;
  margin-top: -36px;
}
.fr-ui-outside .fr-side-button { margin-top: 0; top: 0; }
 
 
/*
 * Info 
 */
.fr-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  color: #efefef;
  pointer-events: auto;
}
.fr-info-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  filter: alpha(opacity=80);
  opacity: .8;
  zoom: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #000;
}
.fr-info-outside .fr-info-background { background: #0d0d0d; filter: none; opacity: 1; }


.fr-info-padder {
  padding: 12px;
  display: block;
  filter: alpha(opacity=99);
  overflow: hidden;
  width: auto;
  position: relative;
}
.fr-caption {
  position: relative;
  filter: alpha(opacity=99);
  opacity: .99;
  width: auto;
  word-wrap: no-wrap;
}
.fr-position-text { position: relative; }

/* UI inside */
.fr-has-position .fr-info-inside .fr-caption { margin-right: 75px; }
.fr-info-inside .fr-position {
  filter: alpha(opacity=99);
  opacity: .99;
  position: relative;
  text-align: right;
  word-wrap: no-wrap;
  line-height: 21px;
  color: #b3b3b3;
  float: right;
  width: 75px;
}
.fr-no-caption .fr-info-inside .fr-position {
  width: auto;
  margin: 0 1px 1px 0;
  color: #b9b9b9;
  filter: alpha(opacity=99);
}

.fr-info-inside .fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-no-caption .fr-info-inside .fr-position-background {
  border-radius: 12px;
  background: #101010;
  filter: alpha(opacity=80);
  opacity: .8;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fr-info-inside .fr-position-text { position: relative; }
.fr-no-caption .fr-info-inside .fr-position-text {
  float: left;
  height: 13px;
  line-height: 13px;
  padding: 6px 10px;
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
}

/* hide the position on small screens */
@media all and (max-width: 568px) and (max-height: 320px),
       all and (max-width: 320px) and (max-height: 568px) {
  .fr-has-position .fr-info-inside .fr-caption { margin-right: 0; }
  .fr-position { display: none !important; }

  /* smaller side buttons */
  .fr-ui-outside .fr-side {
    width: 54px;
    height: 50px;
    margin-top: -25px;
  }
  .fr-side-button {
    width: 40px;
    height: 50px;
    margin: 0 6px;
    margin-top: -25px;
  }
}


/* UI outside */
.fr-ui-outside .fr-position {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: inline;
  width: auto;
  margin: 0 1px 1px 0;
  color: #b9b9b9;
}
.fr-ui-outside .fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  filter: alpha(opacity=80);
  opacity: .8;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #1e1e1e;
  border: 1px solid rgba(180,180,180,.2);
}
.fr-ui-outside .fr-position-text {
  position: relative;
  float: left;
  width: auto;
  text-align: right;
  word-wrap: no-wrap;
  color: #b3b3b3;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  word-wrap: no-wrap;
  padding: 6px 10px;
  height: 13px;
  line-height: 13px;
  
}

.fr-ui-outside .fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Info without caption */
.fr-no-caption .fr-info-outside { display: none; } 
.fr-no-caption .fr-info-padder { pointer-events: none; }
.fr-no-caption .fr-info-background { pointer-events: none; opacity: 0; filter: none; display: none;}


/* 1/5 */
.fr-no-caption .fr-position-text,
.fr-ui-outside .fr-position-text {
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
}

/* outside position */
.fr-ui-outside .fr-position {
  float: none;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 15px;
}



/* IE 7 */
.fr-ltIE8 .fr-info * { zoom: 1;  filter: alpha(opacity=99);   }
.fr-ltIE8 .fr-box * { zoom: 1; filter: alpha(opacity=99); }

/* Info (UI outside) */
.fr-info-outside { bottom: auto; }
.fr-no-caption .fr-info-outside .fr-info-padder { padding: 10px 5px; }
.fr-ui-outside .fr-no-caption .fr-position { margin: 0; }

/* X */
.fr-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 47px;
  height: 47px;
  cursor: pointer;
  pointer-events: auto;
}

.fr-close-background,
.fr-close-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 23px;
  width: 23px;
}

.fr-close-background {
  filter: alpha(opacity=80);
  opacity: .8;
  -moz-transition: background-color .2s ease-in;
  -webkit-transition: background-color .2s ease-in;
  transition: background-color .2s ease-in;
  background-color: #282828;
  cursor: pointer;
}
.fr-close:hover .fr-close-background { background-color: #333; }

.fr-ui-outside .fr-close-background { background-color: #363636; }
.fr-ui-outside .fr-close:hover .fr-close-background { background-color: #434343; }


/*
 * Thumbnails
 */ 
.fr-thumbnails {
  position: absolute;
  width: 100%;
  height: 9%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  zoom: 1;
  overflow: hidden;
}
.fr-thumbnails-horizontal {
  left: 0;
  bottom: 0;
  min-height: 40px;
  max-height: 120px;
  padding: 20px 0;
}
.fr-thumbnails-vertical {
  left: 0;
  top: 0;
  min-width: 40px;
  max-width: 120px;
  padding: 0 20px;
}

.fr-thumbnails,
.fr-thumbnails * {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-thumbnails-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}
.fr-thumbnails-vertical .fr-thumbnails-wrapper {
  top: 50%;
  left: 0;
}

.fr-thumbnails-slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  zoom: 1;
}

.fr-thumbnails-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fr-thumbnails-thumbs {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}
.fr-thumbnails-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.fr-thumbnail-frame {
  position: absolute;
  zoom: 1;
  overflow: hidden;
}

.fr-thumbnail {
  position: absolute;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  zoom: 1;
  cursor: pointer;
  margin: 0 10px;
}
.fr-ltIE9 .fr-thumbnail * {
  overflow: hidden; /* IE6 */
  z-index: 1;
  zoom: 1;
}

.fr-thumbnail-wrapper {
  position: relative;
  background: #161616;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  display: inline; /* IE6 */
  z-index: 0; /* IE8 */
}

.fr-thumbnail-overlay { cursor: pointer; }
.fr-thumbnail-active .fr-thumbnail-overlay { cursor: default; }
.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-thumbnail-overlay-border {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  overflow: hidden;
  border-style: solid;
  border-color: transparent;
  
}
.fr-thumbnail img {
  position: absolute;
  filter: alpha(opacity=85);
  opacity: .85;
  max-width: none;
}
.fr-thumbnail:hover img,
.fr-thumbnail-active:hover img {
  filter: alpha(opacity=99);
  opacity: .99;
}
.fr-thumbnail-active img,
.fr-thumbnail-active:hover img  {
  filter: alpha(opacity=35);
  opacity: .35;
}
.fr-thumbnail-active { cursor: default;  }

/* Thumbnails loading */
.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-thumbnail-loading-background {
  background-color: #101010;
  background-image: url('skins/loading.gif');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: .8;
  position: relative;
  float: left;
}
/* this element is there as an alternative to putting the loading image on the background */
.fr-thumbnail-loading-icon { display: none; }


/* Thumbnail < > */
.fr-thumbnails-side {
  float: left;
  height: 100%;
  width: 28px;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}
.fr-thumbnails-side-previous { margin-left: 20px; }
.fr-thumbnails-side-next { margin-right: 20px; }

.fr-thumbnails-side-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px; 
  margin-left: -14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.fr-thumbnails-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: alpha(opacity=80);
  opacity: .8;
  -moz-transition: background-color .2s ease-in;
  -webkit-transition: background-color .2s ease-in;
  transition: background-color .2s ease-in;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
}
.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background { background-color: #3b3b3b; }

.fr-thumbnails-side-button-disabled * { cursor: default; }
.fr-thumbnails-side-button-disabled:hover .fr-thumbnails-side-button-background { background-color: #333; }

.fr-thumbnails-side-button-icon {
  height: 42px;
  width: 42px;
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
}

/* vertical thumbnails */
.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame { clear: both; }


/* Touch UI */
.fr-frames-has-touch-ui { top: 43px; }

.fr-touch-menu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 43px;
}
.fr-touch-menu-wrapper {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}

.fr-touch-caption {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  margin-top: -43px;
}
.fr-touch-menu-wrapper,
.fr-touch-caption-wrapper {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
.fr-touch-caption-overflow-scroll { /* TODO */
  overflow-x: hidden;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.fr-touch-menu-background,
.fr-touch-caption-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  filter: alpha(opacity=80);
  opacity: .8;
  zoom: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #000;
}


.fr-touch-caption-info {
  float: left;
  position: relative;
  clear: both;
  padding-right: 38px;
  color: #efefef;
}
.fr-touch-caption-info-padder {
  float: left;
  padding: 11px;
  display: block;
  filter: alpha(opacity=99);
  overflow: hidden;
  width: auto;
  position: relative;
}
.fr-touch-caption-text-wrapper {
  float: left;
  clear: both;
  font-weight: normal;
  font-family: "Lucida Sans Unicode", "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
  font-size: 13px;
  line-height: 21px;
  height: 21px; /* same as line-height */
  width: 100%;
  overflow: hidden;
}
.fr-touch-caption-text {
  float: left;
}

.fr-touch-caption-overflow .fr-touch-caption-text-wrapper {
  overflow: visible;
  height: auto;
}


/* buttons */
.fr-touch-button {
  padding: 10px 4px;
  width: 23px;
  height: 23px;
  position: relative;
  cursor: pointer;
}
.fr-touch-button .fr-touch-button-background {
  position: absolute;
  top: 10px;
  left: 4px;
  height: 23px;
  width: 23px; 
}
.fr-touch-button .fr-touch-button-background { background-color: #303030; }
.fr-touch-button:hover .fr-touch-button-background { background-color: #404040; }

.fr-touch-button-icon {
  float: left;
  position: relative;
  width: 23px;
  height: 23px;
}
/* x */
.fr-touch-close {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 11px;
}

/* ... */
.fr-touch-caption-more {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 11px;
  display: none;
}
.fr-touch-caption-padded .fr-touch-caption-more {
  display: block;
}


/* we can improve things on browsers that support media queries */
@media all and (min-height: 0px) {
  .fr-thumbnails { padding: 10px 0; }
  .fr-thumbnail,
  .fr-thumbnails-side { margin: 0 4px; }
  .fr-thumbnails-side-previous { margin-left: 8px; }
  .fr-thumbnails-side-next { margin-right: 8px; }
  .fr-thumbnail-loading-background { background-image: url('skins/loading-small.gif'); }
}
@media all and (min-height: 200px) {
  .fr-thumbnails { padding: 12px 0; }
  .fr-thumbnail,
  .fr-thumbnails-side { margin: 0 6px; }
  .fr-thumbnails-side-previous { margin-left: 12px; }
  .fr-thumbnails-side-next { margin-right: 12px; }
}

@media all and (min-height: 350px) {
  .fr-thumbnail-loading-background { background-image: url('skins/loading-medium.gif'); }
}

@media all and (min-height: 500px) {
  .fr-thumbnails { padding: 14px 0; }
  .fr-thumbnail,
  .fr-thumbnails-side { margin: 0 7px; }
  .fr-thumbnails-side-previous { margin-left: 14px; }
  .fr-thumbnails-side-next { margin-right: 14px; }
}

@media all and (min-height: 700px) {
  .fr-thumbnails { padding: 20px 0; }
  .fr-thumbnail,
  .fr-thumbnails-side { margin: 0 10px; }
  .fr-thumbnails-side-previous { margin-left: 20px; }
  .fr-thumbnails-side-next { margin-right: 20px; }
  .fr-thumbnail-loading-background { background-image: url('skins/loading.gif'); }
}

/* IE specific resets */
.fr-ltIE8 * { zoom: 1; z-index: 1;}
.fr-ltIE9 .fr-content-image-overlay,
.fr-ltIE9 .fr-has-caption .fr-info-outside .fr-info-background { border: 0; }



/*
 * ===== Skin: Fresco ===== 
 */
/* Sprite */
.fr-window-fresco .fr-side-button-icon,
.fr-window-fresco .fr-close-icon,
.fr-window-fresco .fr-touch-close .fr-touch-button-icon,
.fr-window-fresco .fr-touch-caption-more .fr-touch-button-icon,
.fr-window-fresco .fr-thumbnails-side-button-icon {
  background-image: url('/images/sprite.png');
}
/* High-res sprite */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
  .fr-window-fresco .fr-side-button-icon,
  .fr-window-fresco .fr-close-icon,
  .fr-window-fresco .fr-touch-close .fr-touch-button-icon,
  .fr-window-fresco .fr-touch-caption-more .fr-touch-button-icon,
  .fr-window-fresco .fr-side-button-icon {
    background-image: url('skins/fresco/sprite@x2.png');
    background-size: 500px 500px; /* downscaled 50%, size of original sprite */
  }
}

.fr-window-fresco .fr-box-outer-border { box-shadow: 0 0 5px rgba(0,0,0,.4); }
/* outer-border instead of inner-border example (box and ui px should be the same) */ 
/*
.fr-window-fresco .fr-box-outer-border { border: 10px solid #fff; }
.fr-window-fresco .fr-ui-outer-border { padding: 10px; }
.fr-window-fresco .fr-content-image-overlay { border-width: 0; }
*/

.fr-window-fresco .fr-box-wrapper {
  background: #101010;
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.fr-window-fresco .fr-content-image-overlay { 
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, .08);
}
/* remove bottom border if the image has a caption, or add it when it has a caption */
.fr-window-fresco .fr-has-caption .fr-box-has-ui-outside .fr-content-image-overlay { border-bottom-width: 0px; }
.fr-window-fresco .fr-no-caption .fr-box-has-ui-outside .fr-content-image-overlay { border-bottom-width: 1px; }

.fr-window-fresco .fr-ui-outside .fr-position-text {
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
.fr-window-fresco .fr-no-caption .fr-info-inside .fr-position-background {
  border: 1px solid rgba(180,180,180,.15);
}
.fr-window-fresco .fr-has-caption .fr-info-inside .fr-info-background {
  border: 1px solid rgba(68,68,68,.1);
  border-top-width: 0;
}
.fr-window-fresco .fr-has-caption .fr-info-outside .fr-info-background {
  border: 1px solid rgba(80,80,80,.25);
  border-top-width: 0;
}

.fr-window-fresco .fr-thumbnail-wrapper { box-shadow: 0 0 3px rgba(0, 0, 0, .3); }
.fr-window-fresco .fr-thumbnail-active .fr-thumbnail-wrapper { box-shadow: 0 0 1px rgba(0, 0, 0, .1);  }


/* < > */
.fr-window-fresco .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: -13px -14px; }
.fr-window-fresco .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -93px -14px; }

.fr-window-fresco .fr-side-previous:hover .fr-side-button .fr-side-button-icon { background-position: -13px -114px; }
.fr-window-fresco .fr-side-next:hover .fr-side-button .fr-side-button-icon { background-position: -93px -114px; }

/* disabled state (IE < 9) */
.fr-window-fresco .fr-side-previous .fr-side-button-disabled .fr-side-button-icon,
.fr-window-fresco .fr-side-previous:hover .fr-side-button-disabled .fr-side-button-icon { background-position: -13px -214px; }
.fr-window-fresco .fr-side-next .fr-side-button-disabled .fr-side-button-icon,
.fr-window-fresco .fr-side-next:hover .fr-side-button-disabled .fr-side-button-icon { background-position: -93px -214px; }

/* < > transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: -13px -114px; }
.fr-window-fresco:not(.fr-ltIE9) .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -93px -114px; }
.fr-window-fresco:not(.fr-ltIE9) .fr-side .fr-side-button .fr-side-button-icon {
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .5;
}
.fr-window-fresco .fr-side:hover .fr-side-button .fr-side-button-icon,
.fr-window-fresco .fr-frame .fr-side .fr-side-button-active .fr-side-button-icon { 
  opacity: 1;
}
/* < > transition (IE < 9) */
.fr-ltIE9 .fr-frame .fr-side-previous .fr-side-button-active .fr-side-button-icon { background-position: -13px -114px; }
.fr-ltIE9 .fr-frame .fr-side-next .fr-side-button-active .fr-side-button-icon { background-position: -93px -114px; }


/* disabled side */
.fr-window-fresco:not(.fr-ltIE9) .fr-ui-outside .fr-side .fr-side-button-disabled .fr-side-button-icon,
.fr-window-fresco:not(.fr-ltIE9) .fr-ui-outside .fr-side .fr-side-button-disabled:hover .fr-side-button-icon { opacity: .2; }
/* on the inside we hide disabled sides */
.fr-window-fresco .fr-ui-inside .fr-side-button-disabled .fr-side-button-icon { background-image: none; }


/* responsive < > */
@media all and (max-width: 568px) and (max-height: 320px),
       all and (max-width: 320px) and (max-height: 568px) {
  .fr-window-fresco .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: 0px -300px; }
  .fr-window-fresco .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -40px -300px; }

  .fr-window-fresco .fr-side-previous:hover .fr-side-button .fr-side-button-icon { background-position: 0px -350px; }
  .fr-window-fresco .fr-side-next:hover .fr-side-button .fr-side-button-icon { background-position: -40px -350px; }

  .fr-window-fresco:not(.fr-ltIE9) .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: 0px -350px; }
  .fr-window-fresco:not(.fr-ltIE9) .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -40px -350px; }
}

/* X */
.fr-window-fresco .fr-close .fr-close-icon { background-position: -169px -9px;}
.fr-window-fresco .fr-close:hover .fr-close-icon { background-position: -210px -9px; }

/* X transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-close .fr-close-icon {
  background-position: -210px -9px;
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .8;
}
.fr-window-fresco .fr-close:hover .fr-close-icon  { opacity: 1; }

/* Thumbnails */
.fr-window-fresco .fr-thumbnail-wrapper {
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.fr-window-fresco .fr-thumbnail-wrapper { box-shadow: 0 0 3px rgba(0, 0, 0, .3); }
.fr-window-fresco .fr-thumbnail-active .fr-thumbnail-wrapper { box-shadow: 0 0 1px rgba(0, 0, 0, .1); }
.fr-window-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, .3);
}
.fr-window-fresco .fr-thumbnail-overlay-border {
  border-width: 1px;
  border-color: rgba(255, 255, 255, .08); /* should remain rgba */
}
/* no inner border on active thumbnail */
.fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-thumbnail-active:hover .fr-thumbnail-overlay-border { border: 0px; }

/* Thumbnails < > */
.fr-window-fresco .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon { background-position: -160px -41px;}
.fr-window-fresco .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon { background-position: -202px -41px; }
.fr-window-fresco .fr-thumbnails-side-next .fr-thumbnails-side-button-icon { background-position: -160px -83px;}
.fr-window-fresco .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon { background-position: -202px -83px; }
/* vertical ^ (up/down) adjustments */
.fr-window-fresco .fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon { background-position: -286px -41px;}
.fr-window-fresco .fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon { background-position: -328px -41px; }
.fr-window-fresco .fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon { background-position: -286px -83px;}
.fr-window-fresco .fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon { background-position: -328px -83px; }

/* Thumbnails < > transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side .fr-thumbnails-side-button-icon {
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .8;
}
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled { background-position: -160px -41px; }
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled { background-position: -202px -83px; }
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side:hover .fr-thumbnails-side-button-icon { opacity: 1; }
/* vertical ^ (up/down) adjustments */
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled { background-position: -286px -41px; }
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled { background-position: -328px -83px; }

/* lower opacity on disabled states */
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side .fr-thumbnails-side-button-disabled,
.fr-window-fresco:not(.fr-ltIE9) .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled { opacity: .5; }

/* lower opacity IE < 9 using images */
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon { 
  background-position: -244px -41px;
}
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon { 
  background-position: -244px -83px;
}
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background,
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background { 
  filter: alpha(opacity=50);
}
/* vertical ^ (up/down) adjustments */
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon { 
  background-position: -370px -41px;
}
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-fresco.fr-ltIE9 .fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon { 
  background-position: -370px -83px;
}


/* Touch caption */
/* background */
.fr-window-fresco .fr-touch-menu-background,
.fr-window-fresco .fr-touch-caption-background {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, .12);
  border-width: 0 0 1px 0;
  box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
.fr-window-fresco .fr-touch-caption-background {
  border-width: 1px 0 0 0;
  box-shadow: 0 -1px 3px rgba(0,0,0, .3);
}

/* smaller text on mobile devices */
@media all and (max-width: 568px) and (max-height: 320px),
       all and (max-width: 320px) and (max-height: 568px) {
  .fr-window-fresco .fr-touch-caption-text-wrapper { font-size: 12px; }
}

/* x */
.fr-window-fresco .fr-touch-close .fr-touch-button-icon { background-position: -169px -9px; }
.fr-window-fresco .fr-touch-close:hover .fr-touch-button-icon { background-position: -210px -9px; }

/* x transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-touch-close .fr-touch-button-icon {
  background-position: -210px -9px;
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .8;
}
.fr-window-fresco .fr-touch-close .fr-touch-button-icon  { opacity: 1; }

/* ... */
.fr-window-fresco .fr-touch-caption-more .fr-touch-button-icon { background-position: -169px -134px;  }
.fr-window-fresco .fr-touch-caption-more:hover .fr-touch-button-icon { background-position: -210px -134px;  }
/* ... transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-touch-caption-more .fr-touch-button-icon {
  background-position: -210px -134px;
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .8;
}
.fr-window-fresco .fr-touch-caption-more .fr-touch-button-icon  { opacity: 1; }


/* ... \/ */
.fr-window-fresco .fr-touch-caption-less .fr-touch-button-icon { background-position: -169px -175px;  }
.fr-window-fresco .fr-touch-caption-less:hover .fr-touch-button-icon { background-position: -210px -175px;  }
/* ... \/ transition */
.fr-window-fresco:not(.fr-ltIE9) .fr-touch-caption-less .fr-touch-button-icon {
  background-position: -210px -175px;
  -moz-transition: opacity .2s ease-in;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in;
  opacity: .8;
}
.fr-window-fresco .fr-touch-caption-less .fr-touch-button-icon  { opacity: 1; }



/*
 * ===== Skin: IE6 (always used there as a fallback) ===== 
 */
.fr-window-IE6 * { zoom: 1; }

/* Sprite */
.fr-window-IE6 .fr-side-button-icon,
.fr-window-IE6 .fr-close-icon,
.fr-window-IE6 .fr-thumbnails-side-button-icon {
  background-image: url('/images/sprite.png');
}

/* < > */
.fr-window-IE6 .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: -13px -114px; }
.fr-window-IE6 .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -93px -114px; }

/* disabled */
.fr-window-IE6 .fr-side-previous .fr-side-button-disabled .fr-side-button-icon,
.fr-window-IE6 .fr-side-previous:hover .fr-side-button-disabled .fr-side-button-icon { background-position: -13px -214px; }
.fr-window-IE6 .fr-side-next .fr-side-button-disabled .fr-side-button-icon,
.fr-window-IE6 .fr-side-next:hover .fr-side-button-disabled .fr-side-button-icon { background-position: -93px -214px; }
.fr-window-IE6 .fr-ui-inside .fr-side-button-disabled .fr-side-button-icon { display: none; }


/* responsive < > */
@media all and (max-width: 568px) and (max-height: 320px),
       all and (max-width: 320px) and (max-height: 568px) {
  .fr-window-IE6 .fr-side-previous .fr-side-button .fr-side-button-icon { background-position: 0px -350px; }
  .fr-window-IE6 .fr-side-next .fr-side-button .fr-side-button-icon { background-position: -40px -350px; }

  .fr-window-IE6 .fr-side-previous .fr-side-button-disabled .fr-side-button-icon,
  .fr-window-IE6 .fr-side-previous:hover .fr-side-button-disabled .fr-side-button-icon { background-position: 0px -400px; }
  .fr-window-IE6 .fr-side-next .fr-side-button-disabled .fr-side-button-icon,
  .fr-window-IE6 .fr-side-next:hover .fr-side-button-disabled .fr-side-button-icon { background-position: -40px -400px; }
}


/* X */
.fr-window-IE6 .fr-close .fr-close-icon { background-position: -169px -9px;}
.fr-window-IE6 .fr-close:hover .fr-close-icon { background-position: -210px -9px; }

.fr-window-IE6 .fr-info { filter: alpha(opacity=99);  }
.fr-window-IE6 .fr-ui-outside .fr-info { background: #000; }
.fr-window-IE6 .fr-close-icon { background-color: #232323; }
.fr-window-IE6 .fr-close .fr-close-background { display: none; }

.fr-window-IE6 .fr-info-background { display: none; }
.fr-window-IE6 .fr-has-caption .fr-ui-inside .fr-info,
.fr-window-IE6 .fr-info-outside { background: #0d0d0d; }


.fr-window-IE6 .fr-position { background: #101010; }
.fr-window-IE6 .fr-has-caption .fr-ui-inside .fr-position { background: none; }
.fr-window-IE6 .fr-position .fr-position-background { display: none; }








/* DIY STYLE ADDON */
.header{
  height: 70px;
  /* position: relative; */
  background: rgba(27,56,132, 0.75);
}

.header .nav > ul > li{
  margin: 0;
}

.header .nav > ul > li > a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-family: "华文中宋", "STZhongsong", serif;
}

.header .search a{
  height: 40px;
}

.header .search{
  padding-top: 10px;
  background: linear-gradient(to bottom, #4285f4, #3367d6);
}

.header .nav > ul > li{
  line-height: 70px;
}

.header .nav > ul > li.cur, .header .nav > ul > li:hover{
  background: linear-gradient(to bottom, #4285f4, #3367d6);
}

.header .logo{
  margin-top: 2px;
  width: 266px;
}

.pop-search {
  width: 266px;
  position: relative;
  /* margin: 0 10px; */
  display: inline-flex;
  height: 70px;
  margin-left: 3%;
}

.pop-search form{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.pop-search .text {
  width: calc(100% - 42px); /* 减去按钮宽度和边距 */
  padding: 10px; /* 内边距 */
  border: 1px solid #ccc; /* 边框 */
  border-radius: 5px 0 0 5px; /* 圆角边框 */
  font-size: 16px; /* 字体大小 */
  color: #666; /* 字体颜色 */
  background-color: #fff; /* 背景色 */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 轻微的阴影 */
  transition: all 0.3s ease; /* 动画效果 */
}

.pop-search .text:focus {
  outline: none; /* 去除输入框聚焦时的轮廓 */
  box-shadow: 0 0 8px rgba(0,0,0,0.2); /* 聚焦时的阴影效果 */
}

.pop-search .btn {
  width: 78px; /* 按钮宽度 */
  height: 40px;
  line-height: 40px;
  border: none; /* 无边框 */
  border-radius: 0 5px 5px 0; /* 圆角边框 */
  background: linear-gradient(to bottom, #4285f4, #3367d6); /* 渐变色背景 */
  color: white; /* 字体颜色 */
  font-size: 15px; /* 字体大小 */
  cursor: pointer; /* 鼠标悬停时显示手型 */
  transition: background 0.3s ease; /* 背景变化的动画效果 */
}

.pop-search .btn:hover {
  background: linear-gradient(to bottom, #3367d6, #2a56c6); /* 鼠标悬停时的渐变色背景 */
}

/* 显示搜索框时的动画效果 */
.pop-search.show {
  display: block; /* 显示 */
  opacity: 1; /* 不透明度1 */
}

.acbox{
  width: 125px;
}

.chanpin-header{
  padding: 20px;
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%); /* 渐变背景色 */
  border-radius: 10px; /* 圆角边框 */
  color: #fff; /* 文字颜色 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* 投影效果 */
  margin-bottom: 40px; /* 与下方内容的间距 */
  position: relative; /* 为子元素绝对定位做准备 */
  overflow: hidden; /* 防止子元素溢出 */
}

.chanpin-cata .title_box{
  width: 100%;
  margin: 40px auto 10px;
  margin-left: 0!important;
  padding-left: 0;
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 5px;
  overflow: hidden;
}


.chanpin-cata .title_box a:last-child{
  border-right: none;
}

.chanpin-cata .title_box a{
  border-right: 1px solid rgba(255,255,255,.3);
  
}

.chanpin-cata .title_box a:hover,.chanpin-cata .title_box a.cur {
  background: rgba(255,255,255,.4);
}

.chanpin-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.chanpin-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 30px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 50%; /* 圆形背景 */
  z-index: -1; /* 确保背景在文字之后 */
}

.title-text h2 {
  font-size: 2.5rem; /* 增大标题字体大小 */
  font-weight: 700; /* 加粗标题 */
  margin-bottom: 0.5rem; /* 标题与副标题之间的间距 */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* 标题文字阴影 */
  letter-spacing: 6px;
}

.title-text p {
  font-size: 1rem;
  font-style: italic; /* 斜体副标题 */
  opacity: 0.8; /* 降低副标题透明度 */
  margin: 0;
}

.chanpin-title a {
  padding: 10px 20px;
  border: 2px solid #fff; /* 白色边框 */
  border-radius: 30px; /* 圆角按钮 */
  font-size: 1rem;
  font-weight: 600; /* 字体加粗 */
  text-transform: uppercase; /* 文字大写 */
  transition: all 0.3s ease; /* 动画效果 */
  color: #EEE;
}

.chanpin-title a:hover {
  background-color: #fff; /* 鼠标悬停时的背景颜色 */
  color: #6e45e2; /* 鼠标悬停时的文字颜色 */
  border-color: #6e45e2; /* 鼠标悬停时的边框颜色 */
  transform: translateY(-2px); /* 鼠标悬停时上移 */
}

.chanpin ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chanpin ul li {
  position: relative;
  flex: 0 1 236px; /* 每个列表项的宽度，根据需要调整 */
  margin: 10px; /* 列表项之间的间距 */
  background-color: #fff; /* 背景颜色 */
  border-radius: 8px; /* 圆角边框 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 轻微的阴影效果 */
  overflow: hidden; /* 确保图片不会溢出 */
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  border: 1px solid #EEE;
}

.chanpin li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* background-image: linear-gradient(to bottom right, #f0f8ff, #ffffff);  */
  color: #222;
  opacity: 0.95;
  border: 1px solid #e0e0e0;
}

.chanpin li a {
  text-decoration: none; /* 去除链接的下划线 */
  color: #333; /* 文本颜色 */
}

.chanpin ul li .pro-img{
  height: 256px;
  display: flex;
  align-items: center;
}

.chanpin ul li .pro-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, #f8faec, #ffffff); /* 渐变色 */
  z-index: -1; /* 确保伪元素在图片后面 */
  opacity: 0; /* 默认情况下不可见 */
  transition: opacity 0.3s ease; /* 过渡效果 */
}

.chanpin ul li .pro-img img{
  height: auto!important;
}

.chanpin li img {
  width: 100%!important; /* 图片宽度占满容器 */
  transition: transform 0.3s ease; /* 图片缩放动画效果 */
  border: none !important;;
  max-width: 100%;
  height: auto;
}

.chanpin li img:hover {
  transform: scale(1.05); /* 鼠标悬停时图片放大 */
}

.chanpin ul li h2 {
  font-size: 0.9rem; /* 标题字体大小 */
  color: #333; /* 标题颜色 */
  font-weight: 500; /* 字体加粗 */
  display: -webkit-box; /* 启用盒模型 */
  -webkit-box-orient: vertical; /* 设置为垂直方向 */
  -webkit-line-clamp: 2; /* 限制在两行内 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 显示省略号 */
  line-height: 1.2; /* 设置行高 */
  max-height: 48px; /* 两行文本的最大高度，根据字体大小调整 */
  margin: 15px 20px 15px; /* 边距 */
  padding: 0;
  line-height: 1.5rem;
  text-align: center;
}

.chanpin li:hover h2{
  color: #00478A;
  font-weight: 700;
}


/* 根据需要添加媒体查询以适应不同屏幕尺寸 */
@media (max-width: 768px) {
  .chanpin li {
    flex-basis: calc(50% - 20px); /* 在小屏幕上，两个列表项一行显示 */
  }
}

@media (max-width: 480px) {
  .chanpin li {
    flex-basis: 100%; /* 在非常小的屏幕上，列表项占满屏幕宽度 */
  }
}

/* 首页服务中心 */
.service-center {
  background: url(/images/index-service.webp) no-repeat center;
    background-attachment: fixed;
    position: relative;
    padding-top: 62px;
    padding-bottom: 78px;
    overflow: hidden;
  border-radius: 0; /* 圆角边框 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 轻微的阴影效果 */
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-center .service-wrapper{
  width: 1280px;
  background: #f9f9f9;
  padding: 68px 37px;
    padding-bottom: 25px;
    border-radius: 8px;
}

.service-header {
  background-color: transparent; /* 无背景色 */
  padding: 1rem 0; /* 仅在垂直方向上添加间距 */
  text-align: center;
  margin-bottom: 2rem; /* 为标题和内容之间提供足够的空间 */
  position: relative;
  overflow: hidden;
}

.service-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%; /* 控制线的长度 */
  border-bottom: 4px solid #007bff; /* 定义线条的颜色和宽度 */
}

.service-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333; /* 深色文本 */
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
  letter-spacing: 6px;
  padding: 0.5rem 2rem; /* 内边距 */
  background-color: #fff; /* 标题背景色 */
  border-radius: 999px; /* 圆角背景 */
  z-index: 1; /* 确保标题在线条之上 */
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1); /* 轻微的阴影 */
}

.service-header p {
  font-size: 1.2em; /* 适当增加副标题字体大小 */
  color: #666; /* 灰色文本 */
  margin: 0.5rem 0 0;
  max-width: 800px; /* 限制文本宽度，提高可读性 */
  margin: 0 auto; /* 水平居中 */
}

/* 响应式设计 */
@media (max-width: 768px) {
  .service-header h2 {
    font-size: 2.5em; /* 在小屏幕上减小标题大小 */
  }
}

.service-body {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-item {
  flex-basis: calc(33.33% - 40px); /* 每个服务项的宽度，减去间距 */
  text-align: center;
  padding: 20px;
  margin: 20px;
  border-radius: 8px; /* 圆角边框 */
  background: #fff; /* 白色背景 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 轻微的阴影效果 */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 变换和阴影的动画效果 */
}

.service-item:hover {
  transform: translateY(-5px); /* 鼠标悬停时上移 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 鼠标悬停时更深的阴影 */
}

.service-item img {
  width: 60px; /* 图标大小 */
  height: auto;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.25rem; /* 服务标题 */
  color: #333; /* 深色文本 */
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 1rem; /* 描述文本 */
  color: #666; /* 较深的灰色文本 */
  margin: 0;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background-color: transparent; /* 无背景色 */
  border-top: 1px solid #eaeaea; /* 轻微的顶部边框 */
  margin-top: 3rem;
}

.contact-info,
.contact-action {
  flex-basis: 45%; /* 根据需要调整比例 */
}

.contact-info h3 {
  font-size: 1.75em; /* 适中的标题大小 */
  color: #333; /* 深色文本 */
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1em;
  color: #555; /* 灰色文本 */
  line-height: 1.6; /* 良好的行间距 */
  margin: 0;
}

.contact-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px; /* 轻微的圆角 */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #0056b3; /* 鼠标悬停时的深色背景 */
}

/* 响应式设计 */
@media (max-width: 768px) {
  .service-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-info,
  .contact-action {
    flex-basis: auto;
    margin-bottom: 1rem;
  }

  .contact-btn {
    width: 100%; /* 在小屏幕上按钮宽度占满 */
  }
}

/* footer 部分设计 */
/* Footer 基础样式 */
.footer {
  background-color: #13488f; /* 深色背景 */
  color: #fff; /* 文字颜色为白色，增加可读性 */
  /* font-family: 'Open Sans', Arial, sans-serif;  */
  font: 12px/1.2 Tahoma,Arial,"\5b8b\4f53",sans-serif;
}

.footer a {
  color: #8799b2; /* 链接颜色 */
  text-decoration: none; /* 去除下划线 */
  transition: color 0.3s; /* 动画效果 */
}

.footer .footer_bottom .banquan a img{
  vertical-align: text-bottom;
  margin-right: 4px;
}

.footer a:hover {
  color: #fff; /* 鼠标悬停效果 */
}

/* 导航链接 */
.footer_nav {
  display: flex;
  justify-content: space-between; /* 导航两端对齐 */
  padding: 20px 0; /* 调整内边距 */
}

.footer_nav .left,
.footer_nav .right {
  width: auto; /* 自适应宽度 */
}

.footer_nav .left ul {
  display: flex; /* 使用flex布局 */
  justify-content: center;
  flex-wrap: wrap; /* 允许换行 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_nav .left ul li {
  margin: 0 0px; /* 列表项间距 */
  position: relative;
}

.footer_nav .left ul li span {
  font-weight: bold; /* 加粗标题 */
  padding: 5px 0; /* 调整内边距 */
  display: block;
  font-family: "华文中宋", "STZhongsong", serif;
}

.footer_nav .left ul li span:before {
  display: none; /* 去除分隔线 */
}

.footer_nav .left ul li div a {
  color: #8799b2; /* 更新链接颜色 */
  font-size: 0.9em; /* 调整字体大小 */
  line-height: 1.8; /* 调整行高 */
  margin-bottom: 5px; /* 链接间距 */
}

/* 联系方式 */
/* Footer 右侧联系方式区域 */
.footer .footer_nav .right {
 
}

.footer .footer_nav .right h3 {
  padding: 0;
    display: block;
    color: #ffffff;
    font-size: 15px;
    position: relative;
    font-weight: bold;
    font-family: "华文中宋", "STZhongsong", serif;
}

.footer .footer_nav .right .text {
  font-size: 13px; /* 适当减小文本字号 */
  line-height: 1.6; /* 优化行间距 */
  color: #8799b2; /* 文本颜色 */
}

.footer .footer_nav .right .text p {
  margin-bottom: 0.5em; /* 段落间距 */
}

.footer .footer_nav .right .dh {
  
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer .footer_nav .right {
    text-align: center; /* 移动端文本居中 */
  }

  .footer .footer_nav .right .dh {
    font-size: 1em; /* 移动端适当减小电话号码字号 */
  }
}

/* 底部版权信息 */
.footer_bottom {
  background: #0c3b79; /* 深色背景 */
  padding: 10px 0; /* 调整内边距 */
}

.footer_bottom .banquan {
  text-align: center; /* 文本居中 */
  font-size: 12px; /* 调整字体大小 */
  margin-top: 0!important;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer_nav {
    flex-direction: column; /* 垂直布局 */
  }

  .footer_nav .left,
  .footer_nav .right {
    width: 100%; /* 宽度占满 */
    padding: 10px 0; /* 调整内边距 */
  }

  .footer_nav .left ul {
    justify-content: center; /* 水平居中 */
  }

  .footer_nav .left ul li {
    margin: 5px 0; /* 调整间距 */
  }

  .footer_nav .right .text,
  .footer_nav .right .dh {
    text-align: center; /* 文本居中 */
  }
}


/* 新闻容器 */
.news {
  width: 100%;
  max-width: 1280px; /* 设置最大宽度 */
  margin: 0 auto; /* 居中显示 */
  padding: 20px;
}

/* 新闻头部 */
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 40px; 
  background: linear-gradient(135deg, #e6e6ff 0%, #c9d1f5 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加轻微的阴影 */
  border-bottom: 1px solid #e9ecef; /* 轻微的底部边框 */
  
}

.news-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #333333; /* 深色文本，提高可读性 */
  display: flex;
    align-items: center;
    flex-direction: column;
    align-items: baseline;
    letter-spacing: 6px;
}

.news-header h2 b {
  font-weight: normal;
  color: #ccc; /* 为 "NEWS Center" 提供醒目的颜色 */
  margin-left: 10px; /* 添加间隔 */
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.news-header a {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  background: rgba(0, 123, 255, 0.1); /* 浅色背景 */
  padding: 8px 20px;
  border-radius: 30px; /* 圆形按钮效果 */
  transition: background-color 0.3s ease, transform 0.3s ease; /* 平滑过渡效果 */
}

.news-header a:hover {
  background-color: rgba(0, 123, 255, 0.2); /* 鼠标悬浮时加深背景色 */
  transform: scale(1.05); /* 轻微放大 */
}

/* 新闻内容包装器 */
.news-wrapper {
  display: flex;
  background: #e9ecef;
  flex-direction: column;
}

/* 其他样式保持不变，以下是针对 .imgnews-container 的优化 */

/* 图片新闻容器 */
.imgnews-container {
  padding: 20px 20px 0;
  display: flex; /* 使用Flexbox布局 */
  justify-content: space-between; /* 水平平均分布 */
  margin-top: -40px;
}

.imgnews-container li {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  width: 32%; /* 减去间隔的宽度，确保平均分布 */
}

/* 每行的最后一个li不设置右边距 */
.imgnews-container li:nth-child(even) {
  margin-right: 0;
}

.imgnews-container .imgk {
  height: auto; /* 根据图片比例调整 */
}

.imgnews-container .imgk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.imgnews-container h4 {
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}

.imgnews-container .h5m a {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 4px;
}

.imgnews-container .h5m a:hover {
  background-color: #0056b3;
}

/* 响应式设计调整 */
@media (max-width: 768px) {
  .imgnews-container {
    flex-direction: column; /* 垂直堆叠 */
  }

  .imgnews-container li {
    width: 100%; /* 占满容器宽度 */
    margin-right: 0; /* 移除右边距 */
  }
}

/* 重要新闻容器 */
.event-container {
  padding: 0 20px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 重要新闻头部美化 */
.event-header {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007bff;
}

/* 其他样式保持不变，以下是针对 .hot-news 的优化 */

/* 重要新闻条目美化 */
.hot-news {
  width: 32%;
  position: relative; /* 添加相对定位 */
  margin-bottom: 10px;
  padding: 15px;
  padding-top: 20px; /* 调整顶部内边距以适应日期位置 */
  background: rgba(255,255,255,.7);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  border-bottom: 1px solid #e9ecef; /* 添加底部边框 */
  display: block;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的文本 */
  text-overflow: ellipsis; /* 使用省略号表示溢出的文本 */
}

.hot-news:hover{
  background: #ffffff;
}

.hot-news:last-child {
  margin-bottom: 0;
}

/* 绝对定位日期到右上角 */
.hot-news .date {
  position: absolute; /* 使用绝对定位 */
  top: 3px; /* 根据padding调整 */
  right: 3px; /* 右上角贴边 */
  font-size: 12px; /* 减小日期字号 */
  color: #a9a9a9; /* 日期颜色变淡 */
  background: none;
  padding: 0;
}

.hot-news p {
  font-size: 16px;
  margin: 0 0 5px; /* 调整段落与链接的间距 */
}

.hot-news .h5m {
  margin-top: 5px; /* 调整链接与文本的垂直位置 */
}

.hot-news .h5m a {
  display: inline-block;
  background: #0056b3;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hot-news .h5m a:hover {
  background-color: #007bff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .news-wrapper {
    flex-direction: column;
  }

  .imgnews-container,
  .event-container {
    flex: none;
    width: 100%;
  }
}


/* 轮播图容器基本样式 */
/* 轮播图容器基本样式 */
.banner_con {
  position: relative;
  overflow: hidden;
}

.banner {
  width: 100%;
  /* 设置更大的高度，例如：600px */
  height: unset;
}

/* 轮播图列表和项 */
.slick-list,
.slick-track,
.slick-slide {
  height: 100%;
}

.slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 2s ease; /* 平滑放大效果 */
  transform-origin: center; /* 放大的基准点 */
  height: auto;
}

/* 初始状态：图片缩小并且半透明 */
.slick-slide img.slick-slide-img {
  transform: scale(0.8);
  opacity: 0.5;
  transition: transform 3s ease, opacity 3s ease;
}

/* 图片加载完成时的状态：正常大小并且完全不透明 */
.slick-slide img.slick-slide-img.loaded {
  transform: scale(1);
  opacity: 1;
}

/* 当鼠标悬停在滑动项上时，图片放大 */
.slick-slide:hover img {
  transform: scale(1.1); 
}

/* 点状指示器样式 */
.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  background: transparent;
  color: transparent;
  border-radius: 50%;
  padding: 0;
  transition: background-color 0.3s;
}

.slick-dots .slick-active button {
  background: #fff;
}

/*  */
.buytu {
  display: flex;
}

/* 客服区块 */
/* 客服咨询小区块基本样式 */
.onlineService {
  position: fixed;  /* 固定定位到视窗 */
  right: 20px;      /* 距离右边20px */
  bottom: 20vh;     /* 距离底部视窗高度的20%，可以根据需要调整 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;    /* 内边距 */
  background-color: #fff; /* 背景色 */
  border-radius: 5px; /* 边框圆角 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 轻微的阴影 */
  z-index: 1000;    /* 确保客服区块在页面其他内容的上方 */
  cursor: pointer;  /* 鼠标悬停时显示指针手势 */
  text-decoration: none; /* 去除链接下划线 */
  color: inherit;    /* 继承文字颜色 */
  box-sizing: content-box;
}

/* 客服图标样式 */
.onlineService .ico_os,
.onlineService .ico_pp,
.onlineService .ico_gt {
  margin-bottom: 8px; /* 图标之间的间距 */
  font-size: 16px;    /* 字体大小，根据需要调整 */
  color: #333;        /* 字体颜色 */
  transition: transform 0.3s ease; /* 平滑变化效果 */
}

/* 图标悬停效果 */
.onlineService .ico_os:hover,
.onlineService .ico_pp:hover,
.onlineService .ico_gt:hover {
  transform: scale(1.1); /* 鼠标悬停时放大 */
}

/* 客服链接样式 */
.onlineService .ico_pp,
.onlineService .ico_gt {
  display: block; /* 块级元素 */
  margin-top: 10px; /* 链接与图标的间距 */
}

/* 可以为每个链接添加不同的样式，例如： */
.onlineService .ico_pp {
  background-color: #007bff; /* 链接背景色 */
  color: #fff; /* 链接文字颜色 */
  padding: 10px 20px; /* 链接内边距 */
  border-radius: 5px; /* 链接边框圆角 */
  text-align: center; /* 文字居中 */
}

/* 鼠标悬停时改变背景色 */
.onlineService .ico_pp:hover {
  background-color: #0056b3;
}

/* 其他样式可以根据具体设计进行添加和调整 */

.onlineService{
  height: auto!important;
}

.onlineService .ico_os{
  background: none;
  height: auto!important;
}


/* 页面咨询按钮样式 */
.contact-support {
  position: fixed;  /* 固定定位到视窗 */
  right: 20px;      /* 距离右边20px */
  bottom: 40vh;     /* 距离底部80px，根据需要调整以靠上一点 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 80px;      /* 按钮宽度 */
  height: 80px;     /* 按钮高度 */
  color: #ffffff;   /* 文字颜色 */
  border-radius: 50%; /* 圆形按钮 */
  cursor: pointer;  /* 鼠标悬停时显示指针手势 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 轻微的阴影 */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* 平滑变化效果 */
  z-index: 1000;    /* 确保按钮在页面其他内容的上方 */
  padding: 0;
  box-shadow: 0 0 5px 007bff;
}

.contact-support:hover {
  transform: scale(1.1); /* 鼠标悬停时放大 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 鼠标悬停时更明显的阴影 */
}

/* 图标样式，这里使用了一个问号作为示例 */
.icon-contact {
  font-size: 24px;   /* 图标大小 */
  font-weight: bold; /* 图标加粗 */
  padding: 5px;
}

.icon-contact img{
  max-width: 100%;
  border-radius: 100px;
  display: block;
}

/* 初始状态的咨询框 */
.box_os {
  position: fixed;
  right: -240px; /* 初始时在屏幕外 */
  width: 300px;  /* 咨询框的宽度 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 阴影 */
  transition: right 0.8s ease-out; /* 平滑滑出效果 */
  z-index: 1001; /* 确保咨询框在按钮之上 */
  box-sizing: content-box;
  border-radius: 5px;
}

/* 滑出后的咨询框状态 */
.box_os.active {
  right: 20px; 
}

.box_os.scale{
  transform: scale(1.1);
  transition: linear .5s;
}

.box_os .acbox{
  display: none;
}

.box_os .os_x{
  position: absolute;
  top: 1px;
  right: 1px;
}

.box_os .osqq{
  border: none !important;
  background-image: none!important;
  padding: 0 0 6px 0!important;
}

.box_os .chat-header{
  width: 100%!important;
  margin-right: 0!important;
  margin-top: 0!important;
  padding: 10px;
  background: #ddd;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  text-shadow: 0 2px 4px rgb(0 0 0 / 50%);
  font-family: "华文中宋", "STZhongsong", serif;
}

.top {
  opacity: .7;
  width: 36px;
  height: 44px;
  border: 2px solid #535353;
  margin: auto;
  background: url(../images/top.png) no-repeat center;
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: -100px;
  transition: 0.9s;
  z-index: 999;
  -webkit-animation-name: top;
  animation-name: top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bottom {
  bottom: 10px;
}

@keyframes top

{

0% { background-position:bottom center}

100% { background-position:top center}

}


