.noscrolling {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.content-button-group {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 2.5vh 3vw 3vh 3vw;
}

.content-button {
  width: 32%;
  margin-bottom: 10px;
  margin-left: 1vw;
  padding: 0.7vh 0.6vw;
  box-sizing: border-box;
}

.content-button > img {
  width: 100%;
  max-height: 23vw;
  border-radius: 4px 4px 0 0;
  display: block;
}

.content-button > div {
  text-align: center;
  font-size: 12px;
  color: #323232;
  background-color: #e4e4e4;
  border-radius: 0 0 4px 4px;
  padding: 3px 0;
}

.content > .promotion-title {
  font-size: 18px;
  margin-left: 3.7vw;
  color: #6f6f6f;
  font-weight: bold;
}
.content > .promotion-more{
  font-size: 14px;
  margin-top: 1vw;
  margin-right: 3.7vw;
  color: #a0a0a0;
  font-weight: normal;
  position: absolute;
  right: 0;
}

.content > .promotion {
  display: flex;
  overflow-x: auto;
  margin: 1vh 0 10px 3.7vw;
  -webkit-overflow-scrolling: touch;
}

.content > .promotion > div {
  text-align: center;
  font-size: 13px;
  margin-right: 3vw;
  flex:none;
  width: 46vw;
}

.content > .promotion > div > img {
  width: 100%;
  height: 80%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  display: block;
}
.content > .promotion .promotion-desc{
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #e4e4e4;
  text-align: center;
  font-size: 12px;
  color: #323232;
  padding: 3px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.content > .banner > img {
  width: 100%;
  display: block;
}

.popup-wrapper {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.popup-app {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.popup {
    width: 66vw;
    position: relative;
    animation: showAlert 0.3s;
}

.popup-app .popup {
  width: 55vw;
  background: linear-gradient(to bottom, #ff9200 0, #ff9200 10px, #fff 10px, #fff 100%);
  border-radius: 6px;
  box-shadow: 0 5px #272727;
  padding: 30px 15px 10px;
  animation: showAlert 0.3s;
}

.popup > .icon {
  text-align: center;
  margin-top: -65px;
}

.popup > .icon > img {
  width: 85px;
}

.popup > .text {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #545454;
    margin: 10px 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.popup > .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup > .buttons > span {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #ff9201;
    box-shadow: 0 3px #cb5f00;
    border-radius: 5px;
    display: inline-block;
    padding: 8px 40px;
    margin: 5px 0;
    white-space: pre-wrap;
    word-break: break-all;
}

.popup-bg{
  width:100%;
}

.close-btn-panel button {
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 7px;
  font-family: Arial;
  color: #ffffff;
  font-size: 1.2em;
  background: #f78615;
  padding: 3% 22%;
  border: solid #ffffff 1px;
  text-decoration: none;
}

.close-btn-panel button:hover {
  background: #ffa837;
  text-decoration: none;
  cursor: pointer;
}

.close-btn-panel{
  text-align: center;
    position: absolute;
    width: 100%;
    margin-top: -17%;
}
.popup .close-icon{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10%;
  cursor: pointer;
}

@keyframes showAlert {
    0% { transform: scale(0.7) }
    45% { transform: scale(1.05) }
    80% { transform: scale(0.95) }
    100% { transform: scale(1) }
}

@media screen and (min-width: 568px) {
    .popup > .buttons {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media screen and (min-width: 737px) {
  .content-button-group {
    justify-content: space-between;
  }

  .content-button > div {
    font-size: 16px;
  }

  .content > .banner {
    background-color: #d28711;
  }

  .content > .banner > img,
  .content > .banner > div {
    width: 65%;
    margin: 0 auto;
  }

  .content-button {
    width: 32%;
    margin-bottom: 10px;
    padding: 0.7vh 0.6vw;
    box-sizing: border-box;
  }

  .content-button > img {
    width: 100%;
    border-radius: 4px 4px 0 0;
    display: block;
  }

	.promotion-title{
		font-size: 27px!important;
	}
  .content-button > div {
    text-align: center;
    font-size: 20px;
    color: #323232;
    background-color: #e4e4e4;
    border-radius: 0 0 4px 4px;
    padding: 3px 0;
  }
  .content > .promotion .promotion-desc{
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .close-btn-panel button {
    font-size: 0.8em;
    padding: 2% 19%;
  }
  .close-btn-panel{
    margin-top: -17.8%;
  }
}

.new-year-banner {
  margin: 5px 14px 20px 14px;
}

.new-year-banner img {
  display: block;
  border-radius: 4px;
}

.content-button-group {
  margin-bottom: 0;
}
