    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    a{
        text-decoration: none;
        color: #333;
    }
    a:hover{
        text-decoration: none;
        color: #3459e0;
    }
    .small_box_container {
      width: 300px;
      height: 60px;
      display: flex;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
      float: left;
      margin-right: 15px;
      margin-bottom: 20px;
    }

    .small_box_left {
      width: 15%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
      border-right: 1px solid #ccc;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    .small_box_left:last-child {
      border-right: none;
    }

    .small_box_logo {
      width: 20%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f60;
    }

    .small_box_text {
      width: 65%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 16px;
      color: #888;
      text-align: center;
      border-left: 1px solid #ccc;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    .small_box_text:first-child {
      border-left: none;
    }

    .small_box_logo img {
      max-width: 60%;
      max-height: 60%;
    }
    .tab-content a{display:inline-block;margin-right:8px;color:#333;text-decoration:none;}
    .tab-content h4{margin-top:15px;}
    
    
        .phb_bottom_container {
      width: 400px;
      height: 600px;
      position: fixed;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      z-index: 5;
    }

    .phb_bottom_item {
      width: 100%;
      height: 60px;
      display: flex;
      align-items: center;
      font-size: 18px;
      color: #888;
      border-top: 1px solid #ccc;
      padding: 0 20px;
    }

    .phb_bottom_item:first-child {
      border-top: none;
    }

    .phb_bottom_left {
          width: 60px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        background: #ff0000a6;
        color: #fff;
    }

    .phb_bottom_right {
      width: calc(100% - 60px);
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding-left: 10px;
    }

    .phb_bottom_left::before {
      content: attr(data-index);
    }

    .phb_bottom_close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 28px;
      height: 28px;
      background-color: #333;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 16px;
      line-height: 16px;
      color: #fff;
      cursor: pointer;
    }




#header .logo img{
    margin: 20px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #0077cc;
  height: 60px;
  display: flex;
  justify-content: center;
  min-width: 1200px;
}

nav {
  /*width: 1200px;*/
}

nav ul {
  list-style: none;
  display: flex;
  /*justify-content: space-between;*/
}

nav li {
  font-size: 18px;
  line-height: 60px;
  margin-right: 40px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  /*background-color: #005ea6;*/
  color: #f6f6f6;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#header{
    padding: 0!important;
}
.search-container {
    margin: 0 auto;
      width: 950px;
      height: 160px;
      /*background-color: #fff;*/
      /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
      /*display: flex;*/
      /*justify-content: center;*/
      /*align-items: center;*/
      /*padding: 0 20px;*/
      
    }

.switch {
    display: flex;
    /* justify-content: center; */
    margin-top: 15px;
    margin-bottom: -16px;
    padding: 15px 0;
    margin-left: 8px;
    
}

.switch-btn {
    background-color: #fff;
    border: none;
    padding: 5px 10px;
    height: 50px;
    width: 120px;
    cursor: pointer;
    margin-right: 10px;
    /* border-radius: 20px; */
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: all 0.3s ease;
    font-size: 1rem;
    outline: none!important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.switch-btn.active {
  background-color: #ff0000bf;
  color: #fff;
  outline: none;
}

.search-box {
  display: none;
}

.search-box.active {
  display: flex;
  align-items: center;
}

.search-box input {
    width: 90%;
    height: 60px;
    line-height: 60px;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    outline: none;
    font-size: 1rem;
    font-weight: 300;
    border: 1px solid #f63939;
    box-shadow: 0 20px 40px rgb(2 64 250 / 9%);
    border-top-left-radius: 13px;
    /*border-top-left-radius: 10px;*/
}

.search-box button {
    background-color: #f63939 ;
    color: #fff;
    border: none;
    /* border-radius: 20px; */
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 16%;
    height: 61px;
    font-size: 1rem;
    margin-left: -10px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,0.5);
    --tw-ring-offset-shadow: 0 0 transparent;
    --tw-ring-shadow: 0 0 transparent;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    outline: none;
    letter-spacing: 5px;
}

.search-box button:hover {
  background-color: #f34c4c;
}



    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container_pp {
  width: 1250px;
  margin: 0 auto;
  background-color: #f0f8ff;
  /*box-shadow: 0px 2px 8px rgba(0, 0, 255, 0.3);*/
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.left-column {
  width: 200px;
  background-color: #0077cc;
}

.left-column .tabs {
  list-style: none;
  margin-top: 20px;
}

.left-column .tabs li {
  font-size: 18px;
  line-height: 60px;
  cursor: pointer;
  padding-left: 20px;
  color: #fff;
  background-color: #f94b4bf2;
  border-left: 3px solid #fff;
  transition: all 0.3s ease-in-out;
}

.left-column .tabs li.active {
  background-color: #fff;
  color: #0077cc;
  border-left: 3px solid #0077cc;
}

.right-column {
  width: 1040px;
  background-color: #fff;
  padding: 20px;
}

.tab-content {
  display: none;
  position: relative;
  z-index: 999;
}
.tab-content p{
    margin: 10px 0;
}
.tab-content.active {
    display: block;
    max-height: 1000px;
    overflow: auto;
}

.tab-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.5;
}
    /* 为滚动条添加样式 */
    ::-webkit-scrollbar {
      width: 5px; /* 设置滚动条宽度 */
      height: 100px;
      background-color: #f1f1f1; /* 设置滚动条背景颜色 */
    }

    ::-webkit-scrollbar-thumb {
      background-color: #0077cc; /* 设置滚动条手柄颜色 */
    }
</style>
<style type="text/css" media="all">
body {
    background: #f5f5f5;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

.footer {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
  padding: 0;
}

.box {
  width: 236px;
    height: 150px;
    background-color: #fff;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 3px 5px rgb(255 255 255 / 90%);
    border-radius: 5px;
    border: 0;
}

.box:hover {
     background-color: #fff;
    box-shadow: 2px 3px 5px rgb(255 255 255 / 90%);
    border-radius: 5px;
    border: 0;
}

.box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.box p {
  font-size: 14px;
  color: #999;
}


/*底部滚动字眼*/
    .scroll-text {
      position: fixed;
      top: 1150px;
      left: 0;
      width: 100%;
      height: 100px;
      /*background-color: #f5f5f5;*/
      /*border-top: 1px solid #ddd;*/
      overflow: hidden;
      z-index: 9999;
    }

    .scroll-text .scroll-inner {
      position: absolute;
      white-space: nowrap;
      animation-duration: calc(10s + 10s * var(--speed));
      animation-name: scroll;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .scroll-text .scroll-inner:nth-child(1) {
      top: 0;
    }

    .scroll-text .scroll-inner:nth-child(2) {
      top: 30px;
    }

    .scroll-text .scroll-inner:nth-child(3) {
      top: 60px;
    }

    .scroll-text .scroll-inner a {
      display: inline-block;
      padding: 0 15px;
      font-size: 14px;
      line-height: 30px;
      color: #333;
      text-decoration: none;
    }
    
    .scroll-text .scroll-inner:hover {
      animation-play-state: paused;
    }

    .scroll-text .scroll-inner a:hover{
      color: #fff;
      background-color: #333;
    }

    @keyframes scroll {
      from {
        transform: translateX(-100%);
      }
      to {
        transform: translateX(100%);
      }
    }
    
    
    
    .podium {
      display: flex;
      /*align-items: flex-end;*/
      width: 600px;
      height: 200px;
    }
    .podium-item {
      flex: 1;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
      margin: 0 10px;
    }
    
    .gold {
      background:linear-gradient(180deg, #ecdb42 10%, #FFFFFF 70%);
    }
    
    .silver {
      background:linear-gradient(180deg, #d4d4d4 10%, #FFFFFF 70%);
    }
    
    .bronze {
      background:linear-gradient(180deg, #fbd45f 10%, #FFFFFF 70%);
    }
    
    .podium-item h3 {
      margin-top: 0;
    }
    
    .podium-item:nth-child(1) {
      z-index: 3;
      transform: scale(1.2);
    }
    
    .podium-item:nth-child(2) {
      z-index: 2;
      transform: scale(1.1);
    }
    
    .podium-item:nth-child(3) {
      z-index: 1;
      transform: scale(1);
    }
    
    
    .tow_jin .podium-item:nth-child(1) {
      z-index: 3;
      transform: scale(1);
    }
    
    .tow_jin .podium-item:nth-child(2) {
      z-index: 2;
      transform: scale(1.1);
    }
    
    .tow_jin .podium-item:nth-child(3) {
      z-index: 4;
      transform: scale(1.2);
    }
    
    .marb40{
        margin-bottom: 40px;
    }
    .mart40{
        margin-top: 40px;
    }
    ._search_logo{
        position: absolute;
        top: 266px;
        left: 546px;
        z-index: 2;
    }
    .custom-box {
      width: 600px;
      border: 0;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
    }
    
    
    
    body {
    background: #f5f5f5;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
@media (min-width: 1200px){
    .containerA {
        max-width: 1280px;
    }
}
.box:hover {
     background-color: #fff;
    box-shadow: 2px 3px 5px rgb(255 255 255 / 90%);
    border-radius: 5px;
    border: 0;
}

.box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.box p {
  font-size: 14px;
  color: #999;
}


/*底部滚动字眼*/
    .scroll-text {
      position: fixed;
      top: 1150px;
      left: 0;
      width: 100%;
      height: 100px;
      /*background-color: #f5f5f5;*/
      /*border-top: 1px solid #ddd;*/
      overflow: hidden;
      z-index: 9999;
    }

    .scroll-text .scroll-inner {
      position: absolute;
      white-space: nowrap;
      animation-duration: calc(10s + 10s * var(--speed));
      animation-name: scroll;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .scroll-text .scroll-inner:nth-child(1) {
      top: 0;
    }

    .scroll-text .scroll-inner:nth-child(2) {
      top: 30px;
    }

    .scroll-text .scroll-inner:nth-child(3) {
      top: 60px;
    }

    .scroll-text .scroll-inner a {
      display: inline-block;
      padding: 0 15px;
      font-size: 14px;
      line-height: 30px;
      color: #333;
      text-decoration: none;
    }
    
    .scroll-text .scroll-inner:hover {
      animation-play-state: paused;
    }

    .scroll-text .scroll-inner a:hover{
      color: #fff;
      background-color: #333;
    }

    @keyframes scroll {
      from {
        transform: translateX(-100%);
      }
      to {
        transform: translateX(100%);
      }
    }
    button{outline:none;}
    
    