@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #888;
}
a:hover {
  color: #2675de;
}
.clearfix {
  zoom: 1;
}
.clearfix:after,
.clearfix:before {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}
.align-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.space-between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.footer {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 20px 0;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.header {
  height: 64px;
  line-height: 64px;
  box-shadow: 0 1px 4px #ddd;
}
.header .container {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.header .container .logo {
  font-size: 26px;
  font-weight: bold;
  margin-right: 30px;
  color: #555;
}
.header .container .menus {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
}
.header .container .menus .menu-item {
  margin-right: 20px;
  font-size: 14px;
  display: block;
  cursor: pointer;
}
.header .container .menus .menu-item.user {
  display: none;
}
.header .container .menus .menu-item.user.small {
  margin: 0 10px 0 -10px;
  display: block;
  font-size: 10px;
}
.header .container .menus .menu-item:hover,
.header .container .menus .menu-item.active {
  color: #2675de;
  font-weight: bold;
}
.banner {
  height: 400px;
  background: url(../images/pic.jpg) no-repeat left top;
  background-size: cover;
}
.banner.service {
  background-image: url(../images/user.webp);
}
.banner.about {
  background-image: url(../images/about.webp);
}
.banner .container {
  padding-top: 100px;
  color: white;
}
.banner .container h1 {
  font-size: 36px;
  margin-bottom: 40px;
}
.banner .container h2 {
  font-size: 18px;
  line-height: 1.8;
}
.content {
  padding: 30px 0;
}
.content .container .content-item {
  margin-bottom: 30px;
}
.content .container .content-item h3 {
  margin-bottom: 20px;
  font-size: 18px;
}
.content .container .content-item .content-item-all {
  box-shadow: 0 0 8px #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.content .container .content-item .content-item-all img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 0 4px #ddd;
}
.content .container .content-item-content {
  line-height: 1.6;
  font-size: 14px;
  color: #666;
}
.content .container .content-item-content p {
  margin-top: 1em;
}
.content .container .content-item-content .line_header {
  font-weight: bold;
  color: #333;
}
.content .container .content-item-about {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.content .container .content-item-about .pic {
  width: 500px;
  overflow: hidden;
  margin-right: 40px;
}
.content .container .content-item-about .pic img {
  display: block;
  width: 100%;
}
.content .container .content-item-about .text {
  -webkit-flex: 1;
  flex: 1;
}
.content .container .content-item-about .text h2 {
  font-weight: bold;
  color: #444;
}
.content .container .content-item-about .text p {
  margin-top: 20px;
  color: #888;
}
.content .container .content-item .content-item-main {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.content .container .content-item .content-item-main-sub {
  width: 49%;
  box-shadow: 0 0 8px #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.content .container .content-item .content-item-main-sub-pic {
  width: 100%;
  height: 300px;
}
.content .container .content-item .content-item-main-sub-pic img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 0 4px #ddd;
}
.content .container .content-item .content-item-main-sub-title {
  padding: 20px 16px 10px;
  font-weight: bold;
  font-size: 16px;
}
.content .container .content-item .content-item-main-sub-content {
  padding: 0 16px 10px;
  font-size: 14px;
  color: #888;
}
.content .container .content-item .content-item-main-sub-link {
  padding: 10px 16px;
}
.content .container .content-item .content-item-main-sub-link a {
  font-size: 12px;
  display: block;
  text-align: center;
  width: 100px;
  height: 30px;
  line-height: 30px;
  color: white;
  background-color: #2675de;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.former {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.former-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.former-pannel {
  position: absolute;
  width: 320px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 10px;
  padding: 16px;
}
.former-pannel-register,
.former-pannel-login {
  display: none;
}
.former-pannel-item {
  margin-bottom: 16px;
}
.former-pannel-item.title {
  font-weight: bold;
  font-size: 18px;
  color: #444;
  text-align: center;
}
.former-pannel-item button,
.former-pannel-item input {
  display: block;
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  padding: 0 10px;
  outline: none;
  border-radius: 4px;
}
.former-pannel-item button {
  background-color: #2675de;
  color: white;
  cursor: pointer;
}
.former-pannel-item button.close {
  background-color: #d1d1d1;
}
#message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
#message .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#message .message-pannel {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  width: 320px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#message .message-pannel h3 {
  font-size: 16px;
  text-align: center;
  line-height: 50px;
}
#message .message-pannel .message-content {
  border-top: 1px solid #e2dede;
  text-align: center;
  font-size: 14px;
  padding: 20px;
  margin: 0 16px;
}
/*# sourceMappingURL=index.css.map */