/*样式初始化及公共样式部分*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
  color: #111111;
}
*:focus {
  outline: none;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #111111;
}
a:hover {
  color: #1e50ae;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1360px;
  overflow-x: hidden;
  max-width: 1920px;
}
img,
a {
  display: block;
}
img {
  max-width: 100%;
}
.page {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.top-w {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.top-w * {
  color: #888;
  font-size: 13px;
}
.top-w a:hover {
  color: #1e50ae;
  text-decoration: underline;
}
.top-w .page {
  display: flex;
  line-height: 45px;
  white-space: nowrap;
}
.top-w .right {
  margin: 0 0 0 auto;
  display: flex;
}
.top-w .right ul {
  display: flex;
}
.top-w .right ul li {
  padding: 0 15px;
  border-left: 1px solid #eee;
  position: relative;
  display: flex;
  cursor: pointer;
}
.top-w .right ul li:last-child {
  padding-right: 0;
}
.top-w .right ul li p {
  font-size: 18px;
  font-weight: bold;
  color: #fc6902;
  font-family: Arial, Helvetica, sans-serif;
}
.top-w .right ul .wx i {
  font-size: 22px;
  margin-right: 5px;
}
.top-w .right ul .wx .pic {
  width: 150px;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  box-shadow: 0px 0px 5px #ccc;
  transition: all 0.3s linear;
}
.top-w .right ul .wx .pic img {
  width: 150px;
  border: 5px solid #fff;
}
.top-w .right ul .wx:hover .pic {
  height: 150px;
  transition: all 0.3s linear;
}
/* header */
.header {
  width: 100%;
}
.header .page {
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo .text {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #eee;
  line-height: 1.6;
}
.header .logo .text h2 {
  font-size: 28px;
  color: #333;
}
.header .logo .text h2 i {
  color: #1e50ae;
}
.header .logo .text span {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}
.header .logo .text span i {
  color: #fc6902;
}
.header .rg .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.header .rg .sear-w input {
  width: 260px;
  height: 45px;
  padding: 0 20px ;
  border: 1px solid #e8e8e8;
}
.header .rg .sear-w input:focus {
  outline: none;
}
.header .rg .sear-w button {
  width: 80px;
  height: 45px;
  color: #fff;
  background: #1e50ae;
  border: none;
  cursor: pointer;
  transition: all 0.1s linear;
}
.header .rg .sear-w button:hover {
  background: #fc6902;
  transition: all 0.1s linear;
}
/* nav */
.nav {
  background-color: #1e50ae;
  position: sticky;
  top: 0;
  z-index: 1111;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.nav-list {
  display: flex;
  position: relative;
}
.nav-list > li {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 3px;
}
.nav-list > li:last-child {
  margin-right: 0;
}
.nav-list > li > a {
  width: 100%;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  position: relative;
  color: #fff;
}
.nav-list > li .erji2 {
  width: 300px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.nav-list > li .erji2 > li {
  padding: 0 15px;
  line-height: 40px;
}
.nav-list > li .erji2 > li * {
  color: #333;
  font-size: 15px;
}
.nav-list > li .erji2 > li a {
  position: relative;
}
.nav-list > li .erji2 > li i {
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
}
.nav-list > li .erji2 > li:hover {
  background-color: #1e50ae;
}
.nav-list > li .erji2 > li:hover > a {
  color: #fff;
}
.nav-list > li .erji2 > li:hover i {
  color: #fff;
}
.nav-list > li .erji2 > li:hover .sanji {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s linear;
}
.nav-list > li .erji2 .sanji {
  width: 300px;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #f7f7f7;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.2s;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 .sanji li {
  padding: 0 15px;
}
.nav-list > li .erji2 .sanji li:hover a {
  color: #1e50ae;
  font-weight: bold;
}
.nav-list > li:hover {
  background-color: #fc6902;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s linear;
}
.nav-list .active {
  background-color: #fc6902;
}
/* 幻灯片 */
.banner-box {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.banner-box .banner-btn a {
  width: 49px;
  height: 104px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  z-index: 99;
}
.banner-box .banner-btn a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.banner-box .banner-btn .prev {
  left: -50px;
  background: url(../images/banner-h.png) no-repeat 0 0;
}
.banner-box .banner-btn .next {
  right: -50px;
  background: url(../images/banner-h.png) no-repeat -49px 0;
}
.banner-box:hover .prev {
  left: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
.banner-box:hover .next {
  right: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt p {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  color: #666666;
}
.pro-w {
  padding: 70px 0 30px;
}
.pro-w .tit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 45px;
}
.pro-w .tit h3 {
  font-size: 26px;
  padding-left: 18px;
  border-left: 4px solid #1e50ae;
  line-height: 1;
  color: #333;
}
.pro-w .tit h3 i {
  font-size: 16px;
  color: #999;
  font-weight: normal;
}
.pro-w .tit .pro-tabs li {
  width: auto !important;
  white-space: nowrap;
  line-height: 2;
  padding: 0 25px;
  position: relative;
}
.pro-w .tit .pro-tabs li::after {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #999;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pro-w .tit .pro-tabs li:last-child::after {
  display: none;
}
.pro-w .tit .pro-tabs li a {
  color: #333;
}
.pro-w .tit .pro-tabs .swiper-slide-thumb-active a {
  color: #1e50ae;
  border-bottom: 1px solid #1e50ae;
}
.pro-w .con-box {
  margin-top: 35px;
}
.pro-w .con-box ul {
  display: flex;
  flex-wrap: wrap;
}
.pro-w .con-box ul li {
  width: 18.4%;
  margin-right: 2%;
  margin-bottom: 2%;
  background-color: #fff;
}
.pro-w .con-box ul li:nth-child(5n) {
  margin-right: 0;
}
.pro-w .con-box ul li .pic {
  border: 1px solid #ccc;
  overflow: hidden;
}
.pro-w .con-box ul li .pic img {
  transition: all 0.3s linear;
}
.pro-w .con-box ul li p {
  margin: 15px 0 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-w .con-box ul li span {
  display: flex;
  justify-content: center;
}
.pro-w .con-box ul li span em {
  text-transform: uppercase;
  color: #fc6902;
  line-height: 20px;
  padding-left: 30px;
  background: url(../images/pdf.png) no-repeat left center;
  background-size: 20px;
}
.pro-w .con-box ul li:hover .pic img {
  transform: scale(1.2);
  transition: all 0.3s linear;
}
.pro-w .con-box ul li:hover p {
  color: #1e50ae;
}
.hotline-w {
  background: url(../images/bg.jpg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotline-w i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url(../images/phone-ico.png) no-repeat center;
  background-color: #1e50ae;
  margin-right: 25px;
}
.hotline-w p {
  font-size: 18px;
  font-weight: lighter;
  margin-top: 5px;
}
.hotline-w em {
  font-size: 55px;
  font-family: Arial, Helvetica, sans-serif;
}
.char-w {
  padding-top: 80px;
  background: url(../images/cahr-bg.jpg) no-repeat top center;
}
.char-w .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.char-w .tit .lf p {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 5px;
}
.char-w .tit .lf ul {
  display: flex;
  margin-top: 30px;
}
.char-w .tit .lf ul li {
  margin-right: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 30px;
  font-size: 17px;
  border-radius: 8px;
}
.char-w .tit .rg {
  width: 25%;
  border: 1px solid #ddd;
  padding: 30px 30px 25px;
}
.char-w .tit .rg img {
  margin: 5px auto;
}
.char-w .tit .rg p {
  margin-top: 15px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  font-weight: 300;
}
.char-w .con {
  background-color: #fff;
  margin-top: 60px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  padding: 60px;
}
.char-w .con ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.char-w .con ul li {
  width: 32%;
  margin-bottom: 30px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  padding: 38px 30px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.char-w .con ul li:nth-child(n+4) {
  margin-bottom: 0;
}
.char-w .con ul li h4 {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: normal;
}
.char-w .con ul li h4 i {
  width: 52px;
  height: 60px;
  background-color: #1e50ae;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  margin-right: 20px;
  clip-path: polygon(50% 0, 100% 15px, 100% 45px, 50% 100%, 0 45px, 0 15px);
  transition: all 0.5s linear;
}
.char-w .con ul li p {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  line-height: 30px;
}
.char-w .con ul li span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #1e50ae;
}
.char-w .con ul li:hover {
  background-color: #1e50ae;
  transition: all 0.3s linear;
}
.char-w .con ul li:hover h4 {
  color: #fff;
}
.char-w .con ul li:hover h4 i {
  background-color: #fc6902;
  transform: rotateY(360deg);
  transition: all 0.5s linear;
}
.char-w .con ul li:hover p {
  color: #fff;
}
.char-w .con ul li:hover span {
  background-color: #fc6902;
}
.app-w {
  padding: 60px 0;
}
.app-w ul {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}
.app-w ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  position: relative;
}
.app-w ul li:nth-child(3n) {
  margin-right: 0;
}
.app-w ul li .text {
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s linear;
}
.app-w ul li .text p {
  color: #fff;
  line-height: 50px;
  font-size: 18px;
}
.app-w ul li .text i {
  width: 20px;
  height: 2px;
  background-color: #fc6902;
}
.app-w ul li .text span {
  font-size: 14px;
  color: #fff;
  width: 80%;
  line-height: 2;
  margin-top: 10px;
}
.app-w ul li:hover .text {
  height: 100%;
  justify-content: center;
  transition: all 0.3s linear;
}
.process-w {
  background-color: #f7f7f7;
  padding: 90px 0;
}
.process-w .page {
  display: flex;
  justify-content: space-between;
}
.process-w .page .tit {
  width: 300px;
}
.process-w .page .tit h2 {
  line-height: 50px;
  font-size: 40px;
}
.process-w .page .tit p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 28px;
  height: 50px;
  opacity: 0.8;
  margin-top: 10px;
}
.process-w .page .tit span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.3;
  margin-top: 15px;
  line-height: 18px;
}
.process-w .page ul {
  width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-w .page ul li i {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  color: #999;
  font-size: 50px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.process-w .page ul li i:hover {
  background-color: #1e50ae;
  color: #fff;
  transition: all 0.5s linear;
}
.process-w .page ul li p {
  text-align: center;
  color: #999;
  margin-top: 12px;
}
.intr-w {
  padding: 80px 0 0px;
}
.intr-w .page {
  display: flex;
  align-items: flex-end;
}
.intr-w .con {
  flex: 1;
  margin-right: 50px;
}
.intr-w .con h3 {
  font-size: 52px;
  font-family: Arial black;
  font-style: italic;
  color: #1e50ae;
  opacity: 0.8;
}
.intr-w .con h1 {
  font-size: 30px;
  color: #333;
}
.intr-w .con .text {
  font-size: 15px;
  color: #666;
  line-height: 35px;
  margin-top: 20px;
  text-indent: 30px;
  white-space: pre-wrap;
}
.intr-w .con .more {
  width: 162px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-top: 25px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s linear;
}
.intr-w .con .more:hover {
  background-color: #1e50ae;
  color: #fff;
  transition: all 0.3s linear;
}
.intr-w .pic {
  width: 630px;
}
.equ-w {
  padding: 50px 0 70px;
  background: url(../images/equ-bg.jpg) no-repeat center bottom;
}
.equ-w .box {
  position: relative;
}
.equ-w .box .equ-con {
  position: relative;
}
.equ-w .box .equ-con .tempWrap {
  margin: 0 auto;
}
.equ-w .box .equ-con li {
  width: 300px;
  margin-right: 25px;
}
.equ-w .box .equ-con li .pic {
  overflow: hidden;
}
.equ-w .box .equ-con li p {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
  line-height: 40px;
  font-size: 14px;
  background-color: #e2e0e0;
}
.equ-w .box .equ-con li img {
  transition: all 0.2s linear;
}
.equ-w .box .equ-con li:hover img {
  transform: scale(1.1);
  transition: all 0.2s linear;
}
/* 新闻 */
.news-w {
  padding: 68px 0;
  background: url(../images/news-bg.jpg) no-repeat 0px center;
}
.news-w .title {
  padding-left: 40px;
  margin-left: -40px;
  background: url(../images/news-tit.png) no-repeat 0px 2px;
}
.news-w .title p {
  font-size: 28px;
}
.news-w .title p i {
  font-weight: bold;
}
.news-w .title span {
  font-size: 13px;
  color: #333;
}
.news-w .news-con {
  margin-top: 25px !important;
}
.news-w .news-con .n-top {
  display: flex;
}
.news-w .news-con .n-top .pic {
  width: 760px;
  height: 286px;
  margin-right: 10px;
}
.news-w .news-con .n-top .pic img {
  width: 100%;
  object-fit: cover;
}
.news-w .news-con .n-top ul {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-w .news-con .n-top ul li {
  flex: 1;
  background-color: #f3f3f3;
  margin-bottom: 2px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-top ul li:last-child {
  margin-bottom: 0;
}
.news-w .news-con .n-top ul li a {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 40px;
  font-size: 16px;
  position: relative;
}
.news-w .news-con .n-top ul li a::before {
  content: '';
  width: 0;
  height: 0;
  border: 4px solid;
  border-color: transparent transparent transparent #111;
  position: absolute;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.news-w .news-con .n-top ul li:hover {
  background-color: #1e50ae;
  transition: all 0.2s linear;
}
.news-w .news-con .n-top ul li:hover a p {
  color: #fff;
}
.news-w .news-con .n-top ul li:hover a::before {
  border-color: transparent transparent transparent #fff;
}
.news-w .news-con .n-btm {
  margin-top: 35px;
  display: flex;
}
.news-w .news-con .n-btm li {
  width: 450px;
  height: 185px;
  margin-right: 40px;
  background-color: #f3f3f3;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:last-child {
  margin-right: 0;
}
.news-w .news-con .n-btm li a {
  height: 100%;
  display: flex;
  padding: 30px 24px 0;
}
.news-w .news-con .n-btm li .date {
  width: 75px;
  margin-right: 25px;
  position: relative;
  font-family: "Microsoft YaHei";
}
.news-w .news-con .n-btm li .date i {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .date em {
  font-size: 24px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .date::after {
  content: '';
  width: 47px;
  height: 47px;
  background: url(../images/dot-lan.png);
  position: absolute;
  left: 3px;
  top: 70px;
  opacity: 0.6;
}
.news-w .news-con .n-btm li .row {
  flex: 1;
  position: relative;
}
.news-w .news-con .n-btm li .row p {
  font-size: 18px;
  font-weight: bold;
}
.news-w .news-con .n-btm li .row span {
  display: block;
  font-size: 13px;
  line-height: 22px;
  margin-top: 13px;
}
.news-w .news-con .n-btm li .row::before {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: 0;
  top: 120px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li .row::after {
  content: '';
  width: 4px;
  height: 4px;
  border: solid #111;
  border-width: 1px 1px 0 0;
  position: absolute;
  left: 20px;
  top: 118px;
  transform: rotate(45deg);
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover {
  background-color: #1e50ae;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover * {
  color: #fff;
}
.news-w .news-con .n-btm li:hover .date::after {
  background: url(../images/dot-bai.png);
}
.news-w .news-con .n-btm li:hover .row::before {
  background-color: #fff;
  width: 40px;
  transition: all 0.2s linear;
}
.news-w .news-con .n-btm li:hover .row::after {
  border-color: #fff;
  left: 35px;
  transition: all 0.2s linear;
}
.links {
  width: 100%;
  background-color: #1e50ae;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .text {
  display: flex;
  height: 80px;
  align-items: center;
}
.links .text p {
  font-size: 18px;
}
.links .text p i {
  font-size: 22px;
}
.links .text ul {
  display: flex;
}
.links .text ul li {
  margin-right: 15px;
}
.links .text ul li a {
  font-size: 16px;
}
.links .text a {
  font-size: 14px;
  margin: 0 0 0 auto;
}
.footer {
  background-color: #222222;
}
.footer * {
  color: #909090;
  font-size: 14px;
}
.footer a:hover {
  color: #fff;
}
.footer .f-con {
  padding: 60px 0 50px;
  display: flex;
  justify-content: space-between;
}
.footer .f-con .f-nav {
  width: 50%;
  display: flex;
}
.footer .f-con .f-nav ul {
  flex: 1;
}
.footer .f-con .f-nav ul h5 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  padding-bottom: 18px;
  margin-bottom: 22px;
  position: relative;
}
.footer .f-con .f-nav ul h5::after {
  content: '';
  width: 18px;
  height: 2px;
  background-color: #1e50ae;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.footer .f-con .f-nav ul li {
  line-height: 32px;
}
.footer .f-con .f-nav ul:hover h5::after {
  width: 60px;
  transition: all 0.3s linear;
}
.footer .f-con .f-info {
  width: 50%;
  padding-left: 1.815%;
}
.footer .f-con .f-info .top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .f-con .f-info .top span {
  font-size: 40px;
  color: #1e50ae;
  font-weight: bold;
}
.footer .f-con .f-info .btm {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 1%;
}
.footer .f-con .f-info .btm li {
  line-height: 20px;
  margin-bottom: 16px;
  display: flex;
  white-space: nowrap;
}
.footer .f-con .f-info .btm li i {
  margin-right: 10px;
  color: #1e50ae;
  font-size: 20px;
}
.footer .f-con .f-info .btm li .qq {
  margin-right: 30px;
}
.footer .f-con .f-info .btm li .dz {
  white-space: normal;
}
.footer .f-con .f-info .btm .weix-pic {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
.footer .f-con .f-info .btm .weix-pic p {
  width: 1rem;
  margin-right: 5px;
}
.footer .f-con .f-info .btm .weix-pic p em {
  display: block;
  transform: rotate(90deg);
}
.footer .f-con .f-info .btm .weix-pic img {
  width: 100px;
}
.copy {
  width: 100%;
  line-height: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copy a {
  display: inline;
}
.copy a:hover {
  text-decoration: underline;
}
.copy .page {
  display: flex;
  justify-content: space-between;
}
