body {
  background: #eeeeee;
}

.header {
  width: 95%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  padding:15px 0;
}

.headerbg {
  width: 100%;
  background: url(../img/top_bg.jpg) center no-repeat;
  background-size: 100% 100%;
}

.logo {
  display: inline-block;
}

.tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tips a {
  display: inline-block;
  color: #014190;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.tips a:nth-child(1) {
  padding-right: 20px;
}

.tips i {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 10px;
}

.tips .home {
  background: url(../img/home.png) center no-repeat;
  background-size: contain;
}

.tips .add {
  background: url(../img/adress.png) center no-repeat;
  background-size: contain;
}

.nav {
  width: 100%;
}

.nav ul {
  width: 1200px;
  margin: 0 auto;
  background: #034ea1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

}

.nav ul li {
  position: relative;
  width: 20%;
}
.nav ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);

}
.nav ul li:last-of-type::before,
.nav ul .selected::before {
  display: none;
}
.nav ul li:nth-child(1) {
  border-left: none;
}

.nav ul li .navbox {
  position: absolute;
  bottom: 0;
  min-width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background: rgba(4, 112, 192, 0.8);
  display: none;
  z-index: 99;

}

.navbox a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navbox a:hover {
  text-decoration: underline;
}

.nav ul li > a {
  display: inline-block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  line-height: 50px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 9;
  transition: all .3s;
}

.nav ul li:nth-child(1) a {
  border-left: none;
}

.nav ul li > a span {
  position: relative;
  z-index: 99;
}

.nav ul li:hover > a,
.nav ul .selected,
.nav ul .on {
  background: #0079ff;
}

.mainbg {
  background: #f8f8f8;
}

.main {
  margin: 40px auto;
  min-height: 716px;
}

footer {
  width: 100%;
  background: #034ea1;
  color: #fff;
}

footer .bot {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 14px;
}


footer p {
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.fottips {
  width: 100%;
  background: #0f3b67;
}

.such {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.such p {
  font-size: 14px;
  color: #fff;
}

.such a {
  color: #fff;
}

.such a:hover {
  text-decoration: underline;
}
.list4 li {
  width: 180px;
  height: 68px;
}
.list4 li a{
  color: #0470bf;
  width: 100%;
  height: 100%;
  border: 1px solid #6fadda;
  background: #daeaf5;
  transition: all .3s ease-in-out;
  justify-content: flex-start;
  padding-left: 20px;
  box-sizing: border-box;
  border-radius: 5px;
}
.list4 li a div {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #6fadda;
  transition: all .3s ease-in-out;
  margin-right: 10px;
}
.list4 li:hover a{
  color: #fff;
  border: 1px solid #0470bf;
  background: #0470bf;
}
.list4 li:hover a div {
  background: #0470bf;
}

.bot-left {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0px 10px 50px;
}

.bot-left p {
  margin-bottom: 5px;
  font-size: 14px;
}

.friendbox {
  width: 100%;
  background: #d6e1f2;
}

.friend {
  width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.memu-btn {
  width: 50px;
  height: 30px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
}

.memu-btn i {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.memu-btn-active i:nth-child(2) {
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

.memu-btn-active i:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(3px, -12px);
          transform: rotate(-45deg) translate(3px, -12px);
}

.memu-btn-active i:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, 12px);
          transform: rotate(45deg) translate(3px, 12px);
}

.y45 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.y-45 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.warp {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  display: none;
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #046c85;
  width: 50%;
  max-width: 200px;
  z-index: 999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

aside a {
  width: 100%;
  line-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5% 0 10%;
  color: #fff;
  border-bottom: 1px solid #5098aa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

aside a i {
  display: inline-block;
  height: 20px;
  width: 20px;
  background: url(../img/arrow_r_w.png) center no-repeat;
}

.aside-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.navlists {
  display: none;
  background: #1486A2;
}

#flimg {
  z-index: 999;
}

#flimg p {
  font-size: 14px;
  width: 100%;
  text-align: right;
  cursor: pointer;
  color: #999;
}
.flexcol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flexbw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flexcen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


.conlist1 .swiper-slide a img {
  width: 100%;
  height: 100%;
}

.banner2 .title {
  color: black;
  font-size: 12px;
  text-align: center;
  padding: 8px 12px;
  font-weight: 700;
}

.banner2 .title p {
  display: none;
}

.conlist1 {
  width: 100%;
}

.conlist1 .listbox {
  position: relative;
  width: 600px;
  height: 400px;
  background: #fff;
}
.conlist1 .listbox:last-of-type {
  width: 550px;
}
.conlist1 .listbox .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(1, 65, 144, 0.6);
  padding: 15px 20px;
  padding-bottom: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.conlist1 .listbox .text .swiper-pagination {
  display: block !important;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.conlist1 .listbox .text a {
  color: #fff;
  width: 100%;
  text-align: center;
}

.conlist1 .listbox .swiper-container {
  width: auto;
}

.conlist1 .listbox .swiper-slide img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.conlist1 .listbox .swiper-slide img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.conlist1 .listbox .swiper-slide a {
  display: block;
  overflow: hidden;
}

.conlist1 .listbox .text .pag {
  border: 2px solid rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.3);
}

.conlist1 .listbox .text .pag-active {
  border: 2px solid rgba(0, 0, 0, 0);
  background: #fe7e00;
}

.contitle {
   justify-content: flex-start;
   box-sizing: border-box;
   padding-left: 20px;
   position: relative;
   background: #0061ba;
   height: 50px;
   color: #fff;
   font-size: 18px;
   overflow: hidden;
}
.contitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: rotate(-45deg) translate(16%,-50%);
  height: 103px;
  width: 110px;
  background: #0079ff;
}


.contitle img {
  margin-right: 30px;
  position: relative;
}

.contitle p {
  position: relative;
}
.contitle .ti {
  font-size: 20px;
  color: #222222;
  height: 40px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}


.contitle2 {
  height: 50px;
  line-height: 50px;
  color: #034ea1;
  border-bottom: 2px solid #034ea1;
}
.ti-left img{
  margin-right: 10px;
}
.hot {
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
}

.hot .hotti {
  display: block;
  font-size: 20px;
  color: #014190;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.hot:hover .hotti {
  text-decoration: underline;
}

.hot .hotcon {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.list1 li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  border-bottom: 1px dashed #ccc;
}

.list1 li a {
  width: 80%;
  line-height: 40px;
  font-size: 14px;
}
.list1 li .date {
  color: #014190;
  padding-right: 20px;
  border-right: 1px solid #014190;
  line-height: 1em;

}
/* .list1 li::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #125eac;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .3s;
  transition: all .3s;
} */

.list1 li:hover a {
  color: #014190;
}

.list1 li:hover::before {
  border-left: 7px solid #014190;
}

.list2 li {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

.list2 li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: #014190;
  border: 3px solid #ccd9e9;
  transition: all .3s;
}
.list2 li a {
  padding: 9px 0;
  color: #222;
  font-size: 14px;
  width: 80%;
  transition: all .3s;
}

.list2 li:hover a {
  color: #014190;
}
.list2 li:hover::before {
  border: 3px solid #014190;
}
.list2 li:last-of-type {
  border-bottom: 0;
}

.list2 li .data {
  width: 60px;
  margin-right: 20px;
}

.new-msg {
  font-size: 16px;
  width: 85%;
}

.new-msg:hover a {
  text-decoration: underline;
}

.new-msg p {
  color: #999;
  font-size: 14px;
}

.data .yy-dd {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  background: #fe7e00;
  text-align: center;
}

.data .day {
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  background: #014190;
}

.container2 {
  width: 100%;
  background: url(../img/bg.jpg) top no-repeat;
  background-size: 100% 100%;
  padding-bottom: 40px;
  padding-top: 20px;
}

.conbox {
  width: 1200px;
  margin: 0 auto;
}

.conbox .ti {
  color: #fff;
}

.conbox .contitle {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.conbox .contitle a {
  color: #fff;
}

.list3 li {
  width: 30%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  background: #fff;
}

.list3 li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 7px #fff;
          box-shadow: 0px 0px 7px #fff;
}

.list3 li p {
  padding: 15px 10px;
}

.list3 li span {
  margin: 15px 10px;
}

.list3 li .tips {
  font-size: 16px;
  color: #333;
}

.list3 li .data2 {
  font-size: 14px;
  color: #999;
}

.list3 li .data2 .day {
  display: inline-block;
  color: #014190;
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 10px;
  font-size: 30px;
}

.conlist2 {
  width: 380px;
  margin-bottom: 20px;
}

.conlist2 .contitle {
  background: #eee;
}

.smallfont {
  font-size: 13px;
  line-height: normal;
  text-align: center;
}

.listleft {
  width: 340px;
  background: #d2e2f4;
}

.listleft p {
}

.subnav {
  background: #eeeff1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.subnav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #014190;
}

.subnav li {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-left: 40px;
}

.subnav li a {
  font-size: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.subnav li a span {
  z-index: 999;
  position: relative;
}

/* .subnav li:hover, .subnav .selected{
    background: #fff;
} */
.subnav li:hover a, .subnav .selected a {
  color: #fe7e00;
}

.subnav .selected a {
  font-weight: 700;
}

.subnav .selected::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fe7e00;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.arr {
  content: '';
  display: none;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  padding: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  z-index: 990;
}

.bigbg {
  height: 300px;
  background: url(../img/ny_banner.jpg) center no-repeat;
  background-size: initial;
  width: 100%;
}

.listright {
  width: 860px;
  padding: 0 40px;
  padding-bottom: 50px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.listright .ti {
  border-bottom: 2px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bor-t {
  font-size: 20px;
  line-height: 50px;
  border-bottom: 2px solid #014190;
  margin-bottom: -2px;
  padding-right: 20px;
}

.subnav2 {
  font-size: 13px;
  color: #000;
}

.subnav2 a {
  margin: 0 5px;
}

.subnav2 a:hover, .subnav2 .selected {
  color: #014190;
}

.comtentlist, .rolelist, .piclist {
  margin-top: 20px;
}

.comtentlist li {
  border-bottom: 1px dashed #ccc;
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}

.comtentlist li a {
  /* width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
  -webkit-transition: all .3s;
  transition: all .3s;
}

.comtentlist li span {
  font-size: 13px;
  color: #999;
}

.comtentlist li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #0079ff;
  border: 3px solid #cce4ff;
  border-radius: 10px;
  margin-left: 5px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          transition: all .3s;
}

.comtentlist li:hover a {
  color: #0079ff;
  transition: all .3s;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.comtentlist li:hover::before {
  border: 3px solid #0079ff;
}

.rolelist {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.rolelist li {
  width: 23%;
  margin: 0 20px 30px 0;
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid #ccc;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.rolelist li:nth-child(4n) {
  margin-right: 0;
}

.rolelist li a p, .piclist li p {
  padding: 10px 0;
  text-align: center;
}

.rolelist li:hover {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 5px 10px #ccc;
          box-shadow: 0 5px 10px #ccc;
  transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.piclist {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.piclist li {
  width: 31.5%;
  margin: 0 20px 30px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid rgba(0, 0, 0, 0);
}

.imgbox {
  overflow: hidden;
}

.imgbox img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.piclist li p {
  background: #ccc;
}

.piclist li:nth-child(3n) {
  margin-right: 0;
}

.piclist li:hover {
  border: 1px solid #014190;
}

.piclist li:hover p {
  color: #fff;
  background: #014190;
}

.piclist li:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.search {
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

.search form {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.search input {
  width: 230px;
}

.container3 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}

.conlist3 {
  width: 790px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.conlist3 li {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.conlist3 li p {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-align: center;
  text-shadow: 0px 1px 1px #999;
}
.banner {
  position: relative;
  overflow: hidden;
}

.date {
  font-size: 14px;
  color: #999;
}

.containerbg {
  width: 100%;
  margin-top: 20px;
}

.swiper-wrapper {
  position: relative;
}

.text-time {
  position: absolute;
  left: 0;
  bottom: 50px;
  padding: 5px 10px;
  background: #014190;
  z-index: 1;
  color: #fff;
}

.text-time p {
  font-size: 12px;
}

.text-time p em {
  font-size: 16px;
}

.text-time p span {
  margin: 0 3px;
}

.links {
  font-size: 16px;
  line-height: 40px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  width: 240px;
  cursor: pointer;
  position: relative;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.links i {
  content: '';
  display: inline-block;
  height: 26px;
  width: 26px;
  background: url(../img/arr-d.png) center no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.friends {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  display: none;
  background: #fff;
}

.friends a {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  line-height: 40px;
  border-bottom: 1px dashed #cfcfcf;
  color: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.friends a:hover {
  color: #fe7e00;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.friends a:last-of-type {
  border-bottom: none;
}

.bot-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 98px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bot-right > p {
  text-align: right;
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
}

.bot-right > p a {
  color: #fff;
}

.bot-right > p a:hover {
  text-decoration: underline;
}

#swiper1,
#swiper2,
#swiper3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.top_tips {
  position: absolute;
  top: 0;
  right: 0;
}
.top_tips_bg {
  position: relative;
  height: 30px;
}
.top_tips_bg::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  border-bottom-left-radius: 10px;
  height: 100%;
  width: 2000px;
  background: #4a98ca;
  transform: skewX(25deg);
}
.top_tips_bg a {
  position: relative;
  padding: 0 10px;
  line-height: 1em;
  color: #fff;
  font-size: 14px;
  border-left: 1px solid #fff;
}
.top_tips_bg a:first-of-type {
  border-left: none;
}

.top_tips_bg a:hover {
  text-decoration: underline;
}

.head_right ul li {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-left: 20px;
  cursor: pointer;
  border: 1px solid #fff;
  transition: all .3s ease-in-out;
}
.head_right ul li:hover {
  /* transform: translateY(5px); */
  box-shadow: 0 0px 15px #fff;
}
.list5 li {
  height: 105px;
  width: 180px;
}
.list5 li a{
  color: #fff;
  position: relative;
  overflow:hidden;
  height: 100%;
  width: 100%;
}
.list5 li:nth-child(1) a div{
  text-shadow: 0 -6px 4px #105c9c, /*上*/
  4px -4px 4px #105c9c, /*右上*/
  6px 0 4px #105c9c, /*右*/
  4px 4px 4px #105c9c, /*右下*/
  0 6px 4px #105c9c, /*下*/
  -4px 4px 4px #105c9c, /*左下*/
  -6px 0 4px #105c9c, /*左*/
  -4px -4px 4px #105c9c;
}
.list5 li:nth-child(2) a div{
  text-shadow: 0 -6px 4px #097b91,
  4px -4px 4px #097b91,
  6px 0 4px #097b91,
  4px 4px 4px #097b91,
  0 6px 4px #097b91,
  -4px 4px 4px #097b91,
  -6px 0 4px #097b91,
  -4px -4px 4px #097b91;
}
.list5 li:nth-child(3) a div{
  text-shadow: 0 -6px 4px #1f3183,
  4px -4px 4px #1f3183,
  6px 0 4px #1f3183,
  4px 4px 4px #1f3183,
  0 6px 4px #1f3183,
  -4px 4px 4px #1f3183,
  -6px 0 4px #1f3183,
  -4px -4px 4px #1f3183;
}
.list5 li:nth-child(4) a div{
  text-shadow: 0 -6px 4px #b55d0f,
  4px -4px 4px #b55d0f,
  6px 0 4px #b55d0f,
  4px 4px 4px #b55d0f,
  0 6px 4px #b55d0f,
  -4px 4px 4px #b55d0f,
  -6px 0 4px #b55d0f,
  -4px -4px 4px #b55d0f;
}
.list5 li a div {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 80%;
  width: 80%;
  border: 1px solid rgba(255, 255, 255, .3);
  font-weight: 700;
  transition: all .3s;
}
.list5 li a img{
  transition: all .3s;
}
.list5 li:hover a img{
  transform: scale(1.2);
}
.list5 li:hover a div {
  border: 1px solid rgba(255, 255, 255, .7);
}

.conlist2 ul {
  margin-top:20px;
}
.list4 li{
  margin-top: 20px;
}
.list5 li {
  margin-top: 22px;
}
.list4 li:nth-child(1),.list4 li:nth-child(2),
.list5 li:nth-child(1),.list5 li:nth-child(2){
  margin-top: 0;
}

.conlist3 .contitle {
  padding: 0;
}
.conlist3 .contitle .ti {
  height: auto;
}
.ti ul {
  margin-left: 20px;
  height: 100%;
}

.ti ul li {
  padding: 12px 20px;
  font-size: 16px;
  position: relative;
  transition: all .3s;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.ti ul li:hover,.ti ul .cur{
  border-bottom: 2px solid #277bc2;
  color: #277bc2;
}
.ti ul li:hover::before,.ti ul .cur::before{
  opacity: 1;
}
.ti ul li::before {
  opacity: 0;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,100%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #277bc2;
  transition: all .3s;
}
.ti ul li::after {
  content: '';position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  transform: translateY(-50%);
  background: #999;
}

.box-newlist {
  height: 300px;
  position: relative;
  margin-top: 20px;
}
.box-newlist ul {
  position: absolute;
  height: 100%;
  width: 100%;

}
.box-newlist ul {
  display: none;
}
.box-newlist ul:first-of-type{
  display: flex;
}

.hot-links {
  height: 300px;
  width: 100%;
  flex-wrap: wrap;
}

.hot-links li {
  height: 63px;
  width: 183px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  transition: all .3s;
  overflow: hidden;
}
.hot-links li:hover {
  border: 1px solid #014190;
}
.hot-links li img {
  width: 100%;
  height: 100%;
}

.swiper-title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 5;
}

.swiper-title li {
  color: #666666;
  padding: 2px 25px;
  position: relative;
  transition: all .3s;
  cursor: pointer;
}
.swiper-title li span {
  position: relative;
  white-space: nowrap;
  z-index: 3;
}
.swiper-title li::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 0;
  width: 90px;
  border-top: 30px solid #ccc;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
  transition: all .3s;
  z-index: 2;
}

.swiper-title li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 0;
  width: 91px;
  border-top: 31px solid #fff;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}
.swiper-title li:hover ,
.swiper-title .cur {
  color: #fff;
  z-index: 8;
}
.swiper-title li:hover::before,
.swiper-title .cur::before  {
  border-top: 30px solid #0470bf;
}
.head_right ul li{
  position: relative;
  color: #fff;

}
.head_right ul li p {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
}
.showerweima {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translate(-50%,100%);
  background:#0470bf;
  z-index: 8;
  padding: 8px;
  z-index: 999;
}

.showerweima img {
  max-width: none;
  width: 100px;
}
.index_box {
  padding: 40px 30px;
}

.user_info p{
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}
.user_info ul li{
  width: 48%;

}
.user_info ul li a{
  width: 100%;
  line-height: 40px;
  color: #035cbe;
  background: #b0cbe9;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all .3s ease-in-out;
  text-align: center;
  font-size: 14px;
}
.user_info ul li:last-of-type{
  width: 100%;
}
.user_info ul li:last-of-type a {
  border: 1px solid #035cbe;
  background: #fff;
}
.user_info ul li a:hover {
  color: #fff;
  background: #035cbe ;
}
.user_info ul li:last-of-type a:hover {
  color: #fff;
  background: #FF0000;
  border: 1px solid #FF0000;
}



.setup_info ul li{
  width: 100%;
  align-items: center;
  background: #0079ff;
  border-radius: 5px;
  height: 50px;
  margin-bottom: 10px;
  padding: 0 15px;
  box-sizing: border-box;
  color: #fff;
}
.setup_info ul li .step span {
  padding: 5px 11px;
  position: relative;
  color: #fff;
  background: #035cbe;
  border-radius: 50%;
  margin-right: 10px;

}
.setup_info ul li a {
  font-size: 14px;
  padding: 5px 25px;
  background: #fff;
  color: #0079ff;
  border-radius: 40px;
  transition: all .3s;
}

.setup_info ul li a:hover {
  background: #fe8f00;
  color: #8e3002;
}

.setup_info ul .completed {
  background: #fff;
  color: #035cbe;
}

.notice_info {
  color: #333;
  font-size: 14px;
  line-height: 1.8em;
}
.notice_info a {
  color: #035cbe;
}
.more {
  font-size: 14px;
  color: #035cbe;
}
.more:hover,
.notice_info a:hover {
  text-decoration: underline;
}

.content {
  padding: 30px;
  background: #d2e2f4;
  box-sizing: border-box;
  color: #333;
  font-size: 14px;
}
.content a:hover{
  text-decoration: underline;
}

.formbox {
  margin: 0 auto;
  margin-top: 100px;
  width: 100%;
  max-width: 550px;
}
.formbox2 {
  margin: 0;
  margin-top: 50px;
  margin-left: 20px;
  width: 500px;
}
.formbox2 .inputbox label {
  width: 120px;
}
.inputbox label{
  width: 15%;
  margin-right: 20px;
  text-align: right;
}

.inputbox {
  margin-bottom: 30px;
  position: relative;
}

.inputbox input,
.inputbox .selectbox,
.inputbox select,
.inputbox textarea{
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  width: 80%;
  box-sizing: border-box;
  transition: all .3s;
  font-size: 14px;
  position: relative;
}

.formbox2 .inputbox input,
.formbox2 .inputbox .selectbox,
.formbox2 .inputbox select {
  width: 340px;
}



.formbox2 .inputbox {
  justify-content: flex-start;
}

.formbox2 .input_w input,
.formbox2 .input_w select {
  width: 270px;
}


.formbox3 {
  margin: 50px auto;
  max-width: 700px;
}
.formbox3 .verbox
{
  width: 83%;
}

.formbox3  .btnbox>div {
  width: 82%;
}

.formbox3 .verbox input{
  width: 70%;
}

.inputbox select {
  appearance: none;
  background: url(../img/arr-d.png) center right 10px no-repeat;
  padding-right: 10px;
  cursor: pointer;
}
.inputbox select option {
  line-height: 60px;
  color: #333;
}
.inputbox input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}

.inputbox input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; }

input[type="number"]{ -moz-appearance: textfield; }

.inputbox input:hover,
.inputbox input:focus,
.inputbox textarea:hover,
.inputbox textarea:focus{
  border: 1px solid #035cbe;
}

.inputbox span {
  display: none;
  position: absolute;
  left: 20%;
  bottom: -25px;
  color: #FF0000;
  font-size: 14px;
}

.verbox,
.btnbox>div,
.tipsbox>div
{
  width: 80%;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
}

.formbox2 .verbox,
.formbox2 .btnbox>div,
.formbox2 .tipsbox>div {
  width: 360px;
}
.formbox2 .btnbox button {
  width: 150px;
}
.btnbox>div,
.tipsbox>div {
  margin-left: 20px;
}

.btnbox,
.tipsbox  {
  justify-content: flex-end;
}

.formbox2 .btnbox,
.formbox2 .tipsbox  {
  justify-content: flex-end;
}

.tipsbox .gray {
  font-size: 14px;
}

.verbox input {
  width: 50%;
  margin-right: 10px;
}


.var-btn {
  width: 100px;
  line-height: 43px;
  border-radius: 5px;
  background: #b0cbe9;
  color: #2d64ac;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
}


.formbox3 .var-btn {
  width: 25%;
  color: #fff;
  background: #0079ff;
  border-radius: 2px;
}

.btnbox button{
    width: 180px;
    line-height: 43px;
    background: none;
    border-radius: 5px;
}
.btnbox button:nth-child(1),
.login{
  color: #fff;
  background: #0079ff;
  margin-right: 20px;
}
.btnbox button:nth-child(2),
.reg{
  color: #0079ff;
  border: 1px solid #0079ff;
}

.inputbox-item input{
  width: 85%;
}

.login,
.reg {
  width: 100%;
  text-align: center;
  padding: 8px 0;
  border-radius: 5px;

}
.reg {
  background: #fff;
}
.index_box form>div:last-of-type {
text-align: center;
}
.index_box .inputbox a {
  margin:  0 auto;
}
.index_box form>div:last-of-type a:hover {
  text-decoration: underline;
}
.selectbox i{
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 15px;
  background: url(../img/arr-d.png) center center no-repeat;
  background-size: cover;
  cursor: pointer;

}

.options {
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(-100%);
}
.options .option {
  line-height: 40px;
}

.dow {
  padding: 5px 20px;
  border-radius: 40px;
  border: 1px solid #0079ff;
  color: #0079ff !important;
  cursor: pointer;
  transition: all .3s;
}
.dow:hover {
  background: #0079ff;
  color: #fff !important;
}
.w100 {
  width: 100%;
}

.formbox4 {
  margin-top: 50px;
  margin-left: 0;
  max-width: none;
}
.formbox4 .inputbox label {
  width: 80px;
}
.formbox4 .inputbox {
  width: 100%;
}
.formbox4 .input_w {
  width: 600px;
}
.formbox4 .verbox input {
  width: 40%;
}
.formbox4 .btnbox>div {
  width: 87%;
}


.index_box label{
  font-size: 14px;
  width: 20%;
}
.index_box .inputbox {
  margin-bottom: 20px;
}

.stauts_now {
  padding: 30px;
  background: #d2e2f4;
  color: #222;
}
.setup2 {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
}
.setup2 li{
  margin-bottom: 15px;
  align-items: center;
}
.setup2 .gray p>span{
  background: #999;
}
.setup2 li p>span {
  display: inline-block;
  width: 27px;
  line-height: 27px;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  background: #035cbe;
  color: #fff;
  font-size: 14px;
}
.point {
  margin-top: 20px;
}
.point>div {
  box-sizing: border-box;
  padding-left: 50px;
}
.point>div p {
  line-height: 1.8em;
  margin-right: 20px;
}


.red {
  color: #fe0000;
}

.orange {
  color: #fe6000;
}

.gray {
  color: #999;
}

.blod {
  font-weight: 700;
  font-size: 16px;
}

.blue {
  color: #035cbe;
}

.green {
  color: green;
}
.contitle2 {
                  align-items: center;
              }
              .contitle2 a {
                  font-size: 14px;
                  color: #999;
                  transition: all .3s;
              }
              .contitle2 a:hover {
                 color:#034ea1;
              }
              .contitle2 a i {
                  padding-left: 5px;
                  font-family: fangsong;
                  font-style: normal;
              }
.sub-btn{
  color: #fff;
border: 1px solid #0079ff;
background-color: #0079ff;
height:45px;
width:180px !important;
cursor: pointer
}

.hide{
  display: none
}

.wrap2 .popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	left: 0;
	top: 0;
	z-index: 3;
	display: none;
}

.wrap2 .popup .box {
	position: absolute;
	background-color: #FFFFFF;
	left: 50%;
	top: 50%;
	padding: 10px;
	width: 360px;
	margin-top: -90px;
	margin-left: -180px;
	box-sizing: border-box;
	border-radius: 5px;
}

.wrap2 .popup .box .text {
	border: 1px solid #cccccc;
	border-radius: 5px;
	height: 60px;
	box-sizing: border-box;
	padding-left: 20px;
	margin-right: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	width: 150px;
}

.wrap2 .popup .box .yzm {
	width: 170px;
	height: 60px;
	max-height: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.wrap2 .popup .box .yzm img {
	width: 100%;
	height: 100%;
}

.wrap2 .popup .box .btns {
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.wrap2 .popup .box .btns div {
	display: inline-block;
	border-radius: 5px;
	width: 100px;
	height: 40px;
	border: 1px solid #DDDDDD;
	box-sizing: border-box;
	line-height: 40px;
	cursor: pointer;
	overflow: hidden;
}

.wrap2 .popup .box .btns .qx {
	background-color: #DDDDDD;
	color: #666666;
	margin-right: 20px;
}

.wrap2 .popup .box .btns .qd a {
	display: block;
	background-color: #0079ff;
	color: #FFFFFF;
}
