
body {
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    background-image: url(./index1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}
.containerss-title{
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 45px 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999
}
.header img{
    width: 187px;
    display: block;
}
.header-text{
    margin-left: 50px;
    font-size: 18px;
    color: #1772F6;
    position: relative;
    top: 3px;
}
.container {
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding-top: 120px;
    padding-bottom: 20px;
    overflow: hidden;
}
.containers{
    overflow: auto;
    width: 100%;
    height: 100%;
}
::-webkit-scrollbar {/滚动条整体样式/
width: 4px;     /高宽分别对应横竖滚动条的尺寸/
height: 4px;
}
::-webkit-scrollbar-thumb {/滚动条里面小方块/
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-track {/滚动条里面轨道/
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0);
box-shadow: inset 0 0 5px rgba(0,0,0,0);
border-radius: 0;
background: rgba(0,0,0,0);
}
.containerss{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px 0 25px;
}
.platforms-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}
table {
    border-collapse: collapse;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 180px;
      -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
th, td {
    border: 1px solid #ffffff;
    padding: 10px 10px;
    text-align: center;
}
.month-header2{
    font-size: 14px;
    text-align: center;
}
th.month-header {
    width: 60px;
    min-width: 30px;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
}
tr:nth-of-type(1) th{
    background-color: #f2f2f2;
}
tr:nth-of-type(3) th,tr:nth-of-type(3) td{
    background-color: #f2f2f2;
}
tr:nth-of-type(5) th,tr:nth-of-type(5) td{
    background-color: #f2f2f2;
}
input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    -moz-appearance: textfield;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #DCE0E7;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
button {
    padding: 8px 16px;
    color: white;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    white-space: nowrap;
}
.btn-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 180px;
    flex-wrap: nowrap;
    position: relative;
}
.left-buttons {
    position: absolute;
    left: 175px;
    top: 0;
}
.reset-btn {
    border: 1px solid #DCE0E7;
    border-radius: 3px;
    background-color: #ffffff;
    color: #333333;
}
.add-btn {
    border: 1px solid #1772F6;
    border-radius: 3px;
    background-color: #ffffff;
    color: #1772F6;
}
.calc-btn {
    border: 1px solid #1772F6;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(23,114,246,1) 2%,rgba(12,110,255,0.85) 48%,rgba(36,141,255,0.79) 98%);
    color: #ffffff;
}
.platform-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 180px;
}
.remove-platform {
    position: absolute;
    top: 20px;
    right: 200px;
    line-height: 42px;
    color: red;
    cursor: pointer;
    font-size: 13px;
    display: none;
}
.remove-platform.on{
    display: block;
}
#resultContainer {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 180px;
}
.result-header{
    margin: 30px 0;
    padding-left: 10px;
    position: relative;
    text-align: left;
    font-size: 16px;
}
.result-header::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #1772F6;
}
#resultTable {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 180px;
}
#resultTable th, #resultTable td {
    background-color: #ffffff;
    font-size: 14px;
}
.thhidde{
    display:none;
}
.formula-explanation {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 180px;
}
.formula-explanations{
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 14px;
}
.formula-explanation h3 {
    margin-top: 0;
    color: #333;
}
.formula-explanation p {
    margin-bottom: 8px;
    line-height: 1.5;
    word-break: break-word;
}

.result-tip{
    margin-top: 10px;
    font-size: 12px;
    color: #999999;
}

@media (max-width: 820px) {
    table {
        width: 100%;
        display: table;
    }
    #resultTable {
        display: none;
    }
    .mobile-result {
        display: block;
        width: 100%;
    }
    .result-card {
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 15px;
        background-color: #f9f9f9;
        font-size: 13px;
    }
    .result-card .result-card-title {
        margin-bottom: 10px;
        font-size: 14px;
        color: #2196F3;
    }
    .result-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }
    .result-label {
        color: #555;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 5px;
    }
    
    button {
        padding: 6px 12px;
        font-size: 14px;
    }
    /*.add-btn {
        display: none;
    } */
    .btn-group {
        flex-wrap: nowrap;
    }
    .left-buttons, .right-buttons {
        flex: none;
    }
}


.footer {
    margin-top: 30px;
    padding: 15px 0;
    font-size: 12px;
    color: #666;
    text-align: center;
    border-top: 1px solid #eee;
}

#plc
{
    line-height:12px ;
}