* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

/*首页样式*/
.indexAll {
  background: url(images/bg.png) no-repeat center top;
}

.indexMain {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.indexTitle {
  text-align: center;
  color: #ffd900;
  padding: 40px 0;
  text-shadow: 1px 1px 3px #4a2009;
}

.indexTitle h2 {
  font-size: 50px;
  padding-bottom: 10px;
}

.indexTitle h3 {
  font-size: 40px;
  padding-bottom: 10px;
}

.indexList {
  background-color: rgba(69, 69, 69, 0.5);
  padding: 40px 120px;
  border-radius: 5px;
  position: relative;
}

.circleBig {
  width: 16px;
  height: 16px;
  background: #f7e973;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  top: 32px;
  left: 112px;
}

.circleSmall {
  width: 12px;
  height: 12px;
  background: #f7e973;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  position: absolute;
  top: 55px;
  left: 142px;
}

.indexUl {
  list-style: none;
  /*height: 250px;
  overflow: auto;*/
  border-left: #f7e973 solid 1px;
  line-height: 60px;
}

.indexUl li {
  position: relative;
}

.indexUl a {
  text-decoration: none;
  color: #f7e973;
}

.indexUl a:hover {
  text-decoration: underline;
  color: #f7e973;
}

.indexUl h3 {
  font-weight: normal;
  font-size: 24px;
  border-bottom: #f7e973 solid 1px;
  padding-left: 20px;
  width: 150px;
}

.indexUl span {
  font-size: 20px;
  padding-left: 80px;
}

/*详情页样式*/
body {
  background-color: #fffff5;
  font-size: 14px;
  color: #333;
  font-family: "Microsoft YaHei";
  min-height: 100%;
  /*display: flex;*/
  flex-direction: column;
}

.page {
  width: 1000px;
  margin: 0 auto;
  flex: 1;
}

.logo {
  box-shadow: 2px 2px 5px #dbdbdb;
  border-bottom: 1px solid #ddd;
  height: 82px;
  line-height: 82px;
  background: url(images/top.jpg) no-repeat center;
  background-size: cover;
  flex: 0;
}

.head {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.headTitle {
  float: left;
  color: #ffd900;
  font-size: 26px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #4a2009;
}

.headBack {
  float: right;
}

.headBack a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.headBack a:hover {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}

.mainCon {
  overflow: hidden;
}

.mainTop {
  padding: 35px 20px 20px;
  overflow: hidden;
}

.mainTitle {
  float: left;
  width: 72%;
  border-right: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
}

.mainTitle span {
  font-size: 18px;
  height: 24px;
  line-height: 24px;
  margin-right: 20px;
}

.mainBtn {
  float: right;
}

.mainBtn a {
  border: none;
  background-image: linear-gradient(to right, #e69400, #d71f03);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e69400', endColorstr='#d71f03', GradientType=0);
  background-image: -webkit-linear-gradient(left, #e69400, #d71f03);
  background-image: -moz- oldlinear-gradient(left, #e69400, #d71f03);
  border-radius: 5px;
  padding: 10px 0;
  cursor: pointer;
  text-align: center;
  width: 100px;
  margin-bottom: 15px;
  margin-left: 15px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

.mainVideo {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 7px #adadad;
  padding: 20px;
  text-align: center;
}

.notice {
  padding-left: 20px;
  line-height: 40px;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

footer {
  padding: 10px;
  background-image: linear-gradient(to right, #d71f03, #e69400);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d71f03', endColorstr='#e69400', GradientType=0);
  background-image: -webkit-linear-gradient(left, #d71f03, #e69400);
  background-image: -moz- oldlinear-gradient(left, #d71f03, #e69400);
  height: 50px;
  margin-top: 30px;
}