/* 头部 */
.header {
  padding: 2px 0 12px 0;
  box-sizing: border-box;
  background-color: #fff;
}

.header-box {
  display: flex;
  align-items: center;
}

.header-box .left img {
  display: block;
}

.header-box .center {
  display: flex;
  align-items: center;
}

.header-box .center .title h1 {
  font-size: 29px;
  color: #fa0000;
}

.header-box .center .title span {
  display: block;
  font-size: 19px;
  color: #fa0000;
  margin-top: 10px;
}

.header-box .center .phone {
  margin-left: 112px;
}

.header-box .center .phone .phone-top,
.header-box .center .phone .phone-bottom {
  display: flex;
  align-items: center;
}

.header-box .center .phone .phone-top img,
.header-box .center .phone .phone-bottom img {
  display: block;
}

.header-box .center .phone .phone-top span,
.header-box .center .phone .phone-bottom span {
  font-size: 16px;
  color: #000000;
  margin-left: 14px;
}

.header-box .center .phone .phone-bottom {
  margin-top: 16px;
}

.header-box .right {
  display: flex;
  align-items: center;
  margin-left: 128px;
}

.header-box .right .qr-code img {
  display: block;
  margin-right: 10px;
}

.header-box .right span {
  width: 15px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #fa0000;
}

/* 导航栏 */
.nav {
  height: 45px;
  background-color: #fa0000;
}

.nav ul {
  height: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul li a {
  text-align: center;
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  color: #ffffff;
  padding: 0 12px 0 12px;
  box-sizing: border-box;
}

.nav ul li a:hover {
  background-color: #ffffff;
  color: #fa0000;
  transition: .3s;
}

/* 搜索 */
.search {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.search .left {
  display: flex;
  padding: 19px 86px 21px 21px;
  width: 80%;
  background-color: #f0f0f0;
  border-radius: 12px;
  box-sizing: border-box;
}

.search .left p a::after {
  content: "等";
}

.search .dashed {
  height: 35px;
  border-right: 1px dashed #d3d3d3;
}

.search .left span:first-child {
  width: 80px;
  font-size: 16px;
  color: #454545;
}

.search .left span:last-child {
  font-size: 16px;
  color: #828282;
}

.search .left p {
  font-size: 16px;
  color: #828282;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search .right {
  padding: 10px 12px 10px 7px;
  width: 20%;
  box-sizing: border-box;
  background-color: #f0f0f0;
  border-radius: 12px;
}

.search .right .input {
  position: relative;
}

.search .right .input .input-value {
  width: 100%;
  padding: 10px 40px 10px 14px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #c7c7c7;
}

.search span {
  margin: 0 5px 0 0;
}

.search a {
  color: #454545;
}

input::-webkit-input-placeholder {
  color:#c7c7c7;
}
input::-moz-placeholder {   /* Mozilla Firefox 19+ */
  color:#c7c7c7;
}
input:-moz-placeholder {    /* Mozilla Firefox 4 to 18 */
  color:#c7c7c7;
}
input:-ms-input-placeholder {  /* Internet Explorer 10-11 */ 
  color:#c7c7c7;
}

.search .right .input .submit {
  width: 40px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/search-icon.png");
  background-repeat: no-repeat;
  background-position: 10px 9px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
}

/* 选择松辉的四大理由 */
.choose {
  margin-top: 21px;
  background-image: url("../images/choose-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 25px 0 37px 0;
  box-sizing: border-box;
}

.choose .choose-top ul {
  width: 100%;
  display: flex;
}

.choose .choose-top ul li {
  position: relative;
  margin-left: 15px;
}

.choose .choose-top ul li:hover .bg-top img {
  transform: scale(1.03);
  transition: .6s;
}

.choose .choose-top ul li:nth-child(3n-2) {
  margin-left: 0;
}

.choose .choose-top ul li .bg-top {
  width: 390px;
  height: 285px;
  overflow: hidden;
}

.choose .choose-top ul li .bg-top img {
  display: block;
  width: 100%;
  transition: .6s;
}

.choose .choose-top ul li span {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 0;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 0 14px 0;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #fa00009d;
}

.choose .choose-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-top: 26px;
}

.choose-bottom {
  margin-top: 60px;
}

/* big-title */
.big-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.big-title .title {
  position: absolute;
  left: 51%;
  transform: translate(-51%, 0);
  bottom: 26px;
  display: flex;
}

.big-title .title h2:first-child {
  font-size: 48px;
  color: #000000;
}

.big-title .title h2:last-child {
  font-size: 48px;
  color: #ff0000;
}

.big-title img {
  display: block;
}

.choose-bottom ul {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

.choose-bottom ul li {
  width: calc(100% - 205px * 5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choose-bottom ul li:nth-child(4n-3) {
  margin-left: 0;
}

.choose-bottom ul li .nums {
  display: flex;
}

.choose-bottom ul li .nums span {
  font-size: 60px;
  color: #ff0000;
  font-weight: bold;
}

.choose-bottom ul li .choose-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background-color: #ff0000;
  margin-top: 20px;
}

.choose-bottom ul li .choose-icon img {
  display: block;
}

.choose-bottom ul li h3 {
  font-size: 28px;
  color: #000000;
  margin-top: 34px;
}

.choose-bottom ul li .one {
  font-size: 20px;
  color: #000000;
  margin-top: 39px;
}

.choose-bottom ul li .two {
  font-size: 20px;
  color: #000000;
  margin-top: 26px;
}

.choose-bottom ul li .three {
  font-size: 20px;
  color: #000000;
  margin-top: 26px;
}

.choose-bottom ul li .one i {
  font-style: normal;
  color: #000000;
  font-weight: bold;
}

.choose-bottom ul li .three i {
  font-style: normal;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}

/* 产品展示 */
.product {
  margin-top: 32px;
}

.product-box {
  margin-top: 10px;
  display: flex;
}

.product-box .product-left {
  width: 270px;
  height: 100%;
  border: 1px solid #dddddd;
}

.product-box .product-left .top {
  background-image: url("../images/product-show-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 25px 0 44px 0;
  box-sizing: border-box;
}

.product-box .product-left .top > span {
  display: block;
  font-size: 14px;
  color: #ff7a7a;
  text-align: center;
  margin-top: 10px;
}

.product-box .product-left .top .cp-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-box .product-left .top .cp-title img {
  display: block;
}

.product-box .product-left .top .cp-title h3 {
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
}

.product-box .product-nav li {
  margin: 10px 2px 0 2px;
}

.product-box .product-nav li a {
  display: block;
  height: 40px;
  background-color: #e5e5e5;
  border: 1px solid #dadada;
  transition: .3s;
}

.product-box .product-nav li:first-child {
  margin-top: 0;
}

.product-box .product-nav li a .links {
  height: 40px;
  display: flex;
  align-items: center;
}

.product-box .product-nav li a .links .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 30px;
  border: 1px solid #ffffff;
  transition: .3s;
}

.product-box .product-nav li a .links .circle > span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff0000;
}

.product-box .product-nav li a .links .word-text {
  display: block;
  margin-left: 20px;
  font-size: 16px;
  color: #000000;
  transition: .3s;
}

.product-box .product-nav li a:hover {
  background-color: #ff0000;
  transition: .3s;
}

.product-box .product-nav li a:hover .circle {
  border: 1px solid #666666;
  transition: .3s;
}

.product-box .product-nav li a:hover .word-text {
  color: #ffffff;
  transition: .3s;
}

.product-box .product-nav li a.active {
  background-color: #ff0000;
}

.product-box .product-nav li a.active .circle {
  border: 1px solid #666666;
}

.product-box .product-nav li a.active .word-text {
  color: #ffffff;
}

.product-box .btn {
  display: flex;
  justify-content: center;
  margin-top: 17px;
}

.product-box .btn a:nth-child(1) {
  padding: 14px 30px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 14px;
  background-color: #007bc2;
}

.product-box .btn a:nth-child(2) {
  padding: 14px 30px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 14px;
  background-color: #ff0000;
  margin-left: 6px;
}

.product-box .bottom {
  padding: 36px 0 45px 0;
  box-sizing: border-box;
  background-image: url("../images/contact-us-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 10px 3px 10px 3px;
}

.product-box .bottom span:nth-child(1) {
  display: block;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

.product-box .bottom span:nth-child(2) {
  display: block;
  font-size: 26px;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.product-box .product-right {
  width: 895px;
  margin-left: 32px;
}

.product-box .product-right .item {
  width: 100%;
}

.product-box .product-right .item .list-top {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 40px;
  background-color: #bfbfbf;
  position: relative;
  padding-right: 18px;
  box-sizing: border-box;
}

.product-box .product-right .item .list-top i {
  content: "";
  display: block;
  font-style: normal;
  background-image: url("../images/trapezoid-gray.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 135px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 0;
  left: 10px;
}

.product-box .product-right .item .list-top span {
  display: block;
  background-image: url("../images/trapezoid-red.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  line-height: 40px;
  padding: 0 42px 0 28px;
  box-sizing: border-box;
  color: #ffffff;
  z-index: 200;
  position: absolute;
  left: 0;
}

.product-box .product-right .item .list-top a {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #999999;
  transition: .3s;
}

.product-box .product-right .item .list-top a:hover {
  color: #ffffff;
  transition: .3s;
}

.product-right .item .list-bottom {
  margin-top: 22px;
}

.product-right .item .list-bottom ul {
  display: flex;
  flex-wrap: wrap;
}

.product-right .item .list-bottom ul li a {
  display: block;
  width: 283px;
  position: relative;
}

.product-right .item .list-bottom ul li a:hover img {
  transform: scale(1.03);
  transition: .6s;
}

.product-right .item .list-bottom ul li a::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ff0000;
  bottom: 0;
}

.product-right .item .list-bottom ul li {
  margin-left: 22px;
  margin-top: 22px;
}

.product-right .item .list-bottom ul li:nth-child(3n-2) {
  margin-left: 0;
}

.product-right .item .list-bottom ul li:nth-child(-n+3) {
  margin-top: 0;
}

.product-right .item .list-bottom ul li:nth-child(n+7) {
  margin-top: 40px;
}

.product-right .item .list-bottom ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-right .item .list-bottom ul li a .svg {
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.product-right .item .list-bottom ul li a .svg img {
  display: block;
  width: 100%;
  transition: .6s;
}

.product-right .item .list-bottom ul li a span {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #5c5c5c;
  padding: 16px 0 16px 0;
  box-sizing: border-box;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.product-right .item .list-bottom ul li a span i {
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 20px;
  border: 2px solid #afafaf;
  border-radius: 50%;
  font-style: normal;
  font-weight: bold;
  color: #afafaf;
  margin-left: 8px;
}

/* small-title */
.small-title .small-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small-title .small-box .left {
  width: 340px;
  height: 1px;
  background-color: #dddddd;
  position: relative;
}

.small-title .small-box .left::after {
  position: absolute;
  right: 0;
  display: block;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #406170;
}

.small-title .small-box .center {
  position: relative;
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.small-title .small-box .center img {
  display: block;
}

.small-title .small-box .center .title-bottom {
  position: absolute;
  top: 2px;
  display: flex;
}

.small-title .small-box .center .title-bottom h2:nth-child(1) {
  font-size: 30px;
  color: #ff0000;
}

.small-title .small-box .center .title-bottom h2:nth-child(2) {
  font-size: 30px;
  color: #000000;
}

.small-title .small-box .right {
  width: 340px;
  height: 1px;
  background-color: #dddddd;
  position: relative;
}

.small-title .small-box .right::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #406170;
}

.small-title > p {
  text-align: center;
  margin-top: 14px;
  margin-bottom: 7px;
  font-size: 14px;
  color: #5b5b5b;
}

.small-title .arrow {
  display: block;
  margin: 0 auto;
}

/* 宿迁松辉金属制品有限公司 */
.metal {
  margin-top: 25px;
}

.metal img {
  display: block;
  width: 100%;
}

/* 定制流程 */
.process {
  margin-top: 63px;
}

.process .process-box {
  display: flex;
}

.process .process-box .process-left img {
  display: block;
  width: 100%;
}

.process .process-box .process-right {
  width: 650px;
  margin-top: 24px;
}

.process .process-box .process-right ul li {
  display: flex;
  align-items: center;
}

.process .process-box .process-right ul li .process-content {
  margin-left: 8px;
  margin-top: 33px;
}

.process .process-box .process-right ul li .process-content h3 {
  font-size: 18px;
  color: #ff0000;
}

.process .process-box .process-right ul li .process-content p {
  font-size: 16px;
  color: #000000;
  line-height: 2;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.process .process-box .process-right ul li .serial {
  padding: 8px 2px 10px 10px;
  box-sizing: border-box;
  background-color: #ff0000;
  border-radius: 50%;
  margin-top: 30px;
}

.process .process-box .process-right ul li:nth-child(1) .serial {
  margin-top: 0;
}

.process .process-box .process-right ul li .serial span {
  font-size: 28px;
  color: #ffffff;
  font-weight: bold;
}

/* 应用范围 */
.applied-range {
  padding: 42px 0 26px 0;
  box-sizing: border-box;
  background-image: url("../images/scope-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  margin-top: 8px;
}

.applied-range .applied-nav {
  display: flex;
  margin-top: 32px;
}

.applied-range .applied-nav a li {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.applied-range .applied-nav a {
  display: block;
  width: 235px;
  height: 144px;
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
  margin-left: 5px;
}

.applied-range .applied-nav a:first-child {
  margin-left: 0;
}

.applied-range .applied-nav a li span {
  display: block;
  font-size: 24px;
  color: #000000;
  margin-top: 20px;
}

.applied-range .applied-nav a.on {
  background-color: #ff0000;
}

.applied-range .applied-nav a li span.color {
  color: #ffffff;
}

.applied-range .applied-nav a li .hide {
  vertical-align: middle;
  display: none;
}

.applied-range .applied-nav a li .show {
  vertical-align: middle;
}

.applied-range .applied-list {
  margin-top: 30px;
}

.applied-range .applied-list li {
  display: none;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.applied-range .applied-list li img {
  display: block;
  width: 100%;
  height: auto;
}

/* 合作伙伴 */
.partner {
  background-image: url("../images/partner-map-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 -100px;
  padding-top: 28px;
  box-sizing: border-box;
}

.partner .partner-box .partner-top {
  display: flex;
  margin-top: 46px;
}

.partner .partner-box .partner-top .partner-left {
  width: 355px;
  height: 100%;
}

.partner .partner-box .partner-top .partner-left span {
  display: block;
  width: 355px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  background-color: #ff0000;
}

.partner .partner-box .partner-top .partner-left img {
  display: block;
  width: 100%;
  height: 100%;
}

.partner .partner-box .partner-top .partner-right {
  margin-left: 30px;
}

.partner .partner-box .partner-top .partner-right p {
  font-size: 20px;
  color: #000000;
  line-height: 2;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.partner .partner-box .partner-top .partner-right h3 {
  font-size: 48px;
  color: #ff0000;
  margin-top: 14px;
  margin-left: 136px;
}

.partner .partner-box .partner-top .partner-right h3 i {
  font-style: normal;
  color: #000000;
}

.partner .partner-box .partner-top .partner-right span {
  display: block;
  font-size: 32px;
  color: #000000;
  margin-left: 16px;
  margin-top: 35px;
}

.partner .partner-box .partner-top .partner-right span i {
  font-style: normal;
  color: #ff0000;
  font-weight: bold;
}

.partner .partner-box .partner-bottom ul {
  display: flex;
  flex-wrap: wrap;
}

.partner .partner-box .partner-bottom ul li {
  margin-top: 20px;
  margin-left: 14px;
  width: 186px;
  height: 119px;
  overflow: hidden;
  border: 1px solid #b8b8b8;
}

.partner .partner-box .partner-bottom ul li:nth-child(6n-5) {
  margin-left: 0;
}

.partner .partner-box .partner-bottom ul li a img {
  display: block;
}

.partner-bottom {
  display: none;
}

/* 关于我们 */
.about-us {
  margin-top: 28px;
}

.about-box {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 50px;
}

.about-box .about-left .about-bg {
  width: 595px;
  position: absolute;
  top: -20px;
  left: 0;
}

.about-box .about-left .about-bg img {
  display: block;
  width: 100%;
  z-index: 10;
}

.about-box .about-right {
  width: 678px;
}

.about-box .about-right p {
  font-size: 14px;
  color: #000000;
  line-height: 2.6;
  text-indent: 2rem;
  margin: 5px 0 0 115px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}

.about-box .about-right p:first-child {
  margin-top: 0;
}

.about-box .about-right .about-detail {
  padding: 30px 42px 30px 100px;
  box-sizing: border-box;
  background-color: #ff0000;
  margin-top: 30px;
}

.about-box .about-right .about-detail .detail-box {
  display: flex;
}

.about-box .about-right .about-detail .detail-box span:nth-child(1) {
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
}

.about-box .about-right .about-detail .detail-box span:nth-child(2) {
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
  margin-left: 32px;
}

.about-box .about-right .about-detail .detail-box a {
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50px;
  margin-top: 2px;
  margin-left: 69px;
}

/* 新闻资讯 */
.news {
  background-image: url("../images/news-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 30px;
  padding: 34px 0 48px 0;
  box-sizing: border-box;
}

.news .news-box {
  display: flex;
  margin-top: 30px;
}

.news-box .news-left ul {
  margin-top: 28px;
}

.news-box .news-left ul li a {
  display: block;
  margin: 0 6px 0 6px;
  padding: 16px 0;
  box-sizing: border-box;
  border-top: 1px dashed #204b88;
}

.news-box .news-left ul li:first-child a {
  padding-top: 0;
  border-top: none;
}

.news-box .news-left ul li a .news-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-box .news-left ul li a .news-links span:nth-child(1) {
  display: block;
  font-size: 18px;
  color: #131313;
  width: 324px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-box .news-left ul li a .news-links span:nth-child(2) {
  display: block;
  font-size: 16px;
  color: #131313;
  margin-right: 14px;
}

.news-box .news-right {
  width: 683px;
  margin-left: 30px;
}

.news-box .news-right li a {
  display: block;
  padding: 12px 0;
  box-sizing: border-box;
  border-top: 1px dashed #224b89;
}

.news-box .news-right li:nth-child(1) a {
  border-top: none;
  padding-top: 0;
}

.news-box .news-right .news-content-box {
  display: flex;
  align-items: center;
}

.news-box .news-right li .news-content-box .left-content {
  padding: 6px;
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ff0000;
}

.news-box .news-right li:nth-child(2n-1) .left-content {
  background-color: #070707;
}

.news-box .news-right .news-content-box .left-content .years {
  border: 1px solid #ffffff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 110px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-box .news-right .news-content-box .left-content .years span:nth-child(1) {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.news-box .news-right .news-content-box .left-content .years span:nth-child(2) {
  display: block;
  font-size: 24px;
  color: #ffffff;
  margin-top: 14px;
}

.news-box .news-right .news-content-box .right-content {
  margin-left: 34px;
}

.news-box .news-right .news-content-box .right-content span {
  display: block;
  font-size: 18px;
  color: #131313;
}

.news-box .news-right .news-content-box .right-content p {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  text-align: justify;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* footer尾部 */
.footer {
  background-color: #c50000;
  padding-bottom: 36px;
  box-sizing: border-box;
}

.footer .footer-top {
  display: flex;
  align-items: center;
  padding: 23px 0 21px 0;
  box-sizing: border-box;
  margin-left: 14px;
}

.footer .footer-top li {
  display: flex;
  align-items: center;
}

.footer .footer-top li a {
  display: block;
  margin: 0 30px 0 30px;
  font-size: 18px;
  color: #ffffff;
}

.footer .footer-top li:nth-child(1) a {
  margin-left: 0;
}

.footer .footer-top li span {
  display: block;
  width: 2px;
  height: 19px;
  background-color: #ffffff;
}

.footer .footer-line {
  width: 100%;
  height: 1px;
  background-color: #000000;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer .footer-bottom .footer-left {
  margin-top: 44px;
}

.footer .footer-bottom .footer-left h4 {
  font-size: 32px;
  color: #ffffff;
}

.footer .footer-bottom .footer-left p {
  font-size: 16px;
  color: #ffffff;
  margin-top: 29px;
}

.footer .footer-bottom .footer-left .copy {
  margin-top: 20px;
  align-items: center;
}

.footer .footer-bottom .footer-left .copy span {
  display: block;
  margin-bottom: 10px;
  margin-left: 10px;
  color: #ffffff;
}

.footer .footer-bottom .footer-left .copy span:nth-child(1) {
  margin-left: 0;
}

.footer .footer-bottom .footer-center {
  margin: 30px 0 0 57px;
}

.footer .footer-bottom .footer-center ul li {
  margin-top: 20px;
}

.footer .footer-bottom .footer-center ul li:nth-child(1) {
  margin-top: 0;
}

.footer .footer-bottom .footer-center ul li span {
  font-size: 16px;
  color: #ffffff;
}

.footer .footer-bottom .footer-right {
  margin-left: 42px;
}

.footer .footer-bottom .footer-right .qr-bg {
  margin-top: 43px;
}

.footer .footer-bottom .footer-right .qr-bg img {
  display: block;
  width: 100%;
}

.footer .footer-bottom .footer-right span {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-top: 12px;
  text-align: center;
}

/* banner轮播图 */
.banner .swiper-slide .banner_p {
  display: block;
  width: 100%;
}

/* 新闻资讯轮播图 */
.news-box .news-left {
  width: 486px;
  overflow: hidden;
}

.news-box .news-left .swiper-news {
  position: relative;
}

.news-box .news-left .swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-news .swiper-button-prev,
.swiper-news .swiper-button-next {
  background-image: none;
}

.swiper-news .swiper-button-prev {
  width: 38px;
  height: 30px;
  text-align: center;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 25px;
  position: absolute;
  top: 318px;
  left: 410px;
}

.swiper-news .swiper-button-next {
  width: 38px;
  height: 30px;
  text-align: center;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 25px;
  position: absolute;
  top: 318px;
  right: 0;
}