body {
  background-color: #f6f6f6;
}

.main {
  max-width: 1440px;
  margin: 36px auto 66px;
  padding: 0 20px;
}

.section-wrappe {
  background-color: #fff;
  border-radius: 10px;
  padding: 46px;
  margin-bottom: 36px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pay-section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 36px;
  color: #333;
}

.certificate-info {
  display: flex;
  padding: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.certificate-info img {
  width: 300px;
  height: 200px;
  margin-right: 20px;
  border-radius: 4px;
}

.certificate-details h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 26px;
}

.certificate-details p {
  font-size: 26px;
  color: #999;
  margin-bottom: 26px;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  border-left: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
}

.order-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.order-table td {
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  padding: 30px 0;
  font-size: 30px;
  text-align: center;
}

.order-table td:first-child {
  width: 358px;
  color: #666;
}

.order-table .total {
  font-weight: bold;
  color: #333;
}

.order-table .total-price {
  font-weight: bold;
  color: #fc840b;
  font-size: 50px;
}

.total-price {
  font-weight: bold;
  color: #fc840b;
  font-size: 50px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 20px;
}

.payment-option {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #0066cc;
}

.payment-option.selected {
  border-color: #0066cc;
  background-color: #f0f8ff;
}

.payment-option::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: -1px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' width='46' height='46' viewBox='0 0 46 46'%3E%3Cpath d='M0 46h36c5.523 0 10-4.477 10-10V0L0 46z' fill='%230165E8'/%3E%3Cpath d='M29.285 37.31q.66.69 1.6.69.939 0 1.6-.692l9.873-10.372q.642-.675.642-1.62 0-.947-.642-1.622-.66-.694-1.602-.694-.942 0-1.6.694l-8.271 8.688-4.04-4.245q-.66-.692-1.601-.692t-1.602.692Q23 28.813 23 29.76q0 .947.642 1.623l5.643 5.927zm.603-.578c.276.288.636.433.998.433.36 0 .721-.145.997-.433l9.872-10.371a1.48 1.48 0 0 0 0 .001l-9.873 10.371a1.377 1.377 0 0 1-.997.434c-.362 0-.722-.145-.997-.434l-5.642-5.926a1.54 1.54 0 0 1 0-.001l5.642 5.926z' fill-rule='evenodd' fill='%23FFF'/%3E%3C/svg%3E")
    no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-option.selected::after {
  opacity: 1;
}

.payment-option:hover {
  border-color: #165dff;
  background-color: #f5f7fa;
}

.payment-option > span {
  margin-left: 10px;
  font-size: 36px;
  color: #444;
  font-weight: bold;
}

.payment-note {
  font-size: 20px;
  color: #999;
  margin: 20px 0;
}

.next-button {
  text-align: center;
  margin: 66px 0 0;
}

.next-button button {
  width: 300px;
  background-color: #0165e8;
  color: #fff;
  border: none;
  padding: 22px 40px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.next-button button:hover {
  background-color: #0052a3;
}

.payment-proof {
  font-size: 30px;
  font-weight: 600;
  color: #999999;
  text-align: center;
  margin-bottom: 36px;
}

.payment-proof a {
  color: #0165e8;
  text-decoration: none;
}

.contact-info {
  font-size: 30px;
  font-weight: 600;
  color: #999999;
}

/* 支付宝支付版 */
.countdown {
  font-size: 28px;
  text-align: center;
}
.countdown>img{
	vertical-align: text-bottom;
}
.countdown .time {
  color: #fc840b;
}
.order-details .order-number {
  background-color: #f6f6f6;
  padding: 20px 46px;
  border: 1px solid #e0e0e0;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  color: #666666;
  font-size: 26px;
  font-weight: 600;
}
.order-details .certificate-info {
  border-top: 0;
  border-radius: 0 0 8px 8px;
}
.order-details .certificate-details p {
  font-size: 24px;
  font-weight: 500;
}
.order-details .certificate-details p.total {
  color: #333333;
  font-size: 24px;
  font-weight: bolder;
}
.qrcode-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qrcode-title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 900;
  color: #083064;
}
.qrcode-price {
  display: flex;
  align-items: center;
  font-size: 30px;
  padding-bottom: 36px;
}

/* 银行卡信息 */
.bank-card-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 20px 0 36px;
}
.bank-card-info .user-form-input {
  width: auto;
}

/* 立即支付 */
.pay-btn-wrapper {
  position: relative;
}
.pay-btn-wrapper > p {
  font-size: 30px;
  margin-bottom: 26px;
}
.pay-btn-wrapper > p:last-of-type {
  margin-bottom: 0;
}
.pay-btn-wrapper .pay-btn {
  position: absolute;
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  background: linear-gradient(270deg, #fc840b 0%, #fab354 100%);
  padding: 26px 60px;
  border-radius: 12px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.pay-btn-wrapper .pay-btn:hover {
  background: linear-gradient(270deg, #fab354 0%, #fc840b 100%);
}

/* 1280px 适配 */
@media screen and (max-width: 1280px) {
  .pay-btn-wrapper p {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .pay-btn-wrapper .pay-btn {
    right: 36px;
    padding: 22px 50px;
    font-size: 30px;
  }
}

/* 1024px 适配 */
@media screen and (max-width: 1024px) {
  .pay-btn-wrapper p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .pay-btn-wrapper .pay-btn {
    right: 30px;
    padding: 20px 45px;
    font-size: 26px;
  }
}

/* 768px 适配 */
@media screen and (max-width: 768px) {
  .pay-btn-wrapper {
    position: relative;
  }

  .pay-btn-wrapper p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .pay-btn-wrapper p:last-of-type {
    margin-bottom: 20px;
  }

  .pay-btn-wrapper .total-price {
    font-size: 20px;
    color: #fc840b;
    font-weight: bold;
  }

  .pay-btn-wrapper .pay-btn {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px;
    padding: 18px 30px;
    font-size: 18px;
    text-align: center;
    box-sizing: border-box;
  }
}

/* 480px 适配 */
@media screen and (max-width: 480px) {
  .pay-btn-wrapper p {
    font-size: 13px;
  }

  .pay-btn-wrapper .total-price {
    font-size: 18px;
  }

  .pay-btn-wrapper .pay-btn {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 8px;
  }
}

.upload-form-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 66px;
}
.upload-form-container h3 {
  margin-bottom: 30px;
  color: #333;
  font-size: 36px;
  font-weight: bold;
}
.upload-form-container .user-form-input {
  width: 100%;
  box-sizing: border-box;
}
.upload-form-container .user-form-certificate {
  width: 132px;
  height: 132px;
}
.upload-form-container .upload-form-text {
  margin-top: 26px;
  font-size: 26px;
  color: #999999;
}

/* 二维码支付页面适配 */
.qrcode {
  text-align: center;
  padding: 20px;
}

.qrcode img {
  max-width: 420px;
  height: auto;
}

/* 1280px 平板和大屏手机适配 */
@media screen and (max-width: 1280px) {
  .main {
    max-width: 100%;
    margin: 30px auto 50px;
    padding: 0 25px;
  }

  .section-wrappe {
    padding: 36px;
    margin-bottom: 30px;
  }

  .pay-section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .certificate-info {
    padding: 30px;
  }

  .certificate-info img {
    width: 260px;
    height: 180px;
    margin-right: 18px;
  }

  .certificate-details h3 {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .certificate-details p {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .order-table td {
    padding: 24px 0;
    font-size: 26px;
  }

  .order-table td:first-child {
    width: 300px;
  }

  .order-table .total-price {
    font-size: 42px;
  }

  .payment-methods {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .payment-option {
    height: 90px;
    border-radius: 7px;
  }

  .payment-option::after {
    bottom: -20px;
    right: -1px;
    width: 40px;
    height: 40px;
  }

  .payment-option > span {
    font-size: 30px;
  }

  .payment-note {
    font-size: 18px;
    margin: 18px 0;
  }

  .next-button {
    margin: 50px 0 0;
  }

  .next-button button {
    width: 280px;
    padding: 20px 35px;
    font-size: 22px;
    border-radius: 10px;
  }

  .payment-proof {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .contact-info {
    font-size: 26px;
  }

  .countdown {
    font-size: 16px;
  }

  .order-details .order-number {
    padding: 18px 36px;
    font-size: 22px;
  }

  .order-details .certificate-details p {
    font-size: 20px;
  }

  .order-details .certificate-details p.total {
    font-size: 20px;
  }

  .qrcode-title {
    font-size: 30px;
    padding-bottom: 18px;
  }

  .qrcode-price {
    font-size: 26px;
    padding-bottom: 30px;
  }

  .bank-card-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 20px 0 30px;
  }

  .pay-btn-wrapper p {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .pay-btn-wrapper .pay-btn {
    right: 36px;
    padding: 22px 50px;
    font-size: 30px;
  }

  .upload-form-container h3 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .upload-form-container .user-form-certificate {
    width: 110px;
    height: 110px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 22px;
    font-size: 22px;
  }

  .qrcode img {
    max-width: 260px;
  }

  .qrcode-title {
    font-size: 30px;
    padding-bottom: 18px;
  }

  .qrcode-price {
    font-size: 26px;
    padding-bottom: 30px;
  }

  .countdown {
    font-size: 18px;
  }

  .countdown .time {
    font-size: 18px;
  }
}

/* 1024px 平板适配 */
@media screen and (max-width: 1024px) {
  .main {
    margin: 26px auto 46px;
    padding: 0 20px;
  }

  .section-wrappe {
    padding: 30px;
    margin-bottom: 26px;
  }

  .pay-section-title {
    font-size: 26px;
    margin-bottom: 26px;
  }

  .certificate-info {
    padding: 26px;
  }

  .certificate-info img {
    width: 220px;
    height: 160px;
    margin-right: 15px;
  }

  .certificate-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .certificate-details p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .order-table td {
    padding: 20px 0;
    font-size: 22px;
  }

  .order-table td:first-child {
    width: 260px;
  }

  .order-table .total-price {
    font-size: 36px;
  }

  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .payment-option {
    height: 80px;
    border-radius: 6px;
  }

  .payment-option::after {
    bottom: -18px;
    right: -1px;
    width: 36px;
    height: 36px;
  }

  .payment-option > span {
    font-size: 26px;
  }

  .payment-note {
    font-size: 16px;
    margin: 16px 0;
  }

  .next-button {
    margin: 46px 0 0;
  }

  .next-button button {
    width: 260px;
    padding: 18px 32px;
    font-size: 20px;
    border-radius: 10px;
  }

  .payment-proof {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .contact-info {
    font-size: 22px;
  }

  .order-details .order-number {
    padding: 16px 30px;
    font-size: 20px;
  }

  .order-details .certificate-details p {
    font-size: 18px;
  }

  .order-details .certificate-details p.total {
    font-size: 18px;
  }

  .qrcode-title {
    font-size: 26px;
    padding-bottom: 16px;
  }

  .qrcode-price {
    font-size: 22px;
    padding-bottom: 26px;
  }

  .bank-card-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 18px 0 26px;
  }

  .pay-btn-wrapper p {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .pay-btn-wrapper .pay-btn {
    right: 30px;
    padding: 20px 45px;
    font-size: 26px;
  }

  .upload-form-container h3 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .upload-form-container .user-form-certificate {
    width: 100px;
    height: 100px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 20px;
    font-size: 20px;
  }

  .qrcode img {
    max-width: 240px;
  }

  .qrcode-title {
    font-size: 26px;
    padding-bottom: 16px;
  }

  .qrcode-price {
    font-size: 22px;
    padding-bottom: 26px;
  }

  .countdown {
    font-size: 16px;
  }

  .countdown .time {
    font-size: 16px;
  }

  .order-details .order-number {
    padding: 16px 30px;
    font-size: 20px;
  }

  .order-details .certificate-info {
    padding: 20px;
  }

  .order-details .certificate-info img {
    width: 200px;
    height: 140px;
  }

  .order-details .certificate-details h3 {
    font-size: 22px;
  }

  .order-details .certificate-details p {
    font-size: 18px;
  }

  .order-details .certificate-details p.total {
    font-size: 18px;
  }

  .order-details .total-price {
    font-size: 32px;
  }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .main {
    margin: 20px auto 40px;
    padding: 0 15px;
  }

  .section-wrappe {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .pay-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .certificate-info {
    flex-direction: column;
    padding: 20px;
  }

  .certificate-info img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .certificate-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .certificate-details p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .order-table td {
    padding: 15px 5px;
    font-size: 14px;
  }

  .order-table td:first-child {
    width: auto;
    font-weight: bold;
    color: #666;
  }

  .order-table .total-price {
    font-size: 28px;
  }

  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .payment-option {
    height: 70px;
    border-radius: 6px;
  }

  .payment-option::after {
    bottom: -15px;
    right: -1px;
    width: 30px;
    height: 30px;
  }

  .payment-option > span {
    margin-left: 5px;
    font-size: 14px;
  }

  .payment-note {
    font-size: 12px;
    margin: 15px 0;
  }

  .next-button {
    margin: 40px 0 20px;
  }

  .next-button button {
    width: 100%;
    max-width: 300px;
    padding: 18px 30px;
    font-size: 18px;
    border-radius: 8px;
  }

  .payment-proof {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-info {
    font-size: 14px;
  }

  .countdown {
    font-size: 16px;
  }

  .order-details .order-number {
    padding: 15px 20px;
    font-size: 14px;
  }

  .order-details .certificate-details p {
    font-size: 13px;
  }

  .order-details .certificate-details p.total {
    font-size: 14px;
  }

  .qrcode-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .qrcode-price {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .bank-card-info {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0 20px;
  }

  .pay-btn-wrapper p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .pay-btn-wrapper .pay-btn {
    position: static;
    transform: none;
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
    margin-top: 15px;
  }

  .upload-form-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 15px;
    font-size: 13px;
  }

  .section-wrappe {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .countdown {
    font-size: 16px;
    line-height: 1.6;
  }

  .countdown .time {
    font-size: 16px;
  }

  .countdown img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
	vertical-align: top;
  }

  .pay-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .order-details .order-number {
    padding: 15px 20px;
    font-size: 14px;
  }

  .order-details .certificate-info {
    flex-direction: column;
    padding: 15px;
  }

  .order-details .certificate-info img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .order-details .certificate-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .order-details .certificate-details p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .order-details .certificate-details p.total {
    font-size: 14px;
  }

  .order-details .total-price {
    font-size: 24px;
  }

  .qrcode {
    padding: 15px;
  }

  .qrcode img {
    max-width: 100%;
    width: 200px;
    height: auto;
  }

  .qrcode-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .qrcode-price {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .qrcode-price .total-price {
    font-size: 20px;
  }

  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .payment-option {
    height: auto;
    border-radius: 6px;
	flex-direction: column;
  }

  .payment-option::after {
    bottom: -15px;
    right: -1px;
    width: 30px;
    height: 30px;
  }

  .payment-option > span {
    margin-left: 5px;
    font-size: 14px;
  }

  .payment-proof {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-info {
    font-size: 14px;
  }

  .bank-card-info {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0 20px;
  }

  .pay-btn-wrapper p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .pay-btn-wrapper .pay-btn {
    position: static;
    transform: none;
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
    margin-top: 15px;
  }

  .upload-form-container h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 15px;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .payment-option {
    height: auto;
    min-height: 60px;
  }

  .payment-option img {
    max-width: 80%;
    max-height: 80%;
  }

  .certificate-details p {
    display: block;
    width: 100%;
  }

  .order-table tr {
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }

  .order-table td {
    display: block;
    text-align: left;
    border: none;
    border-right: 1px solid #f0f0f0;
    padding: 8px 8px;
  }

  .order-table td:first-child {
    font-weight: normal;
    color: #999;
  }

  .qrcode img {
    width: 180px;
  }

  .qrcode-title {
    font-size: 18px;
  }

  .countdown {
    font-size: 14px;
  }

  .countdown .time {
    font-size: 14px;
  }

  .order-details .certificate-details h3 {
    font-size: 18px;
  }

  .order-details .certificate-details p {
    display: block;
    width: 100%;
  }

  .order-details .certificate-details p span {
    display: block;
    margin-bottom: 8px;
  }

  .pay-section-title {
    font-size: 20px;
  }
}

/* 1280px 适配 */
@media screen and (max-width: 1280px) {
  .upload-form-container h3 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .upload-form-container .user-form-input {
    font-size: 26px;
    padding: 18px;
  }

  .upload-form-container .user-form-certificate {
    width: 110px;
    height: 110px;
    background-size: 45px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 22px;
    font-size: 22px;
  }
}

/* 1024px 适配 */
@media screen and (max-width: 1024px) {
  .upload-form-container h3 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .upload-form-container .user-form-input {
    font-size: 22px;
    padding: 16px;
  }

  .upload-form-container .user-form-certificate {
    width: 100px;
    height: 100px;
    background-size: 40px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 20px;
    font-size: 20px;
  }
}

/* 768px 适配 */
@media screen and (max-width: 768px) {
  .pay-section-title[style*="font-size: 48px"] {
    font-size: 28px !important;
    margin-bottom: 20px;
  }

  .upload-form-container {
    margin-bottom: 25px;
  }

  .upload-form-container h3 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
  }

  .upload-form-container .user-form-input {
    width: 100%;
    font-size: 16px;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  .upload-form-container select.user-form-input {
    background-position: right 12px center;
    padding-right: 35px;
  }

  .upload-form-container input.user-form-input::placeholder {
    font-size: 14px;
    color: #ccc;
  }

  .upload-form-container .user-form-certificate {
    width: 100px;
    height: 100px;
    background-size: 35px;
    border-radius: 6px;
  }

  .upload-form-container .upload-form-text {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
  }
}

/* 480px 适配 */
@media screen and (max-width: 480px) {
  .pay-section-title[style*="font-size: 48px"] {
    font-size: 24px !important;
  }

  .upload-form-container h3 {
    font-size: 16px;
  }

  .upload-form-container .user-form-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .upload-form-container select.user-form-input {
    background-position: right 10px center;
    padding-right: 30px;
  }

  .upload-form-container .user-form-certificate {
    width: 80px;
    height: 80px;
    background-size: 30px;
  }

  .upload-form-container .upload-form-text {
    font-size: 12px;
  }
}
