/* 媒体查询 移动设备 */
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

/* 媒体查询 电脑 */
@media screen and (min-width: 769px) {
  .container {
    width: 430px;
    margin: 0 auto;
  }
}

/*
@font-face {
    font-family: 'AlibabaPuHuiTiR';
    src: url('../font/Alibaba-PuHuiTi-R.woff2') format('woff2'),
        url('../font/Alibaba-PuHuiTi-R.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/    

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

.container {
  position: relative;
  min-height: 100vh;
}

.banner-view {
  width: 100%;
  height: 194px;
}

.banner-view img {
  width: 100%;
  height: 100%;
}

.content-view {
  width: 100%;
  height: 1154px;
  background: url("../images/bg.png") no-repeat;
  background-size: 100% 100%;
  /* margin-top: -10px; */
  padding-top: 60px;
  position: absolute;
  top: 150px;
  left: 0px;
}

.input-box {
  width: calc(100% - 60px);
  /* width: 339px; */
  height: 42px;
  background: #ffffff;
  border-radius: 23px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  border: 3px solid #94b0ec;
}

.transparent-input {
  width: calc(100% - 60px);
  height: 90%;
  font-size: 16px;
  border: none;
  outline: none;
  margin-left: 18px;
  text-align: center;
}

.transparent-input::placeholder {
  font-size: 16px;
}

.btn-box {
  width: calc(100% - 60px);
  height: 40px;
  background: linear-gradient(96deg, #fd9d66 0%, #f93329 100%);
  box-shadow: inset 0px 1px 11px 0px #ffffff;
  border-radius: 20px;
  border: 1px solid #fff5d2;
  font-family: AlibabaPuHuiTiR;
  font-size: 18px;
  color: #fbf7d1;
  line-height: 40px;
  text-shadow: 0px 2px 4px #c5563e;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
}

.agreement-box {
  /* width: 339px; */
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
  margin: 9px auto 0 auto;
}

.round-checkbox {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Create the circular appearance */
  width: 18px;
  height: 18px;
  /* border: 1px solid white; */
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  outline: none;
  background: url("../images/checked_not.png") no-repeat;
  background-size: 100% 100%;
  /* margin-top: 18px; */
}

/* Checked state styles */
.round-checkbox:checked {
  /* background-color: #4F86FD;
  border-color: #4F86FD; */
  background: url("../images/checked.png") no-repeat;
  background-size: 100% 100%;
}

/* Checkmark (white √ symbol) */
/* .round-checkbox:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* Focus state (optional) */
.round-checkbox:focus {
  box-shadow: 0 0 0 2px rgba(238, 170, 69, 0.3);
}

.agreement-text {
  /* width: 296px; */
  width: calc(100% - 36px);
  height: 51px;
  font-family: AlibabaPuHuiTiR;
  font-size: 13px;
  color: #ffffff;
  line-height: 17px;
  margin-left: 9px;
  /* letter-spacing: 1px; */
}

.agreement-text a {
  color: #f9ff56;
  /* 下划线 */
  text-decoration: underline;
}

.agreement-text span {
  color: #f9ff56;
}

.business-box {
  width: calc(100% - 54px);
  height: 233px;
  padding: 32px 12px 0px 12px;
  background: #ffffff;
  border-radius: 11px;
  margin: 50px auto 0 auto;
  position: relative;
}

.business-title {
  width: 151px;
  height: 33px;
  background: url("../images/business_title_bg.png?t=1694524800") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.business-content {
  font-family: AlibabaPuHuiTiR;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  line-height: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.product-box {
  width: calc(100% - 54px);
  padding: 32px 15px 18px 15px;
  /* height: 191px; */
  background: #ffffff;
  border-radius: 11px;
  position: relative;
  margin: 32px auto 0 auto;
}

.product-title {
  width: 151px;
  height: 33px;
  background: url("../images/product_title_bg.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.product-content {
  display: flex;
}

.product-item {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-item img {
  width: 100%;
  height: 92px;
}

.product-item:not(:last-child) {
  margin-right: 18px;
}

.product-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 9px;
  font-family: AlibabaPuHuiTiR;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}

.product-item-content span {
  color: #d43d2e;
}

.product-item-content div:nth-child(2) {
  margin-top: 5px;
}

.upgrade-box {
  width: 280px;
  height: 500px;
  position: relative;
  margin: 31px auto 0 auto;
  overflow: hidden;
}

.upgrade-title {
  width: 151px;
  height: 33px;
  background: url("../images/upgrade_title_bg.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.upgrade-content {
  width: 280px;
  height: 500px;
  /* background: url("../images/phone.png") no-repeat;
  background-size: 100% 100%; */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.phone-bg {
  width: 100%;
  height: 100%;
  background: url("../images/phone.png") no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  /* 时间穿透 */
  pointer-events: none;
}

.video-box {
  width: 95%;
  height: 98%;
  background-color: #000;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  height: 100%;
}

.play-pause-box {
  width: 59px;
  height: 59px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.play-pause-box img {
  width: 100%;
  height: 100%;
}

.stop-img {
  display: none;
}

.dial-box {
  width: 180px;
  height: 150px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.dial-box img {
  width: 100%;
  height: 100%;
}
