﻿@charset "utf-8";
/*
color:red !important;/* Firefox、IE7支持 
_color:red;IE6支持 
*color:red;IE6、IE7支持 
*+color:red;IE7支持/
color:red\9;IE6、IE7、IE8支持 
color:red\0;IE8支持
@media screen and(-webkit-min-device-pixel-ratio:0){} chrome
background:linear-gradient(#e99c40,#d35224);-webkit-background:linear-gradient(#e99c40,#d35224);
filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#8fc320,endcolorstr=#122b88,gradientType=1);
-webkit-appearance:none;appearance:none;pointer-events:none;select::-ms-expand{display:none;}
@media screen and (min-width:540px){}
@media screen and (max-width:320px){}
-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;*/

/*--默认--*/




.home5 {
  background: #efebea;
}

.home5 .content {
  margin-top: 45px;
}

.home5 .list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home5 .list:nth-child(2) {
  margin-top: 20px;
}

.home5 .list .box {
  width: calc(50% - 10px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home5 .list .ptbox {
  width: calc(50% - 10px);
  position: relative;
}

.home5 .list .ptbox .v {
  border-color: #fff;
  color: #fff;
}

.home5 .list .ptbox .v:hover {
  background: #fff;
  color: #a20000;
}

.home5 .list .item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: calc(50% - 10px);
  cursor: pointer;
  position: relative;
  border-bottom: 4px solid #94070a;
}

.home5 .list .item:nth-child(-n+2) {
  margin-bottom: 20px;
}

.home5 .list .item .text {
  padding: 40px 30px;
  position: relative;
}

.home5 .list .item .text .h {
  font-size: 16px;
  line-height: 1.5;
}

.home5 .list .item .text .date {
  color: #99857b;
  margin-top: 15px;
  font-style: italic;
  font-size: 16px;
  display: none;
}

.home5 .btns {
  text-align: center;
  margin-top: 30px;
}

.home5 .btns .more {
  margin: 0 45px;
}




@keyframes arr {
  0% {
    transform: translateX(-7px);
  }

  50% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-7px);
  }
}