@charset "UTF-8";

.trouble {
margin-bottom: 60px;
}
.trouble .t-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.trouble .t-inner .t-card {
flex-basis: 48%;
border: 1px solid #00bfff;
border-radius: 8px;
margin-top: 20px;
overflow: hidden;
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card {
flex-basis: 100%;
}
}
.trouble .t-inner .t-card .tt {
background-color: #00bfff;
color: #fff;
padding: 10px;
font-size: 24px;
display: flex;
align-items: center;
justify-content: flex-start;
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card .tt {
font-size: 20px;
}
}
.trouble .t-inner .t-card .t-card-inner {
display: flex;
overflow: hidden;
min-height: 240px;
}
.trouble .t-inner .t-card .t-card-inner .img-wrap {
flex-basis: 40%;
}
.trouble .t-inner .t-card .t-card-inner .img-wrap img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
max-height: 240px;
}
.trouble .t-inner .t-card .t-card-inner .tc-content {
flex-basis: 60%;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.trouble .t-inner .t-card .t-card-inner .tc-content ul {
padding: 10px;
}
.trouble .t-inner .t-card .t-card-inner .tc-content ul li {
display: flex;
font-weight: bold;
font-size: 15px;
margin-bottom: 4px;
}
.trouble .t-inner .t-card .t-card-inner .tc-content ul li img {
width: 32px;
height: 32px;
display: inline-block;
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card .t-card-inner .tc-content ul li img {
width: 24px;
height: 24px;
}
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card .t-card-inner .tc-content ul li {
font-size: 12px;
}
}
.trouble .t-inner .t-card .t-card-inner .tc-content ul li:last-child {
margin-bottom: 0;
}
.trouble .t-inner .t-card .t-card-inner .tc-content .t-btn {
border: 2px solid #00bfff;
background-color: inherit;
color: #00bfff;
width: 100%;
height: 60px;
align-items: center;
font-size: 12px;
border-radius: 10px;
transition: 0.2s;
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card .t-card-inner .tc-content .t-btn {
font-size: 10px;
font-weight: bold;
}
}
.trouble .t-inner .t-card .t-card-inner .tc-content .t-btn::before {
content: "▶";
display: inline;
margin-right: 4px;
}
.trouble .t-inner .t-card .t-card-inner .tc-content .t-btn:hover {
font-size: 14px;
cursor: pointer;
}
@media screen and (max-width: 650px) {
.trouble .t-inner .t-card .t-card-inner .tc-content .t-btn:hover {
font-size: 10px;
font-weight: bold;
}
}