body {
  font: 14px pxPingFangSC-Regular, Helvetica, Arial, Microsoft Yahei, sans-serif;
  background: #fff;
}

.phone {
  display: none;
}

.container {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.footer,
.header {
  flex: 0;
}

a:hover {
  text-decoration: none;
  color: #240f6c;
  transition: color 0.4s;
  -moz-transition: color 0.4s;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
}

@-webkit-keyframes fromBottomFade {
  from {
    -webkit-transform: translateY(20%);
    opacity: 0;
  }
}

@keyframes fromBottomFade {
  from {
    transform: translateY(20%);
    opacity: 0;
  }
}

/* 导航 */
.pc-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
  border-top: 20px solid #e20015;
  border-top: 20px solid #666263;
}
.pc-nav.index {
  position: absolute;
  background: unset;
  box-shadow: unset;
}
.pc-nav.index .nav .menu li a {
  color: #fff;
}
.pc-nav.index .nav .menu li .menu-son a {
  color: #000;
}

.pc-nav .nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-nav .nav .logo {
  flex: 1;
}
.pc-nav .nav .logo img {
  /* max-width: 100%; */
}
.pc-nav .nav .login {
  margin: 0 0 0 25px;
  display: flex;
  align-items: center;
}
.pc-nav .nav .login span {
  color: #240f6c;
  margin: 0 10px;
}
.pc-nav .nav .login a {
  color: #240f6c;
}

.pc-nav .nav .menu {
  display: flex;
  align-items: center;
}
.pc-nav .nav .menu li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100px;
}

.pc-nav .nav .menu li a {
  display: block;
  padding: 0 30px;
  font-size: 18px;
  white-space: nowrap;
}

.pc-nav .nav .menu li .line {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 80%;
  height: 5px;
  background-color: #e20015;
}
.pc-nav .nav .menu li.cur .line {
  display: block;
}
.pc-nav .nav .menu .cur a {
  color: #000;
}
.pc-nav .nav .menu .menu-son {
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 100;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 160px;
  font-size: 14px;
  background: #fff;
  animation: fromBottomFade 0.6s ease both;
  -webkit-animation: fromBottomFade 0.6s ease both;
}

.pc-nav .nav .menu .menu-son a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #222;
  display: block;
  font-size: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid #ebebeb;
  line-height: 23px;
  text-align: center;
}

.pc-nav .nav .menu .menu-son a:hover {
  color: #240f6c;
  background: #f5f5f5;
}

.pc-nav .nav .menu li:hover .line {
  display: block;
}

.pc-nav .nav .menu li:hover .menu-son {
  display: block;
}

.iFixed {
  display: none;
  position: fixed;
  z-index: 999;
}
.iFixed .iFixed-box {
  position: fixed;
  right: 20px;
  bottom: 400px;
  width: 50px;
  height: 52px;
  background-color: #5251d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 内页导航 */
.sidenav {
  background-color: #fff;
  box-shadow: 0 6px 12px 10px rgba(235, 241, 248, 0.975);
  /* border-bottom: 1px solid #e9e9e9; */
}

.sidenav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 80px;
}
/* .sidenav .container .right{
  width: 800px;
  overflow-x: scroll;
} */

.sidenav .right ul {
  display: flex;
}

.sidenav .right ul li a {
  color: #666666;
  padding: 6px 15px;
}

.sidenav .right ul li.cur a {
  color: #191919;
  font-weight: bold;
}

/* 主体 */
.tit-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tit {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 1;
}
.en_tit {
  margin-top: 26px;
  font-size: 55px;
  text-transform: uppercase;
  color: #004ed6;
}
.en_tit span {
  color: #e20015;
}

.main .content {
  padding: 20px 40px;
  background-color: #fff;
}

.main .content .info {
  border-radius: 6px;
  margin-bottom: 20px;
}

.main .content .title {
  text-align: center;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 140%;
  margin-bottom: 10px;
}

.main .content .date {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
}
.main .content .date p {
  margin: 0 10px;
}

/* 首页banner */
.index-banner {
  margin: 120px 0 0;
}
.index-banner .swiper-pagination-bullet {
  background: #fff;
}
.index-banner .swiper-pagination-bullet-active {
  background: #FF5777;
}

/* 内页banner */
.inside-banner {
  margin: 120px 0 0;
}

.iProduct-box {
  padding: 100px 0 0;
  background: #f5f7f9;
}
.iProduct .j-tab-nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.iProduct .j-tab-nav li {
  flex: 0 0 16%;
}
.iProduct .j-tab-nav li:not(:nth-child(6n)) {
  margin-right: calc(4% / 5);
}
.iProduct .j-tab-nav li a {
  margin-left: 15px;
  margin-bottom: 15px;
  display: block;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
}
.iProduct .j-tab-nav li.current a {
  background: #e20015;
  color: #fff;
}
.iProduct .j-tab-con div {
  display: none;
  flex: 0 0 24%;
}
.iProduct .j-tab-con div:first-child {
  display: block;
}
.iProduct .j-tab-con div img {
  max-width: 100%;
}
.iProduct .j-tab-con ul {
  display: flex;
  flex-wrap: wrap;
}
.iProduct .j-tab-con ul li {
  flex: 0 0 24%;
}
.iProduct .j-tab-con ul li:not(:nth-child(4n)) {
  margin-right: calc(4% / 3);
}
.iProduct .j-tab-con li a {
  display: block;
  position: relative;
  background: #fff;
  padding: 30px 22px;
  margin-bottom: 40px;
  border: 3px solid #fff;
}
.iProduct .j-tab-con li a .pic {
  padding-bottom: 40px;
  border-bottom: 1px solid #e4e4e4;
}
.iProduct .j-tab-con li a p {
  position: relative;
  color: #333333;
  text-align: center;
  padding: 30px 0 20px;
}
.iProduct .j-tab-con li a p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 26px;
  height: 7px;
  border-radius: 6px;
  background: #545454;
}
.iProduct .j-tab-con li:hover a {
  border: 3px solid #e20015;
}
.iProduct .j-tab-con li:hover .pic {
  border-bottom: 1px solid #e20015;
}
.iProduct .j-tab-con li:hover a p {
  color: #e20015;
}
.iProduct .j-tab-con li:hover a p::after {
  background: #e20015;
}

.iAbout {
  padding: 55px 0 65px;
  background: url(../images/about.png) no-repeat bottom;
}
.iAbout .editor {
  margin-top: 55px;
  font-size: 18px;
}
.iAbout .list {
  display: flex;
  margin: 55px 0 45px;
}
.iAbout .list .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iAbout .list .item-title {
  position: relative;
  font-size: 66px;
  font-weight: bold;
  color: #004ed6;
  margin-bottom: 15px;
}
.iAbout .list .item-title p {
  position: absolute;
  right: -15px;
  bottom: 0px;
  font-size: 16px;
  font-weight: bold;
  color: #004ed6;
}
.iAbout .list .item:first-child .item-title,
.iAbout .list .item:first-child p {
  color: #e20015;
}
.iAbout .more {
  font-size: 16px;
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  border: 1px solid #666666;
  margin: 0 auto;
}
.iAbout .more:hover {
  color: #e20015;
  border: 1px solid #e20015;
}
.iLn {
  display: flex;
  align-items: center;
  height: 668px;
}
.iLn .left {
  flex: 0 1 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 188px 0 259px;
  box-sizing: border-box;
}
.iLn .left .mt,
.iLn .left .mt {
  margin-bottom: 44px;
}
.iLn .left .mt span,
.iLn .left .mt span {
  padding-bottom: 24px;
  border-bottom: 3px solid #fff;
}
.iLn .left .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.iLn .left .pic img {
  width: 100%;
  height: 100%;
  transition:all 0.6s ease 0s;
}
.iLn .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.iLn .right .item {
  flex: 0 0 50%;
  height: 334px;
}
.iLn .right .item .pic {
  overflow: hidden;
}
.iLn .right .item .pic,
.iLn .right .item .pic img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease 0s;
}
.iLn .right .item .pic:hover img,
.iLn .left .pic:hover img {
  transform: scale(1.1, 1.1);
}
.iLn .mt {
  font-size: 24px;
  color: #fff;
}
.iLn .mc {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.iLn .right .item:nth-child(1),
.iLn .right .item:nth-child(4) {
  background: #004ed6;
  padding: 0 47px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iLn .right .item:nth-child(1) .mt,
.iLn .right .item:nth-child(4) .mt {
  margin-bottom: 44px;
}
.iLn .right .item:nth-child(1) .mt span,
.iLn .right .item:nth-child(4) .mt span {
  padding-bottom: 24px;
  border-bottom: 3px solid #fff;
}

.iHyyy {
  display: none;
  padding: 70px 0 60px;
}
.iHyyy .detail {
  margin: 60px 0 0;
  display: flex;
  justify-content: space-between;
}
.iHyyy .detail a {
  flex: 0 0 19.28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
}
.iHyyy .detail p {
  margin: 48px 0 0;
  color: #fff;
  font-size: 34px;
}
.iHyyy .detail .icon {
  display: none;
}
.iHyyy .detail a:hover p {
  color: #004ed6;
}
.iHyyy .detail a:hover .icon {
  display: block;
}
.iHyyy .detail a:hover .icon1 {
  display: none;
}
.iHyyy .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.iHyyy .hover_bg {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-color: rgb(245, 245, 241, 0.8);
}
.iHyyy .detail a:hover .hover_bg {
  display: block;
}

.iNews {
  padding: 70px 0 60px;
  background: #f8f8f8;
}
.iNews .detail {
  margin: 60px 0 0;
}
.iNews .detail .more {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.iNews .detail .more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  font-size: 16px;
  border: 1px solid #000000;
  color: #000000;
}
.iNews .detail .more a:hover {
  background: #004ed6;
  border: 1px solid #004ed6;
  color: #fff;
}
.iNews .list {
  display: flex;
}
.iNews .item {
  flex: 0 0 31%;
  margin-right: calc(7% / 2);
  height: 306px;
  position: relative;
  padding-bottom: 44px;
}
.iNews .item:nth-child(3n) {
  margin-right: 0;
}
.iNews .item .title-box {
  padding: 40px 20px;
  border-radius: 10px;
  position: absolute;
  left: 44px;
  right: 44px;
  background: rgba(255, 255, 255, 0.875);
  bottom: 0px;
}
.iNews .item .title-box .title {
  font-size: 18px;
}
.iNews .item .title-box .date {
  font-size: 16px;
  margin: 20px 0 0;
  font-weight: bold;
}
.iNews .item:hover .title-box {
  background: rgba(24, 95, 217, 0.875);
}
.iNews .item:hover .title,
.iNews .item:hover .date {
  color: #fff;
}
.iMessage {
  background: #003ea9;
  padding: 65px 0;
}
.iMessage .title{
  font-size: 33px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.iMessage form{
  margin: 60px 0 0;
}
.iMessage form .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iMessage form .top .info{
  width: 330px;
  height: 70px;
}
.iMessage form .top .item{
  display: flex;
  align-items: center;
}
.iMessage form .top .name{
  font-size: 18px;
  color: #fff;
  margin: 0 20px 0 0;
}
.iMessage form .top .info input{
  font-size: 18px;
  width: 330px;
  height: 70px;
  padding-left: 36px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #125ad8;
  box-sizing: border-box;
}
.iMessage form .top .info input::placeholder{
  color: #5d98ff;
  font-size: 18px;
}
.iMessage form .textarea{
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iMessage form .textarea .item{
  display: flex;
  align-items: center;
}
.iMessage form .textarea .item .name{
  font-size: 18px;
  color: #fff;
  margin: 0 20px 0 0;
}
.iMessage form .textarea .item .info textarea{
  font-size: 18px;
  color: #fff;
  width: 820px;
  height: 140px;
  background: #125ad8;
  border-radius: 8px;
  padding: 23px 30px;
  box-sizing: border-box;
  border: unset;
}
.iMessage form .textarea .item .info textarea::placeholder{
  color: #5d98ff;
  font-size: 18px;
}
.iMessage form .textarea button{
  border: unset;
  width: 330px;
  height: 70px;
  background: #022461;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 内页 */
.inset {
  padding: 40px 0;
  background: #eceef0;
}
.article {
  border-radius: 6px;
  padding: 20px 25px;
}
.article .detail {
  display: flex;
  flex-wrap: wrap;
}
.article .detail li {
  flex: 0 0 24%;
  margin: 0 0 13px 0;
  background-color: #f6fbfe;
}
.article .detail li:not(:nth-child(4n)) {
  margin-right: calc(4% / 3);
}
.article .detail li a {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  font-size: 16px;
  overflow: hidden;
}
.article .detail li a span {
  margin: 0 25px 0 0;
  width: 13px;
  height: 13px;
  background-color: #c8def1;
  border-radius: 50%;
}
.article .detail li a .title {
  flex: 1 1 auto;
  margin: 10px 0 15px;
}
.article .detail li a .date {
  text-align: left;
  font-size: 14px;
}
.article .detail li a:hover span {
  background-color: #240f6c;
}
.article .detail li a:hover {
  color: #240f6c;
}
.article .detail li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.article .detail li:hover img {
  transform: scale(1.1, 1.1);
}

.pagecol {
}
.pagecol .fault{
  margin: 26px 0 0;
  border-radius: 20px;
}
.fault-warp .pic img{
  max-width: 100%;
}
.fault-warp .box{
  display: flex;
  margin: 70px 0 0;
}
.fault-warp .box .item{
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
.fault-warp .box .left .item{
  margin-right: 30px;
}
.fault-warp .box .left .item:nth-child(2n){
  margin-right: 0;
}
.fault-warp .box .name{
  font-size: 18px;
  color: #333333;
  width: 90px;
}
.fault-warp .box input{
  width: 320px;
  height: 70px;
  background: #f2f2f2;
  padding: 0 0 0 26px;
  border: 0;
  border-radius: 8px;
  box-sizing: border-box;
}
.fault-warp .box input::placeholder{
  color: #999999;
  font-size: 18px;
}
.fault-warp .box textarea{
  font-size: 18px;
  width: 320px;
  height: 180px;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 23px 30px;
  box-sizing: border-box;
  border: unset;
}
.fault-warp .box .left{
  display: flex;
  flex-wrap: wrap;
}
.fault-warp .submit{
  display: flex;
  justify-content: center;
  padding: 0 0 70px;
}
.fault-warp .submit button{
  border: unset;
  width: 330px;
  height: 70px;
  background: #0051d8;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 内页搜索 */
.picture .detail {
  display: flex;
  flex-wrap: wrap;
}
.picture .detail li {
  flex: 0 1 calc(97% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.picture .detail li:nth-child(4n) {
  margin-right: 0;
}
.picture .detail li .img-max {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 240px;
  overflow: hidden;
}
.picture .detail li .img-max img {
  height: 240px;
}
.picture .detail li p {
  text-align: center;
  padding: 20px 0;
}
.picture .detail li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.picture .detail li:hover img {
  transform: scale(1.1, 1.1);
}
.picture .show .image {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.picture .show .image img {
  max-width: 100%;
}
/* 产品 */
.product .detail {
  display: flex;
  flex-wrap: wrap;
}
.product .detail li {
  flex: 0 1 calc(97% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.product .detail li:nth-child(4n) {
  margin-right: 0;
}
.product .detail li .img-max {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 240px;
  overflow: hidden;
}
.product .detail li .img-max img {
  height: 240px;
}
.product .detail li p {
  text-align: center;
  padding: 20px 0;
}
.product .detail li:hover {
  transform: translateY(-2%);
  box-shadow: 1px 4px 10px 2px #ccc;
}
.product .detail li:hover img {
  transform: scale(1.1, 1.1);
}
.product .show .image {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.product .show .image img {
  max-width: 100%;
}

.video ul {
  display: flex;
  flex-wrap: wrap;
}
.video ul li {
  flex: 0 1 calc(96% / 4);
  border-radius: 3px;
  overflow: hidden;
  margin-right: 1%;
  margin-bottom: 20px;
}
.video ul li .img-full {
  border-radius: 12px;
  height: 190px;
  overflow: hidden;
}
.video ul li .title {
  margin: 10px 0;
  text-align: center;
}
.video ul li:nth-child(4n) {
  margin-right: 0;
}
.video ul li:hover img {
  transform: scale(1.1, 1.1);
}

.dsj-box {
  background: url("../images/pic9.png") no-repeat center;
  background-size: cover;
  padding: 40px 0;
}
.dsj-box .pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dsj-box .steps {
  margin: 40px 0 0;
}
.dsj-box .steps-item {
  display: flex;
  align-items: center;
  position: relative;
}
.dsj-box .steps-item .left,
.dsj-box .steps-item .right {
  flex: 1;
}
.dsj-box .steps-item .line {
  width: 1px;
  height: auto;
  background-color: #0231aa;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}
.dsj-box .steps-item .left .title {
  color: #fff;
  font-size: 28px;
  padding: 22px 20px;
  width: 340px;
  background-image: linear-gradient(
    to right,
    #240f6c,
    #51418a,
    #c3c0d6,
    #f4f6f7
  );
}
.dsj-box .steps-item .left .title:hover {
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    #1c57eb,
    #114ce0,
    #8f99b3,
    #909cb9
  );
  transition: all 0.6s ease 0s;
}
.dsj-box .steps-item .info {
  font-size: 18px;
  line-height: 34px;
  font-weight: bold;
  color: #393e4e;
}
.dsj-box .steps-item .left .info {
  margin: 0 20px 0 0;
}
.dsj-box .steps-item .right .info {
  margin: 0 0 0 20px;
}
.dsj-box .steps-item .left .title-box,
.dsj-box .steps-item .right .title-box {
  position: relative;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  width: 100%;
  border-bottom: 1px solid #0231aa;
  display: flex;
}
.dsj-box .steps-item .right .title-box {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.dsj-box .steps-item .left .title-box::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0231aa;
}
.dsj-box .steps-item .right .title-box::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0231aa;
}
.dsj-box .steps-item .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.dsj-box .steps-item .right .title {
  color: #fff;
  font-size: 28px;
  padding: 22px 20px;
  width: 340px;
  background-image: linear-gradient(
    to right,
    #f4f6f7,
    #c3c0d6,
    #51418a,
    #240f6c
  );
}
.dsj-box .steps-item .right .title:hover {
  cursor: pointer;
  background-image: linear-gradient(
    to right,
    #909cb9,
    #8f99b3,
    #114ce0,
    #1c57eb
  );
  transition: all 0.6s ease 0s;
}
.dsj-box .year {
  margin: 0 auto;
  margin-bottom: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #605fd8;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}
.dsj-box .year .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #240f6c;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 20px;
  border-radius: 50%;
}

.job {
  padding: 30px 0;
}
.job .job-title {
  font-size: 44px;
  margin: 0 0 40px 0;
}
.job .detail a {
  padding: 38px 48px;
  background-color: #f8f8f8;
  display: block;
  margin: 0 0 20px 0;
}
.job .detail .title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  padding: 0 0 22px 0;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
}
.job .detail .des {
  margin: 26px 0 0;
  font-size: 18px;
}
.job .detail .ask {
  margin: 14px 0 0;
  font-size: 18px;
}
.job .detail .des span,
.job .detail .ask span {
  font-weight: bold;
}

.orientation {
  margin: 20px 0 0;
}
.orientation span {
  text-transform: capitalize;
}

/* 底部 */
.footer {
  background: url("../images/footer-bg.png");
}

.footer-box {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 95px 0 75px;
  border-bottom: 1px solid #3a4352;
}
.footer-contact .title {
  display: flex;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid #364150;
}
.footer-contact .title p {
  font-size: 46px;
  text-transform: uppercase;
}
.footer-contact .title p:last-child {
  font-size: 24px;
  margin-left: 24px;
}
.footer-contact .detail {
  padding-top: 40px;
}
.footer-contact .detail p {
  margin-bottom: 20px;
}
.footer-contact .detail p:first-child span {
  font-size: 39px;
  font-weight: bold;
}
.footer-nav {
  margin-left: 160px;
  flex: 0 0 580px;
}
.footer-nav .nav {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav .nav li {
  margin: 0 70px 36px 0;
}
.footer-nav .nav li a {
  color: #fff;
}
.footer-wx {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}
.footer-wx img {
  width: 155px;
  height: 155px;
}
.footer-wx p {
  margin: 22px 0 0;
  width: 155px;
  text-align: center;
}

.footer-bottom {
  padding: 35px 0;
  color: #b4b4b4;
}

.footer-bottom .copyright {
  display: flex;
  justify-content: center;
  color: #8893b1;
}
.footer-bottom .copyright a {
  color: #8893b1;
}

.fixed-menu{position:fixed;right:0;top:50%;width:74px;z-index:500;-webkit-transform:translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
	.fixed-menu a{width:100%;height:67px;margin-bottom:1px;position:relative;display:block;text-align:center;transition: all 0.6s ease 0s;}
	.fixed-menu p{height:67px;line-height:67px;width:200px;color:#fff;font-size:23px;position:absolute;top:0;left:0;padding-left:60px;}
	.fixed-menu .phone p{background:#333 url(../images/icon1.png) no-repeat left center;font-size:20px;line-height:33.5px;}
	.fixed-menu .phone:hover p{left:-182px;background:#454e5b url(../images/icon1.png) no-repeat left center;font-size:20px;line-height:67px;}
	.fixed-menu .qq p{background:#333 url(../images/icon2.png) no-repeat left center;}
	.fixed-menu .qq:hover p{left:-182px;background:#454e5b url(../images/icon2.png) no-repeat left center;}
	.fixed-menu .email p{background:#333 url(../images/icon3.png) no-repeat left center;width: 220px;}
	.fixed-menu .email:hover p{left:-182px;background:#454e5b url(../images/icon3.png) no-repeat left center;}

	.fixed-menu .wx{background:#333 url(../images/icon4.png) no-repeat left center;}
	.fixed-menu .wx:hover{background:#454e5b url(../images/icon4.png) no-repeat left center;}

	.fixed-menu .wx img{position:absolute;top:0;left:-102px;width:100px;height:100px;opacity:0;}
	.fixed-menu .wx:hover img{opacity:1;}
	.fixed-menu .sj p{background:#333 url(../images/icon5.png) no-repeat left center;}
	.fixed-menu .sj:hover p{left:-182px;background:#454e5b url(../images/icon5.png) no-repeat left center;}
	.fixed-menu .top{background:#333 url(../images/top.png) no-repeat center;}
	.fixed-menu .top:hover{background:#454e5b url(../images/top.png) no-repeat center;}

.mypage {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.mypage .pagination {
  display: flex;
  justify-content: center;
}
.mypage li {
  display: inline-block;
  color: #333333;
  background: #eff1f4;
  border-radius: 5px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  padding: 0px 15px;
  margin: 0 5px;
}
.mypage li a {
  width: 100%;
  height: 100%;
  display: block;
}
.mypage li.active {
  background: #004ed6;
  color: #ffffff;
}
.mypage .rows {
  border: none;
}
