/*T-XYS083*/


.mejs-inner, .mejs-inner div, .mejs-inner a, .mejs-inner span, .mejs-inner button
{
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Video Container / General Styles */
.mejs-container
{
	position: relative;
	background: #000000;
}

.mejs-inner
{
	position: relative;
	width: inherit;
	height: inherit;
}

.me-plugin
{
	position: absolute;
}

.mejs-container-fullscreen .mejs-mediaelement, .mejs-container-fullscreen video, .mejs-embed, .mejs-embed body, .mejs-mediaelement
{
	width: 100%;
	height: 100%;
}

.mejs-embed, .mejs-embed body
{
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.mejs-container-fullscreen
{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1000;
}

.mejs-poster img
{
	display: block;
}

.mejs-background, .mejs-mediaelement, .mejs-poster, .mejs-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
}

.mejs-overlay-play
{
	cursor: pointer;
}

.mejs-inner .mejs-overlay-button
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 81px;
	height: 81px;
	margin: -25px 0 0 -25px;
	background: url(../images/pause.png) no-repeat;
}

/* Controls Container */
.mejs-container .mejs-controls
{
	position: absolute;
	width: 100% !important;
	height: 34px;
	left: 0;
	bottom: 0;
	background: rgb(0,0,0); /* IE8- */
	background: rgba(0,0,0, .7);
}

/* Controls Buttons */
.mejs-controls .mejs-button button
{
	display: block;
	cursor: pointer;
	width: 16px;
	height: 16px;
	background: transparent url(../images/controls.png);
}

/* Play & Pause Button */
.mejs-controls div.mejs-playpause-button
{
	position: absolute;
	top: 12px;
	left: 15px;
}

.mejs-controls .mejs-play button, .mejs-controls .mejs-pause button
{
	width: 12px;
	height: 12px;
	background-position: 0 0;
}

.mejs-controls .mejs-pause button
{
	background-position: 0 -12px;
}

/* Mute & Unmute */
.mejs-controls div.mejs-volume-button
{
	position: absolute;
	top: 12px;
	left: 45px;
}

.mejs-controls .mejs-mute button, .mejs-controls .mejs-unmute button
{
	width: 14px;
	height: 12px;
	background-position: -12px 0;
}

.mejs-controls .mejs-unmute button
{
	background-position: -12px -12px;
}

/* Full-Screen Button */
.mejs-controls div.mejs-fullscreen-button
{
	position: absolute;
	top: 7px;
	right: 7px;
}

.mejs-controls .mejs-fullscreen-button button, .mejs-controls .mejs-unfullscreen button
{
	width: 27px;
	height: 22px;
	background-position: -26px 0;
}

.mejs-controls .mejs-unfullscreen button
{
	background-position: -26px -22px;
}

/* Volume Slider */
.mejs-controls div.mejs-horizontal-volume-slider
{
	position: absolute;
	cursor: pointer;
	top: 15px;
	left: 65px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total
{
	width: 60px;
	background: #d6d6d6;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current
{
	position: absolute;
	width: 0;
	top: 0;
	left: 0;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current
{
	height: 4px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

/* Progress Bar */
.mejs-controls div.mejs-time-rail
{
	position: absolute;
	width: 100%;
	left: 0;
	top: -10px;
}

.mejs-controls .mejs-time-rail span
{
	position: absolute;
	display: block;
	cursor: pointer;
	width: 100%;
	height: 10px;
	top: 0;
	left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-total
{
	background: rgb(152,152,152); /* IE8- */
	background: rgba(152,152,152, .5);
}

.mejs-controls .mejs-time-rail .mejs-time-loaded
{
	background: rgb(0,0,0); /* IE8- */
	background: rgba(0,0,0, .3);
}

.mejs-controls .mejs-time-rail .mejs-time-current
{
	width: 0;
}

/* Progress Bar Handle */
.mejs-controls .mejs-time-rail .mejs-time-handle
{
	position: absolute;
	cursor: pointer;
	width: 16px;
	height: 18px;
	top: -3px;
	background: url(../images/handle.png);
}

/* Progress Bar Time Tooltip */
.mejs-controls .mejs-time-rail .mejs-time-float
{
	position: absolute;
	display: none;
	width: 33px;
	height: 23px;
	top: -26px;
	margin-left: -17px;
	background: url(../images/tooltip.png);
}

.mejs-controls .mejs-time-rail .mejs-time-float-current
{
	position: absolute;
	display: block;
	left: 0;
	top: 4px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner
{
	display: none;
}

/* Green Gradient (for progress and volume bar) */
.mejs-controls .mejs-time-rail .mejs-time-current, .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current
{
	background: #82d344;
	background: -webkit-linear-gradient(top, #82d344 0%, #51af34 100%);
	background: -moz-linear-gradient(top, #82d344 0%, #51af34 100%);
	background: -o-linear-gradient(top, #82d344 0%, #51af34 100%);
	background: -ms-linear-gradient(top, #82d344 0%, #51af34 100%);
	background: linear-gradient(top, #82d344 0%, #51af34 100%);
}


/*ËÑË÷µ¯³ö²ã*/
.search_mask
{
	background: url(../images/search_mask.png);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
}
.search_mask .s_box
{
	width: 350px;
	height: 136px;
	padding: 25px;
	top: 50%;
	left: 50%;
	margin-left: -175px;
	position: absolute;
	margin-top: -68px;
	background: #fff;
}
.search_mask .s_box .text1
{
	text-align: center;
	line-height: 24px;
	color: #666;
	font-size: 16px;
}
.search_mask .s_box .sure
{
	width: 140px;
	height: 36px;
	display: block;
	margin: 20px auto 0;
	background: #00a0e9;
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 36px;
	letter-spacing: 5px;
}
/****/

.honor_tu div a
{
	display: block;
	position: relative;
}

.honor_tu div img
{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	display: block;
	vertical-align: middle;
	margin: auto;
}

.honor_tu div a i
{
	display: block;
	padding-bottom: 67.08860759493672%;
}


body
{
	min-width: 320px;
	overflow-x: hidden;
}

.contact_map
{
	width: 100%;
}
.contact_map #map
{
	width: 100%;
	height: 480px;
}
@media (max-width: 640px)
{
	.contact_map #map
	{
		height: 200px;
	}
}

.header_right .er_i
{
	position: absolute;
	top: 50px;
	right: -60px;
	z-index: 999;
	display: none;
}

.header_right .er_i img {
	max-width: 150px;
}


/**/
.tu_zhan a .ke_tu
{
	position: relative;
}
.tu_zhan a .ke_tu i
{
	display: block;
	padding-bottom: 68.88888888888889%;
}
.tu_zhan .slick-next, .tu_zhan .slick-prev
{
	width: 18px;
	height: 18px;
	transform: rotate(0);
	border: none;
	top: 0px;
	margin-top: -50px;
}
.tu_zhan .slick-prev
{
	right: 30px;
	left: auto;
	background: url(../images/left_hh1.png) no-repeat;
}
.tu_zhan .slick-prev:hover
{
	background: url(../images/left_hh2.jpg) no-repeat;
}
.tu_zhan .slick-next
{
	right: 0px;
	background: url(../images/right_hh1.jpg) no-repeat;
}
.tu_zhan .slick-next:hover
{
	background: url(../images/right_hh2.jpg) no-repeat;
}



/*µ×²¿¸¡¶¯*/
.mobile-footer-menu {
    display: none;
    width: 100%;
    background: #ca8527;
    padding: 5px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    list-style: none;
    font-size: 12px;
}
@media (max-width: 768px) {
  .message .form_box {
    margin-bottom: 30px;
  }
  footer{margin-bottom:54px;}
  .mobile-footer-menu {
    display: block;
    width: 100%;
    background: #1c62b0;
    padding: 5px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    list-style: none;
    font-size: 12px;
  }
  .mobile-footer-menu li {
    width: 25%;
    float: left;
    position: relative;
  }
  .mobile-footer-menu li:after {
    content: "";
    position: absolute;
    height: 42px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    right: 0;
    top: 2px;
  }
  .mobile-footer-menu li span {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .mobile-footer-menu li em {
    font-style: normal;
    text-align: center;
    display: block;
    color: #fff;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
  }
  .mobile-footer-menu li:last-child:after {
    display: none;
  }
   .banner .slick-dots{
    bottom:3px;
  }

}