<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* box5 */
.box5 {
    padding-top: 1.63rem;
    height: 4.5rem;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  
  .box5 .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .box5_box {
    position: relative;
    width: 3.07rem;
    padding-bottom: 0.51rem;
    border-bottom: 0.03rem solid #006980;
  }
  
  .box5_box::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.03rem;
    right: 0;
    bottom: -0.03rem;
    background: var(--hc);
    transition: 0.5s ease-in-out;
  }
  
  .box5_p1 {
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 1rem;
    color: #000000;
    transition: 0.3s;
  }
  
  .box5_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.19rem;
    color: #666666;
  }
  
  .box5_box:hover::after {
    left: 0;
    width: 100%;
  }
  
  .box5_box:hover .box5_p1 {
    color: #006980;
    font-weight: bold;
  }


@media (max-width:1200px){
  .box5{
    height:auto;
    padding-top: 0.5rem;
  }
   .box5 .main{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    padding-left: 0.3rem;
  }
  .box5_box{
      text-align: center;
  }
}</pre></body></html>