body {
    background-color: #f9f9f9;
}

.content {
    margin-top: -30vw;
    overflow: hidden;
}

.common__h1 {
    color: #252525;
    font-family: PingFangSC-Medium;
    font-size: 4.8vw;
}

.common__h2 {
    display: flex;
    justify-content: space-between;
    color: #F26408;
    font-size: 4.8vw;
    letter-spacing: 0.12vw;
    line-height: 4.8vw;
}

.common__h2 .common__right-box {
    display: flex;
    align-items: center;
}

.common__h2 .common__h2-more {
    color: #6a6a6a;
    font-size: 3.2vw;
    letter-spacing: 0.107vw;
    line-height: 3.2vw;
}

.common__h2 .common__h2-img {
    width: 4.6vw;
    height: 4.6vw;
}

.strength__h2 {
    margin: 4.67vw 3.2vw 7.037vw 3.2vw;
    color: #F26408;
    font-family: PingFangSC-Medium;
    font-size: 4.8vw;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.strength__list {
    background-color: #f6f6f6;
    padding: 0vw 3.2vw 5vw 3.2vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.strength__item {
    padding: 3.2vw;
    width: 45.2vw;
    height: 35.733vw;
    background: #ffffff;
    border-radius: 1.067vw;
    box-sizing: border-box;
}

.strength__item:nth-child(n + 1) {
    margin-top: 3.2vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.strength__item>p {
    margin-top: 3.2vw;
}

.strength__item>p>a {
    color: #6a6a6a;
    font-size: 3.2vw;
    letter-spacing: 0.08vw;
    line-height: 4.8vw;
}

.strength__item-top {
    display: flex;
    align-items: center;
}

.strength__item-top .strength__top-img {
    margin-right: 2.133vw;
    width: 6.4vw;
    height: 6.4vw;
}

.strength__item-top strong {
    color: #252525;
    font-family: PingFangSC-Medium;
    font-size: 3.733vw;
}

.strength__item-bottom {
    display: flex;
    justify-content: flex-end;
}

.strength__item-bottom .strength__bottom-img {
    width: 4.271vw;
    height: 3.125vw;
}

.strength__kaihu,
.strength__monikaihu {
    display: inline-flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
  
    /*display: block;*/
    
    margin: 3.2vw auto;
    width: 93.6vw;
    height: 9.6vw;
    border-radius: 4px;
    font-family: PingFangTC-Medium;
    font-size: 4.267vw;
    letter-spacing: 0.064vw;
    text-align: center;
    line-height: 9.6vw;
    margin-left: 3vw;
}

.strength__kaihu::before {
  content: '';
  display: inline-block; 
  background-image: url('/template/ey4_top/wap/public/static/img/anto/phone-icon.webp');
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
    width: 14px;
    height: 26px;
  margin-right: 12px; 
}

.strength__kaihu:hover,
.strength__monikaihu:hover {
    color: #fff;
}

.strength__kaihu {
    background-color: #F26408;
    color: #fff;
}

.strength__monikaihu {
    border: 1px solid #6a6a6a;
    border-radius: 4px;
    color: #252525;
}

.strength__monikaihu:hover {
    color: #252525;
}

.download__h4 {
    color: #F26408;
    font-weight: bold;
    font-family: PingFangSC-Medium;
    font-size: 4.8vw;
    display: flex;
    justify-content: center;
}

.download__p {
    margin-top: 3.2vw;
    color: #666666;
    font-size: 3.2vw;
    line-height: 5.333vw;
}

.download__img {
    display: block;
    margin: 6.4vw auto;
    width: 77.067vw;
    height: 42.933vw;
}

.download__box {
    display: flex;
    justify-content: space-between;
}

.download__btn1,
.download__btn2 {
    width: 45.2vw;
    height: 9.6vw;
    border-radius: 1.067vw;
    text-align: center;
    line-height: 9.6vw;
}

.download__btn1 {
    background: #F26408;
}

.download__btn2 {
    border: 1px solid #F26408;
    color: #F26408;
}

.about {
    padding: 0;
}

.about__h2 {
    margin: 5.333vw 3.2vw;
    color: #F26408;
    font-family: PingFangSC-Medium;
    font-size: 4.8vw;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.about__video-container {
    position: relative; 
    cursor: pointer;   
}

.about__video-thumb {
    width: 100%;
    height: 48vw; 
    object-fit: cover;
    display: block;
}

.about__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15vw;
    height: 15vw;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease;
}

.about__video-container:hover .about__play-icon {
    background-color: rgba(0, 0, 0, 0.5);
}

.about__play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    /* 通过transform微调，使三角形在视觉上居中 */
    transform: translate(-45%, -50%); 
    width: 0;
    height: 0;
    border-style: solid;
    /* 定义三角形的大小和形状 */
    border-width: 3vw 0 3vw 4.5vw; 
    border-color: transparent transparent transparent #ffffff;
}

.about__info {
    padding: 3.2vw;
    font-size: 3.2vw;
    color: #252525;
    letter-spacing: 0.107vw;
    line-height: 5.333vw;
}

.about__info a {
    color: #189AFF; /* 使用您之前代码中的蓝色 */
    text-decoration: none;
    margin-left: 8px; /* 与前面的文本稍微隔开 */
}

.about__img {
    width: 100%;
    height: 48vw;
    background-color: #ccc;
}

.about__info {
    position: relative;
    padding: 3.2vw;
    font-size: 3.2vw;
    color: #252525;
    letter-spacing: 0.107vw;
    line-height: 5.333vw;
}

.about__more {
    display: flex;
    align-items: center;
    position: absolute;
    right: 25.6vw;
    bottom: 3.2vw;
}

.about__more a {
    color: #189AFF;
}

.market__h3 {
    display: flex;
    justify-content: space-between;
    color: #F26408;
    font-size: 4.8vw;
    letter-spacing: 0.12vw;
    line-height: 4.8vw;
}

.market__h3 .common__right-box {
    display: flex;
    align-items: center;
}

.market__h3 .common__h2-more {
    color: #6a6a6a;
    font-size: 3.2vw;
    letter-spacing: 0.107vw;
    line-height: 3.2vw;
}

.market__h3 .common__h2-img {
    width: 4.6vw;
    height: 4.6vw;
}

.market__h3-more {
    color: #6a6a6a;
    font-size: 3.2vw;
    letter-spacing: 0.107vw;
    line-height: 3.2vw;
}

.market__title {
    margin-top: 3.2vw;
}

.market__img {
    margin: 5.333vw auto;
    width: 93.6vw;
    height: 64.133vw;
    background-color: #ccc;
}

.market__p {
    font-size: 2.667vw;
    color: #6a6a6a;
    letter-spacing: 0.075vw;
    line-height: 4.267vw;
}

.realtime-quotes {
    padding: 20px 15px;
    background-color: #f7f9fa;
}

.quote-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    box-sizing: border-box;
}

.quote-box__pair {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.quote-box__price {
    font-size: 4.815vw;
    font-weight: bold;
    margin: 5px 0;
}

.quote-box__change {
    font-size: 3.333vw;
}

.quote-box .up {
    color: #49B73D;
    /* 匹配图片中的绿色 */
}

.quote-box .down {
    color: #E2171B;
    /* 匹配图片中的红色 */
}