@charset "utf-8";

body {font-family:'LatoWebLight', Arial,Helvetica, sans-serif;font-size:14px;background: #fff;color:#000;line-height: 22px; overflow-x: hidden;  }
/*
@media(max-width: 475px) {
#phone {
    position:fixed;
    left:0;
    top:0;
    z-index:99999;
    width:100%;
    height:100%;
    background: #fff url('../images/phone.gif') no-repeat center center;
    opacity: 0.8;
    filter: alpha(opacity=0.8);
}
}
*/

.ward { max-width: 1200px; margin:0 auto;  }

#home-height { height: 100%;width: 100%; display: table; }

.menu { display: table-cell; vertical-align: middle; }

header { background-color:RGBA(255, 255, 255, 1); width:100%;  padding: 10px; }

.title-box { color: #000; font-size: 16px;  font-weight: bold; letter-spacing:5px;overflow: hidden}

a{text-decoration: none;color:#000;}
a:hover,a:focus {text-decoration: none;}
a,input,button {outline: none!important;}

.menu-box { max-width: 600px; margin: 0 auto;  padding: 0 30px; margin-top: -130px; position:relative; }
@media(min-width: 475px) {
.menu-box { max-width: 600px; margin: 0 auto;  padding: 0 30px; margin-top: -120px; position:relative; }
}
.menu-box h3 { font-size: 24px; padding:0 15px;  }

.home-button { position: fixed; z-index: 999999; bottom: 10%; right: 5%; }
.home-button a { text-shadow: 2px 1px 0px #fff; font-size: 20px; color: #000; font-weight: bolder; }

footer { position: fixed; bottom: 0; width: 100%; text-align: center; padding: 10px 15px;  text-shadow: 2px 1px 0px #fff;  }



select.m-wrap {
    font-size: 18px;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 8px;
    outline: none;
    height: auto;
    width: 100%; 
    padding: 10px 15px 6px;
    background: url("../images/down.png") no-repeat right center transparent;
    appearance:none;  
    -moz-appearance:none;  
    -webkit-appearance:none;
}

option {  font-size: 18px; }

.about video { width: 100%;  }

.title-box p{margin:0px;padding:0px }
.text-empty{text-align: center;font-size: 18px;margin-top:20%;}
.text-empty2{text-align: center;font-size: 18px;}
.about-xs {height: 100%;width: 100%; display: table; }
.about-xs .video-xs { display: table-cell; vertical-align: middle; }
.about-xs .video-xs video { margin-top:-120px; }

.text-danger{font-size: 16px;}
.about-xs { position:relative; z-index:999;}

.sitck-box .sitck-box-left {  float: left; width: 100%;  }
.sitck-box .sitck-box-right {  float: left; width: 100%;  }

.sitck-box .sitck-box-right p { font-size: 18px; line-height: 30px; }


.sitck-inner-box video { width: 100%; height:100%;
    object-fit:fill; }
#videoPalse{
    position: absolute;
    z-index: 100;
    width:50px;
    top:25%;
    left:42%;
}

.sitck-inner-box .banner img { width:100%; }




.topnav_box {  height: auto; padding-right: 15px; }


.topnav_box h4 { font-weight: bold; margin-bottom: 30px; }

.contact {display: table-cell; vertical-align: middle; }
.contact-box { max-width: 400px; margin: 0 auto; padding: 0 30px 0 15px; margin-top: -120px; }
.contact-box input { width: 100%; border:1px solid #000;  border-radius: 8px;height: 34px; margin-bottom: 10px;}
.contact-box p { font-size: 16px; margin-bottom: 15px; }
@media(min-width: 475px) {
.contact-box p { font-size: 18px; margin-bottom: 15px; }
}
.contact-box h3 { font-weight: bold; margin-top: 40px; }

.video-box{
    position: relative;
}
.video-box video{
    display: inline-block;
  vertical-align: baseline;
}
.video-box .play{
    position: absolute;
    top: 35%;
    bottom: 0;
    width: 100%;
    z-index: 999;
    cursor:pointer
}

.contact-box .input { width: 70%; float:left;  }
.contact-box .button { width: 30%; float:left;  padding-left: 15px; margin-top: 5px;  }
.contact-box .button a { padding:10px 20px; background-color: #000; color: #fff; }

.select-menu-box { border:1px solid #000; border-radius:8px;}

.select-menu { color:#000; padding: 10px 15px;  background: url("../images/down.png") no-repeat right center transparent;appearance:none;  -moz-appearance:none;  -webkit-appearance:none; font-size:16px; cursor: pointer; }

.select-box ul { margin-bottom: 0; }
.select-box ul li:hover {background-color: #000;}
.select-box ul li { padding: 5px 15px; }
.select-box ul li a { padding: 5px 0; font-size: 14px; color: #000; }
@media(min-width: 475px) {
    .select-box ul li { padding: 10px 15px; }
.select-box ul li a { padding: 10px 0; font-size: 16px; color: #000; }
}


.select_default{
width:80px;
height:32px;
line-height:32px;
padding:0 10px;
border:solid 1px #ccc;
}

/*这边就是三角形的css代码，使用伪类和定位实现右三角*/
.select_default:after{
content:"";
border-left:5px solid transparent;
border-right:5px solid transparent;
border-bottom:5px solid #999;
-webkit-transform-origin:5px 2.5px;
  -moz-transform-origin:5px 2.5px;
   -ms-transform-origin:5px 2.5px;
-o-transform-origin:5px 2.5px;
   transform-origin:5px 2.5px;
-webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
-ms-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
position:absolute;
right:5px;
top:14px;
}
.select_default.rotate:after{
-webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
   -ms-transform:rotate(180deg);
-o-transform:rotate(180deg);
   transform:rotate(180deg);
}
.select_item{
margin:0;
padding:0;
display:none;
list-style:none;
}
.select_item li{
width:80px;
height:32px;
line-height:32px;
padding:0 10px;
border:solid 1px #ccc;
border-top:none;
}
.select_item li.hover{
background:#666;
color:#fff;
}
