@charset "utf-8";

* {
	margin: 0;
	padding: 0;
  box-sizing: border-box;
}

ul, li {
	list-style: none
}

a {
  color: #337ab7;
  text-decoration: none;
}

html, body {
  height: 100%;
  width: 100%;
}

.page-wrap {
	width: 100%;
	height: 690px;
	background-color: #3e6bc6;
	background-image: linear-gradient(90deg, #3e6bc6 0%, #3393da 100%);
	background-image: -webkit-linear-gradient(90deg, #3e6bc6 0%, #3393da 100%);
	background-image: -moz-linear-gradient(90deg, #3e6bc6 0%, #3393da 100%);
	background-image: -ms-linear-gradient(90deg, #3e6bc6 0%, #3393da 100%);
	background-image: -o-linear-gradient(90deg, #3e6bc6 0%, #3393da 100%);
}

.container {
  width: 1170px;
  margin: 0 auto;
  padding-top: 50px;
  font-size: 14px;
  color: #333;
}

.page-title .title-text {
  color:#fff;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
  
}

.page-title .title-text span {
  position: relative;
}

.page-title .title-text span::before {
  display: inline-block;
  content: '';
  position: absolute;
  left: -110px;
  top: 15px;
  height: 0;
  border-top: 1px solid #fff;
  width: 100px;
}

.page-title .title-text span::after {
  display: inline-block;
  content: '';
  position: absolute;
  right: -110px;
  top: 15px;
  height: 0;
  border-top: 1px solid #fff;
  width: 100px;
}

.flex-box {
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
}

.flex-box .flex-box-item {
  width: 288px;
  height: 430px;
  padding: 4px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.flex-box .flex-box-item:hover {
  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
    /* transition: all 0.5s; */
}

.flex-box-item-box .flex-box-item-title {
  margin: 40px 0 15px 0;
  font-size: 22px;
  font-weight: bold;
}

.flex-box-item-box .yuan {
  width: 130px;
  height: 130px;
  padding: 30px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 8px 8px 10px #888888;
}

.flex-box-item-box .yuan img {
  width: 100%;
  height: 100%;
}

.flex-box-item-box .flex-box-item-title-two {
  margin-top: 30px;
  font-size: 19px;
  font-weight: normal;
  color: #333;
}

.login-text {
  font-size: 16px;
}