﻿* {
  margin: 0;
  padding: 0;
}

body {
  min-width: 1300px;
}

a {
  text-decoration: none;
}

#main * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#main {
  font-size: 16px;
  font-family: "Microsoft YaHei";
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background-size: 100%;
}

#main input,
#main select,
#main textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

#main i,
#main em {
  font-style: normal;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f1f1f1 inset !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

table {
  width: 100%;
  text-align: center;
  /*文本居中*/
  border-collapse: collapse;
  /*表格的边框合并，如果相邻，则共用一个边框*/ 
  border-spacing: 0;
  /*设置行与单元格边框的间距。当表格边框独立（即border-collapse:separate;）此属性才起作用*/
}

table td {
  word-break: break-all;
  /*允许在字内换行,即单词可分*/
  word-wrap: break-word;
  /*允许长单词或URL地址换行*/
  border-right: 1px solid #939598;
  border-bottom: 1px solid #939598;
}


.dis-f {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dis-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dis-c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn{
  cursor: pointer;
  text-align: center;
}
.tc{
  text-align: center;
}
.pr{
  position: relative;
}
.po{
  position: absolute;
}
.po_center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%,0);
}
.banner{
  width: 100%;
  height: 640px;
  background: url(../img/banner.jpg) no-repeat;
  background-position: center;
}
article{
  min-width: 1300px;
}
article .content{
  width: 1300px;
  margin: 0 auto;
}




/* layout */
#main .layout {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10;
}

#main .layout>div {
  width: 320px;
  height: 354px;
  background-color: #ffffff;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: none;
}

#main .layout .close {
  width: 35px;
  height: 35px;
  position: absolute;
  top: -42px;
  right: 0;
  cursor: pointer;
}

#main .layout .close img {
  width: 100%;
}

#main .layout .item,
#main .layout input,
#main .layout select {
  width: 270px;
  height: 45px;
  background-color: #f2f2f2;
  border-radius: 6px;
  font-size: 14px;
  line-height: 45px;
  color: #999999;
}

#main .layout .item {
  margin-bottom: 8px;
}

#main .layout input,
#main .layout select {
  padding-left: 10px;
}

#main .layout select {
  background: #f1f1f1 url(../img/arrow.png) no-repeat right;
  background-position-y: 50%;
  background-position-x: 245px;
}

#main .layout .item.yzm input {
  width: 150px;
}

#main .layout .item.yzm span {
  width: 120px;
  background-color: #ffffff;
  height: 45px;
  line-height: 45px;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 700;
  color: #ff0000;
  cursor: pointer;
}

#main .layout .btn {
  width: 160px;
  height: 40px;
  line-height: 40px;
  background-color: #ffb000;
  border-radius: 19.5px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px auto 0;
}