.flex-h,
.flex-v,
.flex {
  /* display: box; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  /* 横向 */
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  /* 默认垂直居中 */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-v {
  /* 横向 */
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 默认垂直居中 */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-1,
.flex-grow {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-2 {
  -prefix-box-flex: 2;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.flex-3 {
  -prefix-box-flex: 3;
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -moz-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.flex-4 {
  -prefix-box-flex: 4;
  -webkit-box-flex: 4;
  -webkit-flex: 4;
  -moz-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}

.flex-5 {
  -prefix-box-flex: 5;
  -webkit-box-flex: 5;
  -webkit-flex: 5;
  -moz-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}

.flex-w100 {
  flex-shrink: 0;
  width: 100% !important;
}

.flex-h100 {
  flex-shrink: 0;
  height: 100% !important;
}

.flex-wh100 {
  flex-shrink: 0;
  width: 100% !important;
  height: 100% !important;
}

.row-start,
.flex-start {
  -webkit-box-align: start !important;
  -webkit-align-items: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}

.row-end,
.flex-end {
  -webkit-box-align: end !important;
  -webkit-align-items: end !important;
  -ms-flex-align: end !important;
  align-items: end !important;
}

.row-center,
.flex-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.row-justify,
.flex-justify {
  justify-content: space-between !important;
}
.btn {
    padding: 0 30px;
  font-size: 16px;
  text-align: center;
  height: 40px;
  line-height: 42px;
  color: #fff;
  display: inline-block;
  background-color: #ff552e;
  cursor: pointer;
}
.link{
    cursor: pointer;
}
.link:hover{
    color:#ff552e !important;
    text-decoration: underline;
}
.text-center{
    text-align: center;
}
* {
  margin: 0;
  padding: 0;
}
.border-bottom{
  border-bottom: 1px dashed #ccc;
}
body {
  min-height: 100vh;
  background-color: #f8f8f8;
}
.wrap {
  margin: 0 auto;
  width: 1190px;
}
a{
  text-decoration: none;
}

.wrap .head {
  background-color: #fff;
  padding: 5px 15px 5px 30px;
  margin-bottom: 8px;
}
.wrap .head .logo img {
  height: 42px;
}
.wrap .head .form {
  margin-left: 14vw;
}
.wrap .head .form .inputWrap {
  display: inline-block;
  width: 60%;
  height: 40px;
  padding-left: 34px;
  border: 2px solid #ff552e;
  border-right: 0;
  background-image: url(../img/minico.png);
  background-position: 10px -105px;
  background-color: #fff;
  box-sizing: border-box;
}
.wrap .head .form .inputWrap input {
  width: 100%;
  font-size: 14px;
  border: none;
  color: #ccc;
  height: 36px;
  box-sizing: border-box;
  line-height: 38px;
  outline: none;
}
.wrap .head .form .inputWrap input:focus {
  border: none;
}
.wrap .head .form .fb {
  margin-left: 20px;
}
.wrap .head .form .sub .link {
  margin-right: 10px;
  color: #aaa;
  font-size: 12px;
}


.footer{
  width: 100%;
  margin-top: 15px;
  background-color: #fff;
  font-size: 16px;
  padding-bottom: 15px;
}
.footer .link{
  font-size: 12px;
  color: #aaa;
  line-height: 30px;
}
.footer .footer_wrap{
  width: 1190px;
  margin: 0 auto;
  padding: 15px 0;
}
.footer .footer_wrap .logo img{
  width: 126px;
}
.footer .footer_wrap .more .tit{
  margin-bottom: 20px;
}
.footer .footer_wrap .more{
  align-items: start;
}
.footer .beian{
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}
.footer a{
  color: #aaa;
}