*{
    padding: 0;
    margin: 0;
}
:root{
    --colorTitleUnderline: #00b050;
    --colorBtn: #00b050;
    --fontSizeBig: 1.1rem;
    --fontSizeSmall: 0.8rem;
    --fontSizeFooter: 0.9rem;
}
body{
    font-size: 1rem;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.warp{
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
body.pc .warp{
    max-width: 534px;
}
body.pc .notice-content-list{
    max-height: 500px;
    overflow: auto;
    padding-top: 10px;
}
.notice-layer{
    padding-top: 20px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 3rem;
}
.header .header-text{
    font-weight: normal;
    padding-bottom: 2px;
    position: relative;
    text-align: center;
    font-size: var(--fontSizeBig);
    font-weight: bold;
}
.header .header-text>b{
    border-bottom: 2px var(--colorTitleUnderline) solid;
}
.header .header-text:not(:first-child){
    margin-top: 0.5rem;
}
.header .call-icon{
    width: 1.2rem;
    align-items: baseline;
}
.main .main-tip{
    margin-top: 0.6rem;
}
.main .btn-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.main .call-btn{
    width: 9rem;
    background-color: transparent;
    border: 2px var(--colorBtn) solid;
    margin-bottom: 1rem;
    color: var(--colorBtn);
    cursor: pointer;
    padding: 0.2rem 0;
    box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}
.main .call-btn:hover, .main .call-btn.active{
    background-color: var(--colorBtn);
    color: #fff;
}
.main .call-btn:disabled{
    cursor:not-allowed;
}
.main .call-btn .cur{
    font-size: 1rem;
}
.main .call-btn .jp{
    display: block;
    font-size: var(--fontSizeSmall);
}
.main .hangup-btn-con{
    text-align: center;
    margin-top: 1rem;
}
.main .hangup-btn{
    width: 20rem;
    height: 3.8rem;
    background-image: url(./img/hangup.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 4rem auto;
    background-color: #f14152;
    border: 1px #7f7f7f solid;
    cursor: pointer;
    box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.7);
}
.main .hangup-btn:disabled{
    background-color: #a6a6a6;
    border: 1px #7f7f7f solid;
    cursor: default;
}
.footer{
    margin-top: 4rem;
    padding-bottom: 2rem;
}
.footer .tips{
    margin-top: 2rem;
}
.footer .tips-btn{
    cursor: pointer;
    font-size: var(--fontSizeFooter);
    /* color: var(--colorBtn); */
}
.footer p{
    font-size: var(--fontSizeFooter);
}
.notice-content-list .notice-content-item{
    margin-bottom: 1rem;
}
.notice-content-list .notice-content-item-title{
    font-weight:normal;
}
.notice-content-list .notify-toggle-btn{
    color: var(--colorBtn);
    cursor: pointer;
    background-color: transparent;
    border: none;
}
.underlined {
    text-decoration: underline;
}
.open-video-page {
    cursor: pointer;
}