@import url('jquery.fancybox.min.css');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans",sans-serif;
  text-decoration: none;
  list-style: none;
}

body{
  background-color: #30336b;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pricing-table{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: min(1600px, 100%);
  margin: auto;
}

.pricing-card{
  flex: 1;
  max-width: 360px;
  background-color: #fff;
  margin: 20px 10px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  color: #2d2d2d;
  transition: .3s linear;
}

.pricing-card-header{
  background-color: #0fbcf9;
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  border-radius: 0 0 20px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .4s linear;
}

.pricing-card:hover .pricing-card-header{
  box-shadow: 0 0 0 26em #0fbcf9;
}

.price{
  font-size: 70px;
  color: #0fbcf9;
  margin: 40px 0;
  transition: .2s linear;
}

.price sup, .price span{
  font-size: 22px;
  font-weight: 700;
}

.pricing-card:hover ,.pricing-card:hover .price{
  color: #fff;
}

.pricing-card li{
  font-size: 16px;
  padding: 10px 0;
  text-transform: uppercase;
}

.order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #0fbcf9;
  color: #0fbcf9;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .3s linear;
}

.order-btn:hover{
  background-color: #0fbcf9;
  color: #fff;
}

@media screen and (max-width:1100px){
  .pricing-card{
    flex: 50%;
  }
}

/* 导航 */
.nav{
	position: fixed;
	/* position: absolute; */
	top: 0;
	right: 0;
	width: 100%;
	height: 64px;
	background: rgba(0, 0, 0, 0.5);
	z-index: 13;
}
.nav .nav-logo img{
	height: 64px;
}
.nav .nav-right ul li{
	float: left;
	padding: 0 10px;
	/* list-style-type: none; */
}
.nav .nav-right ul li a{
	display: inline-block;
	text-decoration: none;
	padding: 20px 20px 0 20px;
	height: 65px;
	color: #FFFFFF;
}
.nav .nav-right ul li a:hover{
	border-bottom: 1px solid rgb(25,182,255);
	border-width: 5px;
	background-color: rgb(25, 125, 255);
	transition: all 0.5s ease;
	/* 加0.5秒动画 */
	border-radius: 5px;
	/* 矩形边角圆润化 */
	color: rgb(255, 255, 255);
}
.home-gallery{
	position: relative;
	z-index: 1;
}
/* 导航结束 */

.inner-c{
	width: 1200px;
	margin: 0 auto;
}
.left{
	float: left;
}
.right{
	float: right;
}

ol,ul{
	list-style: none;
}