.header_class {
  font-family: Xvyu;
  height: 25%; }
  .header_class .one {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 90px;
    color: #ff9800; }
  .header_class .two {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: white; }

.main_class {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .main_class .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 65%;
    background-color: white;
    border-radius: 5px;
    padding-top: 10px; }
    .main_class .top .item {
      padding-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30px;
      margin-right: 5px;
      margin-left: 5px; }
      .main_class .top .item .one {
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        border: 1px #808595 solid;
        border-radius: 5px 0 0 5px;
        padding: 0 10px 0 10px;
        font-size: 15px; }
        .main_class .top .item .one:hover {
          background-color: #a7aabb; }
        .main_class .top .item .one::before {
          display: block;
          content: '';
          position: absolute;
          right: -1px;
          width: 1px;
          height: 1px;
          border: 10px solid transparent;
          border-right-color: black; }
      .main_class .top .item .two {
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(100% + 2px);
        background-color: #000000;
        color: #ffffff;
        border-radius: 0 5px 5px 0;
        padding: 0 10px 0 10px; }
  .main_class .bottom {
    display: flex;
    background-color: transparent;
    width: 65%;
    margin-top: 10px; }
    .main_class .bottom > ul {
      width: 100%; }
      .main_class .bottom > ul > li {
        border-radius: 10px;
        background-color: white;
        width: 100%;
        display: flex;
        margin-bottom: 20px; }
        .main_class .bottom > ul > li .left {
          width: 30%;
          box-sizing: border-box;
          padding: 10px 20px; }
          .main_class .bottom > ul > li .left > div {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 5px; }
          .main_class .bottom > ul > li .left img {
            height: 100%;
            width: 100%;
            transition: all 0.3s; }
            .main_class .bottom > ul > li .left img:hover {
              transform: scale(1.1); }
        .main_class .bottom > ul > li .right {
          width: 70%;
          padding: 10px 20px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          position: relative; }
          .main_class .bottom > ul > li .right .p {
            color: black;
            cursor: pointer;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 28px;
            text-decoration: none; }
            .main_class .bottom > ul > li .right .p:hover {
              color: #00c4ff; }
          .main_class .bottom > ul > li .right > h2 {
            font-size: 35px; }
            .main_class .bottom > ul > li .right > h2 > a {
              color: #f0ad4e;
              text-decoration: none; }
              .main_class .bottom > ul > li .right > h2 > a:hover {
                color: #00c4ff;
                transition: all 0.3s; }
          .main_class .bottom > ul > li .right .article_info {
            font-size: 20px;
            color: #555; }
            .main_class .bottom > ul > li .right .article_info > span {
              margin-right: 10px; }
              .main_class .bottom > ul > li .right .article_info > span i {
                margin-right: 5px; }
          .main_class .bottom > ul > li .right .a {
            width: 100px;
            height: 40px;
            position: absolute;
            right: 10px;
            bottom: 10px;
            background-color: #00cbff;
            color: black;
            font-size: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            border-radius: 5px;
            text-decoration: none; }
            .main_class .bottom > ul > li .right .a:hover {
              color: white;
              opacity: 0.8; }

@media (max-width: 850px) {
  #app .header_class .one {
    font-size: 50px; }
  #app .header_class .two {
    font-size: 20px;
    color: wheat; }
  #app .main_class {
    text-align: center; }
    #app .main_class .top {
      width: 100%;
      padding-top: 0;
      border-radius: 0; }
      #app .main_class .top .item {
        padding-bottom: 0;
        width: auto; }
        #app .main_class .top .item .one {
          height: 70%;
          font-size: 12px; }
          #app .main_class .top .item .one::before {
            border: 5px solid transparent;
            border-right-color: black; }
        #app .main_class .top .item .two {
          height: calc(70% + 2px);
          font-weight: 200; }
    #app .main_class .bottom {
      width: 100%; }
      #app .main_class .bottom ul li {
        position: relative;
        width: 100%;
        border-radius: 0;
        margin-bottom: 10px;
        height: 33vh; }
        #app .main_class .bottom ul li .left {
          width: 100%;
          box-sizing: border-box;
          padding: 0;
          height: 100%;
          position: absolute;
          opacity: 0.7; }
          #app .main_class .bottom ul li .left div {
            border-radius: 0; }
        #app .main_class .bottom ul li .right {
          width: 100%;
          height: 100%;
          padding: 0;
          display: block; }
          #app .main_class .bottom ul li .right h2 {
            font-size: 40px;
            margin-top: 25px; }
          #app .main_class .bottom ul li .right .p {
            font-size: 25px;
            margin: 10px 0px 10px 0px; }
          #app .main_class .bottom ul li .right .article_info {
            color: black;
            font-size: 20px;
            position: absolute;
            bottom: 10px;
            left: 10px;
            width: 100%; }
          #app .main_class .bottom ul li .right .a {
            display: none; } }

/*# sourceMappingURL=classify.css.map */
