﻿body {
    background-color: #f3f4f5;
}

#Info .MainButton {
    margin: 20px auto auto auto;
    padding: 15px 55px 15px 16px;
    width: 225px;
    height: 50px;
    display: block;
    font-size: 16px;
}

#Info .MainButton.LinkTWSE::before {
    height: 50px;
}

#Info .MainButton.LinkTWSE::after {
    padding: 0 0 0 155px;
}

#Info .BreadList .BreadItem,
#Info .BreadList .BreadItem:nth-child(2):hover {
    font-weight: 400;
}

#Info .Container {
    margin: 80px auto 100px auto;
    width: 840px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

#Info .Container h2 {
    margin: 20px auto;
    text-align: left;
    color: #123456;
    font-size: 40px;
    line-height: normal;
    font-weight: 500;
}

#Info .Container h3 {
    margin: auto;
    width: 100%;
    text-align: left;
}

#Info .Container img {
    width: 100%;
    border-radius: 5px;
}

#Info .Container p {
    width: 100%;
}

#Info .Container p .Title {
    margin: 0 0 .5em 0;
    width: 100%;
    display: block;
    font-weight: bold;
}

#Info .Container span.Description {
    text-align: left;
}

#Info .Container span.Description:nth-of-type(2) {
    margin: -.5em 0 .5em 0;
}

#Info .Container table {
    border-collapse: collapse;
}

#Info .Container table thead th {
    padding: 1em;
    font-size: 20px;
}

#Info .Container table tbody th,
#Info .Container table tbody td {
    padding: .7em;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}

#Info .BackButton {
    position: relative;
    background-color: #153a6a;
    background: -moz-linear-gradient(right, #153a6a 500px, #000 100%);
    background: -webkit-linear-gradient(right, #153a6a 500px, #000 100%);
    background: linear-gradient(to left, #153a6a 500px, #000 100%);
}

#Info .BackButton::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #153a6a;
    background-image: url(../../_Image/news/news.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: auto 600px;
    -webkit-mask: linear-gradient(to right, transparent 20%, #000 50%);
    mask: linear-gradient(to right, transparent 20%, #000 50%);
}

#Info .BackButton img {
    float: right;
    display: block;
    height: 150px;
}

#Info .BackButton .Button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 10px 50px;
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 2px;
    transition: all .2s;
}

#Info .BackButton .Button:hover {
    background-color: #000;
}

@media screen and (max-width:1023px) {
    #Info .Container {
        margin: 0;
        padding: 9.3vw;
        width: 100%;
    }

    #Info .Container h2 {
        margin: 0;
        font-size: 30px;
    }

    #Info .BackButton {
        height: 150px;
        background-image: url(../../_Image/news/news.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #Info .BackButton::before {
        display: none;
    }

    #Info .BackButton .Button {
        left: 30px;
        transform: translateY(-50%);
        padding: 10px 20px;
        background-color: rgba(0, 0, 0, .5);
    }

    #Info .BackButton img {
        display: none;
    }
}