@charset "utf-8";

:root {
  --img-ratio: 0.5625;
  --scroll-img-w: 988px;
  --top-img-w: 1196px;
  --content-width: 80vw;
}

@media screen and (min-width: 580px) and (max-width: 1200px) {
  :root {
    --top-img-w: 536px;
  }
}

/*580分辨率以下（小于580px）*/
@media only screen and (max-width: 580px) {
  :root {
    --content-width: 343px;
    --top-img-w: 340px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: PingFang SC-Semibold, PingFang 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;
}

.v-header a, .vcb1-li a, .vcb2-img-left-box a, .vcb2-list ul a, .vcb3-item a, .vcb3-c2-box-panel-main a {
  width: 100%;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

/*2023-01-17 修改文字内容的字体大小，段落缩进*/
.vcb3-c1-content-box p, .vcb4-right p {
  text-indent: 2rem;
  letter-spacing: 1px;
  font-size: 1rem;
  text-align: justify;
}

.g-wrap {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  zoom: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial;
}

.v-header {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vh-title-box {
  width: 100%;
}

.vh-title-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 64px;
  font-family: monospace;
  letter-spacing: 10px;
  font-weight: bold;
  background: linear-gradient(165deg, #f8cf94c7 10%, #ffffff 20%, #f8cf94c7 50%, #ffffff 80%, #f8cf94c7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: -1px -1px 0px #2f261738;
}

.vh-title-line {
  background: linear-gradient(90deg, transparent, #f3baba 30%, white 50%, #f3baba 70%, transparent);
  height: 2px;
  width: 100%;
}

.vh-title-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 32px;
  letter-spacing: 5px;
  color: #ffffffd9;
}

.v-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  width: var(--content-width);
}

.vc-block-1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #2B2E7C 0%, #EE1C25 100%);
}

.vcb1-ul {
  display: flex;
  transition: margin-left 1s;
  -moz-transition: margin-left 1s; /* Firefox 4 */
  -webkit-transition: margin-left 1s; /* Safari and Chrome */
  -o-transition: margin-left 1s; /* Opera */
}

.vcb1-li {
}

.vcb1l-content {
}

.vcb1l-img {
  width: calc(var(--content-width) - 8px);
  height: calc((var(--content-width) - 8px) * (672 / 1200));
  margin: 4px;
}

.vcb1l-title {
  color: white;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-family: PingFang SC-Semibold, PingFang SC;
  font-weight: bold;
}

.vcb1-ibox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc((var(--content-width) - 3rem) * (672 / 1200));
  width: 100%;
}

.vcb1-ibox-item {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 8px;
  margin: 0 8px;
  cursor: pointer;
}

.vc-block-2 {
  margin-top: 5rem;
  display: flex;
  flex-direction: row;
  background: linear-gradient(90deg, #2B2E7C 0%, #EE1C25 100%);
  width: 100%;
}

.vc-block-2 a {
  z-index: 100;
}

.vcb2-list {
  display: flex;
  flex-direction: column;
  width: calc(50% - 0.1rem);
  padding: 2rem 0;
  justify-content: center;
}

.vcb2-list ul {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 1.5rem 0 2.5rem;
}

.more-button {
  color: white;
  background: linear-gradient(90deg, #72285D 0%, #98252C 100%);
  border-radius: 1rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition-property: transform;
  transition-duration: 100ms;
}

.more-button img {
  width: 0.7rem;
  margin-left: 0.3rem;
}

.more-button span {
  padding: 3px;
  font-size: 15px;
  color: #E60000;
  font-weight: bold;
  font-family: Arial;
}

.more-button:hover {
  /*font-weight: bold;*/
  /*border-color: #E60000;*/
  /*border-color: #ffb3b3;*/
  transform: scale(1.1);
}

.vcb2-img-left-box {
  width: calc(50% - 4rem);
  padding: 2rem 2.5rem 2rem 1.5rem;
}

.vcb2-ilb-title {
  display: flex;
  background: #FFC85E;
  align-items: center;
  padding: 1rem;
}

.vcb2-ilb-title-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.vcb2-ilb-title-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #312E7A;
  margin-left: 1rem;
  letter-spacing: 0.1rem;
}

.vcb2-ilb-vertical-line {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.vcb2-ilb-content {
  color: white;
  font-size: 0.8rem;
  text-indent: 2rem;
  letter-spacing: 0.05rem;
  margin-top: 1rem;
  line-height: 1.7rem;
  text-align: justify;
}

.vc-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition-property: width, height, background-color, transform;
  -moz-transition-property: width, height, background-color, transform;
  -webkit-transition-property: width, height, background-color, transform;
  -o-transition-property: width, height, background-color, transform;
  transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
}

.vc-list-item:hover {
  transform: scale(1.02);
}

.vc-li-left {
  width: 1.5rem;
  height: 1.5rem;
}

.vc-li-title {
  color: #FFE5B2;
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: justify;
  font-weight: bold;
  font-family: Arial;
  margin-left: 1rem;
  padding-right: 2rem;
}

.vc-list-line {
  border-style: dashed;
  margin: 1rem 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #ccc 0%, #ccc 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  opacity: 0.7;
}

.vc-li-content {
  padding-left: 20px;
  color: #212121;
  font-size: 14px;
  text-align: justify;
  padding-bottom: 10px;
  padding-top: 4px;
  overflow: hidden;
  font-weight: 400;
}

.vct-left {
  background-image: url(../img/img_title_left_red.png);
  height: 63px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 53px;
}

.vct-content {
  background-image: url(../img/img_title_middle_repeat_red.png);
  height: 63px;
  background-size: contain;
  margin-left: -2px;
  color: #FFDB91;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 0 86px;
  line-height: 63px;
  display: flex;
}

.vct-content span {
  margin: 0 10px;
  font-size: 12px;
}

.vct-content-long {
  padding: 0 30px;
}

.vct-right {
  background-image: url(../img/img_title_right_red.png);
  width: 53px;
  height: 63px;
  background-size: contain;
  background-repeat: no-repeat;
}

.vc-block-3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.vcb3-item {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid;
  border-image: linear-gradient(90deg, rgba(43, 46, 124, 1), rgba(238, 28, 37, 1)) 4 4;
  padding: 2.5rem 1rem;
}

.vcb3-item a {
  width: unset;
}

.vcb3-title-img {
  width: 100%;
  padding-top: calc(100% * (156 / 2842));
  background-size: cover;
  background-position: center;
}

.vcb3-content-1 {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  width: 100%;
}

.vcb3-c1-image {
  height: 28rem;
  width: calc(28rem * (360 / 540));
}

.vcb3-c1-content {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 1rem 0 1rem 1rem;
  border: 1px solid #DDDDDD;
  height: calc(28rem - 2rem - 2px);
  flex-grow: 1;
  margin-left: 1rem;
}

.vcb3-c1-content-box {
  overflow-y: scroll;
  height: 100%;
  text-align: justify;
  padding-right: 1rem;
}

.vcb3-c2-title {
  margin: 2rem 0 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.vcb3-c2-box {
  height: 12rem;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vcb3-c2-box-panel {
  flex-grow: 1;
  overflow: hidden;
  margin: 0 0.4rem;
  position: relative;
}

.vcb3-c2-box-panel-main {
  position: absolute;
  left: 0;
  display: flex;
}

.vcb3-c2-box-item {
  height: 12rem;
  margin: 0 0.2rem;
}

.vs2cb3-c2-box-item {
  margin: 0.2rem;
  height: 12rem;
}

.vcb3-c2-box-direction-btn {
  width: 4rem;
  height: 12rem;
  background: #DDDDDD;
  cursor: pointer;
  transition: background-color 200ms;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcb3-c2-box-direction-btn:hover {
  background: #3d3c3c;
}

.vcb3-c2-box-left {
}

.vcb3-c2-box-right {
}

.vc-block-4 {
  display: flex;
  padding: 1rem 0.5rem 1rem 1rem;
  width: calc(var(--content-width) - 1.5rem - 2px);
  margin-top: 5rem;
  border: 1px solid #DDDDDD;
  background-size: cover;
  background-position: center;
}

.vs1c-block-4 {
  display: flex;
  padding: 1rem 0.5rem 1rem 1rem;
  width: calc(var(--content-width) - 1.5rem - 2px);
  border: 1px solid #DDDDDD;
  background-size: cover;
  background-position: center;
}

.vcb4-left {
  width: 3rem;
  height: 7rem;
  margin: 0.5rem 1rem 0 0.5rem;
}

.vcb4-right {
  padding: 0 0.5rem 0.5rem 1rem;
  max-height: calc((var(--content-width) - 2rem - 2px) * 0.25);
  min-height: calc((var(--content-width) - 2rem - 2px) * 0.15);
  overflow-y: scroll;
  border-left: 1px solid rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
}

.vc-block-4 ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: unset;
}

.vc-list-card {
  margin: 0 17px;
  width: calc(var(--scroll-img-w) + 8px);
  transition: opacity 2s;
  -moz-transition: opacity 2s; /* Firefox 4 */
  -webkit-transition: opacity 2s; /* Safari and Chrome */
  -o-transition: opacity 2s; /* Opera */
}

.vc-lc-top-img {
  width: var(--scroll-img-w);
  height: calc(var(--img-ratio) * var(--scroll-img-w));
  border-radius: 8px;
  border-width: 4px;
  border-style: solid;
  border-color: #FFDB91;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vc-lc-t {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 2s;
  -moz-transition: opacity 2s; /* Firefox 4 */
  -webkit-transition: opacity 2s; /* Safari and Chrome */
  -o-transition: opacity 2s; /* Opera */
}

.vc-lc-title {
  font-size: 20px;
  color: #E60000;
  margin: 20px 0 5px;
  letter-spacing: 1px;
}

.vc-lc-content {
  color: #212121;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
}

.vc-block-5 {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.vcb5-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.vcb5-r1-left {
  border-right: 2px solid #E70000;
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #E70000;
}

.vcb5-r1-right {
  border-left: 2px solid #E70000;
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #E70000;
}

.vcb5-r1-middle {
  flex-grow: 1;
  height: 10px;
  border-bottom: 2px solid #E70000;
}

.vcb5-r2-left {
  width: 6px;
  height: 1px;
}

.vcb5-r2-right {
  width: 6px;
  height: 1px;
}

.vcb5-r2-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #E70000;
  border-right: 2px solid #E70000;
  padding: 40px 20px;
  width: fit-content;
}

.vcb5-r3-left {
  border-right: 2px solid #E70000;
  width: 6px;
  height: 10px;
  border-top: 2px solid #E70000;
}

.vcb5-r3-right {
  border-left: 2px solid #E70000;
  width: 6px;
  height: 10px;
  border-top: 2px solid #E70000;
}

.vcb5-r3-middle {
  border-top: 2px solid #E70000;
  flex-grow: 1;
  height: 10px;
}

.vcb5-item {
  font-size: 16px;
  color: #E60000;
  padding: 10px;
}

.vcb5-item:hover {
  font-weight: bold;
}

.vcb5-split-line {
  width: 1px;
  height: 16px;
  /*background: #E60000;*/
}

.vc-block-6 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 5rem;
}

.vcb6-item {
  padding: 1.5rem;
  width: calc(50% - 3rem - 0.5rem);
  background-size: cover;
  background-position: bottom;
}

.vcb6-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 1.5rem 0 1rem;
}

.vcb6-item-list {
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  padding: 1rem 0;
}

.vcb6-il-item {
  font-size: 1rem;
  padding: 0.5rem 0;
}

.vcb6-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  padding-right: 10px;
}

.vcb6-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.vcb6-column-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vcb6-column-1-row-1 {
  display: flex;
  flex-direction: row;
}

.vcb6-column-1-row-1-column-1 {
  margin-top: 114px;
}

.vcb6-column-1-row-1-column-2 {
  display: flex;
  flex-direction: column;
}

.vcb6-column-1-row-2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.vcb6-column-2 {
  display: flex;
  flex-direction: column;
  margin-top: 114px;
}

.vcb6-column-3 {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.pattern-img-border {
  width: 276px;
  height: 157px;
  margin: 10px;
}

.pattern-img {
  width: 272px;
  height: 153px;
  border: 2px solid #FFDB91;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: width, height, margin;
  -webkit-transition-property: width, height, margin;
  -moz-transition-property: width, height, margin;
  -o-transition-property: width, height, margin;
  transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
}

.pattern-img:hover {
  border-color: #E70000;
  width: 302px;
  height: 170px;
  margin: 0 0 0 -14px;
}

.v-footer {
  color: white;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #2B2E7C 0%, #EE1C25 100%);
  width: 100%;
  margin-top: 5rem;
  padding: 2rem 1rem;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.v-footer span {
  word-break: break-all;
  padding: 0.2rem 1rem;
}

.vs1-header {
}

.vs1-header-img {
}

.vs1-content {
  width: var(--content-width);
  margin: 5rem 0;
}

.vs1c-p {
}

.vs1c-text {
  text-align: justify;
}

/*20230119 修改 将图片放在内容区里*/
.vs1c-text img {
  width: 100%;
  margin: 2rem 0;
}

.vs2-image-box {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.v_title_img1 {
  background-image: url("../img/img_title_01.png");
}

.v_title_img2 {
  background-image: url("../img/img_title_02.png");
}

/*1328分辨率以上（大于1328px）*/
@media screen and (min-width: 1328px) {
  .g-wrap {
    max-width: 100%;
  }

  .vcb2-list {
  }

  .vcb2-list ul {
  }

  .limit-content-height {
    max-height: 60px;
  }
}

/*580分辨率（大于580px，小于1200px）*/
@media screen and (min-width: 580px) and (max-width: 1200px) {
  .g-wrap {
  }

  .vh-title-large {
    font-size: 52px;
  }

  .vh-title-small {
    font-size: 24px;
  }

  .v-header {
  }

  .vc-block-1 {
  }

  .vc-block-2 {
    flex-direction: column;
  }

  .vc-block-2 ul {
    padding: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    height: auto;
    padding-top: 2rem;
  }

  .vcb2-img-left-box {
    width: calc(100% - 3rem);
  }

  .vc-block-3 {
  }

  .vc-block-4 {
  }

  .vc-list-card {
    margin: 0 6px;
    width: 520px;
  }

  .vc-lc-top-img {
    width: 516px;
    height: 290px;
    border-width: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .vc-block-5 {
    width: 540px;
  }

  .vcb2-list {
    width: calc(100% - 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
  }

  .vh-title-box {
  }

  .v-content {
  }

  .pattern-img-border {
    width: 132px;
    height: 76px;
    margin: 4px;
  }

  .pattern-img {
    width: 128px;
    height: 72px;
  }

  .pattern-img:hover {
    width: 132px;
    height: 76px;
    margin: 0 0 0 -2px;
  }

  .vcb6-column-1-row-1-column-1 {
    margin-top: 50px;
  }

  .vcb6-column-2 {
    margin-top: 50px;
  }

  .vcb6-column-3 {
    margin-top: 20px;
  }

  .vcb3-item {
  }

  .vcb3-title-img {
  }

  .vcb3-content-1 {
    flex-direction: column;
  }

  .vcb3-c1-image {
    width: 100%;
    height: auto;
  }

  .vcb3-c1-content {
    margin-top: 2rem;
    width: calc(100% - 2rem - 2px);
    height: calc((52vw - 2rem - 2px) * 1);
  }

  .vcb3-c2-box {
  }

  .vcb3-c2-box-direction-btn {
    width: 0;
    height: 0;
  }

  .vcb3-c2-box-panel {
  }

  .vc-block-6 {
    flex-direction: column;
  }

  .vcb6-item {
    width: calc(100% - 3rem);
    margin-bottom: 3rem;
  }

  .v-footer {
    margin-top: 0;
  }

  .vcb4-right {
    height: calc((var(--content-width) - 2rem - 2px) * 0.5);
  }
}

/*580分辨率以下（小于580px）*/
@media only screen and (max-width: 580px) {
  .g-wrap {
  }

  .vh-title-large {
    font-size: 52px;
  }

  .vh-title-small {
    font-size: 24px;
  }

  .v-header {
  }

  .vc-block-1 {
  }

  .vc-block-2 {
    flex-direction: column;
    margin-top: 1rem;
  }

  .vc-block-2 ul {
    padding: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    height: auto;
    padding-top: 2rem;
  }

  .vcb2-img-left-box {
    width: calc(100% - 3rem);
    padding: 2rem 1.5rem;
  }

  .vc-block-3 {
  }

  .vc-block-4 {
    margin-top: 1rem;
  }

  .vc-list-card {
    margin: 0 6px;
    width: 520px;
  }

  .vc-lc-top-img {
    width: 516px;
    height: 290px;
    border-width: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .vc-block-5 {
    width: 540px;
  }

  .vcb2-list {
    width: calc(100% - 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
  }

  .vh-title-box {
  }

  .v-content {
    margin-top: 1rem;
  }

  .pattern-img-border {
    width: 132px;
    height: 76px;
    margin: 4px;
  }

  .pattern-img {
    width: 128px;
    height: 72px;
  }

  .pattern-img:hover {
    width: 132px;
    height: 76px;
    margin: 0 0 0 -2px;
  }

  .vcb6-column-1-row-1-column-1 {
    margin-top: 50px;
  }

  .vcb6-column-2 {
    margin-top: 50px;
  }

  .vcb6-column-3 {
    margin-top: 20px;
  }

  .vcb3-item {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .vcb3-title-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    padding-top: calc(100% * (138 / 912));
  }

  .vcb3-content-1 {
    flex-direction: column;
    margin-top: 0;
  }

  .vcb3-c1-image {
    width: 100%;
    height: auto;
  }

  .vcb3-c1-content {
    margin-top: 1rem;
    width: calc(100% - 1rem - 2px);
    height: 80vh;
    margin-left: 0;
  }

  .vcb3-c2-box {
  }

  .vcb3-c2-box-direction-btn {
    width: 0;
    height: 0;
  }

  .vcb3-c2-box-panel {
  }

  .vc-block-6 {
    flex-direction: column;
    margin-top: 1rem;
  }

  .vcb6-item {
    width: calc(100% - 2rem);
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .v-footer {
    margin-top: 0;
  }

  .vcb4-right {
    max-height: 40vh;
    min-height: 30vh;
  }

  .vcb1l-title {
    text-align: justify;
  }

  .vcb1-ibox {
    top: calc((var(--content-width) - 1.5rem) * (672 / 1200));
  }

  .vcb1-ibox-item {
    width: 6px;
    height: 6px;
    margin: 0 4px;
  }

  .vcb3-c2-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .v_title_img1 {
    background-image: url("../img/img_title_01_mobile.png");
  }

  .v_title_img2 {
    background-image: url("../img/img_title_02_mobile.png");
  }

  .vs2-image-box {
    margin-top: 1rem;
  }

  .vs2cb3-c2-box-item {
    height: auto;
    width: 100%;
    margin: 0.2rem 0;
  }

  .vs1-content {
    margin: 1rem 0;
  }

  .vcb6-item-title {
    padding: 0.5rem 0 1rem;
  }

  .vcb2-ilb-vertical-line {
    margin: 0;
  }
}