@charset "utf-8";
/* CSS Document */

html,body {
	color: #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px auto;
	background-color: #222;
	/*
	background-image: url(./images/bg.png);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: center;
	*/
}
/*
body.closed {
	color: #111;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px auto;
	background-color: #000;
}
*/
header {
    height: 80px;
    background-color: #5c7479;
    padding: 10px 0;
	background-image: url(./images/menu_bg.png);
	background-repeat: repeat-x;
}
.content{
	margin: 10px auto;
	top: 80px;
	position: relative;
	max-width: 1250px;
}
.container {
   margin: 140px auto;
  /* width: 640px; */
}
table tr td{
	border-bottom: solid 1px #ccc;
}
table tr td a{
	color: #ccc;
	text-decoration: none;
}
table tr td a:hover{
	color: #eb6f4a;
}
.center {
	display: grid;
	justify-content: center;
}
.season{
  width: 100%;
  position: relative;
  margin: -10px auto;
}
.season img{
	left: 50%;
	position: fixed;
	margin-left: -500px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
nav{
	background-color: #5c7479;
	/* padding: 10px 0; */
	background-image: url(./images/menu_bg.png);
	background-repeat: repeat-x;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 80px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	z-index: 99;
}
nav .navbar{
  height: 100%;
  /* max-width: 1250px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo{
  font-size: 30px;
  color: #DAE1E7;
  text-decoration: none;
  font-weight: 600;
}
.navbar .logo a{
  font-size: 30px;
  color: #DAE1E7;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 89px;
}
nav .navbar .links{
  display: flex;
  margin-top: -8px;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 20px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #DAE1E7;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li a:hover, nav .navbar .links li a:focus {
    color: #eb6f4a;
}
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  color: #DAE1E7;
  transition: all 0.3s ease;
}
/*
nav .navbar .links li .arrow:hover, nav .navbar .links li .arrow:focus {
    color: #eb6f4a;
}
*/
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 88px;
  left: 10px;
  line-height: 40px;
  background: #eb6f4a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #DAE1E7;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu a:hover, .navbar .links li .sub-menu a:focus{
  color: #222;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #eb6f4a;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #eb6f4a;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #eb6f4a;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .menu-icon{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:840px){
  nav{
    /* position: relative; */
  }
  .navbar .menu-icon{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #eb6f4a;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #222;
  }
    .sidebar-logo  i,
    .navbar .menu-icon{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li a{
  color: #222;
}
nav .navbar .links li a:hover, nav .navbar .links li a:focus {
    color: #222;
}
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
}
.navbar .links li .sub-menu a{
  color: #222;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
	  nav .navbar .nav-links{
	  max-width: 100%;
	} 
}
h1 {
	color: #eb6f4a;
	text-align: center;
	line-height: 30px;
}

h2 {
	color: #ccc;
	text-align: center;
	line-height: 30px;
}
h3 {
	color: #666;
	text-align: center;
    font-size: 25px;
}

h4 {
	color: #6699FF;
	text-align: center;
    font-size: 18px;
    line-height: 0;
}
.login input {
  font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;
  font-size: 14px;
}
table, th, td {
  padding: 5px;
}
.grid {
  display: grid;
  grid-template-columns: auto;
  font-size: large;
  font-weight: bold;
  color: #000;
}
.grid a{
  font-size: large;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.grid input[type=text], .grid input[type=password], .grid input[type=select]{
  font-size: large;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  width: 300px;
  margin: 5px;
}
.grid select{
  font-size: large;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  width: 300px;
  margin: 5px;
}
.grid textarea{
  font-size: large;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  width: 300px;
  margin: 5px;
}
.grid > div {
  text-align: left;
  padding: 5px;
  background: #ddd;
}
.grid-name{
	font-weight: normal;
	font-size: small;
}
/*
.grid-item:nth-child(10n + 1),
.grid-item:nth-child(10n + 2),
.grid-item:nth-child(10n + 5),
.grid-item:nth-child(10n + 6),
.grid-item:nth-child(10n + 9),
.grid-item:nth-child(10n + 10)
 {background: #eee}
*/
.grid > div:nth-child(2n + 2)
 {background: #eee}
 
.link a, .link a:visited{
  color: #000;
}
.login {
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px;
  width: 330px;
  background: white;
  border-radius: 3px;
  /*
  -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
  */
}
.login:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.login h1 {
  margin: -20px -20px 21px;
  line-height: 40px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px eee;
  background: #eb6f4a;
  border-bottom: 1px solid #cfcfcf;
  border-radius: 3px 3px 0 0;
  background-image: -webkit-linear-gradient(top, whiteffd, #eef2f5);
  background-image: -moz-linear-gradient(top, whiteffd, #eef2f5);
  background-image: -o-linear-gradient(top, whiteffd, #eef2f5);
  background-image: linear-gradient(to bottom, whiteffd, #eef2f5);
  -webkit-box-shadow: 0 1px whitesmoke;
  box-shadow: 0 1px whitesmoke;
}
.login p {
	margin: 0 auto 20px;
	color: #000;
}
.login p:first-child {
  margin-top: 0;
}
/*
.login input[type=text], .login input[type=password] {
  width: 278px;
}
*/
.login p.remember_me {
  float: left;
  line-height: 31px;
}
.login p.remember_me label {
  font-size: 12px;
  color: #777;
  cursor: pointer;
}
.login p.remember_me input {
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  vertical-align: middle;
}
.login p.submit {
  text-align: right;
}

.login-help {
  margin: 20px 0;
  font-size: 11px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px #000;
}
.login-help a {
  color: #fff;
  text-decoration: none;
}
.login-help a:hover {
  text-decoration: underline;
}

:-moz-placeholder {
  color: #c9c9c9 !important;
  font-size: 13px;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

.login input {
  font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;
  font-size: 14px;
}

.login input[type=password], .login input[type=text] {
  margin: 5px;
  padding: 0 10px;
  height: 34px;
  color: #404040;
  background: white;
  border: 1px solid;
  border-color: #c4c4c4 #d1d1d1 #d4d4d4;
  border-radius: 2px;
  outline: 5px solid #eff4f7;
  -moz-outline-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  width: 280px;
}
.login input[type=text]:focus, input[type=password]:focus {
  border-color: #7dc9e2;
  outline-color: #dceefc;
  outline-offset: 0;
}

.login input[type=submit] {
  padding: 0 18px;
  height: 29px;
  font-size: 12px;
  font-weight: bold;
  color: #527881;
  text-shadow: 0 1px #e3f1f1;
  background: #cde5ef;
  border: 1px solid;
  border-color: #b4ccce #b3c0c8 #9eb9c2;
  border-radius: 16px;
  outline: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-image: -webkit-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -moz-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -o-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: linear-gradient(to bottom, #edf5f8, #cde5ef);
  -webkit-box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.login input[type=submit]:active {
  background: #cde5ef;
  border-color: #9eb9c2 #b3c0c8 #b4ccce;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.login label{
  color: #000;
}
.lt-ie9 input[type=text], .lt-ie9 input[type=password] {
  line-height: 34px;
}
.price{
	float: right;
	margin-right: 6px;
}
.daySelect {
	display: flex;
	justify-content: center;
	font-size: 16px;
	margin-right: 20px;
}
.daySelect a{
	border-radius: 15px;
	color: #fff;
	border: solid 1px #DAE1E7;
	text-decoration: none;
	display: block;
	text-align: center;
	background-color: #222;
	margin-left: 20px;
	padding: 10px;
	width: 100px;
}
.daySelect a.active {
	color: #eb6f4a;
	border: solid 1px #EB6F4A;
	background-color: #333;
}
.daySelect a:hover{
	color: #eb6f4a;
	border: solid 1px #eb6f4a;
}
.daySelect a:focused{
	color: #fff;
	text-decoration: none;
}
@media only screen and (max-width: 400px) {
	.eldate{
		font-weight: bold;
	}
	.elprice{
		float: right;
	}
	.list {
		width: 95%;
		position: relative;
		margin: 0 auto;
	}
	.list p{
		width: 50%;
	}
	.pLeft {
		width: 50%;
		text-align: right;
	}
	.list2 {
		display: none;
		visibility: hidden;
	}
	.graph {
		display: none;
		visibility: hidden;
	}
	.graph2 {
		display: flex;
		justify-content: center;
		visibility: visible;
		margin: 0 10px 0;
	}
	.over {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		display: flex; 
		justify-content: space-between;
	}
	.middel {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		display: flex; 
		justify-content: space-between;
	}
	.under {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		display: flex; 
		justify-content: space-between;
	}
	.over2 {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		text-align: left;
		padding: 0 10px;
	}
	.over2now {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		text-align: left;
	}
	.middel2 {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		text-align: left;
	}
	.middel2now {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;;
		margin: 0 auto;
		padding: 0 10px;
		text-align: left;
	}
	.under2 {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		text-align: left;
	}
	.under2now {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 95%;
		margin: 0 auto;
		padding: 0 10px;
		text-align: left;
	}
	.form {
		width: 200px;
		position: relative;
		margin: 0 auto;
		top: 100px;
	}
}
@media only screen and (min-width: 401px) {
	.list {
		display: flex;
		justify-content: center;
		color: #444;
	}
	.list2 {
		display: flex;
		justify-content: center;
		color: #444;
	}
	.graph2 {
		display: none;
		visibility: hidden;
	}
	.graph {
		display: flex;
		justify-content: center;
		visibility: visible;
	}
	.graph img{
	max-width: 90%;
	max-height: 90%
	}
	.over {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 195px;
		display: inline-block;
		padding-left: 5px;
	}
	.middel {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 195px;
		display: inline-block;
		padding-left: 5px;
	}
	.under {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 195px;
		display: inline-block;
		padding-left: 5px;
		
	}
	.over2 {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		top: 10px;
		text-align: center;
	}
	.over2now {
		background-color: #e00 ;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		text-align: center;
	}
	.middel2 {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		top: 10px;
		text-align: center;
	}
	.middel2now {
		background-color: #fc0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		text-align: center;
	}
	.under2 {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		top: 10px;
		text-align: center;
	}
	.under2now {
		background-color: #0a0;
		color: #000;
		line-height: 20px;
		border-bottom: solid 1px;
		border-right: solid 1px;
		width: 39px;
		display: inline-grid;
		position: relative;
		left: 0px;
		text-align: center;
	}
	.form {
		width: 200px;
		position: relative;
		margin: 0 auto;
	}
}
.form select {
  width: 195px;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f1f1f1;
  font-weight: bold;
}
footer {
	/*position: relative;
	height: 300px;
	background-color: #333333;*/
	width: 100%;
	position: fixed;
	bottom: 0;
}

p.copyright {
	position: absolute;
	width: 100%;
	color: rgba(200,200,200,.7);
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	line-height: 40px;
	font-size: 0.9em;
	text-align: center;
	bottom:0;
}
