main {
  background-color: #fff;
  box-sizing: border-box;
  padding: 26px 20px 50px;
}

.cate_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cate_main a:hover {
  text-decoration-color: #F65742;
}

.cate_recommend {
  width: 100%;
  height: 160px;
  border: 1px solid;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 25px;
  box-sizing: border-box;
  padding: 36px 50px;
  border-image: linear-gradient(180deg, #FFF6F6, #FFD6D1) 10 10;
  background: linear-gradient(0deg, #FFFFFF 0%, #FEE4E1 100%);
}

.cate_recommend li {
  width: 46%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  white-space: nowrap;
}

.cate_recommend li:nth-child(2n) {
  margin-right: 0;
}

.cate_recommend li:nth-child(-n+2) a {
  font-size: 18px;
  font-weight: bold;
  color: #F65742;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cate_recommend li:nth-child(n+3) {
  font-size: 14px;
}

.cate_recommend li:nth-child(n+3) a {
  max-width: 70%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cate_item {
  width: 570px;
  height: 450px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.cate_item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.cate_item_content {
  flex: 1;
  border: 1px solid #E8E8E8;
  border-top: none;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 30px 16px;
}

.cate_item_content li:first-child {
  display: flex;
  align-items: stretch;
  margin-bottom: 16px;
}

.cate_item_content li:first-child > a {
  display: flex;
  margin-right: 10px;
}

.cate_item_content li + li {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cate_item_content li:last-child {
  margin-bottom: 0;
}

.cate_item_content li + li a {
  max-width: 380px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cate_item_content li + li span {
  color: #999;
}

.cate_item_content div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.cate_item_content img {
  width: 130px;
  height: 72px;
}

.cic_tle {
  max-width: 390px;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cic_des {
  width: 100%;
  min-height: 38px;
  display: block;
  font-size: 14px;
  color: #999;
  position: relative;
}

.cic_des a {
  color: #F65742;
  position: absolute;
  right: 3px;
  bottom: 0;
}


/*新栏目顶部模块*/
.cate_recommend_new{
    width: 1160px;
    height: 160px;
    background: #FFF6F5;
    border: 1px solid #F65742;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
}
.cate_recommend_new .recommend_newLeft{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    position: relative;
}
.cate_recommend_new .recommend_newLeft .newLeft_title{
    font-size: 14px;
    color: #333333;
}
.cate_recommend_new .recommend_newLeft .newLeft_infos{
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.cate_recommend_new .newLeft_infos img{
    width: 170px;
    height: 76px;
}
.cate_recommend_new .newLeft_infos div{
    display: flex;
    flex-direction: column;
    margin-left: 25px;
}
.cate_recommend_new .newLeft_infos div span{
    font-size: 14px;
    color: #333333;
    line-height: 30px;
}
.cate_recommend_new .recommend_newLeft::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 140px;
    background: #FCD8D3;
    right: 0px;
    top: -14px;
}
.cate_recommend_new .recommend_newRight{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cate_recommend_new .recommend_newRight .newRight_title{
    width: 142px;
    height: 37px;
    background: url(../img/bg_category_recom.png) no-repeat;
    background-size: 100% 100%;
    line-height: 37px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}
.cate_recommend_new .recommend_newRight .newRight_list{
    margin-top: 24px;
    display: flex;
    align-items: center;
}
.cate_recommend_new .recommend_newRight .newRight_listBox1{
    display: grid;
    grid-template-columns: 1fr 1fr; 
}
.cate_recommend_new .recommend_newRight .newRight_listBox1 li{
    margin-bottom: 8px;
    margin-right: 15px;
    width: 108px;
    height: 34px;
    border-radius: 10px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
}
.cate_recommend_new .newRight_listBox1 li:nth-of-type(1){
    background: #5AB2F5;
}
.cate_recommend_new .newRight_listBox1 li:nth-of-type(2){
    background: #FF9830;
}
.cate_recommend_new .newRight_listBox1 li:nth-of-type(3){
    background: #745AF5;
}
.cate_recommend_new .newRight_listBox1 li:nth-of-type(4){
    background: #F76653;
}
.cate_recommend_new .recommend_newRight .newRight_listBox1 li a,
.cate_recommend_new .recommend_newRight .newRight_listBox1 li span{
    font-size: 16px;
    color: #FFFFFF;
}
.cate_recommend_new .recommend_newRight .newRight_listBox2{
    margin-left: 35px;
    padding-bottom: 8px;
}
.cate_recommend_new .newRight_listBox2 li{
    line-height: 25px;
    position: relative;
}
.cate_recommend_new .newRight_listBox2 li::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #F65742;
    border-radius: 50%;
    top: 8px;
    left: -20px;
}
.cate_recommend_new .newRight_listBox2 li a{
    font-size: 14px;
    color: #333333;
}
/* 弹窗开始 */
.cate_popupBg{
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000020;
}
.cate_popup{
    width: 334px;
    height: 440px;
    background: url(../img/bg_cate_popup.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    align-items: center;
    box-sizing: border-box;
    padding: 23px 0 21px;
}
.cate_popup img.cate_shutPop{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.cate_popup p{
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
}
.cate_popup span:nth-of-type(1){
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 4px;
}
.cate_popup img:nth-of-type(2){
    width: 207px;
    height: auto;
    margin-top: 85px;
}
.cate_popup span:nth-of-type(2){
    font-size: 16px;
    color: #666666;
    margin-top: 10px;
}
/* 弹窗结束 */