@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}

:root {
  --noticeColor: #d41c1c;
  --warnColor: #e6a23c;
  --theme-color: #182b88;
  --gray-f4: #f4f4f4;
}

html,
body {
  font-size: 16px;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
  color: #333;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td,
a,
img,
i {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

p,
span,
a {
  font-size: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
}

img,
input,
select,
button {
  vertical-align: middle;
  outline: none;
}

select {
  /*很关键：将默认的select选择框样式清除*/
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
  display: none;
}

div,
li {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

img,
input,
select,
button {
  vertical-align: middle;
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  line-height: 0;
}

.el {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.scale {
  overflow: hidden;
  font-size: 0;
  letter-spacing: 0;
}

.scale img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.scale img:hover {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.swiper .pic {
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.swiper .pic img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input::-webkit-input-placeholder {
  /*WebKit browsers*/
  font-size: 14px;
  color: #aaa;
}

input::-moz-input-placeholder {
  /*Mozilla Firefox*/
  font-size: 14px;
  color: #aaa;
}

input::-ms-input-placeholder {
  /*Internet Explorer*/
  font-size: 14px;
  color: #aaa;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 1em;
  width: 1em;
  background-image: url("https://www.elestorcito.com/assets/addons/cms/home/images/icons/close.png");
  -webkit-background-size: cover;
          background-size: cover;
  cursor: pointer;
}

*:focus {
  outline: none;
}

.layout {
  max-width: 1400px;
  margin: 0 auto;
}

.red {
  color: red;
}

.outShadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.notice_color {
  color: var(--noticeColor);
}

.btn,
.btnBox {
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.el-loading-spinner .el-loading-text,
.el-loading-spinner .path {
  --el-color-primary: #182b88;
}

/* 修改选中项的背景颜色 */
.el-select-dropdown__item {
  --el-color-primary: #333;
  font-size: 0.14rem;
}

/* 修改鼠标悬停时的背景颜色 */
.el-select-dropdown__item:hover {
  background-color: #f4f4f6;
}

/**
 * 创建按钮样式的 mixin
 * 
 * @param {string} $type - 按钮类型，可选值为 "normal"、"responsive" 或 "custom"
 * @param {boolean} $animation - 是否开启动画
 * @param {string} $animationType - 动画类型，可选值为 "background"、"before" 或 "after"
 * @param {string} $direction - 动画方向，可选值为 "left"、"right"、"top"、"bottom"、"center" 或 "centerCircle"
 * @param {number} $opcacityOrigin - 伪元素初始透明度
 * @param {color} $pseudoElementHover - 伪元素悬停时的背景颜色
 * @param {number} $min-width - 按钮最小宽度
 * @param {number} $min-height - 按钮最小高度
 * @param {number} $max-width - 按钮最大宽度
 * @param {number} $max-height - 按钮最大高度
 * @param {number} $width - 按钮宽度
 * @param {number} $height - 按钮高度
 * @param {number} $padding - 按钮内边距
 * @param {number} $responsivePadding - 自适应按钮内边距
 * @param {string} $align - 按钮文本对齐方式，可选值为 "center"
 * @param {number} $borderRadius - 按钮边框圆角半径
 * @param {number} $borderSize - 按钮边框宽度
 * @param {color} $backgroundColor - 按钮背景颜色
 * @param {color} $boderColor - 按钮边框颜色
 * @param {color} $backgroundColorHover - 按钮悬停时的背景颜色
 * @param {color} $fontColor - 按钮文本颜色
 * @param {color} $boderColorHover - 按钮悬停时的边框颜色
 * @param {color} $fontColorHover - 按钮悬停时的文本颜色
 * @param {number} $duration - 动画持续时间
 * @param {string} $cubic - 动画时间函数
 * @param {string} $box-sizing - 盒模型类型，可选值为 "border-box"
 * @param {boolean} $outHover - 是否开启外部悬停效果
 */
.main,
.wrapper,
.layout {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 1560px;
  margin: 0 auto;
  max-width: -webkit-calc(100% - 1.6rem);
  max-width: -moz-calc(100% - 1.6rem);
  max-width: calc(100% - 1.6rem);
}
@media screen and (max-width: 1440px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 1.2rem);
    max-width: -moz-calc(100% - 1.2rem);
    max-width: calc(100% - 1.2rem);
  }
}
@media screen and (max-width: 1280px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 0.8rem);
    max-width: -moz-calc(100% - 0.8rem);
    max-width: calc(100% - 0.8rem);
  }
}
@media screen and (max-width: 768px) {
  .main,
  .wrapper,
  .layout {
    max-width: -webkit-calc(100% - 0.4rem);
    max-width: -moz-calc(100% - 0.4rem);
    max-width: calc(100% - 0.4rem);
  }
}

.slot {
  font-size: 0.18rem;
  line-height: 1.8;
}
.slot p,
.slot span {
  font-size: inherit;
}
.slot p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.04rem 0;
  line-height: 1.5;
}
.slot .align-center {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .slot {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 500px) {
  .slot {
    font-size: 0.14rem;
  }
}

.notice {
  color: var(--noticeColor) !important;
  font-size: 0.18rem;
}
@media screen and (max-width: 1400px) {
  .notice {
    line-height: 1.5;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .notice {
    font-size: 0.14rem;
  }
}

.time.timeBox {
  position: relative;
  z-index: 2;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 73px;
  background-color: #0e238d;
  color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #0e238d;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.time.timeBox .pos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.time.timeBox .concrete {
  font-size: 20px;
  margin-bottom: 1px;
  white-space: nowrap;
}
.time.timeBox .year {
  font-size: 16px;
  margin-top: 1px;
  white-space: nowrap;
}
.time.timeBox .place {
  width: 100%;
  padding-top: 94.5205479452%;
}

.layout .breadcrumbs {
  height: 0.73rem;
  border-bottom: 1px solid #ddd;
  font-size: 0.18rem;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.layout .breadcrumbs .pic {
  margin-right: 0.1rem;
}
.layout .breadcrumbs .next {
  display: inline-block;
  margin: 0 0.07rem;
}
.layout .breadcrumbs.crumbslastnone .next:last-of-type {
  display: none;
}

@media screen and (max-width: 1400px) {
  .layout .breadcrumbs {
    height: 0.7rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .layout .breadcrumbs {
    height: 0.6rem;
    font-size: 0.14rem;
  }
}
.el-overlay .el-overlay-dialog .el-dialog {
  padding: 0;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.16rem;
  color: #333;
  height: 0.51rem;
  padding: 0;
  padding-left: 0.2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(50%, #f0f3fe), to(#e7ebfc));
  background: -webkit-linear-gradient(top, #fefefe, #f0f3fe 50%, #e7ebfc);
  background: -moz-linear-gradient(top, #fefefe, #f0f3fe 50%, #e7ebfc);
  background: -o-linear-gradient(top, #fefefe, #f0f3fe 50%, #e7ebfc);
  background: linear-gradient(to bottom, #fefefe, #f0f3fe 50%, #e7ebfc);
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__title {
  font-size: 0.16rem;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .titleAlignCenter {
  width: 100%;
  padding-right: 0.2rem;
  text-align: center;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .delete.title {
  width: 100%;
  padding-right: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .delete.title .deleteText {
  margin-left: auto;
  color: #999;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .delete.title .deleteText:hover {
  color: var(--theme-color);
  text-decoration: underline;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__headerbtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__headerbtn .el-icon svg {
  -webkit-transform: scale(1.5);
     -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
       -o-transform: scale(1.5);
          transform: scale(1.5);
  color: #333;
}
.el-overlay .el-overlay-dialog .el-dialog .el-dialog__footer {
  padding: 0;
}
.el-overlay .el-overlay-dialog .el-dialog .content {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0.42rem 0.56rem;
}
.el-overlay .el-overlay-dialog .el-dialog .content .notice {
  text-align: center;
  margin-bottom: 0.2rem;
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.1rem;
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i {
  display: inline-block;
  position: relative;
  font-size: 70px;
  color: #eff1fd;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: transparent;
  width: 70px;
  height: 70px;
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i::before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  background-color: #21338b;
  width: 95%;
  height: 95%;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 1;
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i.error {
  color: rgba(255, 255, 255, 0.95);
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i.error::after {
  background-color: var(--noticeColor);
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i.warn {
  color: rgba(255, 255, 255, 0.8);
}
.el-overlay .el-overlay-dialog .el-dialog .content .pic i.warn::after {
  background-color: var(--warnColor);
}
.el-overlay .el-overlay-dialog .el-dialog .content .text {
  text-align: center;
  font-size: 0.18rem;
  color: #333;
}

.toast.slot:not(.normal) .btnBox {
  margin: 0.3rem auto 0;
  width: 2rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.toast.slot:not(.normal) .btnBox .btn {
  width: 0.7rem;
  height: 0.3rem;
  background-color: #ed6d17;
  color: #fff;
  font-size: 0.16rem;
  -webkit-border-radius: 0.05rem;
          border-radius: 0.05rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.toast.slot:not(.normal) .btnBox .btn.btn2 {
  background-color: #c7c7c7;
}
.toast.slot:not(.normal) .btnBox.noCancel {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.toast.slot:not(.normal) .btnBox.noCancel .btn {
  width: 50%;
  -webkit-transform: translateY(33%);
     -moz-transform: translateY(33%);
      -ms-transform: translateY(33%);
       -o-transform: translateY(33%);
          transform: translateY(33%);
}
.toast.slot:not(.normal) .btnBox.noCancel .btn2 {
  display: none;
}

.el-popover.el-popper {
  font-size: 0.14rem;
}

@media screen and (max-width: 1400px) {
  .el-overlay .el-overlay-dialog .el-dialog {
    width: 450px !important;
    padding: 0;
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header {
    height: 0.48rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__headerbtn .el-icon svg {
    -webkit-transform: scale(1.25);
       -moz-transform: scale(1.25);
        -ms-transform: scale(1.25);
         -o-transform: scale(1.25);
            transform: scale(1.25);
  }
  .el-overlay .el-overlay-dialog .el-dialog .content {
    padding: 0.35rem 0.45rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .content .pic i {
    font-size: 0.6rem;
    width: 0.6rem;
    height: 0.6rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .content .text {
    font-size: 0.16rem;
  }
  .toast.slot:not(.normal) .btnBox {
    margin-top: 0.25rem;
  }
  .toast.slot:not(.normal) .btnBox .btn,
  .toast.slot:not(.normal) .btnBox .btnText {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 1024px) {
  .el-overlay .el-overlay-dialog .el-dialog {
    width: 400px !important;
    max-width: -webkit-calc(100% - 0.4rem);
    max-width: -moz-calc(100% - 0.4rem);
    max-width: calc(100% - 0.4rem);
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header {
    height: 0.45rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__title {
    font-size: 0.14rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__headerbtn {
    height: 0.45rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .el-dialog__header .el-dialog__headerbtn .el-icon svg {
    font-size: 0.16rem;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  .el-overlay .el-overlay-dialog .el-dialog .content {
    padding: 0.3rem 0.35rem;
  }
  .el-overlay .el-overlay-dialog .el-dialog .content .pic i {
    font-size: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
  }
  .toast.slot:not(.normal) .btnBox {
    margin-top: 0.2rem;
    width: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.el-overlay .el-overlay-dialog .scoreToast .titleAlignCenter {
  color: #000;
}
.el-overlay .el-overlay-dialog .scoreToast .content {
  max-height: 5.5rem;
  overflow: auto;
  overflow-y: auto;
  overflow-x: hidden;
  /* 自定义滚动条样式 */
}
.el-overlay .el-overlay-dialog .scoreToast .content::-webkit-scrollbar {
  width: 6px;
}
.el-overlay .el-overlay-dialog .scoreToast .content::-webkit-scrollbar-track {
  background: #f1f1f1;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}
.el-overlay .el-overlay-dialog .scoreToast .content::-webkit-scrollbar-thumb {
  background: #aaa;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.el-overlay .el-overlay-dialog .scoreToast .content::-webkit-scrollbar-thumb:hover {
  background: #888;
}
.el-overlay .el-overlay-dialog .scoreToast .content .score {
  position: relative;
  text-align: center;
  color: #000;
  line-height: 2.1363636364;
}
.el-overlay .el-overlay-dialog .scoreToast .content .score span {
  color: #d00000;
}
.el-overlay .el-overlay-dialog .scoreToast .content .score .pay {
  margin-left: 0.1rem;
  color: #666;
  font-size: 0.14rem;
  text-decoration: underline;
  cursor: pointer;
}
.el-overlay .el-overlay-dialog .scoreToast .content .score .pay:hover {
  color: var(--theme-color);
}
.el-overlay .el-overlay-dialog .scoreToast .content .btnBox {
  min-width: 1.8rem;
  padding: 0.1rem 0.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #009ee7;
  color: #fff;
}
.el-overlay .el-overlay-dialog .scoreToast .content .btnBox .btnText {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.el-overlay .el-overlay-dialog .scoreToast .content .btnBox:hover {
  background-color: rgba(0, 158, 231, 0.8);
}
.el-overlay .el-overlay-dialog .scoreToast .content .request {
  padding-bottom: 0.3rem;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .notice {
  margin: 0 !important;
  text-align: left;
  font-size: 0.18rem;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .el-button {
  display: inline;
  font-size: inherit;
  padding: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  line-height: auto;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .el-button > span {
  white-space: wrap;
  text-align: left;
  line-height: auto;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list p {
  margin-top: 0.12rem;
  font-size: 0.18rem;
  line-height: 1.75;
  color: #333;
  width: 100%;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit p {
  text-align: center;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit button:hover {
  color: var(--theme-color);
  text-decoration: underline;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit .submit {
  cursor: pointer;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit .submit:hover {
  color: var(--theme-color);
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit .back {
  margin-left: 0.2rem;
  cursor: pointer;
  color: #666;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .list .submit .back:hover {
  color: var(--theme-color);
  text-decoration: underline;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request .el-input__wrapper {
  margin-top: 0.03rem;
  max-width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #ddd;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request a {
  text-decoration: underline;
}
.el-overlay .el-overlay-dialog .scoreToast .content .request a:hover {
  color: var(--theme-color);
}
.el-overlay .el-overlay-dialog .scoreToast .certificate .item .title {
  color: #333;
  font-size: 0.18rem;
}
.el-overlay .el-overlay-dialog .scoreToast .certificate .item a {
  margin-top: 0.2rem;
  display: block;
}
.el-overlay .el-overlay-dialog .scoreToast .certificate .item a img {
  max-width: 100%;
}
.el-overlay .el-overlay-dialog .scoreToast .certificate .item:nth-of-type(n+2) {
  margin-top: 0.3rem;
}
.el-overlay .el-overlay-dialog .scoreToast .certificate .btnBox {
  margin: 0.3rem auto 0.2rem;
  min-width: 1.4rem !important;
}

@media screen and (min-width: 1400px) {
  .el-overlay .el-overlay-dialog .scoreToast .el-dialog__header {
    height: 0.7rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .el-dialog__header .el-dialog__headerbtn {
    height: 0.7rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .titleAlignCenter {
    font-size: 0.26rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .score {
    text-align: center;
    font-size: 0.22rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .score:first-of-type {
    margin-top: 0.12rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .notice {
    margin-top: 0.4rem;
    font-size: 0.2rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .btnBox {
    margin-top: 0.6rem;
    margin-bottom: 0.37rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .btnBox .btnText {
    font-size: 0.2rem;
    height: 0.51rem;
  }
}
@media screen and (max-width: 1400px) {
  .el-overlay .el-overlay-dialog .scoreToast .content .score {
    font-size: 0.16rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content {
    max-height: 5rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .request .list .item p,
  .el-overlay .el-overlay-dialog .scoreToast .content .request .notice {
    font-size: 0.16rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .certificate {
    font-size: 0.16rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .certificate span {
    margin: 0 0.1rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .certificate .item .title {
    font-size: 0.16rem;
  }
  .el-overlay .el-overlay-dialog .scoreToast .content .notice {
    margin-top: 0.06rem;
  }
}
#elBacktop .el-backtop {
  -webkit-border-radius: 0 !important;
          border-radius: 0 !important;
  --el-color-primary: #182b88;
  right: 0.4rem !important;
  bottom: 1rem !important;
  width: 0.4rem !important;
  height: 0.4rem !important;
}
#elBacktop .el-backtop .backtop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#elBacktop .el-backtop .backtop .iconfont {
  margin-top: -6px;
  font-size: 30px;
}
#elBacktop .el-backtop .backtop .text {
  margin-top: -19px;
  font-size: 16px;
}
#elBacktop .el-backtop .backtop span {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #elBacktop .el-backtop {
    -webkit-border-radius: 0 !important;
            border-radius: 0 !important;
    --el-color-primary: #182b88;
    right: 0.3rem !important;
    bottom: 0.6rem !important;
  }
  #elBacktop .el-backtop .backtop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #elBacktop .el-backtop .backtop .iconfont {
    margin-top: -0.06rem;
    font-size: 0.3rem;
  }
  #elBacktop .el-backtop .backtop .text {
    margin-top: -0.19rem;
    font-size: 0.16rem;
  }
  #elBacktop .el-backtop .backtop span {
    width: 100%;
    text-align: center;
  }
}
.myNoData {
  text-align: center;
  color: #999;
  font-size: 0.16rem;
  line-height: 4;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .myNoData {
    font-size: 0.14rem;
  }
}

.banner {
  height: 282px;
}
.banner .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;
}
.banner .swiper .swiper-wrapper .swiper-slide a .layout {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.banner .swiper .swiper-wrapper .swiper-slide a .layout .text {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  color: #e41e1f;
  font-weight: 600;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 2px 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff;
}
.banner .swiper .swiper-wrapper .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  color: #fff;
}
.banner .swiper .btn {
  position: absolute;
  z-index: 2;
  bottom: 9px;
  width: 100%;
}
.banner .swiper .btn .dots {
  width: 100%;
  text-align: center;
}
.banner .swiper .btn .dots .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 6px;
  background-color: transparent;
  opacity: 1;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
}
.banner .swiper .btn .dots .swiper-pagination-bullet-active {
  background-color: #fff;
  border: 1px solid #fff;
}

.step {
  position: relative;
  overflow: hidden;
  height: 375px;
  background: url("https://www.elestorcito.com/assets/addons/cms/home/images/line.png") no-repeat center 240px;
}
.step .layout {
  overflow: hidden;
}
.step .icons {
  padding-top: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.step .icons .icon-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}
.step .icons .icon-item .pic {
  position: relative;
  display: inline-block;
  width: auto;
  background-color: #fff;
}
.step .icons .icon-item .pic img {
  width: auto;
}
.step .icons .icon-item .pic .icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  min-height: auto;
}
.step .icons .icon-item .pic .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.step .icons .icon-item .text {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
.step .icons .icon-item .circle {
  margin-top: 33px;
  position: relative;
  width: 23px;
  height: 23px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid #182b88;
  background-color: #fff;
}
.step .icons .icon-item .circle::before {
  content: "";
  width: 11px;
  height: 11px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #182b88;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.step .icons .icon-item .time {
  margin-top: 22px;
  font-size: 18px;
  color: #333;
}
.step .icons .icon-item:hover .pic .bg {
  opacity: 0;
}
.step .slide,
.step .cover {
  display: none;
  position: absolute;
  right: 5px;
  top: 20%;
  width: 16px;
  white-space: wrap;
  font-size: 0.14rem;
  text-align: center;
}
.step .slide {
  display: none;
}
.step .cover {
  z-index: 2;
  color: #182b88;
}
@media screen and (max-width: 1560px) {
  .step .cover {
    display: inline-block;
  }
}
.step.mobile {
  display: none;
}

.common-title1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
}
.common-title1 .pic {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-right: 11px;
}
.common-title1 .title {
  margin-right: 11px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}
.common-title1 .line {
  margin-right: 11px;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.common-title1 .line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
  top: 0;
  bottom: 0;
  margin: auto;
}
.common-title1 .more {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 18px;
  color: #999999;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.common-title1 .more a {
  color: inherit;
}
.common-title1 .more:hover {
  color: #182b88;
}

.race {
  padding-top: 70px;
  padding-bottom: 79px;
  background: url("https://www.elestorcito.com/assets/addons/cms/home/images/race-bg.png") no-repeat center center/cover;
}
.race .layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.race .layout .dynamics {
  width: 64.7435897436%;
}
.race .layout .dynamics .common-title2 {
  display: none;
}
.race .layout .dynamics .content {
  height: 571px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.race .layout .dynamics .content .race-swiper {
  padding: 15px 16px;
  width: 60.495049505%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  min-width: 430px;
  background-color: #fff;
}
.race .layout .dynamics .content .race-swiper #race {
  position: relative;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide.line,
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide .line {
  background-repeat: no-repeat;
  will-change: background-size;
  -webkit-transition: -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: -o-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -o-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-background-size: 0 1px;
       -o-background-size: 0 1px;
          background-size: 0 1px;
  background-position: 100% 100%;
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background-image: -webkit-linear-gradient(transparent, transparent);
  background-image: -moz-linear-gradient(transparent, transparent);
  background-image: -o-linear-gradient(transparent, transparent);
  background-image: linear-gradient(transparent, transparent);
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide:hover.line,
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide:hover .line {
  background: -webkit-gradient(linear, left top, left bottom, from(#182b88), to(#182b88)) no-repeat 0 100%/100% 1px;
  background: -webkit-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: -moz-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: -o-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a {
  width: 100%;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top {
  height: 343px;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top img {
  width: 100%;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom {
  padding-top: 29px;
  padding-bottom: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 105px;
  margin-right: 15px;
  background-color: #0e238d;
  color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .pos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .concrete {
  font-size: 28px;
  margin-bottom: 1px;
  white-space: nowrap;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .year {
  font-size: 18px;
  margin-top: 1px;
  white-space: nowrap;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .place {
  width: 100%;
  padding-top: 88.5714285714%;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text {
  width: 78.5597381342%;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text .title {
  font-size: 22px;
  color: #333;
  line-height: 1.6818181818;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text p {
  margin-top: 15px;
  max-width: 428px;
  font-size: 16px;
  color: #999;
  line-height: 1.6875;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a:hover .bottom .text .title {
  color: #182b88;
}
.race .layout .dynamics .content .race-swiper #race .btn {
  position: absolute;
  z-index: 2;
  right: 9.5px;
  top: 309px;
}
.race .layout .dynamics .content .race-swiper #race .btn .dots {
  text-align: center;
}
.race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 6.5px;
  background-color: #fff;
  opacity: 1;
}
.race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet-active {
  background-color: #009de5;
}
.race .layout .dynamics .content .others {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 35.4455445545%;
  margin-left: 14px;
  height: 100%;
}
.race .layout .dynamics .content .others .items {
  height: 100%;
}
.race .layout .dynamics .content .others .items .item {
  display: block;
  margin-top: 18px;
  overflow: visible;
  background-color: #fff;
  height: -webkit-calc(33.3333333333% - 12px);
  height: -moz-calc(33.3333333333% - 12px);
  height: calc(33.3333333333% - 12px);
  padding: 18px 24px 18px 21px;
}
.race .layout .dynamics .content .others .items .item.btnBox,
.race .layout .dynamics .content .others .items .item .btnBox {
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  overflow: hidden;
}
.race .layout .dynamics .content .others .items .item.btnBox .btnText,
.race .layout .dynamics .content .others .items .item .btnBox .btnText {
  position: relative;
  z-index: 2;
}
.race .layout .dynamics .content .others .items .item.btnBox::before,
.race .layout .dynamics .content .others .items .item .btnBox::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
  z-index: 1;
}
.race .layout .dynamics .content .others .items .item.btnBox:hover,
.race .layout .dynamics .content .others .items .item .btnBox:hover {
  color: #fff;
}
.race .layout .dynamics .content .others .items .item.btnBox:hover::before,
.race .layout .dynamics .content .others .items .item .btnBox:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #0e238d;
}
.race .layout .dynamics .content .others .items .item.btnBox .btnText:not(.normal),
.race .layout .dynamics .content .others .items .item .btnBox .btnText:not(.normal) {
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.race .layout .dynamics .content .others .items .item.btnBox .btnText:not(.normal) span,
.race .layout .dynamics .content .others .items .item .btnBox .btnText:not(.normal) span {
  color: inherit;
}
.race .layout .dynamics .content .others .items .item:first-of-type {
  margin-top: 0;
}
.race .layout .dynamics .content .others .items .item .title {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.race .layout .dynamics .content .others .items .item .time {
  margin-top: 10px;
  font-size: 20px;
  color: #999;
}
.race .layout .dynamics .content .others .items .item:hover .title,
.race .layout .dynamics .content .others .items .item:hover .time {
  position: relative;
  z-index: 2;
  color: inherit;
}
.race .layout .noticeBox {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 31px;
}
.race .layout .noticeBox .common-title2 {
  display: none;
}
.race .layout .noticeBox .content {
  background-color: #fff;
}
.race .layout .noticeBox .content .notice-item {
  background: url("https://www.elestorcito.com/assets/addons/cms/home/images/notice-line.png") no-repeat center top;
  padding: 23px 16px 17px 16px;
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.race .layout .noticeBox .content .notice-item.btnBox,
.race .layout .noticeBox .content .notice-item .btnBox {
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  overflow: hidden;
}
.race .layout .noticeBox .content .notice-item.btnBox .btnText,
.race .layout .noticeBox .content .notice-item .btnBox .btnText {
  position: relative;
  z-index: 2;
}
.race .layout .noticeBox .content .notice-item.btnBox::before,
.race .layout .noticeBox .content .notice-item .btnBox::before {
  position: absolute;
  content: "";
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
  z-index: 1;
}
.race .layout .noticeBox .content .notice-item.btnBox:hover,
.race .layout .noticeBox .content .notice-item .btnBox:hover {
  color: #fff;
}
.race .layout .noticeBox .content .notice-item.btnBox:hover::before,
.race .layout .noticeBox .content .notice-item .btnBox:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #0e238d;
}
.race .layout .noticeBox .content .notice-item.btnBox .btnText:not(.normal),
.race .layout .noticeBox .content .notice-item .btnBox .btnText:not(.normal) {
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.race .layout .noticeBox .content .notice-item.btnBox .btnText:not(.normal) span,
.race .layout .noticeBox .content .notice-item .btnBox .btnText:not(.normal) span {
  color: inherit;
}
.race .layout .noticeBox .content .notice-item:first-of-type {
  background: none;
}
.race .layout .noticeBox .content .notice-item:last-of-type {
  height: 1px;
  padding: 0;
  padding-bottom: 21px;
}
.race .layout .noticeBox .content .notice-item .time {
  position: relative;
  z-index: 2;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 73px;
  background-color: #0e238d;
  color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.race .layout .noticeBox .content .notice-item .time .pos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.race .layout .noticeBox .content .notice-item .time .concrete {
  font-size: 20px;
  margin-bottom: 1px;
  white-space: nowrap;
}
.race .layout .noticeBox .content .notice-item .time .year {
  font-size: 16px;
  margin-top: 1px;
  white-space: nowrap;
}
.race .layout .noticeBox .content .notice-item .time .place {
  width: 100%;
  padding-top: 94.5205479452%;
}
.race .layout .noticeBox .content .notice-item .title {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding-left: 15px;
  font-size: 20px;
  color: #333;
  line-height: 1.75;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.race .layout .noticeBox .content .notice-item:hover .time {
  border: 1px solid #6e7bbb;
}
.race .layout .noticeBox .content .notice-item:hover .title {
  color: inherit;
}

.common-title2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-title2 .left,
.common-title2 .right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.common-title2 .right .pic {
  margin-right: 13px;
  -webkit-transform: rotateZ(180deg);
     -moz-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.common-title2 .pic {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 90px;
}
.common-title2 .pic img {
  width: 100%;
}
.common-title2 .title {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin: 0 13px 4px 13px;
}
.common-title2 .line {
  margin-right: 13px;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.common-title2 .line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
  top: 0;
  bottom: 0;
  margin: auto;
}
.common-title2 .more {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 18px;
  color: #999999;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.common-title2 .more a {
  color: inherit;
}
.common-title2 .more:hover {
  color: #182b88;
}

.history .layout .common-title1 {
  display: none;
}
.history .layout .common-title2 {
  padding-top: 59px;
  padding-bottom: 55px;
}
.history .layout #history {
  position: relative;
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide.line,
.history .layout #history .swiper .swiper-wrapper .swiper-slide .line {
  background-repeat: no-repeat;
  will-change: background-size;
  -webkit-transition: -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: -o-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1), -o-background-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-background-size: 0 1px;
       -o-background-size: 0 1px;
          background-size: 0 1px;
  background-position: 100% 100%;
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
  background-image: -webkit-linear-gradient(transparent, transparent);
  background-image: -moz-linear-gradient(transparent, transparent);
  background-image: -o-linear-gradient(transparent, transparent);
  background-image: linear-gradient(transparent, transparent);
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide:hover.line,
.history .layout #history .swiper .swiper-wrapper .swiper-slide:hover .line {
  background: -webkit-gradient(linear, left top, left bottom, from(#182b88), to(#182b88)) no-repeat 0 100%/100% 1px;
  background: -webkit-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: -moz-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: -o-linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
  background: linear-gradient(#182b88, #182b88) no-repeat 0 100%/100% 1px;
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic {
  height: 285px;
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide a .title {
  padding: 24px 0 62px 0;
  font-size: 20px;
  color: #333;
  line-height: 1.8;
}
.history .layout #history .swiper .swiper-wrapper .swiper-slide a:hover .title {
  color: #182b88;
}
.history .layout #history .btn .dots {
  display: none;
}
.history .layout #history .btn .prev,
.history .layout #history .btn .next {
  position: absolute;
  top: 115px;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 2;
}
.history .layout #history .btn .prev.btnBox,
.history .layout #history .btn .prev .btnBox,
.history .layout #history .btn .next.btnBox,
.history .layout #history .btn .next .btnBox {
  overflow: hidden;
  background: #fff;
  color: #505257;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #b7b7b7;
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.history .layout #history .btn .prev.btnBox:hover,
.history .layout #history .btn .prev .btnBox:hover,
.history .layout #history .btn .next.btnBox:hover,
.history .layout #history .btn .next .btnBox:hover {
  background: #182b88;
  color: #fff;
  border: 1px solid #182b88;
}
.history .layout #history .btn .prev.btnBox .btnText:not(.normal),
.history .layout #history .btn .prev .btnBox .btnText:not(.normal),
.history .layout #history .btn .next.btnBox .btnText:not(.normal),
.history .layout #history .btn .next .btnBox .btnText:not(.normal) {
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.history .layout #history .btn .prev.btnBox .btnText:not(.normal) span,
.history .layout #history .btn .prev .btnBox .btnText:not(.normal) span,
.history .layout #history .btn .next.btnBox .btnText:not(.normal) span,
.history .layout #history .btn .next .btnBox .btnText:not(.normal) span {
  color: inherit;
}
.history .layout #history .btn .prev .iconfont,
.history .layout #history .btn .next .iconfont {
  font-size: 32px;
}
.history .layout #history .btn .prev {
  left: -7.6282051282%;
  -webkit-transform: rotateZ(180deg);
     -moz-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.history .layout #history .btn .next {
  right: -7.6282051282%;
}

.links {
  background-color: #fbfbfb;
}
.links .layout .common-title1 {
  display: none;
}
.links .layout .common-title2 {
  padding-top: 37px;
  padding-bottom: 41px;
}
.links .layout .link-box {
  padding-bottom: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.links .layout .link-box .link-item {
  text-align: center;
  min-width: 166.6666666667px;
}
.links .layout .link-box .link-item .pic,
.links .layout .link-box .link-item .text {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.links .layout .link-box .link-item .pic {
  height: 72px;
}
.links .layout .link-box .link-item .pic img {
  min-height: 72px;
  max-height: 100%;
}
.links .layout .link-box .link-item .text {
  margin-top: 24px;
  font-size: 18px;
  color: #000;
}
.links .layout .link-box .link-item:hover .pic,
.links .layout .link-box .link-item:hover .text {
  -webkit-transform: translateY(-10px);
     -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
}

.mobile {
  display: none;
}

@media screen and (max-width: 1820px) {
  .history .layout #history .btn .prev.btnBox {
    left: -70px;
  }
  .history .layout #history .btn .next.btnBox {
    right: -70px;
  }
}
@media screen and (max-width: 1440px) {
  .step {
    height: 337.5px;
    background: url("https://www.elestorcito.com/assets/addons/cms/home/images/line.png") no-repeat center 233px;
  }
  .step .icons .icon-item {
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
  }
  .common-title1 {
    padding-bottom: 36px;
  }
  .common-title1 .title {
    font-size: 27px;
  }
  .common-title1 .more {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    font-size: 16px;
  }
  .race {
    padding: 63px 0 72px 0;
  }
  .race .layout .dynamics .content {
    height: 513.9px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top {
    height: 308.7px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time {
    width: 90px;
    margin-right: 14px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .concrete {
    font-size: 24px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .year {
    font-size: 16px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .place {
    padding-top: 85.7142857143%;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text .title {
    font-size: 20px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text p {
    font-size: 14px;
  }
  .race .layout .dynamics .content .race-swiper #race .btn {
    top: 280px;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots {
    text-align: center;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .race .layout .dynamics .content .others .items .item {
    margin-top: 16px;
    height: -webkit-calc(33.3333333333% - 11px);
    height: -moz-calc(33.3333333333% - 11px);
    height: calc(33.3333333333% - 11px);
    padding: 16px 20px 18px 18px;
  }
  .race .layout .dynamics .content .others .items .item:first-of-type {
    margin-top: 0;
  }
  .race .layout .dynamics .content .others .items .item .title {
    font-size: 18px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .race .layout .dynamics .content .others .items .item .time {
    margin-top: 9px;
    font-size: 18px;
  }
  .race .layout .noticeBox {
    margin-left: 25px;
  }
  .race .layout .noticeBox .content .notice-item {
    padding: 20px 14px 16px 14px;
    height: 99px;
  }
  .race .layout .noticeBox .content .notice-item:last-of-type {
    padding-bottom: 17px;
  }
  .race .layout .noticeBox .content .notice-item .time {
    width: 65px;
  }
  .race .layout .noticeBox .content .notice-item .time .concrete {
    font-size: 18px;
  }
  .race .layout .noticeBox .content .notice-item .time .year {
    font-size: 14px;
  }
  .race .layout .noticeBox .content .notice-item .time .place {
    padding-top: 92.3076923077%;
  }
  .race .layout .noticeBox .content .notice-item .title {
    margin-top: -4px;
    padding-left: 13px;
    font-size: 18px;
  }
  .common-title2 .title {
    font-size: 27px;
  }
  .common-title2 .more {
    font-size: 16px;
  }
  .history .layout .common-title2 {
    padding-top: 53px;
    padding-bottom: 50px;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic {
    height: 256.5px;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .title {
    padding: 20px 0 58px 0;
    font-size: 18px;
  }
  .history .layout #history .btn .dots {
    display: none;
  }
  .history .layout #history .btn .prev,
  .history .layout #history .btn .next {
    position: absolute;
    top: 115px;
    width: 40px;
    height: 40px;
  }
  .history .layout #history .btn .prev .iconfont,
  .history .layout #history .btn .next .iconfont {
    font-size: 24px;
  }
  .history .layout #history .btn .prev.btnBox {
    left: -3.8461538462%;
  }
  .history .layout #history .btn .next.btnBox {
    right: -3.8461538462%;
  }
  .links .layout .common-title2 {
    padding-top: 34px;
    padding-bottom: 37px;
  }
  .links .layout .link-box {
    padding-bottom: 44px;
  }
  .links .layout .link-box .link-item {
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media screen and (max-width: 1280px) {
  .banner .swiper .swiper-wrapper .swiper-slide a .layout .text {
    font-size: 20px;
  }
  .step {
    height: 310px;
    background: url("https://www.elestorcito.com/assets/addons/cms/home/images/line.png") no-repeat center 217px;
  }
  .step .icons {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .step .icons .icon-item .time {
    white-space: nowrap;
  }
  .step .icons .icon-item .text {
    font-size: 0.22rem;
  }
  .common-title1 {
    padding-bottom: 36px;
  }
  .common-title1 .title {
    font-size: 27px;
  }
  .common-title1 .more {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    font-size: 16px;
  }
  .race {
    padding: 50px 0 55px 0;
  }
  .race .layout {
    display: block;
  }
  .race .layout .dynamics {
    width: 100%;
  }
  .race .layout .dynamics .common-title1 {
    display: none;
  }
  .race .layout .dynamics .common-title2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 35px;
  }
  .race .layout .dynamics .content {
    height: 428.25px;
  }
  .race .layout .dynamics .content .race-swiper {
    width: 50%;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top {
    height: 257.25px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom {
    padding: 0.2rem 0;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time {
    width: 65px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .concrete {
    font-size: 18px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .year {
    font-size: 14px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .place {
    padding-top: 92.3076923077%;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text .title {
    font-size: 16px;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text p {
    font-size: 12px;
  }
  .race .layout .dynamics .content .race-swiper #race .btn {
    top: 232px;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots {
    text-align: center;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .race .layout .dynamics .content .others {
    width: 50%;
    max-width: none;
  }
  .race .layout .dynamics .content .others .items .item {
    margin-top: 16px;
    height: -webkit-calc(33.3333333333% - 11px);
    height: -moz-calc(33.3333333333% - 11px);
    height: calc(33.3333333333% - 11px);
    padding: 16px 20px 18px 18px;
  }
  .race .layout .dynamics .content .others .items .item:first-of-type {
    margin-top: 0;
  }
  .race .layout .dynamics .content .others .items .item .title {
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .race .layout .dynamics .content .others .items .item .time {
    margin-top: 9px;
    font-size: 16px;
  }
  .race .layout .noticeBox {
    margin-left: 0;
  }
  .race .layout .noticeBox .common-title1 {
    display: none;
  }
  .race .layout .noticeBox .common-title2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 0 35px 0;
  }
  .race .layout .noticeBox .content .notice-item {
    height: 88px;
    width: 100%;
    padding: 15px 15px 12px 15px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: none;
    border-top: 1px dashed #ddd;
  }
  .race .layout .noticeBox .content .notice-item:first-of-type {
    border: none;
  }
  .race .layout .noticeBox .content .notice-item:last-of-type {
    padding-bottom: 17px;
  }
  .race .layout .noticeBox .content .notice-item .time {
    width: 65px;
  }
  .race .layout .noticeBox .content .notice-item .time .concrete {
    font-size: 18px;
  }
  .race .layout .noticeBox .content .notice-item .time .year {
    font-size: 14px;
  }
  .race .layout .noticeBox .content .notice-item .time .place {
    padding-top: 92.3076923077%;
  }
  .race .layout .noticeBox .content .notice-item .title {
    margin-top: 0;
    padding-left: 13px;
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .common-title2 .title {
    font-size: 24px;
  }
  .common-title2 .more {
    font-size: 14px;
  }
  .common-title2 .left .pic,
  .common-title2 .right .pic {
    width: 80px;
  }
  .history .layout .common-title2 {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic {
    height: 199.5px;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .title {
    padding: 15px 0 45px 0;
    font-size: 16px;
  }
  .history .layout #history .btn .dots {
    display: none;
  }
  .history .layout #history .btn .prev,
  .history .layout #history .btn .next {
    position: absolute;
    top: 115px;
    width: 40px;
    height: 40px;
  }
  .history .layout #history .btn .prev .iconfont,
  .history .layout #history .btn .next .iconfont {
    font-size: 24px;
  }
  .history .layout #history .btn .prev,
  .history .layout #history .btn .next {
    top: 100px;
    width: 0.4rem;
    height: 0.4rem;
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .history .layout #history .btn .prev.btnBox,
  .history .layout #history .btn .prev .btnBox,
  .history .layout #history .btn .next.btnBox,
  .history .layout #history .btn .next .btnBox {
    overflow: hidden;
    background: rgba(24, 43, 136, 0.7);
    color: #fff;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    border: 0 solid rgba(24, 43, 136, 0.7);
    -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .history .layout #history .btn .prev.btnBox:hover,
  .history .layout #history .btn .prev .btnBox:hover,
  .history .layout #history .btn .next.btnBox:hover,
  .history .layout #history .btn .next .btnBox:hover {
    background: #182b88;
    color: #fff;
    border: 0 solid #182b88;
  }
  .history .layout #history .btn .prev.btnBox .btnText:not(.normal),
  .history .layout #history .btn .prev .btnBox .btnText:not(.normal),
  .history .layout #history .btn .next.btnBox .btnText:not(.normal),
  .history .layout #history .btn .next .btnBox .btnText:not(.normal) {
    display: inline-block;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    color: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .history .layout #history .btn .prev.btnBox .btnText:not(.normal) span,
  .history .layout #history .btn .prev .btnBox .btnText:not(.normal) span,
  .history .layout #history .btn .next.btnBox .btnText:not(.normal) span,
  .history .layout #history .btn .next .btnBox .btnText:not(.normal) span {
    color: inherit;
  }
  .history .layout #history .btn .prev.btnBox {
    left: 0;
  }
  .history .layout #history .btn .next.btnBox {
    right: 0;
  }
  .links .layout .common-title2 {
    padding-top: 34px;
    padding-bottom: 37px;
  }
  .links .layout .link-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.2rem;
    place-items: center;
    padding-bottom: 44px;
  }
  .links .layout .link-box .link-item {
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media screen and (max-width: 1024px) {
  .step.pc {
    display: none;
  }
  .step.mobile {
    display: block;
    background: none;
    height: auto;
    padding: 0.4rem 0;
  }
  .step.mobile .icons {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.2rem;
  }
  .step.mobile .icons .icon-item {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  .step.mobile .icons .icon-item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .step.mobile .icons .icon-item .circle {
    display: none;
  }
  .step.mobile .icons .icon-item .pic {
    width: 0.7rem;
    margin-right: 0.15rem;
  }
  .step.mobile .icons .icon-item .pic img {
    width: 100%;
  }
  .step.mobile .icons .icon-item .pic .icon {
    width: 0.35rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .step.mobile .icons .icon-item .text {
    margin: 0;
  }
  .step.mobile .icons .icon-item .text > span {
    display: inline-block;
    font-size: 0.18rem;
    margin-bottom: 0.05rem;
  }
  .step.mobile .icons .icon-item .text .time {
    margin: 0;
    font-size: 0.16rem;
    line-height: 1.25;
  }
  .step.mobile .icons .icon-item .text .time span {
    font-size: inherit;
  }
  .links .layout .link-box {
    grid-template-columns: repeat(4, 1fr);
  }
  .links .layout .link-box .link-item .text {
    margin-top: 0.15rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 900px) {
  .banner {
    margin-top: 0.89rem;
  }
}
@media screen and (max-width: 850px) {
  .race .layout .noticeBox.content .notice-item {
    background: url("https://www.elestorcito.com/assets/addons/cms/home/images/notice-line.png") no-repeat center 0/contain;
  }
}
@media screen and (max-width: 820px) {
  .links .layout .link-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .step.mobile .icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper .swiper-wrapper .swiper-slide a .pic {
    max-height: 2.4rem;
  }
  .race .layout .dynamics .content {
    height: auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .race .layout .dynamics .content .race-swiper {
    width: 100%;
    position: relative;
  }
  .race .layout .dynamics .content .race-swiper #race {
    position: static;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top {
    height: auto;
    aspect-ratio: 710/330;
    min-height: 2.3rem;
  }
  @supports not (aspect-ratio: 3/2) {
    .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .top {
      height: 0.3rem;
    }
  }
  .race .layout .dynamics .content .race-swiper #race .btn {
    top: auto;
    bottom: 0.1rem;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 0.5;
  }
  .race .layout .dynamics .content .race-swiper #race .btn .dots .swiper-pagination-bullet-active {
    background-color: #009de5;
  }
  .race .layout .dynamics .content .others {
    margin-top: 0.2rem;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic {
    height: auto;
    aspect-ratio: 710/330;
    min-height: 2.1rem;
  }
  @supports not (aspect-ratio: 3/2) {
    .history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic {
      height: 0.3rem;
    }
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .pic img {
    width: 100%;
  }
  .history .layout #history .btn .btnBox {
    top: -webkit-calc(38% - 0.2rem);
    top: -moz-calc(38% - 0.2rem);
    top: calc(38% - 0.2rem);
  }
  .links .layout .link-box .link-item {
    width: 100%;
  }
  .links .layout .link-box .link-item a {
    width: 100%;
  }
  .links .layout .link-box .link-item a .pic {
    width: 100%;
  }
  .links .layout .link-box .link-item a .pic img {
    width: 100%;
    max-width: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .links .layout .link-box .link-item a .text {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 610px) {
  .links .layout .link-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step.mobile {
    padding: 0.4rem 0 0.3rem 0;
  }
  .step.mobile .icons {
    position: relative;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.3rem;
  }
  .step.mobile .icons::before {
    content: "";
    position: absolute;
    left: 0.105rem;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
  }
  .step.mobile .icons a {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .step.mobile .icons .icon-item .circle {
    margin: 0;
    margin-right: 0.2rem;
    display: block;
    width: 0.22rem;
    height: 0.22rem;
  }
  .step.mobile .icons .icon-item .circle::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .step.mobile .icons .icon-item .circle .pic {
    width: 0.55rem;
    margin-right: 0.1rem;
  }
  .step.mobile .icons .icon-item .circle .pic .icon {
    width: 50%;
  }
  .step.mobile .icons .icon-item .circle .text > span {
    font-size: 0.16rem;
    margin-bottom: 0.04rem;
  }
  .step.mobile .icons .icon-item .circle .text .time {
    margin: 0;
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 600px) {
  .banner {
    margin-top: 0.8rem;
    height: 2.4rem;
    overflow: hidden;
  }
  .banner .swiper {
    height: 100%;
  }
  .banner .pic {
    height: 100%;
  }
  .banner .pic img {
    overflow: hidden;
  }
}
@media screen and (max-width: 500px) {
  .banner .swiper .swiper-wrapper .swiper-slide a .layout .text {
    font-size: 0.16rem;
    text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  }
  .step {
    height: 300px;
    background: url("https://www.elestorcito.com/assets/addons/cms/home/images/line.png") no-repeat center 203px;
  }
  .step.mobile .icons .icon-item .pic .bg,
  .step.mobile .icons .icon-item .pic .hover {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .step.mobile .icons .icon-item .text {
    font-size: 0.18rem;
  }
  .step.mobile .icons .icon-item .text > span {
    margin-bottom: 0.1rem;
  }
  .step.mobile .icons .icon-item .time {
    font-size: 0.16rem;
    line-height: 1.5;
  }
  .common-title2 {
    display: none !important;
  }
  .common-title1 {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .common-title1 .pic {
    width: 0.75rem;
  }
  .common-title1 .pic img {
    width: 100%;
  }
  .common-title1 .title {
    font-size: 0.22rem;
  }
  .common-title1 .more {
    font-size: 0.14rem;
  }
  .race {
    padding: 0.4rem 0;
  }
  .race .layout .dynamics .common-title1 {
    padding-bottom: 0.3rem;
  }
  .race .layout .dynamics .content .race-swiper {
    min-width: 0;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time {
    width: 0.65rem;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .concrete {
    font-size: 0.18rem;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .year {
    font-size: 0.14rem;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .time .place {
    padding-top: 92.3076923077%;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text .title {
    font-size: 0.16rem;
  }
  .race .layout .dynamics .content .race-swiper #race .swiper-wrapper .swiper-slide a .bottom .text p {
    font-size: 0.14rem;
  }
  .race .layout .dynamics .content .others .items .item .title {
    font-size: 0.16rem;
  }
  .race .layout .dynamics .content .others .items .item .time {
    font-size: 0.16rem;
  }
  .race .layout .noticeBox .common-title1 {
    padding: 0.4rem 0 0.3rem 0;
  }
  .race .layout .noticeBox .content .notice-item {
    height: 0.88rem;
  }
  .race .layout .noticeBox .content .notice-item .time {
    width: 0.65rem;
  }
  .race .layout .noticeBox .content .notice-item .time .concrete {
    font-size: 0.18rem;
  }
  .race .layout .noticeBox .content .notice-item .time .year {
    font-size: 0.14rem;
  }
  .race .layout .noticeBox .content .notice-item .time .place {
    padding-top: 92.3076923077%;
  }
  .race .layout .noticeBox .content .notice-item .title {
    font-size: 0.16rem;
  }
  .history .layout .common-title1 {
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .history .layout #history .swiper .swiper-wrapper .swiper-slide a .title {
    font-size: 0.16rem;
    padding-bottom: 0.4rem;
  }
  .history .layout #history .btn.btnBox {
    top: -webkit-calc(33% - 0.2rem);
    top: -moz-calc(33% - 0.2rem);
    top: calc(33% - 0.2rem);
  }
  .history .layout #history .btn .prev,
  .history .layout #history .btn .next {
    width: 0.35rem;
    height: 0.35rem;
  }
  .history .layout #history .btn .prev .iconfont,
  .history .layout #history .btn .next .iconfont {
    font-size: 0.2rem;
  }
  .links .layout .common-title1 {
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .links .layout .link-box {
    padding-bottom: 0.4rem;
  }
}