@charset "UTF-8";
a:hover {
  color: #666;
}

a:active {
  color: #666;
}

a:visited {
  color: #666;
}

a:link {
  color: #666;
}

.indexForm {
  width: 1240px !important;
  padding: 20px 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  text-align: left;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  /* bottom:0;*/
  top: 88%;
  z-index: 3;
}

.indexForm .theme-text {
  color: #00A0E9;
}

.indexForm > div {
  float: left;
  width: 17.1%;
  margin-right: 20px;
}

.indexForm > div:nth-of-type(3) {
  width: 20%;
}

.indexForm > div:nth-of-type(3) #grade {
  padding-left: 15px;
}

.indexForm > div:nth-of-type(4) {
  margin-right: 40px;
}

.indexForm > div > p {
  margin-bottom: 10px;
  white-space: nowrap;
}

.indexForm .input-wrap {
  padding: 18px 20px;
  padding-right: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
}

.indexForm .input-wrap i {
  font-size: 20px;
  color: #ddd;
  margin-right: 20px;
}

.indexForm .input-wrap i.icon-xuexiaoiconx {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/index/icon1.svg) no-repeat;
  background-size: cover;
}

.indexForm .input-wrap input {
  width: 68%;
  font-size: 14px !important;
  outline: none;
  padding-left: 20px;
  border: none;
  border-left: 1px solid #ddd;
}

.indexForm .input-wrap select {
  width: 68%;
  background: transparent;
  font-size: 14px !important;
  vertical-align: top;
  border: none;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0 15px;
  border-left: 1px solid #ddd;
}

.indexForm .select-wrap {
  position: relative;
}

.indexForm .select-wrap:after {
  content: '';
  height: 0;
  position: absolute;
  top: 25px;
  right: 10%;
  font-size: 0;
  vertical-align: middle;
  border-radius: 4px;
  border-top: 9px solid #00A0E9;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.indexForm .index-btn {
  width: 20%;
  margin-left: 0;
  margin-right: 0;
}

.indexForm .index-btn .theme-text {
  font-weight: bold;
}

.indexForm .index-btn button {
  font-size: 24px;
  width: 100%;
  font-weight: bold;
}

.main {
  margin-top: 90px;
  text-align: center;
  min-width: 1200px;
}

.main .nav-list {
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
}

.main .nav-list div {
  position: relative;
  padding: 0 40px;
}

.main .nav-list div::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  width: 1px;
  height: 40px;
  content: '';
  background: #DEDEDE;
}

.main .nav-list div:last-child::after {
  width: 0;
}

.main .nav-list div h2 {
  font-size: 18px;
  color: #00A0E9;
  margin-bottom: 10px;
}

.main .nav-list div p a {
  margin-right: 15px;
  color: #333;
}

.main .nav-list div p a:hover {
  color: #00A0E9;
}

.main .nav-list div p a:last-child {
  margin-right: 0;
}

.main h1 {
  color: #333;
  font-size: 24px;
  position: relative;
}

.main h1::after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 50px;
  height: 5px;
  background: #00A0E9;
  border-radius: 5px;
  bottom: -15px;
  left: 50%;
  margin-left: -25px;
}

.main .padding-b0 {
  padding-bottom: 0;
}

.main .serviceList {
  margin-top: 60px;
  padding: 0 40px;
}

.main .serviceList::after {
  display: block;
  content: '';
  clear: both;
}

.main .serviceList li {
  float: left;
  width: 200px;
  margin-right: 30px;
  height: 276px;
  padding: 0 8px;
  box-sizing: border-box;
  border-radius: 10px;
  padding-top: 40px;
}

.main .serviceList li:last-child {
  margin-right: 0;
}

.main .serviceList li .bgImg {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto 30px;
}

.main .serviceList li h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.main .serviceList li p {
  color: #666;
}

.main .serviceList li {
  transition: all .3s;
}

.main .serviceList li:nth-child(1) .bgImg {
  background-image: url(../images/index/index-icon1.png);
}

.main .serviceList li:hover {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}

.main .serviceList li:hover h3,
.main .serviceList li:hover p {
  color: #fff;
}

.main .serviceList li:hover p {
  opacity: 0.75;
}

.main .serviceList li:hover:nth-child(1) .bgImg {
  background-image: url(../images/index/index-icon1-1.png);
}

.main .serviceList li {
  transition: all .3s;
}

.main .serviceList li:nth-child(2) .bgImg {
  background-image: url(../images/index/index-icon2.png);
}

.main .serviceList li:hover {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}

.main .serviceList li:hover h3,
.main .serviceList li:hover p {
  color: #fff;
}

.main .serviceList li:hover p {
  opacity: 0.75;
}

.main .serviceList li:hover:nth-child(2) .bgImg {
  background-image: url(../images/index/index-icon2-1.png);
}

.main .serviceList li {
  transition: all .3s;
}

.main .serviceList li:nth-child(3) .bgImg {
  background-image: url(../images/index/index-icon3.png);
}

.main .serviceList li:hover {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}

.main .serviceList li:hover h3,
.main .serviceList li:hover p {
  color: #fff;
}

.main .serviceList li:hover p {
  opacity: 0.75;
}

.main .serviceList li:hover:nth-child(3) .bgImg {
  background-image: url(../images/index/index-icon3-1.png);
}

.main .serviceList li {
  transition: all .3s;
}

.main .serviceList li:nth-child(4) .bgImg {
  background-image: url(../images/index/index-icon4.png);
}

.main .serviceList li:hover {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}

.main .serviceList li:hover h3,
.main .serviceList li:hover p {
  color: #fff;
}

.main .serviceList li:hover p {
  opacity: 0.75;
}

.main .serviceList li:hover:nth-child(4) .bgImg {
  background-image: url(../images/index/index-icon4-1.png);
}

.main .serviceList li {
  transition: all .3s;
}

.main .serviceList li:nth-child(5) .bgImg {
  background-image: url(../images/index/index-icon5.png);
}

.main .serviceList li:hover {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}

.main .serviceList li:hover h3,
.main .serviceList li:hover p {
  color: #fff;
}

.main .serviceList li:hover p {
  opacity: 0.75;
}

.main .serviceList li:hover:nth-child(5) .bgImg {
  background-image: url(../images/index/index-icon5-1.png);
}

.main .studyList {
  text-align: center;
}

.main .studyList::after {
  display: block;
  content: '';
  clear: both;
}

.main .studyList li {
  float: left;
  width: 380px;
  margin-right: 30px;
}

.main .studyList li a > div:first-child {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.main .studyList li a > div:first-child > div {
  width: 380px;
  margin-bottom: 20px;
  overflow: hidden;
}

.main .studyList li a > div:first-child:hover {
  box-shadow: 0 10px 30px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transition: all .3s;
}

.main .studyList li a > div:first-child:hover h3 {
  color: #00A0E9;
}

.main .studyList li a > div:first-child:hover img {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  /* IE 9 */
  -moz-transform: scale(1.2);
  /* Firefox */
  -webkit-transform: scale(1.2);
  /* Safari 和 Chrome */
  -o-transform: scale(1.2);
}

.main .studyList li:last-child {
  margin-right: 0;
}

.main .studyList li:last-child > div .button {
  width: 113px;
}

.main .studyList li img {
  width: 100%;
  transition: all .3s;
}

.main .studyList li h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.main .studyList li p {
  color: #666;
  padding-bottom: 20px;
}

.main .studyList li > div {
  font-size: 0;
}

.main .studyList li > div .button {
  display: inline-block;
  width: 180px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  background: #FFEB00;
  color: #333333;
  font-size: 18px;
  cursor: pointer;
  margin-right: 20px;
}

.main .studyList li > div .button:last-child {
  margin-right: 0;
}

.main .studyList li > div .button:last-child:hover {
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .studyList li > div .button:nth-child(2) {
  background: #00A0E9;
  color: #fff;
}

.main .studyList li > div .button:nth-child(2):hover {
  box-shadow: 0 5px 10px 0 rgba(0, 160, 233, 0.5);
}

.main .studyList li > div .button:hover {
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .indexBg {
  padding-bottom: 60px;
  margin-top: 60px;
  background: url(../images/index/indexBg.png) no-repeat;
  background-size: cover;
}

.main .indexBg > div {
  padding-left: 680px;
  text-align: left;
}

.main .indexBg > div h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.main .indexBg > div p {
  color: #666;
  margin-bottom: 30px;
}

.main .indexBg > div > div > div {
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  background: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 20px;
  width: initial;
  color: #666;
  display: inline-block;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

.main .indexBg > div > div > div::before {
  display: inline-block;
  content: '';
  border: 4px solid #00A0E9;
  margin-right: 10px;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  box-sizing: border-box;
}

.main .indexBg > div > div > div strong {
  font-size: 18px;
  margin-right: 20px;
  color: #333;
}

.main .indexBg > div > div:nth-of-type(n+4) > div::before {
  border: 4px solid #FFEB00;
}

.main .indexBg > div .button {
  display: inline-block;
  width: 220px;
  background: #FFEB00;
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: #333333;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}

.main .indexBg > div .button:hover {
  background: #FFEF33;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .classList {
  margin-top: 60px;
  padding: 0 40px;
}

.main .classList::after {
  display: block;
  content: '';
  clear: both;
}

.main .classList > div {
  float: left;
  width: 174px;
  margin-right: 15px;
  position: relative;
}

.main .classList > div:last-child {
  margin-right: 0;
}

.main .classList > div > div {
  border-radius: 10px;
  color: #fff;
  margin-top: 19px;
  text-align: left;
  padding: 20px 15px 0;
  padding-right: 19px;
}

.main .classList > div > div p {
  margin-bottom: 20px;
}

.main .classList > div:nth-child(1) {
  bottom: -144px;
}

.main .classList > div:nth-child(1) > div {
  height: 355px;
  background: #6FCFFA;
}

.main .classList > div:nth-child(2) {
  bottom: -117.5px;
}

.main .classList > div:nth-child(2) > div {
  height: 380px;
  background: #6FBDFA;
}

.main .classList > div:nth-child(3) {
  bottom: -90px;
}

.main .classList > div:nth-child(3) > div {
  height: 405px;
  background: #6FADFA;
}

.main .classList > div:nth-child(4) {
  bottom: -60px;
}

.main .classList > div:nth-child(4) > div {
  height: 430px;
  background: #6F9EFA;
}

.main .classList > div:nth-child(5) {
  bottom: -30px;
}

.main .classList > div:nth-child(5) > div {
  height: 455px;
  background: #6F88FA;
}

.main .classList > div:nth-child(6) > div {
  height: 480px;
  background: #786FFA;
}

.main .classList > div:nth-child(1) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 15px;
  background: url(../images/index/top1.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(1) .bgImg {
  background-image: url(../images/index/index-icon1.png);
}

.main .classList > div:nth-child(2) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/index/top2.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(2) .bgImg {
  background-image: url(../images/index/index-icon2.png);
}

.main .classList > div:nth-child(3) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 25px;
  background: url(../images/index/top3.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(3) .bgImg {
  background-image: url(../images/index/index-icon3.png);
}

.main .classList > div:nth-child(4) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 30px;
  background: url(../images/index/top4.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(4) .bgImg {
  background-image: url(../images/index/index-icon4.png);
}

.main .classList > div:nth-child(5) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 35px;
  background: url(../images/index/top5.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(5) .bgImg {
  background-image: url(../images/index/index-icon5.png);
}

.main .classList > div:nth-child(6) h3::after {
  display: inline-block;
  content: '';
  width: 20px;
  height: 40px;
  background: url(../images/index/top6.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-left: 8px;
}

.main .classList li:nth-child(6) .bgImg {
  background-image: url(../images/index/index-icon6.png);
}

.main .indexBg2 {
  padding: 0 60px 80px;
  background: url(../images/index/indexBg1.png) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  text-align: left;
}

.main .indexBg2 > div h2 {
  font-size: 24px;
  margin-bottom: 35px;
}

.main .indexBg2 > div > div {
  display: inline-block;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 17px 20px;
  padding-left: 26px;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 18px;
}

.main .indexBg2 > div > div:nth-of-type(1)::before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: '';
  width: 5px;
  height: 50px;
  background: #00A0E9;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.main .indexBg2 > div > div:nth-of-type(2)::before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: '';
  width: 5px;
  height: 50px;
  background: #00A0E9;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #FFEB00;
}

.main .indexBg2 > div > div strong {
  color: #00A0E9;
}

.main .indexBg2 > div p {
  color: #666;
  margin-bottom: 35px;
}

.main .indexBg2 > div p span {
  display: inline-block;
  padding-left: 12px;
  line-height: 24px;
  position: relative;
}

.main .indexBg2 > div p span::before {
  display: inline-block;
  position: absolute;
  content: '';
  font-size: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00A0E9;
  left: 0;
  vertical-align: middle;
  top: 10px;
}

.main .indexBg2 > div p:last-child span::before {
  background: #FFEB00;
}

.main .indexBg2 > div .button {
  display: inline-block;
  width: 220px;
  height: 60px;
  line-height: 60px;
  background: #00A0E9;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
}

.main .indexBg2 > div .button:hover {
  background: #21B6FA;
  box-shadow: 0 5px 10px 0 rgba(0, 160, 233, 0.5);
}

.main .indexBtm {
  margin-top: 60px;
}

.main .indexBtm::after {
  display: block;
  content: '';
  clear: both;
}

.main .indexBtm > div {
  float: left;
}

.main .indexBtm > div:first-child {
  width: 790px;
}

.main .indexBtm > div:first-child img {
  width: 100%;
}

.main .indexBtm > div:last-child {
  width: 335px;
  text-align: left;
}

.main .indexBtm > div:last-child > div {
  background: #FFFFFF;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}

.main .indexBtm > div:last-child > div:nth-child(2) h3::after, .main .indexBtm > div:last-child > div:nth-child(2) h3::before {
  background: #FFEB00;
}

.main .indexBtm > div:last-child > div:nth-child(2) ul li::before {
  background: #FFEB00;
}

.main .indexBtm > div:last-child > div h3 {
  text-align: center;
  font-size: 18px;
}

.main .indexBtm > div:last-child > div h3::after, .main .indexBtm > div:last-child > div h3::before {
  display: inline-block;
  content: '';
  vertical-align: middle;
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #00A0E9;
}

.main .indexBtm > div:last-child > div h3::after {
  margin-left: 20px;
}

.main .indexBtm > div:last-child > div h3::before {
  margin-right: 20px;
}

.main .indexBtm > div:last-child > div ul {
  margin-top: 20px;
}

.main .indexBtm > div:last-child > div ul li {
  color: #666;
  line-height: 24px;
  padding-left: 12px;
  position: relative;
}

.main .indexBtm > div:last-child > div ul li::before {
  display: inline-block;
  position: absolute;
  content: '';
  font-size: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00A0E9;
  left: 0;
  vertical-align: middle;
  top: 10px;
}

.main .indexBtm > div:last-child .button {
  display: inline-block;
  width: 220px;
  height: 60px;
  line-height: 60px;
  background: #00A0E9;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
}

.main .indexBtm > div:last-child .button:hover {
  background: #21B6FA;
  box-shadow: 0 5px 10px 0 rgba(0, 160, 233, 0.5);
}

.main .bihuan {
  padding: 0 170px;
  box-sizing: border-box;
}

.main .bihuan::after {
  display: block;
  content: '';
  clear: both;
}

.main .bihuan .swiper-container {
  float: left;
  width: 100%;
  height: 380px;
  margin-left: auto;
  margin-right: auto;
}

.main .bihuan .swiper-slide {
  background-size: cover;
  background-position: center;
}

.main .bihuan .gallery-top {
  width: 180px !important;
  margin-left: 90px;
  padding: 40px 0;
  margin-top: 60px;
}

.main .bihuan .gallery-top .swiper-slide {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px 10px;
  box-sizing: border-box;
}

.main .bihuan .gallery-top .swiper-slide h3 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 10px;
}

.main .bihuan .gallery-top .swiper-slide h3::before {
  display: inline-block;
  content: '';
  width: 4px;
  height: 18px;
  background: #00A0E9;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 10px;
}

.main .bihuan .gallery-top .swiper-slide p {
  color: #666666;
  text-align: left;
}

.main .bihuan .gallery-top .swiper-slide.swiper-slide-active {
  background: #00A0E9;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

.main .bihuan .gallery-top .swiper-slide.swiper-slide-active h3,
.main .bihuan .gallery-top .swiper-slide.swiper-slide-active p {
  color: #fff;
}

.main .bihuan .gallery-top .swiper-slide.swiper-slide-active h3::before {
  background: #fff;
}

.main .bihuan .gallery-top .swiper-button-white {
  background: #fff;
  width: 180px;
  height: 30px;
  left: 0;
  right: initial;
  margin-top: initial;
  border-radius: 5px;
  color: #00A0E9;
}

.main .bihuan .gallery-top .swiper-button-white::after {
  display: inline-block;
  content: '';
  border: 5px solid transparent;
  vertical-align: middle;
}

.main .bihuan .gallery-top .swiper-button-white.swiper-button-prev {
  top: 0;
}

.main .bihuan .gallery-top .swiper-button-white.swiper-button-prev::after {
  border-bottom-color: #00A0E9;
}

.main .bihuan .gallery-top .swiper-button-white.swiper-button-next {
  bottom: 0;
  top: inherit;
}

.main .bihuan .gallery-top .swiper-button-white.swiper-button-next::after {
  margin-top: 10px;
  border-top-color: #00A0E9;
}

.main .bihuan .gallery-top .swiper-button-white:hover {
  background: #00A0E9;
  color: #fff;
}

.main .bihuan .gallery-top .swiper-button-white:hover.swiper-button-prev::after {
  border-bottom-color: #fff;
}

.main .bihuan .gallery-top .swiper-button-white:hover.swiper-button-next::after {
  border-top-color: #fff;
}

.main .bihuan .gallery-thumbs {
  position: relative;
  width: 582px !important;
  height: 581px;
  padding: 40px;
  box-sizing: border-box;
  background: url(../images/index/bihuan.png) no-repeat;
  background-position: center;
  background-size: 502px 501px;
}

.main .bihuan .gallery-thumbs .swiper-wrapper {
  position: initial;
  transform: initial !important;
}

.main .bihuan .gallery-thumbs .swiper-slide {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  width: 80px !important;
  background: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 160, 233, 0.25);
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  color: #00A0E9;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 21px;
}

.main .bihuan .gallery-thumbs .swiper-slide:hover {
  background: #21B6FA;
  color: #fff;
}

.main .bihuan .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  background: #00A0E9;
  box-shadow: 0 0 20px 0 rgba(0, 160, 233, 0.25);
  color: #fff;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(1) {
  left: 320px;
  top: 20px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(2) {
  left: 445px;
  top: 122px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(3) {
  left: 475px;
  top: 285px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(3):hover {
  background: #FFEF33;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(3).swiper-slide-thumb-active {
  background: #FFEB00;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(4) {
  left: 392px;
  top: 425px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(4):hover {
  background: #FFEF33;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(4).swiper-slide-thumb-active {
  background: #FFEB00;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(5) {
  left: 237px;
  bottom: 20px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(5):hover {
  background: #FFEF33;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(5).swiper-slide-thumb-active {
  background: #FFEB00;
  color: #00A0E9;
  box-shadow: 0 5px 10px 0 rgba(255, 235, 0, 0.5);
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(6) {
  left: 89px;
  top: 425px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(7) {
  left: 8px;
  top: 285px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(8) {
  left: 37px;
  top: 122px;
}

.main .bihuan .gallery-thumbs .swiper-slide:nth-child(9) {
  left: 164px;
  top: 20px;
}

.main .article ul {
  margin-top: 40px;
  margin-left: -68px;
}

.main .article ul::after {
  display: block;
  content: '';
  clear: both;
}

.main .article ul li {
  float: left;
  width: 516px;
  margin-bottom: 40px;
  margin-left: 68px;
  height: 86px;
  overflow: hidden;
}

.main .article ul li a {
  padding-left: 16px;
  font-size: 18px;
  color: #333;
  line-height: 28px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  width: 500px;
  display: block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .article ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00A0E9;
  position: absolute;
  top: 11px;
  left: 0;
  border-radius: 6px;
}

.main .article ul li a:hover {
  color: #00A0E9;
}

.main .article ul li p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  line-height: 24px;
  text-align: left;
  padding-left: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main .article .button {
  display: inline-block;
  width: 220px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  border: 1px solid #999;
  box-sizing: border-box;
}

.main .article .button:hover {
  background: #21B6FA;
  box-shadow: 0 5px 10px 0 rgba(0, 160, 233, 0.5);
  border: none;
  color: #fff;
}
