@charset "utf-8";

:root {
  --content-width: 1200px;
}

@media screen and (min-width: 580px) and (max-width: 1200px) {
  :root {
    --content-width: 580px;
  }
}

/*580分辨率以下（小于580px）*/
@media only screen and (max-width: 580px) {
  :root {
    --content-width: 343px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: Source Han Serif SC-Heavy, Source Han Serif SC;
}

ul, ol, li {
  list-style: none;
}

input:focus, button:focus {
  outline: 0;
}

img {
  border: 0;
  vertical-align: top;
}

var, em {
  font-weight: normal;
  font-style: normal;
}

html, body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

a {
  color: #333;
  text-decoration: none;
  width: 100%;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

p {
  text-indent: 1.5rem;
  letter-spacing: 1px;
  font-size: 0.8rem;
  text-align: justify;
}

/*select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  font-size: 20px;
  height: 30px;
  user-select: none;
  padding: 2px 5px;
}*/

.g-wrap {
  max-width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  zoom: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial;
  background-color: #f9f3f5;
  background-image: url("../img/img_header_PC.jpg"), url("../img/img_footer_PC.jpg");
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  padding-top: 128px;
  padding-bottom: 225px;
}

.v_content {
  width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.v-header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.vh-top {
  display: grid;
  grid-template-columns: 706fr 446fr;
  padding-right: 32px;
  gap: 16px;
  align-items: center;
}

.vht-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

.vht-left .t1 {
  font-size: 72px;
  font-weight: 800;
  color: #CB000A;
  line-height: 80px;
}

.vht-left img.t1 {
  width: 432px;
}

.vht-left .t2 {
  font-size: 48px;
  font-weight: 500;
  color: #CB000A;
  line-height: 64px;
}

.vht-right img {
  width: 100%;
  aspect-ratio: 446/386;
}

.vh-bottom {
  padding: 16px 16px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  background: white;
  border-radius: 8px;
  justify-content: space-between;
}

.vhb-left {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-grow: 1;
  font-size: 20px;
  align-items: center;
}

.vhbl-select {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  position: relative;
}

.vhbl-select select {
  font-size: 20px;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.vhbl-select::after {
  content: "";
  width: 14px;
  height: calc(16 / 29 * 14px);
  background: url(../img/ic_arrow_down.png) no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.vhb-left .v-line {
  background-color: #D9D9D9;
  width: 2px;
  border-radius: 1px;
  user-select: none;
  height: 100%;
}

.vhb-left input {
  flex-grow: 1;
  background: none;
  height: 24px;
  font-size: 20px;
}

.vhb-left input::-webkit-input-placeholder { /*WebKit browsers*/
  color: #BBBBBB;
  font-size: 20px;
}

.vhb-left input::-moz-input-placeholder { /*Mozilla Firefox*/
  color: #BBBBBB;
  font-size: 20px;
}

.vhb-left input::-ms-input-placeholder { /*Internet Explorer*/
  color: #BBBBBB;
  font-size: 20px;
}

.box-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.box-1 .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 28px;
  color: #CB000A;
  font-weight: 500;
  aspect-ratio: 288/180;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
}

.box-1 .card img {
  width: 64px;
  height: 64px;
}

.vhb-button {
  user-select: none;
  padding: 12px 24px 12px 25px;
  background: linear-gradient(180deg, #FF5B64 0%, #CB000A 100%);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  width: fit-content;
  cursor: pointer;
}

.vhb-button img {
  width: 20px;
  height: 20px;
}

.time-line {
  display: block;
  width: 100%;
  user-select: none;
  position: relative;
}

.time-line .container {
  display: block;
  overflow: hidden;
  width: 100%;
}

.time-line::before {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  content: "";
  width: 50px; /* 2024-01-19修改 */
  height: 100%;
  background: linear-gradient(90deg, #F9F3F5 0%, rgba(249, 243, 245, 0) 100%);
}

.time-line::after {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  content: "";
  width: 50px; /* 2024-01-19修改 */
  height: 100%;
  background: linear-gradient(270deg, #F9F3F5 0%, rgba(249, 243, 245, 0) 100%);
}

.time-line .box {
  width: fit-content;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-image: url("../img/bg_2_8.png");
  gap: 100px;
  background-repeat: repeat-x;
  background-position: center;
  padding: 0 60px 10px 60px;
}

.time-line .box .circle-border {
  width: 96px;
  height: 96px;
  background-color: white;
  border-radius: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.time-line .box .circle-border .circle-content {
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #FF969B 0%, #E75E65 100%);
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.time-line .box .circle-border .circle-content:hover {
  background: linear-gradient(180deg, #FF7562 0%, #CB000A 100%);
}

.time-line .box .circle-border .focus {
  background: linear-gradient(180deg, #FF7562 0%, #CB000A 100%);
}

.news-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.news-box .news-card {
  width: calc(100% - 48px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  background-color: white;
  background-image: url("../img/img_card_header.png");
  border-radius: 16px;
  background-position: top center;
  background-size: auto 100px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.news-box .news-card .bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #efedee;
  padding-bottom: 18px;
  padding-top: 4px;
}

.news-box .news-card .bar .tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.news-box .news-card .bar .tabs .tab-item {
  /*width: 98px;*/
  padding: 0 24px;
  height: 48px;
  border-radius: 8px 8px 8px 8px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 24px;
  color: #CB000A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition-duration: 150ms;
  transition-timing-function: ease-in;
  transition-property: color, background-color;
}

.news-box .news-card .bar .tabs .focus {
  color: #FFFFFF;
  background: linear-gradient(180deg, #FF5B64 0%, #CB000A 100%), linear-gradient(180deg, #FF7562 0%, #CB000A 100%);
}

.news-box .news-card .bar .more {
  color: #CB000A;
  font-weight: 500;
  font-size: 16px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.news-box .news-card .bar .more img {
  width: 8px;
}

.news-box .news-card .bar .more span {
  font-weight: bold;
}

.news-box .news-card .news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  display: none;
}

.news-box .news-card .news-list .news-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.news-box .news-card .news-list .news-item .prev {
  background: #000000;
  width: 8px;
  height: 8px;
  border-radius: 4px;
}

.news-box .news-card .news-list .news-item a {
  color: #000000;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  font-size: 18px;
  color: #CB000A;
  text-align: center;
}
